/* roulang page: index */
:root{
      --bg:#051F14;
      --bg-2:#0B2E1E;
      --bg-3:#092719;
      --panel:#0f3726;
      --panel-2:#123d2b;
      --gold:#F59E0B;
      --gold-2:#FCD34D;
      --red:#DC2626;
      --text:#F8FAFC;
      --muted:#D1FAE5;
      --soft:#A3A375;
      --line:rgba(245,158,11,.28);
      --line-soft:rgba(209,250,229,.12);
      --shadow:0 24px 70px rgba(0,0,0,.34);
      --shadow-gold:0 12px 38px rgba(245,158,11,.22);
      --radius:24px;
      --radius-sm:14px;
      --container:1180px;
      --font:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 2%, rgba(252,211,77,.16), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(220,38,38,.12), transparent 30%),
        linear-gradient(180deg, #03170f 0%, var(--bg) 30%, #04140d 100%);
      line-height:1.62;
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(245,158,11,.38);color:#fff}
    .container{width:min(100% - 32px, var(--container));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(18px);
      background:rgba(5,31,20,.82);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 36px rgba(0,0,0,.22);
    }
    .top-strip{
      background:linear-gradient(90deg, rgba(252,211,77,.96), rgba(245,158,11,.88), rgba(252,211,77,.96));
      color:#1d1300;
      font-weight:800;
      font-size:.82rem;
      letter-spacing:.01em;
    }
    .top-strip .container{
      min-height:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .strip-note{display:flex;align-items:center;gap:9px;white-space:nowrap}
    .strip-payments{display:flex;align-items:center;gap:8px;overflow:hidden}
    .strip-payments span{
      padding:3px 8px;
      border-radius:999px;
      background:rgba(5,31,20,.12);
      white-space:nowrap;
    }
    .nav{
      min-height:76px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#241700;
      font-size:1.32rem;
      background:radial-gradient(circle at 30% 20%, #fff3bf, var(--gold-2) 38%, var(--gold) 70%, #8a4d05);
      box-shadow:0 0 0 4px rgba(245,158,11,.15), 0 10px 28px rgba(245,158,11,.28);
      border:1px solid rgba(255,255,255,.36);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
      line-height:1.12;
    }
    .brand-text strong{
      font-size:.98rem;
      max-width:220px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text small{color:var(--muted);font-weight:600;font-size:.72rem}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-width:0;
    }
    .nav-links a{
      padding:10px 12px;
      border-radius:999px;
      color:rgba(248,250,252,.78);
      font-weight:750;
      font-size:.9rem;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-links a:hover,.nav-links a:focus{
      color:#fff;
      background:rgba(245,158,11,.12);
      outline:none;
    }
    .nav-links a.active{
      color:#271800;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      white-space:nowrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:11px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(1px) scale(.98)}
    .btn:focus-visible{outline:3px solid rgba(252,211,77,.42);outline-offset:3px}
    .btn-primary{
      color:#201400;
      background:linear-gradient(135deg, var(--gold-2), var(--gold) 62%, #f97316);
      box-shadow:0 16px 38px rgba(245,158,11,.26);
    }
    .btn-primary:hover{box-shadow:0 20px 48px rgba(245,158,11,.36)}
    .btn-ghost{
      color:var(--gold-2);
      background:rgba(245,158,11,.07);
      border-color:rgba(252,211,77,.38);
    }
    .btn-ghost:hover{background:rgba(245,158,11,.14)}
    .btn-soft{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
    }
    .btn-soft:hover{border-color:rgba(252,211,77,.38);background:rgba(252,211,77,.09)}
    main{position:relative}
    section{padding:76px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 11px;
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(245,158,11,.1);
      border:1px solid rgba(245,158,11,.22);
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    h1,h2,h3{margin:0;color:#fff;line-height:1.12;letter-spacing:-.03em}
    h1{font-size:clamp(2rem, 4vw, 4.15rem);max-width:1050px}
    h2{font-size:clamp(1.65rem, 2.8vw, 3rem);max-width:820px}
    h3{font-size:1.18rem}
    p{margin:0;color:var(--muted)}
    .section-head{
      display:grid;
      grid-template-columns:minmax(0, 1fr) minmax(280px, 420px);
      gap:26px;
      align-items:end;
      margin-bottom:30px;
    }
    .section-head p{font-size:1rem}
    .hero{
      padding:0 0 52px;
      background:
        linear-gradient(180deg, rgba(5,31,20,.04), rgba(5,31,20,.96)),
        url('/assets/images/08106ce0924b91df.jpg') center/cover no-repeat;
      border-bottom:1px solid var(--line);
    }
    .hero-band{
      background:linear-gradient(90deg, rgba(255,251,235,.96), rgba(254,243,199,.92));
      color:#263018;
      border-bottom:1px solid rgba(245,158,11,.28);
    }
    .hero-band .container{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .hero-band strong{font-size:1rem}
    .hero-band p{color:#3e4627;font-weight:650;font-size:.92rem}
    .hero-badges{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
    .hero-badges span{
      padding:7px 10px;
      border-radius:999px;
      background:#0b2e1e;
      color:#fef3c7;
      font-weight:850;
      font-size:.82rem;
    }
    .hero-panel{
      padding:54px 0 0;
      display:grid;
      grid-template-columns:minmax(0, 1.12fr) minmax(300px, .88fr);
      gap:40px;
      align-items:end;
    }
    .hero-copy{
      padding:24px 0;
    }
    .hero-copy .brandline{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      color:#281900;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      font-weight:950;
      margin-bottom:18px;
      box-shadow:var(--shadow-gold);
    }
    .hero-copy .lead{
      max-width:900px;
      margin-top:18px;
      font-size:1.08rem;
      color:rgba(248,250,252,.88);
    }
    .hero-actions{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:24px;
    }
    .hero-stats{
      margin-top:28px;
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
      max-width:760px;
    }
    .stat-tile{
      padding:16px;
      border-radius:var(--radius-sm);
      background:rgba(3,23,15,.66);
      border:1px solid rgba(252,211,77,.22);
      backdrop-filter:blur(12px);
    }
    .stat-tile strong{
      display:block;
      font-size:1.45rem;
      color:var(--gold-2);
      line-height:1;
      margin-bottom:6px;
    }
    .stat-tile span{
      color:rgba(209,250,229,.78);
      font-size:.86rem;
      font-weight:700;
    }
    .hero-aside{
      border-radius:32px 32px 0 0;
      overflow:hidden;
      border:1px solid rgba(252,211,77,.28);
      background:linear-gradient(180deg, rgba(15,55,38,.84), rgba(5,31,20,.94));
      box-shadow:var(--shadow);
    }
    .hero-aside img{
      width:100%;
      height:220px;
      object-fit:cover;
      border-bottom:1px solid rgba(252,211,77,.22);
    }
    .aside-body{padding:22px}
    .live-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid var(--line-soft);
    }
    .live-row:last-child{border-bottom:0}
    .pulse{
      width:9px;height:9px;border-radius:50%;
      background:#22c55e;
      box-shadow:0 0 0 7px rgba(34,197,94,.12);
      flex:0 0 auto;
    }
    .live-row span{display:flex;align-items:center;gap:9px;color:#fff;font-weight:800}
    .live-row em{font-style:normal;color:var(--gold-2);font-weight:900}
    .pain{
      background:linear-gradient(180deg, rgba(11,46,30,.35), transparent);
    }
    .split{
      display:grid;
      grid-template-columns:minmax(0, .88fr) minmax(0, 1.12fr);
      gap:34px;
      align-items:start;
    }
    .plain-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .plain-list li{
      display:grid;
      grid-template-columns:34px 1fr;
      gap:12px;
      align-items:start;
      color:var(--muted);
    }
    .plain-list i{
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(220,38,38,.16);
      color:#fecaca;
      font-style:normal;
      font-weight:950;
      border:1px solid rgba(220,38,38,.28);
    }
    .solution-panel{
      padding:28px;
      border-radius:var(--radius);
      background:linear-gradient(135deg, rgba(18,61,43,.92), rgba(6,46,32,.72));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .solution-panel p{margin-top:12px}
    .grid-3{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:18px;
    }
    .grid-4{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:16px;
    }
    .card{
      position:relative;
      padding:22px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(18,61,43,.86), rgba(7,39,26,.92));
      border:1px solid var(--line);
      box-shadow:0 16px 46px rgba(0,0,0,.22);
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      overflow:hidden;
    }
    .card::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at top right, rgba(252,211,77,.14), transparent 34%);
      pointer-events:none;
    }
    .card:hover{
      transform:translateY(-5px);
      border-color:rgba(252,211,77,.55);
      box-shadow:0 22px 58px rgba(0,0,0,.3);
    }
    .card > *{position:relative}
    .corner-tag{
      position:absolute;
      top:16px;
      right:16px;
      z-index:2;
      padding:5px 9px;
      border-radius:999px;
      background:linear-gradient(135deg, #7f1d1d, var(--red));
      color:#fff;
      font-size:.72rem;
      font-weight:950;
      letter-spacing:.04em;
    }
    .icon-bubble{
      width:46px;height:46px;border-radius:15px;
      display:grid;place-items:center;
      background:rgba(245,158,11,.12);
      color:var(--gold-2);
      border:1px solid rgba(252,211,77,.3);
      font-size:1.25rem;
      margin-bottom:18px;
    }
    .card h3{margin-bottom:10px}
    .card p{font-size:.95rem}
    .commission{
      background:
        linear-gradient(90deg, rgba(5,31,20,.96), rgba(11,46,30,.86)),
        url('/assets/images/a584b8897be57f5e.jpg') center/cover fixed;
    }
    .commission-ladder{
      display:grid;
      grid-template-columns:1fr 1.2fr;
      gap:24px;
      align-items:stretch;
    }
    .ladder-bars{
      padding:26px;
      border-radius:var(--radius);
      background:rgba(3,23,15,.68);
      border:1px solid var(--line);
    }
    .bar-item{margin-bottom:18px}
    .bar-item:last-child{margin-bottom:0}
    .bar-title{
      display:flex;
      justify-content:space-between;
      color:#fff;
      font-weight:900;
      margin-bottom:8px;
    }
    .bar-track{
      height:12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
    }
    .bar-fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--gold), var(--gold-2));
      box-shadow:0 0 24px rgba(252,211,77,.38);
    }
    .material{
      background:rgba(3,23,15,.36);
    }
    .filter-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(15,55,38,.72);
      margin-bottom:24px;
    }
    .filter-pills{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .filter-pills button{
      border:1px solid rgba(252,211,77,.22);
      color:var(--muted);
      background:rgba(255,255,255,.04);
      border-radius:999px;
      padding:9px 12px;
      font-weight:850;
      transition:.18s ease;
    }
    .filter-pills button:hover,.filter-pills button.active{
      color:#201400;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      border-color:transparent;
    }
    .resource-card{
      padding:0;
      display:grid;
      grid-template-rows:160px auto;
      overflow:hidden;
    }
    .resource-card img{height:160px;width:100%;object-fit:cover}
    .resource-card .content{padding:20px}
    .download-line{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--gold-2);
      font-weight:900;
      font-size:.92rem;
    }
    .settlement{
      background:linear-gradient(180deg, rgba(9,39,25,.55), rgba(5,31,20,.12));
    }
    .timeline{
      display:grid;
      gap:16px;
      border-left:2px solid rgba(252,211,77,.32);
      padding-left:24px;
    }
    .time-node{
      position:relative;
      padding:20px 22px;
      border-radius:var(--radius-sm);
      background:rgba(18,61,43,.72);
      border:1px solid var(--line-soft);
    }
    .time-node::before{
      content:"";
      position:absolute;
      left:-32px;top:24px;
      width:14px;height:14px;border-radius:50%;
      background:var(--gold-2);
      box-shadow:0 0 0 8px rgba(252,211,77,.12);
    }
    .time-node strong{display:block;color:#fff;margin-bottom:6px;font-size:1rem}
    .steps{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:18px;
      counter-reset:step;
    }
    .step{
      counter-increment:step;
      padding:24px;
      border-radius:var(--radius);
      background:rgba(15,55,38,.7);
      border:1px solid rgba(252,211,77,.22);
    }
    .step::before{
      content:"0" counter(step);
      display:inline-grid;
      place-items:center;
      width:42px;height:42px;
      border-radius:50%;
      margin-bottom:18px;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      color:#1f1400;
      font-weight:950;
    }
    .article-block{
      background:
        linear-gradient(180deg, rgba(3,23,15,.86), rgba(5,31,20,.96)),
        url('/assets/images/e0a6e246030337d5.jpg') center/cover no-repeat;
    }
    .article-grid{
      display:grid;
      grid-template-columns:minmax(0, 1fr) minmax(280px, 380px);
      gap:26px;
      align-items:start;
    }
    .article-copy{
      padding:30px;
      border-radius:var(--radius);
      background:rgba(5,31,20,.78);
      border:1px solid var(--line);
    }
    .article-copy h2{margin-bottom:18px}
    .article-copy h3{margin-top:24px;margin-bottom:10px;color:var(--gold-2)}
    .article-copy p{margin-bottom:12px}
    .score-box{
      padding:28px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(252,211,77,.12), rgba(18,61,43,.78));
      border:1px solid rgba(252,211,77,.32);
      position:sticky;
      top:126px;
    }
    .score-row{
      display:flex;
      justify-content:space-between;
      gap:10px;
      padding:12px 0;
      border-bottom:1px solid var(--line-soft);
      color:var(--muted);
    }
    .score-row:last-child{border-bottom:0}
    .score-row b{color:#fff}
    .ranking-table{
      overflow:hidden;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(15,55,38,.64);
    }
    .rank-row{
      display:grid;
      grid-template-columns:70px 1.3fr .9fr .9fr 120px;
      align-items:center;
      gap:16px;
      padding:18px 22px;
      border-bottom:1px solid var(--line-soft);
    }
    .rank-row:last-child{border-bottom:0}
    .rank-row.header{
      background:rgba(252,211,77,.12);
      color:var(--gold-2);
      font-weight:950;
    }
    .rank-medal{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      color:#1f1400;
      font-weight:950;
      box-shadow:var(--shadow-gold);
    }
    .rank-title strong{display:block;color:#fff}
    .rank-title span{color:var(--muted);font-size:.9rem}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      width:max-content;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(16,185,129,.12);
      color:#bbf7d0;
      border:1px solid rgba(16,185,129,.24);
      font-weight:850;
      font-size:.82rem;
    }
    .cases{
      background:linear-gradient(180deg, rgba(5,31,20,.06), rgba(11,46,30,.5));
    }
    .case-card{
      display:grid;
      grid-template-columns:140px 1fr;
      gap:18px;
      align-items:center;
    }
    .case-card img{
      width:140px;height:140px;object-fit:cover;border-radius:22px;
      border:1px solid rgba(252,211,77,.22);
    }
    .quote-wall{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:18px;
    }
    .quote{
      padding:24px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.1);
    }
    .quote p{font-size:1.02rem;color:rgba(248,250,252,.86)}
    .quote strong{display:block;margin-top:16px;color:var(--gold-2)}
    .category-wall{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:16px;
    }
    .category-card{
      min-height:220px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:22px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(6,46,32,.45), rgba(3,23,15,.92)),
        var(--img) center/cover no-repeat;
      overflow:hidden;
      transition:.22s ease;
    }
    .category-card:hover{
      transform:translateY(-5px);
      border-color:rgba(252,211,77,.56);
      box-shadow:var(--shadow);
    }
    .category-card span{
      width:max-content;
      padding:5px 9px;
      border-radius:999px;
      color:#211500;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      font-size:.78rem;
      font-weight:950;
    }
    .category-card h3{margin-top:46px}
    .category-card p{margin-top:8px;color:rgba(248,250,252,.8);font-size:.93rem}
    .news{
      background:rgba(3,23,15,.48);
    }
    .news-layout{
      display:grid;
      grid-template-columns:minmax(0, 1.2fr) minmax(300px, .8fr);
      gap:24px;
      align-items:start;
    }
    .news-list{
      display:grid;
      gap:14px;
    }
    .news-item{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      padding:20px;
      border-radius:var(--radius-sm);
      background:rgba(18,61,43,.72);
      border:1px solid var(--line-soft);
      transition:.18s ease;
    }
    .news-item:hover{
      border-color:rgba(252,211,77,.38);
      transform:translateX(4px);
    }
    .news-item h3{font-size:1.08rem;margin-bottom:8px}
    .news-item p{font-size:.93rem}
    .meta{
      display:flex;
      gap:8px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:12px;
      color:var(--soft);
      font-size:.82rem;
      font-weight:800;
    }
    .news-date{
      color:var(--gold-2);
      font-weight:900;
      white-space:nowrap;
      font-size:.9rem;
    }
    .side-feature{
      border-radius:var(--radius);
      overflow:hidden;
      background:linear-gradient(180deg, rgba(18,61,43,.9), rgba(5,31,20,.9));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .side-feature img{height:210px;width:100%;object-fit:cover}
    .side-feature .content{padding:22px}
    .mini-news{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .mini-news a{
      display:block;
      padding:14px;
      border-radius:14px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
      transition:.18s ease;
    }
    .mini-news a:hover{
      background:rgba(252,211,77,.08);
      border-color:rgba(252,211,77,.28);
    }
    .empty{
      padding:24px;
      border-radius:var(--radius);
      background:rgba(18,61,43,.72);
      border:1px solid var(--line);
      color:var(--muted);
      font-weight:850;
    }
    .security-strip{
      display:grid;
      grid-template-columns:repeat(5, 1fr);
      gap:12px;
    }
    .security-item{
      min-height:112px;
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.052);
      border:1px solid rgba(255,255,255,.1);
    }
    .security-item strong{display:block;color:#fff;margin-bottom:6px}
    .security-item span{color:var(--muted);font-size:.9rem}
    .metric-row{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:16px;
    }
    .metric{
      padding:24px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(252,211,77,.1), rgba(18,61,43,.62));
      border:1px solid rgba(252,211,77,.22);
    }
    .metric strong{display:block;color:var(--gold-2);font-size:2rem;line-height:1}
    .metric span{display:block;color:var(--muted);font-weight:750;margin-top:8px}
    .join{
      padding:84px 0;
    }
    .join-box{
      display:grid;
      grid-template-columns:minmax(0, 1fr) auto;
      gap:26px;
      align-items:center;
      padding:34px;
      border-radius:32px;
      background:
        linear-gradient(135deg, rgba(252,211,77,.18), rgba(18,61,43,.86)),
        url('/assets/images/21893d578bc98450.jpg') center/cover no-repeat;
      border:1px solid rgba(252,211,77,.42);
      box-shadow:var(--shadow);
    }
    .join-box h2{max-width:760px}
    .join-box p{max-width:760px;margin-top:12px;color:rgba(248,250,252,.86)}
    .site-footer{
      background:#03140d;
      border-top:1px solid var(--line);
      padding:46px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand strong{
      display:block;
      font-size:1.1rem;
      margin-bottom:10px;
      color:#fff;
    }
    .footer-brand p{max-width:560px}
    .footer-block h3{
      font-size:1rem;
      margin-bottom:12px;
      color:var(--gold-2);
    }
    .footer-block ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}
    .footer-block a,.footer-block li{color:var(--muted);font-weight:650}
    .footer-block a:hover{color:var(--gold-2)}
    .license-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
      padding-top:20px;
      border-top:1px solid rgba(252,211,77,.18);
    }
    .license-row span{
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(252,211,77,.25);
      color:var(--muted);
      background:rgba(255,255,255,.035);
      font-weight:800;
      font-size:.86rem;
    }
    .copyright{
      margin-top:22px;
      color:rgba(209,250,229,.66);
      font-size:.88rem;
    }
    .fab{
      position:fixed;
      left:16px;
      bottom:96px;
      z-index:50;
      width:58px;
      height:58px;
      border-radius:50%;
      display:grid;
      place-items:center;
      border:2px solid var(--gold);
      color:var(--gold-2);
      background:
        radial-gradient(circle at 35% 25%, rgba(252,211,77,.34), transparent 28%),
        radial-gradient(circle, #1a1208 0%, #071f15 58%, #020906 100%);
      box-shadow:0 6px 25px rgba(245,158,11,.35), inset 0 0 0 4px rgba(252,211,77,.08);
      opacity:.86;
      transition:.22s ease;
      animation:floating 2.8s ease-in-out infinite;
    }
    .fab::after{
      content:"";
      position:absolute;
      top:7px;
      right:7px;
      width:13px;
      height:13px;
      border-radius:50%;
      background:#dc2626;
      ring:2px;
      box-shadow:0 0 0 2px #fff, 0 0 18px rgba(220,38,38,.8);
    }
    .fab span{font-size:1.45rem;transition:transform .45s ease}
    .fab:hover{
      opacity:1;
      transform:scale(1.1);
      box-shadow:0 10px 32px rgba(245,158,11,.48);
    }
    .fab:hover span{transform:rotate(360deg)}
    .fab:active{transform:scale(.95) translateY(2px)}
    @keyframes floating{
      0%,100%{translate:0 0}
      50%{translate:0 -7px}
    }
    @media (max-width:1060px){
      .nav{
        grid-template-columns:1fr auto;
        gap:14px;
        padding:10px 0;
      }
      .nav-links{
        grid-column:1 / -1;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:4px;
      }
      .nav-links::-webkit-scrollbar{height:0}
      .brand-text strong{max-width:360px}
      .hero-panel,.split,.commission-ladder,.article-grid,.news-layout,.quote-wall{
        grid-template-columns:1fr;
      }
      .score-box{position:relative;top:auto}
      .grid-4,.category-wall,.security-strip,.metric-row{
        grid-template-columns:repeat(2, 1fr);
      }
      .rank-row{
        grid-template-columns:58px 1fr 120px;
      }
      .rank-row .hide-md{display:none}
    }
    @media (max-width:768px){
      .top-strip .container,.hero-band .container{
        align-items:flex-start;
        flex-direction:column;
        padding:8px 0;
        gap:7px;
      }
      .hero-badges{justify-content:flex-start}
      .nav-actions .btn{
        padding:10px 12px;
        min-height:40px;
        font-size:.86rem;
      }
      .brand-mark{width:40px;height:40px}
      .brand-text strong{max-width:160px}
      section{padding:54px 0}
      .hero{padding-bottom:34px}
      .hero-panel{gap:22px;padding-top:32px}
      .hero-stats,.grid-3,.steps{
        grid-template-columns:1fr;
      }
      .hero-aside img{height:170px}
      .section-head{
        grid-template-columns:1fr;
        gap:12px;
      }
      .filter-row{
        align-items:flex-start;
        flex-direction:column;
        border-radius:24px;
      }
      .case-card{grid-template-columns:1fr}
      .case-card img{width:100%;height:190px}
      .join-box{
        grid-template-columns:1fr;
        padding:26px;
      }
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .container{width:min(100% - 24px, var(--container))}
      h1{font-size:2rem}
      .hero-copy .lead{font-size:1rem}
      .grid-4,.category-wall,.security-strip,.metric-row{
        grid-template-columns:1fr;
      }
      .rank-row{
        grid-template-columns:48px 1fr;
        gap:12px;
      }
      .rank-row.header{display:none}
      .rank-row .rank-cta{grid-column:1 / -1}
      .news-item{grid-template-columns:1fr}
      .news-date{white-space:normal}
      .fab{width:54px;height:54px;bottom:88px}
    }

/* roulang page: category1 */
:root{
      --bg:#051F14;
      --bg-2:#0B2E1E;
      --bg-3:#092719;
      --panel:#0f3726;
      --panel-2:#123d2b;
      --gold:#F59E0B;
      --gold-2:#FCD34D;
      --red:#DC2626;
      --text:#F8FAFC;
      --muted:#D1FAE5;
      --soft:#A3A375;
      --line:rgba(245,158,11,.28);
      --line-soft:rgba(209,250,229,.12);
      --shadow:0 24px 70px rgba(0,0,0,.34);
      --shadow-gold:0 12px 38px rgba(245,158,11,.22);
      --radius:24px;
      --radius-sm:14px;
      --container:1180px;
      --font:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 2%, rgba(252,211,77,.16), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(220,38,38,.12), transparent 30%),
        linear-gradient(180deg, #03170f 0%, var(--bg) 30%, #04140d 100%);
      line-height:1.62;
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    p,h1,h2,h3,h4{margin-top:0}
    p{color:rgba(209,250,229,.86)}
    .container{width:min(100% - 32px, var(--container));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(18px);
      background:rgba(5,31,20,.82);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 36px rgba(0,0,0,.22);
    }
    .top-strip{
      border-bottom:1px solid rgba(209,250,229,.09);
      background:rgba(0,0,0,.16);
    }
    .top-strip .container{
      min-height:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .strip-note{font-size:.82rem;color:rgba(248,250,252,.84);font-weight:750}
    .strip-payments{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
    .strip-payments span{
      color:#261700;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      border-radius:999px;
      padding:3px 8px;
      font-size:.72rem;
      font-weight:900;
    }
    .nav{
      min-height:76px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:22px;
    }
    .brand{display:flex;align-items:center;gap:12px;min-width:0}
    .brand-mark{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      color:#241700;font-size:1.32rem;
      background:radial-gradient(circle at 30% 20%, #fff3bf, var(--gold-2) 38%, var(--gold) 70%, #8a4d05);
      box-shadow:0 0 0 4px rgba(245,158,11,.15), 0 10px 28px rgba(245,158,11,.28);
      border:1px solid rgba(255,255,255,.36);
      flex:0 0 auto;
    }
    .brand-text{display:flex;flex-direction:column;min-width:0;line-height:1.12}
    .brand-text strong{font-size:.98rem;max-width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
    .brand-text small{color:var(--muted);font-weight:600;font-size:.72rem}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-width:0;
    }
    .nav-links a{
      padding:10px 12px;
      border-radius:999px;
      color:rgba(248,250,252,.78);
      font-weight:750;
      font-size:.9rem;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-links a:hover,.nav-links a:focus{
      color:#fff;
      background:rgba(245,158,11,.12);
      outline:none;
    }
    .nav-links a.active{
      color:#271800;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .nav-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;white-space:nowrap}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:11px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(1px) scale(.98)}
    .btn:focus-visible{outline:3px solid rgba(252,211,77,.42);outline-offset:3px}
    .btn-primary{
      color:#201400;
      background:linear-gradient(135deg, var(--gold-2), var(--gold) 62%, #f97316);
      box-shadow:0 16px 38px rgba(245,158,11,.26);
    }
    .btn-primary:hover{box-shadow:0 20px 48px rgba(245,158,11,.36)}
    .btn-ghost{
      color:var(--gold-2);
      background:rgba(245,158,11,.07);
      border-color:rgba(252,211,77,.38);
    }
    .btn-ghost:hover{background:rgba(245,158,11,.14)}
    .btn-soft{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
    }
    .btn-soft:hover{border-color:rgba(252,211,77,.38);background:rgba(252,211,77,.09)}
    main{position:relative}
    section{padding:76px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 11px;
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(245,158,11,.1);
      border:1px solid rgba(245,158,11,.22);
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    .section-head{
      display:grid;
      grid-template-columns:minmax(0, 1fr) minmax(280px, 420px);
      gap:26px;
      align-items:end;
      margin-bottom:30px;
    }
    .section-head h2{
      font-size:clamp(2rem, 4vw, 3.05rem);
      line-height:1.08;
      letter-spacing:-.04em;
      margin-bottom:0;
    }
    .section-head p{font-size:1rem;margin-bottom:0}
    .category-hero{
      position:relative;
      overflow:hidden;
      padding:0 0 64px;
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(5,31,20,.22), rgba(5,31,20,.96)),
        url('/assets/images/a584b8897be57f5e.jpg') center/cover no-repeat;
    }
    .hero-band{
      background:linear-gradient(90deg, rgba(255,251,235,.96), rgba(254,243,199,.92));
      color:#263018;
      border-bottom:1px solid rgba(245,158,11,.28);
    }
    .hero-band .container{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .hero-band strong{font-size:1rem}
    .hero-band p{color:#3e4627;font-weight:650;font-size:.92rem;margin:0}
    .hero-badges{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
    .hero-badges span{
      padding:7px 10px;
      border-radius:999px;
      background:#0b2e1e;
      color:#fef3c7;
      font-weight:850;
      font-size:.82rem;
    }
    .category-hero-grid{
      padding-top:58px;
      display:grid;
      grid-template-columns:minmax(0, 1.04fr) minmax(320px,.96fr);
      gap:38px;
      align-items:center;
    }
    .hero-copy h1{
      margin:0 0 18px;
      font-size:clamp(2.35rem, 5.4vw, 5rem);
      line-height:.98;
      letter-spacing:-.06em;
      max-width:900px;
    }
    .hero-copy p{
      font-size:1.08rem;
      max-width:700px;
      margin-bottom:24px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap}
    .metric-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:34px;
    }
    .metric{
      padding:16px;
      border-radius:18px;
      background:rgba(7,34,22,.72);
      border:1px solid rgba(252,211,77,.22);
      box-shadow:0 14px 34px rgba(0,0,0,.22);
    }
    .metric strong{
      display:block;
      color:var(--gold-2);
      font-size:1.35rem;
      line-height:1.15;
      margin-bottom:3px;
    }
    .metric span{color:rgba(209,250,229,.82);font-size:.82rem;font-weight:750}
    .spec-panel{
      position:relative;
      border-radius:var(--radius);
      background:
        linear-gradient(160deg, rgba(18,61,43,.9), rgba(5,31,20,.82)),
        radial-gradient(circle at top right, rgba(252,211,77,.18), transparent 35%);
      border:1px solid rgba(252,211,77,.28);
      box-shadow:var(--shadow);
      padding:22px;
      overflow:hidden;
    }
    .spec-panel:before{
      content:"";
      position:absolute;
      inset:-80px auto auto -90px;
      width:210px;
      height:210px;
      border-radius:50%;
      background:rgba(245,158,11,.17);
      filter:blur(20px);
    }
    .panel-image{
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.12);
      position:relative;
      margin-bottom:18px;
    }
    .panel-image:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent, rgba(5,31,20,.38));
      pointer-events:none;
    }
    .spec-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      padding:13px 0;
      border-top:1px solid rgba(209,250,229,.12);
      align-items:center;
    }
    .spec-row:first-of-type{border-top:0}
    .spec-row span{color:rgba(209,250,229,.82);font-weight:750}
    .spec-row strong{color:#fff;text-align:right}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:6px 10px;
      color:#fff8dc;
      background:rgba(220,38,38,.86);
      border:1px solid rgba(252,211,77,.24);
      font-size:.76rem;
      font-weight:900;
    }
    .split{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
      gap:44px;
      align-items:center;
    }
    .pain-list,.check-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .pain-list li,.check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:15px 0;
      border-bottom:1px solid rgba(209,250,229,.11);
    }
    .pain-list b,.check-list b{
      flex:0 0 30px;
      width:30px;
      height:30px;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:#271800;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:0 10px 24px rgba(245,158,11,.22);
    }
    .story-card{
      background:linear-gradient(155deg, rgba(18,61,43,.84), rgba(9,39,25,.7));
      border:1px solid rgba(252,211,77,.2);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .story-card h3{font-size:1.45rem;margin-bottom:10px}
    .story-card img{
      width:100%;
      aspect-ratio:16/10;
      object-fit:cover;
      border-radius:18px;
      margin:18px 0 4px;
      border:1px solid rgba(255,255,255,.13);
    }
    .rules-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
      align-items:stretch;
    }
    .rule-board{
      border-radius:var(--radius);
      background:linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
      border:1px solid rgba(252,211,77,.22);
      padding:28px;
      box-shadow:var(--shadow);
    }
    .rule-board h3{font-size:1.5rem;margin-bottom:14px}
    .rule-lines{display:grid;gap:12px;margin-top:20px}
    .rule-line{
      display:grid;
      grid-template-columns:170px 1fr;
      gap:14px;
      padding:13px 0;
      border-top:1px solid rgba(209,250,229,.11);
    }
    .rule-line:first-child{border-top:0}
    .rule-line strong{color:var(--gold-2)}
    .rule-line span{color:rgba(209,250,229,.84)}
    .gold-panel{
      border-radius:var(--radius);
      padding:28px;
      color:#271800;
      background:linear-gradient(135deg,#fff3bf,var(--gold-2) 45%,var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .gold-panel p{color:#3d2a00;font-weight:650}
    .gold-panel .mini{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
      margin-top:20px;
    }
    .gold-panel .mini span{
      border-radius:14px;
      background:rgba(5,31,20,.14);
      padding:10px;
      font-weight:900;
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      counter-reset:step;
    }
    .step{
      position:relative;
      padding:24px;
      min-height:230px;
      border-radius:var(--radius);
      background:rgba(15,55,38,.74);
      border:1px solid rgba(252,211,77,.18);
      transition:.22s ease;
      overflow:hidden;
    }
    .step:hover{transform:translateY(-5px);border-color:rgba(252,211,77,.42);box-shadow:var(--shadow-gold)}
    .step:before{
      counter-increment:step;
      content:"0" counter(step);
      color:rgba(252,211,77,.22);
      font-weight:950;
      font-size:3.3rem;
      line-height:1;
      position:absolute;
      right:16px;
      top:14px;
    }
    .step h3{position:relative;font-size:1.18rem;margin:48px 0 10px}
    .step p{position:relative;margin-bottom:0}
    .data-section{
      background:
        linear-gradient(180deg, rgba(11,46,30,.36), rgba(5,31,20,.18)),
        radial-gradient(circle at 80% 20%, rgba(245,158,11,.12), transparent 34%);
      border-top:1px solid rgba(209,250,229,.08);
      border-bottom:1px solid rgba(209,250,229,.08);
    }
    .data-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .data-card{
      padding:26px;
      border-radius:var(--radius);
      background:rgba(5,31,20,.7);
      border:1px solid rgba(252,211,77,.2);
    }
    .data-card strong{
      display:block;
      color:var(--gold-2);
      font-size:2.4rem;
      line-height:1.05;
      letter-spacing:-.04em;
      margin-bottom:8px;
    }
    .data-card span{display:block;color:#fff;font-weight:850;margin-bottom:8px}
    .voice-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:24px;
      align-items:stretch;
    }
    .quote-main{
      border-radius:var(--radius);
      overflow:hidden;
      border:1px solid rgba(252,211,77,.2);
      min-height:440px;
      background:url('/assets/images/2a3bd067c4732eed.png') center/cover no-repeat;
      position:relative;
      box-shadow:var(--shadow);
    }
    .quote-main:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, transparent 20%, rgba(5,31,20,.88))}
    .quote-main div{position:absolute;left:24px;right:24px;bottom:22px;z-index:1}
    .quote-main p{font-size:1.1rem;color:#fff}
    .quote-list{display:grid;gap:14px}
    .quote{
      padding:22px;
      border-radius:20px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(209,250,229,.12);
    }
    .quote p{margin-bottom:12px}
    .quote strong{color:var(--gold-2)}
    .audience-wrap{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .audience{
      padding:24px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(18,61,43,.8), rgba(15,55,38,.52));
      border:1px solid rgba(209,250,229,.12);
    }
    .audience .icon{
      width:44px;height:44px;border-radius:14px;
      display:grid;place-items:center;
      color:#271800;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-size:1.3rem;
      margin-bottom:14px;
    }
    .audience h3{font-size:1.18rem;margin-bottom:9px}
    .channel-matrix{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .channel{
      padding:20px;
      border-radius:20px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(252,211,77,.18);
      transition:.2s ease;
    }
    .channel:hover{
      transform:translateY(-4px);
      border-color:rgba(252,211,77,.45);
      background:rgba(245,158,11,.09);
    }
    .channel.active{
      background:linear-gradient(155deg, rgba(252,211,77,.16), rgba(15,55,38,.72));
      border-color:rgba(252,211,77,.46);
      box-shadow:var(--shadow-gold);
    }
    .channel span{color:var(--gold-2);font-weight:950;font-size:.82rem}
    .channel h3{font-size:1.1rem;margin:8px 0}
    .channel p{font-size:.92rem;margin:0}
    .faq-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .faq-item{
      border-radius:20px;
      background:rgba(15,55,38,.66);
      border:1px solid rgba(209,250,229,.12);
      padding:22px;
    }
    .faq-item h3{font-size:1.08rem;margin-bottom:8px;color:#fff}
    .faq-item p{margin-bottom:0}
    .cta{
      padding:88px 0;
      background:
        linear-gradient(135deg, rgba(245,158,11,.16), rgba(220,38,38,.12)),
        linear-gradient(180deg, rgba(11,46,30,.72), rgba(5,31,20,.92));
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .cta-box{
      text-align:center;
      max-width:880px;
      margin:auto;
    }
    .cta-box h2{
      font-size:clamp(2rem,4.6vw,4rem);
      line-height:1.03;
      letter-spacing:-.055em;
      margin-bottom:16px;
    }
    .cta-box p{font-size:1.08rem;margin-inline:auto;max-width:720px}
    .cta-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:22px}
    .fab{
      position:fixed;
      left:16px;
      bottom:96px;
      z-index:50;
      width:56px;
      height:56px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--gold-2);
      background:
        radial-gradient(circle at 35% 24%, rgba(255,255,255,.18), transparent 18%),
        radial-gradient(circle, #1b1204 0%, #450a0a 45%, #0b0c0e 100%);
      border:2px solid var(--gold);
      box-shadow:0 6px 25px rgba(245,158,11,.35);
      opacity:.84;
      transition:.22s ease;
      animation:floating 3.2s ease-in-out infinite;
    }
    .fab:before{
      content:"";
      position:absolute;
      inset:5px;
      border-radius:50%;
      border:1px dashed rgba(252,211,77,.55);
    }
    .fab:after{
      content:"";
      position:absolute;
      top:5px;
      right:5px;
      width:13px;
      height:13px;
      border-radius:50%;
      background:#dc2626;
      ring:2px solid #fff;
      box-shadow:0 0 0 2px #fff, 0 0 16px rgba(220,38,38,.72);
    }
    .fab span{position:relative;z-index:1;font-size:1.35rem;transition:.45s ease}
    .fab:hover{transform:scale(1.1);opacity:1}
    .fab:hover span{transform:rotate(360deg)}
    .fab:active{transform:scale(.95) translateY(4px)}
    @keyframes floating{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
    .site-footer{
      padding:62px 0 28px;
      background:#03130c;
      border-top:1px solid rgba(252,211,77,.22);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .85fr .9fr;
      gap:32px;
      align-items:start;
    }
    .footer-brand strong{display:block;font-size:1.08rem;margin-bottom:12px;color:#fff}
    .footer-brand p{margin-bottom:0}
    .footer-block h3{font-size:1rem;margin-bottom:12px;color:var(--gold-2)}
    .footer-block ul{margin:0;padding:0;list-style:none;display:grid;gap:8px;color:rgba(209,250,229,.8)}
    .footer-block a{color:var(--gold-2)}
    .footer-block a:hover{text-decoration:underline}
    .license-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:22px 0;
      margin-top:32px;
      border-top:1px solid rgba(252,211,77,.18);
      border-bottom:1px solid rgba(252,211,77,.18);
    }
    .license-row span{
      border:1px solid rgba(252,211,77,.22);
      border-radius:999px;
      padding:7px 10px;
      color:rgba(248,250,252,.82);
      font-weight:800;
      font-size:.8rem;
      background:rgba(255,255,255,.035);
    }
    .copyright{
      padding-top:18px;
      color:rgba(209,250,229,.62);
      font-size:.84rem;
    }
    @media (max-width:1100px){
      .nav{grid-template-columns:1fr auto;gap:14px}
      .nav-links{
        grid-column:1 / -1;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:12px;
        scrollbar-width:none;
      }
      .nav-links::-webkit-scrollbar{display:none}
      .category-hero-grid,.split,.rules-grid,.voice-grid{grid-template-columns:1fr}
      .metric-strip,.steps,.channel-matrix{grid-template-columns:repeat(2,1fr)}
      .quote-main{min-height:360px}
    }
    @media (max-width:768px){
      .container{width:min(100% - 24px, var(--container))}
      section{padding:56px 0}
      .top-strip .container{align-items:flex-start;flex-direction:column;padding:8px 0;gap:8px}
      .strip-payments{justify-content:flex-start}
      .nav{min-height:72px}
      .brand-text strong{max-width:180px}
      .nav-actions{gap:6px}
      .btn{min-height:40px;padding:9px 13px;font-size:.88rem}
      .category-hero{padding-bottom:46px}
      .hero-band .container{align-items:flex-start;flex-direction:column;padding:14px 0}
      .hero-badges{justify-content:flex-start}
      .category-hero-grid{padding-top:40px}
      .hero-copy h1{font-size:clamp(2.1rem, 12vw, 3.3rem)}
      .section-head{grid-template-columns:1fr;align-items:start}
      .metric-strip,.data-grid,.audience-wrap,.faq-list{grid-template-columns:1fr}
      .rule-line{grid-template-columns:1fr;gap:4px}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .nav{grid-template-columns:1fr}
      .nav-actions{justify-content:space-between;width:100%}
      .nav-actions .btn{flex:1}
      .brand-text small{display:none}
      .metric-strip,.steps,.channel-matrix{grid-template-columns:1fr}
      .spec-panel,.story-card,.rule-board,.gold-panel{padding:20px}
      .cta-actions,.hero-actions{flex-direction:column}
      .cta-actions .btn,.hero-actions .btn{width:100%}
      .fab{left:14px;bottom:90px}
    }

/* roulang page: article */
:root{
      --bg:#051F14;
      --bg-2:#0B2E1E;
      --bg-3:#092719;
      --panel:#0f3726;
      --panel-2:#123d2b;
      --gold:#F59E0B;
      --gold-2:#FCD34D;
      --red:#DC2626;
      --text:#F8FAFC;
      --muted:#D1FAE5;
      --soft:#A3A375;
      --line:rgba(245,158,11,.28);
      --line-soft:rgba(209,250,229,.12);
      --shadow:0 24px 70px rgba(0,0,0,.34);
      --shadow-gold:0 12px 38px rgba(245,158,11,.22);
      --radius:24px;
      --radius-sm:14px;
      --container:1180px;
      --font:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 2%, rgba(252,211,77,.16), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(220,38,38,.12), transparent 30%),
        linear-gradient(180deg, #03170f 0%, var(--bg) 30%, #04140d 100%);
      line-height:1.62;
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    p,h1,h2,h3,h4,ul,ol,figure{margin-top:0}
    .container{width:min(100% - 32px, var(--container));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(18px);
      background:rgba(5,31,20,.82);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 36px rgba(0,0,0,.22);
    }
    .top-strip{
      border-bottom:1px solid rgba(252,211,77,.12);
      background:rgba(3,23,15,.45);
    }
    .top-strip .container{
      min-height:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .strip-note{
      color:rgba(254,243,199,.92);
      font-size:.82rem;
      font-weight:750;
      white-space:nowrap;
    }
    .strip-payments{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      flex-wrap:wrap;
    }
    .strip-payments span{
      color:var(--muted);
      border:1px solid rgba(209,250,229,.14);
      background:rgba(255,255,255,.04);
      padding:3px 8px;
      border-radius:999px;
      font-size:.76rem;
      font-weight:800;
    }
    .nav{
      min-height:76px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#241700;
      font-size:1.32rem;
      background:radial-gradient(circle at 30% 20%, #fff3bf, var(--gold-2) 38%, var(--gold) 70%, #8a4d05);
      box-shadow:0 0 0 4px rgba(245,158,11,.15), 0 10px 28px rgba(245,158,11,.28);
      border:1px solid rgba(255,255,255,.36);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
      line-height:1.12;
    }
    .brand-text strong{
      font-size:.98rem;
      max-width:220px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text small{color:var(--muted);font-weight:600;font-size:.72rem}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-width:0;
    }
    .nav-links a{
      padding:10px 12px;
      border-radius:999px;
      color:rgba(248,250,252,.78);
      font-weight:750;
      font-size:.9rem;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-links a:hover,.nav-links a:focus{
      color:#fff;
      background:rgba(245,158,11,.12);
      outline:none;
    }
    .nav-links a.active{
      color:#271800;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      white-space:nowrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:11px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(1px) scale(.98)}
    .btn:focus-visible{outline:3px solid rgba(252,211,77,.42);outline-offset:3px}
    .btn-primary{
      color:#201400;
      background:linear-gradient(135deg, var(--gold-2), var(--gold) 62%, #f97316);
      box-shadow:0 16px 38px rgba(245,158,11,.26);
    }
    .btn-primary:hover{box-shadow:0 20px 48px rgba(245,158,11,.36)}
    .btn-ghost{
      color:var(--gold-2);
      background:rgba(245,158,11,.07);
      border-color:rgba(252,211,77,.38);
    }
    .btn-ghost:hover{background:rgba(245,158,11,.14)}
    .btn-soft{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
    }
    .btn-soft:hover{border-color:rgba(252,211,77,.38);background:rgba(252,211,77,.09)}
    main{position:relative}
    section{padding:72px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 11px;
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(245,158,11,.1);
      border:1px solid rgba(245,158,11,.22);
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    .article-hero{
      padding:0;
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(5,31,20,.96) 0%, rgba(5,31,20,.82) 52%, rgba(5,31,20,.52) 100%),
        url('/assets/images/a584b8897be57f5e.jpg') center/cover no-repeat;
    }
    .hero-article-grid{
      min-height:560px;
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(320px,.78fr);
      gap:42px;
      align-items:center;
      padding:62px 0;
    }
    .hero-copy h1{
      margin:0 0 18px;
      font-size:clamp(2.1rem, 5vw, 4.8rem);
      line-height:1.05;
      letter-spacing:-.055em;
      max-width:850px;
    }
    .hero-copy .lead{
      color:rgba(209,250,229,.92);
      font-size:1.09rem;
      max-width:760px;
      margin-bottom:26px;
    }
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:0 0 24px;
    }
    .meta-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(248,250,252,.9);
      font-weight:800;
      font-size:.88rem;
    }
    .benefit-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:22px 0 28px;
    }
    .benefit-badges span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(245,158,11,.24);
      background:rgba(245,158,11,.09);
      color:#fff7d6;
      font-weight:850;
      font-size:.9rem;
    }
    .qualification{
      max-width:720px;
      padding:16px 18px;
      border-left:3px solid var(--gold);
      background:linear-gradient(90deg, rgba(245,158,11,.12), rgba(245,158,11,.03));
      color:rgba(254,243,199,.92);
      border-radius:0 var(--radius-sm) var(--radius-sm) 0;
      margin-bottom:28px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
    }
    .hero-visual{
      align-self:stretch;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .trial-card{
      width:100%;
      max-width:440px;
      border:1px solid rgba(252,211,77,.32);
      border-radius:var(--radius);
      background:
        linear-gradient(180deg, rgba(18,61,43,.88), rgba(5,31,20,.9)),
        radial-gradient(circle at top right, rgba(252,211,77,.16), transparent 42%);
      box-shadow:var(--shadow);
      overflow:hidden;
      transform:rotate(1.3deg);
    }
    .trial-card img{
      width:100%;
      aspect-ratio:4/3;
      object-fit:cover;
      border-bottom:1px solid rgba(252,211,77,.22);
    }
    .trial-card-body{padding:22px}
    .trial-card h2{
      margin:0 0 10px;
      font-size:1.45rem;
      line-height:1.18;
    }
    .trial-card p{
      color:var(--muted);
      margin-bottom:16px;
    }
    .mini-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
    }
    .mini-stats div{
      padding:12px 10px;
      border-radius:16px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
    }
    .mini-stats strong{
      display:block;
      color:var(--gold-2);
      font-size:1.1rem;
      line-height:1.1;
    }
    .mini-stats small{
      color:rgba(209,250,229,.82);
      font-weight:700;
    }
    .summary-section{
      padding:58px 0;
      background:linear-gradient(180deg, rgba(11,46,30,.72), rgba(5,31,20,.18));
      border-bottom:1px solid var(--line-soft);
    }
    .summary-grid{
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:34px;
      align-items:start;
    }
    .summary-text h2,
    .content-shell h2,
    .section-title{
      font-size:clamp(1.7rem, 3vw, 2.55rem);
      line-height:1.13;
      letter-spacing:-.035em;
      margin:0 0 14px;
    }
    .summary-text p{
      color:rgba(209,250,229,.88);
      font-size:1.03rem;
      max-width:780px;
    }
    .summary-panel{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:rgba(15,55,38,.76);
      box-shadow:var(--shadow);
      padding:22px;
    }
    .summary-panel h3{
      margin:0 0 15px;
      font-size:1.1rem;
    }
    .check-list{
      display:grid;
      gap:12px;
      padding:0;
      list-style:none;
      margin:0;
    }
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:rgba(248,250,252,.86);
    }
    .check-list li::before{
      content:"✓";
      width:23px;
      height:23px;
      border-radius:50%;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      color:#221400;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-weight:950;
      font-size:.82rem;
      margin-top:2px;
    }
    .article-main{
      padding:72px 0;
    }
    .article-layout{
      display:grid;
      grid-template-columns:minmax(0, 1fr) 320px;
      gap:38px;
      align-items:start;
    }
    .content-shell{
      border:1px solid rgba(245,158,11,.22);
      border-radius:var(--radius);
      background:rgba(8,38,25,.78);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .content-head{
      padding:26px 30px;
      border-bottom:1px solid var(--line-soft);
      background:linear-gradient(90deg, rgba(245,158,11,.12), rgba(209,250,229,.04));
    }
    .content-head p{
      margin:0;
      color:rgba(209,250,229,.86);
    }
    .article-body{
      padding:30px;
      color:rgba(248,250,252,.9);
      font-size:1.04rem;
    }
    .article-body h2{
      font-size:1.72rem;
      line-height:1.22;
      margin:34px 0 13px;
      color:#fff;
      letter-spacing:-.02em;
    }
    .article-body h2:first-child{margin-top:0}
    .article-body h3{
      font-size:1.28rem;
      margin:26px 0 10px;
      color:#fff7d6;
    }
    .article-body p{margin:0 0 18px}
    .article-body a{
      color:var(--gold-2);
      font-weight:850;
      border-bottom:1px solid rgba(252,211,77,.4);
    }
    .article-body a:hover{
      color:#fff0a7;
      border-bottom-color:#fff0a7;
    }
    .article-body ul,.article-body ol{
      padding-left:22px;
      margin:0 0 20px;
    }
    .article-body li{margin:8px 0}
    .article-body blockquote{
      margin:26px 0;
      padding:18px 20px;
      border-left:4px solid var(--gold);
      background:rgba(245,158,11,.09);
      border-radius:0 16px 16px 0;
      color:#fff7d6;
    }
    .article-body img{
      border-radius:18px;
      border:1px solid rgba(252,211,77,.2);
      margin:24px 0;
    }
    .article-body table{
      width:100%;
      border-collapse:collapse;
      margin:24px 0;
      overflow:hidden;
      border-radius:16px;
      display:block;
    }
    .article-body th,.article-body td{
      padding:13px 14px;
      border:1px solid rgba(209,250,229,.12);
      text-align:left;
    }
    .article-body th{
      background:rgba(245,158,11,.13);
      color:#fff7d6;
    }
    .not-found{
      padding:34px;
      text-align:left;
    }
    .not-found h2{
      font-size:2rem;
      margin-bottom:12px;
    }
    .sidebar{
      position:sticky;
      top:128px;
      display:grid;
      gap:16px;
    }
    .side-card{
      border:1px solid rgba(245,158,11,.24);
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(18,61,43,.86), rgba(9,39,25,.86));
      padding:20px;
      box-shadow:0 18px 50px rgba(0,0,0,.25);
    }
    .side-card h3{
      margin:0 0 12px;
      font-size:1.08rem;
    }
    .side-card p{
      color:rgba(209,250,229,.86);
      margin-bottom:14px;
    }
    .payment-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .payment-badges span{
      padding:7px 9px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(209,250,229,.12);
      color:#fff;
      font-weight:850;
      font-size:.82rem;
    }
    .param-section{
      background:
        radial-gradient(circle at 85% 20%, rgba(252,211,77,.12), transparent 34%),
        linear-gradient(180deg, rgba(4,20,13,.12), rgba(11,46,30,.58));
      border-top:1px solid var(--line-soft);
      border-bottom:1px solid var(--line-soft);
    }
    .split-head{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(280px,420px);
      gap:26px;
      align-items:end;
      margin-bottom:28px;
    }
    .split-head p{
      color:rgba(209,250,229,.86);
      margin:0;
    }
    .param-table{
      width:100%;
      overflow:hidden;
      border-radius:var(--radius);
      border:1px solid rgba(252,211,77,.22);
      background:rgba(15,55,38,.72);
      box-shadow:var(--shadow);
    }
    .param-row{
      display:grid;
      grid-template-columns:260px 1fr;
      border-bottom:1px solid rgba(209,250,229,.12);
    }
    .param-row:last-child{border-bottom:none}
    .param-row strong{
      padding:17px 20px;
      background:rgba(245,158,11,.1);
      color:#fff7d6;
      border-right:1px solid rgba(209,250,229,.12);
    }
    .param-row span{
      padding:17px 20px;
      color:rgba(248,250,252,.88);
    }
    .gallery-section{
      background:rgba(3,23,15,.28);
    }
    .gallery-grid{
      display:grid;
      grid-template-columns:.88fr 1.12fr;
      gap:34px;
      align-items:center;
    }
    .gallery-copy p{
      color:rgba(209,250,229,.86);
      max-width:520px;
    }
    .screenshot-rail{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:14px;
    }
    .shot{
      position:relative;
      min-height:240px;
      overflow:hidden;
      border-radius:var(--radius);
      border:1px solid rgba(252,211,77,.24);
      background:rgba(255,255,255,.04);
      box-shadow:0 22px 62px rgba(0,0,0,.28);
    }
    .shot:first-child{min-height:410px}
    .shot img{
      width:100%;
      height:100%;
      object-fit:cover;
      position:absolute;
      inset:0;
      transition:transform .45s ease;
    }
    .shot:hover img{transform:scale(1.06)}
    .shot::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent 45%, rgba(3,23,15,.74));
    }
    .shot span{
      position:absolute;
      left:18px;
      bottom:16px;
      z-index:2;
      font-weight:900;
      color:#fff7d6;
      text-shadow:0 2px 12px rgba(0,0,0,.48);
    }
    .shot-stack{
      display:grid;
      gap:14px;
    }
    .criteria-section{
      padding-top:36px;
    }
    .criteria-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .criteria-card{
      border:1px solid rgba(245,158,11,.22);
      border-radius:22px;
      padding:20px;
      background:rgba(15,55,38,.66);
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .criteria-card:hover{
      transform:translateY(-5px);
      border-color:rgba(252,211,77,.42);
      background:rgba(18,61,43,.82);
    }
    .criteria-card .icon{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      color:#231500;
      font-weight:950;
      margin-bottom:14px;
      box-shadow:var(--shadow-gold);
    }
    .criteria-card h3{
      font-size:1.06rem;
      margin:0 0 8px;
    }
    .criteria-card p{
      color:rgba(209,250,229,.82);
      margin:0;
      font-size:.94rem;
    }
    .steps-section{
      background:linear-gradient(180deg, rgba(11,46,30,.42), rgba(5,31,20,.08));
    }
    .steps{
      display:grid;
      gap:14px;
      counter-reset:step;
    }
    .step{
      counter-increment:step;
      display:grid;
      grid-template-columns:88px 1fr;
      gap:18px;
      align-items:start;
      padding:20px;
      border:1px solid rgba(209,250,229,.12);
      border-radius:22px;
      background:rgba(255,255,255,.045);
    }
    .step::before{
      content:"0" counter(step);
      width:66px;
      height:66px;
      border-radius:22px;
      display:grid;
      place-items:center;
      font-weight:950;
      font-size:1.25rem;
      color:#221400;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .step h3{
      margin:0 0 6px;
      font-size:1.16rem;
    }
    .step p{
      color:rgba(209,250,229,.84);
      margin:0;
    }
    .channel-section{
      background:
        linear-gradient(180deg, rgba(5,31,20,.24), rgba(11,46,30,.44)),
        url('/assets/images/e0a6e246030337d5.jpg') center/cover fixed no-repeat;
      border-top:1px solid var(--line-soft);
      border-bottom:1px solid var(--line-soft);
    }
    .channel-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .channel-card{
      min-height:190px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:20px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(15,55,38,.9), rgba(5,31,20,.88));
      border:1px solid rgba(252,211,77,.24);
      box-shadow:0 20px 60px rgba(0,0,0,.28);
      transition:transform .2s ease, border-color .2s ease;
    }
    .channel-card:hover{
      transform:translateY(-5px);
      border-color:rgba(252,211,77,.48);
    }
    .channel-card small{
      color:var(--gold-2);
      font-weight:950;
      letter-spacing:.04em;
      text-transform:uppercase;
    }
    .channel-card h3{
      margin:12px 0 8px;
      font-size:1.18rem;
    }
    .channel-card p{
      color:rgba(209,250,229,.82);
      margin:0 0 16px;
      font-size:.94rem;
    }
    .channel-card .link{
      color:#fff7d6;
      font-weight:900;
    }
    .testimonial-section{
      padding-top:64px;
    }
    .proof-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:16px;
    }
    .proof-card{
      padding:22px;
      border-radius:var(--radius);
      border:1px solid rgba(209,250,229,.12);
      background:rgba(255,255,255,.045);
    }
    .proof-card p{
      color:rgba(248,250,252,.88);
      margin-bottom:16px;
    }
    .proof-card strong{
      color:#fff7d6;
    }
    .proof-card small{
      display:block;
      color:rgba(209,250,229,.72);
      font-weight:800;
      margin-top:3px;
    }
    .metric-strip{
      padding:42px 0;
      background:rgba(252,211,77,.06);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .metrics{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .metric{
      padding:20px;
      border-radius:20px;
      background:rgba(5,31,20,.58);
      border:1px solid rgba(252,211,77,.2);
    }
    .metric strong{
      display:block;
      color:var(--gold-2);
      font-size:1.65rem;
      line-height:1.1;
      margin-bottom:5px;
    }
    .metric span{
      color:rgba(209,250,229,.82);
      font-weight:750;
    }
    .cta-section{
      padding:76px 0;
      text-align:center;
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      padding:44px 34px;
      border-radius:calc(var(--radius) + 6px);
      border:1px solid rgba(252,211,77,.34);
      background:
        linear-gradient(135deg, rgba(15,55,38,.94), rgba(5,31,20,.92)),
        radial-gradient(circle at 50% 0%, rgba(252,211,77,.2), transparent 48%);
      box-shadow:var(--shadow);
    }
    .cta-box h2{
      font-size:clamp(1.9rem, 3.6vw, 3.2rem);
      line-height:1.12;
      margin:0 auto 14px;
      max-width:780px;
      letter-spacing:-.04em;
    }
    .cta-box p{
      color:rgba(209,250,229,.88);
      max-width:760px;
      margin:0 auto 26px;
    }
    .download-bar{
      display:flex;
      justify-content:center;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      padding:14px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      width:fit-content;
      margin:0 auto;
    }
    .site-footer{
      padding:58px 0 30px;
      background:
        linear-gradient(180deg, rgba(3,23,15,.9), rgba(3,14,9,1)),
        radial-gradient(circle at top left, rgba(245,158,11,.08), transparent 40%);
      border-top:1px solid var(--line);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr;
      gap:28px;
      padding-bottom:28px;
    }
    .footer-brand strong{
      display:block;
      font-size:1.15rem;
      line-height:1.35;
      margin-bottom:10px;
      color:#fff7d6;
    }
    .footer-brand p,
    .footer-block li{
      color:rgba(209,250,229,.78);
    }
    .footer-block h3{
      margin:0 0 12px;
      color:#fff;
      font-size:1rem;
    }
    .footer-block ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .footer-block a{
      color:var(--gold-2);
      font-weight:850;
    }
    .footer-block a:hover{text-decoration:underline}
    .license-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:18px 0;
      border-top:1px solid rgba(252,211,77,.18);
      border-bottom:1px solid rgba(252,211,77,.18);
    }
    .license-row span{
      padding:8px 10px;
      border-radius:999px;
      background:rgba(252,211,77,.08);
      border:1px solid rgba(252,211,77,.18);
      color:#fff7d6;
      font-weight:850;
      font-size:.82rem;
    }
    .copyright{
      padding-top:18px;
      color:rgba(209,250,229,.62);
      font-size:.88rem;
    }
    .fab{
      position:fixed;
      left:16px;
      bottom:96px;
      z-index:50;
      width:56px;
      height:56px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.28), transparent 22%),
        radial-gradient(circle at center, #3a2503 0%, #120d08 55%, #050505 100%);
      border:2px solid var(--gold);
      box-shadow:0 6px 25px rgba(245,158,11,.35), inset 0 0 0 4px rgba(252,211,77,.12);
      color:var(--gold-2);
      opacity:.86;
      transition:transform .2s ease, opacity .2s ease, box-shadow .2s ease;
      animation:floating 3.4s ease-in-out infinite;
    }
    .fab::after{
      content:"";
      position:absolute;
      top:7px;
      right:7px;
      width:13px;
      height:13px;
      border-radius:50%;
      background:var(--red);
      ring:2px solid #fff;
      box-shadow:0 0 0 2px #fff, 0 0 15px rgba(220,38,38,.75);
    }
    .fab span{
      font-size:1.45rem;
      transition:transform .35s ease;
    }
    .fab:hover{
      transform:scale(1.1);
      opacity:1;
      box-shadow:0 10px 34px rgba(245,158,11,.48);
    }
    .fab:hover span{transform:rotate(360deg)}
    .fab:active{transform:scale(.95) translateY(4px)}
    @keyframes floating{
      0%,100%{translate:0 0}
      50%{translate:0 -7px}
    }
    @media (max-width:1100px){
      .nav{
        grid-template-columns:1fr auto;
        gap:14px;
      }
      .nav-links{
        grid-column:1 / -1;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:12px;
        scrollbar-width:none;
      }
      .nav-links::-webkit-scrollbar{display:none}
      .hero-article-grid,
      .summary-grid,
      .article-layout,
      .gallery-grid{
        grid-template-columns:1fr;
      }
      .hero-visual{justify-content:flex-start}
      .sidebar{position:static;grid-template-columns:1fr 1fr}
      .criteria-grid,.channel-grid,.metrics{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .top-strip .container{
        align-items:flex-start;
        flex-direction:column;
        padding:8px 0;
        gap:8px;
      }
      .strip-note{white-space:normal}
      .nav{
        min-height:auto;
        padding:12px 0;
        grid-template-columns:1fr;
      }
      .brand-text strong{max-width:calc(100vw - 110px)}
      .nav-actions{
        justify-content:flex-start;
        width:100%;
      }
      .nav-actions .btn{
        flex:1 1 0;
        padding-inline:12px;
      }
      section{padding:54px 0}
      .hero-article-grid{
        min-height:auto;
        padding:44px 0;
        gap:24px;
      }
      .hero-copy h1{font-size:clamp(2rem, 12vw, 3.05rem)}
      .trial-card{transform:none}
      .sidebar{grid-template-columns:1fr}
      .param-row{grid-template-columns:1fr}
      .param-row strong{border-right:none;border-bottom:1px solid rgba(209,250,229,.12)}
      .screenshot-rail{grid-template-columns:1fr}
      .shot:first-child{min-height:300px}
      .criteria-grid,.channel-grid,.proof-grid,.metrics,.footer-grid{grid-template-columns:1fr}
      .split-head{grid-template-columns:1fr}
      .step{grid-template-columns:1fr}
      .download-bar{border-radius:22px}
    }
    @media (max-width:520px){
      .container{width:min(100% - 24px, var(--container))}
      .btn{min-height:42px;font-size:.9rem}
      .article-body,.content-head{padding:22px}
      .hero-actions .btn{width:100%}
      .mini-stats{grid-template-columns:1fr}
      .meta-pill{width:100%;justify-content:flex-start}
      .cta-box{padding:32px 20px}
      .fab{left:12px;bottom:86px}
    }

/* roulang page: category3 */
:root{
      --bg:#051F14;
      --bg-2:#0B2E1E;
      --bg-3:#092719;
      --panel:#0f3726;
      --panel-2:#123d2b;
      --gold:#F59E0B;
      --gold-2:#FCD34D;
      --red:#DC2626;
      --text:#F8FAFC;
      --muted:#D1FAE5;
      --soft:#A3A375;
      --line:rgba(245,158,11,.28);
      --line-soft:rgba(209,250,229,.12);
      --shadow:0 24px 70px rgba(0,0,0,.34);
      --shadow-gold:0 12px 38px rgba(245,158,11,.22);
      --radius:24px;
      --radius-sm:14px;
      --container:1180px;
      --font:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 2%, rgba(252,211,77,.16), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(220,38,38,.12), transparent 30%),
        linear-gradient(180deg, #03170f 0%, var(--bg) 30%, #04140d 100%);
      line-height:1.62;
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(252,211,77,.34);color:#fff}
    .container{width:min(100% - 32px, var(--container));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(18px);
      background:rgba(5,31,20,.82);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 36px rgba(0,0,0,.22);
    }
    .top-strip{
      border-bottom:1px solid rgba(209,250,229,.08);
      background:rgba(3,23,15,.48);
    }
    .top-strip .container{
      min-height:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .strip-note{
      color:rgba(248,250,252,.82);
      font-size:.82rem;
      font-weight:720;
      white-space:nowrap;
    }
    .strip-payments{
      display:flex;
      align-items:center;
      gap:7px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .strip-payments span{
      color:#2b1a00;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      border-radius:999px;
      padding:3px 8px;
      font-size:.72rem;
      font-weight:900;
      box-shadow:0 5px 14px rgba(245,158,11,.14);
    }
    .nav{
      min-height:76px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#241700;
      font-size:1.32rem;
      background:radial-gradient(circle at 30% 20%, #fff3bf, var(--gold-2) 38%, var(--gold) 70%, #8a4d05);
      box-shadow:0 0 0 4px rgba(245,158,11,.15), 0 10px 28px rgba(245,158,11,.28);
      border:1px solid rgba(255,255,255,.36);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
      line-height:1.12;
    }
    .brand-text strong{
      font-size:.98rem;
      max-width:220px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text small{color:var(--muted);font-weight:600;font-size:.72rem}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-width:0;
    }
    .nav-links a{
      padding:10px 12px;
      border-radius:999px;
      color:rgba(248,250,252,.78);
      font-weight:750;
      font-size:.9rem;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-links a:hover,.nav-links a:focus{
      color:#fff;
      background:rgba(245,158,11,.12);
      outline:none;
    }
    .nav-links a.active{
      color:#271800;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      white-space:nowrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:11px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(1px) scale(.98)}
    .btn:focus-visible{outline:3px solid rgba(252,211,77,.42);outline-offset:3px}
    .btn-primary{
      color:#201400;
      background:linear-gradient(135deg, var(--gold-2), var(--gold) 62%, #f97316);
      box-shadow:0 16px 38px rgba(245,158,11,.26);
    }
    .btn-primary:hover{box-shadow:0 20px 48px rgba(245,158,11,.36)}
    .btn-ghost{
      color:var(--gold-2);
      background:rgba(245,158,11,.07);
      border-color:rgba(252,211,77,.38);
    }
    .btn-ghost:hover{background:rgba(245,158,11,.14)}
    .btn-soft{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
    }
    .btn-soft:hover{border-color:rgba(252,211,77,.38);background:rgba(252,211,77,.09)}
    main{position:relative}
    section{padding:76px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 11px;
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(245,158,11,.1);
      border:1px solid rgba(245,158,11,.22);
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    .section-head{
      display:grid;
      grid-template-columns:minmax(0, 1fr) minmax(280px, 420px);
      gap:26px;
      align-items:end;
      margin-bottom:30px;
    }
    .section-head h2,
    .split-copy h2,
    .plain-head h2{
      margin:0;
      font-size:clamp(1.75rem, 3vw, 2.75rem);
      line-height:1.14;
      letter-spacing:-.04em;
    }
    .section-head p,
    .plain-head p,
    .split-copy p{
      margin:0;
      color:rgba(209,250,229,.84);
      font-size:1rem;
    }
    .category-hero{
      padding:42px 0 64px;
      min-height:560px;
      display:flex;
      align-items:stretch;
      background:
        linear-gradient(180deg, rgba(5,31,20,.18), rgba(5,31,20,.96)),
        url('/assets/images/a584b8897be57f5e.jpg') center/cover no-repeat;
      border-bottom:1px solid var(--line);
    }
    .hero-shell{
      display:grid;
      grid-template-columns:minmax(0, .98fr) minmax(340px, .86fr);
      gap:38px;
      align-items:center;
      width:100%;
    }
    .hero-labels{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }
    .hero-labels span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(5,31,20,.72);
      border:1px solid rgba(252,211,77,.25);
      color:var(--gold-2);
      font-weight:850;
      font-size:.84rem;
    }
    h1{
      margin:0;
      max-width:880px;
      font-size:clamp(2.25rem, 6vw, 5rem);
      line-height:.98;
      letter-spacing:-.075em;
    }
    .hero-copy p{
      margin:20px 0 0;
      max-width:720px;
      color:rgba(248,250,252,.86);
      font-size:clamp(1rem, 2vw, 1.18rem);
    }
    .hero-actions{
      margin-top:28px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .status-board{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:linear-gradient(145deg, rgba(15,55,38,.86), rgba(5,31,20,.78));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .status-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:18px;
      border-bottom:1px solid rgba(245,158,11,.2);
      background:rgba(255,255,255,.035);
    }
    .live-dot{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-weight:850;
      font-size:.88rem;
    }
    .live-dot::before{
      content:"";
      width:10px;
      height:10px;
      border-radius:50%;
      background:#22c55e;
      box-shadow:0 0 0 7px rgba(34,197,94,.12);
    }
    .status-chip{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(220,38,38,.18);
      border:1px solid rgba(220,38,38,.36);
      color:#fecaca;
      font-size:.78rem;
      font-weight:900;
    }
    .icon-matrix{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      padding:18px;
    }
    .matrix-card{
      min-height:104px;
      border-radius:18px;
      border:1px solid rgba(252,211,77,.18);
      background:
        radial-gradient(circle at 30% 20%, rgba(252,211,77,.18), transparent 42%),
        rgba(255,255,255,.045);
      padding:14px;
      transition:.24s ease;
    }
    .matrix-card:hover{
      transform:translateY(-5px);
      border-color:rgba(252,211,77,.46);
      box-shadow:0 16px 36px rgba(245,158,11,.14);
    }
    .matrix-card strong{
      display:block;
      font-size:1.6rem;
      line-height:1;
      margin-bottom:8px;
    }
    .matrix-card span{
      display:block;
      color:rgba(209,250,229,.85);
      font-size:.82rem;
      font-weight:750;
    }
    .status-bar{
      padding:0 18px 18px;
    }
    .bar-row{
      display:flex;
      justify-content:space-between;
      gap:12px;
      color:rgba(209,250,229,.86);
      font-size:.86rem;
      font-weight:750;
      margin-bottom:8px;
    }
    .bar{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
    }
    .bar span{
      display:block;
      width:78%;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--gold), var(--gold-2));
      box-shadow:0 0 16px rgba(252,211,77,.32);
    }
    .problem-grid{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(320px,1.1fr);
      gap:34px;
      align-items:start;
    }
    .plain-head{
      position:sticky;
      top:122px;
      align-self:start;
    }
    .risk-list{
      display:grid;
      gap:14px;
    }
    .risk-item{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.045);
      border:1px solid var(--line-soft);
      transition:.22s ease;
    }
    .risk-item:hover{
      border-color:rgba(252,211,77,.28);
      background:rgba(245,158,11,.07);
      transform:translateX(4px);
    }
    .risk-icon{
      width:54px;
      height:54px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#271800;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-size:1.35rem;
      box-shadow:var(--shadow-gold);
    }
    .risk-item h3,
    .solution-point h3,
    .step h3,
    .quote-card h3,
    .audience-card h3,
    .post-card h3{
      margin:0 0 6px;
      font-size:1.08rem;
      line-height:1.28;
    }
    .risk-item p,
    .solution-point p,
    .step p,
    .quote-card p,
    .audience-card p,
    .post-card p{
      margin:0;
      color:rgba(209,250,229,.78);
    }
    .solution-section{
      background:
        linear-gradient(180deg, rgba(9,39,25,.62), rgba(5,31,20,.18));
      border-block:1px solid rgba(245,158,11,.12);
    }
    .split{
      display:grid;
      grid-template-columns:minmax(320px,.92fr) minmax(0,1.08fr);
      gap:38px;
      align-items:center;
    }
    .image-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius);
      border:1px solid rgba(252,211,77,.26);
      box-shadow:var(--shadow);
      background:var(--panel);
      min-height:420px;
    }
    .image-panel img{
      width:100%;
      height:100%;
      min-height:420px;
      object-fit:cover;
      filter:saturate(1.05) contrast(1.04);
    }
    .image-panel::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent 35%, rgba(5,31,20,.88));
    }
    .image-caption{
      position:absolute;
      left:18px;
      right:18px;
      bottom:18px;
      z-index:2;
      padding:16px;
      border-radius:18px;
      background:rgba(5,31,20,.72);
      border:1px solid rgba(252,211,77,.24);
      backdrop-filter:blur(12px);
    }
    .image-caption strong{display:block;font-size:1.05rem;margin-bottom:3px}
    .image-caption span{color:rgba(209,250,229,.82);font-size:.92rem}
    .solution-points{
      display:grid;
      gap:14px;
      margin-top:24px;
    }
    .solution-point{
      padding:18px 0 18px 22px;
      border-left:3px solid rgba(252,211,77,.62);
      background:linear-gradient(90deg, rgba(245,158,11,.08), transparent);
    }
    .steps-wrap{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      counter-reset:step;
    }
    .step{
      position:relative;
      padding:22px;
      border-radius:22px;
      background:linear-gradient(145deg, rgba(18,61,43,.9), rgba(15,55,38,.62));
      border:1px solid rgba(252,211,77,.17);
      min-height:230px;
      overflow:hidden;
    }
    .step::before{
      counter-increment:step;
      content:"0" counter(step);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:46px;
      height:46px;
      border-radius:14px;
      color:#2a1900;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-weight:950;
      margin-bottom:18px;
      box-shadow:var(--shadow-gold);
    }
    .step::after{
      content:"21";
      position:absolute;
      right:-10px;
      bottom:-22px;
      font-size:5.6rem;
      font-weight:950;
      color:rgba(252,211,77,.06);
      letter-spacing:-.08em;
    }
    .data-band{
      padding:0;
    }
    .data-shell{
      border-radius:calc(var(--radius) + 6px);
      border:1px solid rgba(252,211,77,.22);
      background:
        linear-gradient(135deg, rgba(245,158,11,.16), rgba(220,38,38,.08) 36%, rgba(15,55,38,.8)),
        url('/assets/images/e0a6e246030337d5.jpg') center/cover no-repeat;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .data-overlay{
      padding:36px;
      background:linear-gradient(90deg, rgba(5,31,20,.93), rgba(5,31,20,.64));
      display:grid;
      grid-template-columns:minmax(0, .9fr) minmax(320px, 1.1fr);
      gap:28px;
      align-items:center;
    }
    .data-overlay h2{
      margin:0 0 12px;
      font-size:clamp(1.7rem,3vw,2.65rem);
      line-height:1.14;
      letter-spacing:-.04em;
    }
    .data-overlay p{margin:0;color:rgba(209,250,229,.84)}
    .data-cards{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .data-card{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(252,211,77,.2);
      backdrop-filter:blur(10px);
    }
    .data-card strong{
      display:block;
      font-size:1.65rem;
      line-height:1;
      color:var(--gold-2);
      letter-spacing:-.04em;
      margin-bottom:8px;
    }
    .data-card span{
      display:block;
      color:rgba(248,250,252,.82);
      font-size:.88rem;
      font-weight:700;
    }
    .quotes-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
    }
    .quote-card{
      padding:24px;
      border-radius:24px;
      background:rgba(255,255,255,.045);
      border:1px solid var(--line-soft);
    }
    .quote-card.featured{
      background:
        radial-gradient(circle at 15% 12%, rgba(252,211,77,.16), transparent 34%),
        linear-gradient(145deg, rgba(18,61,43,.9), rgba(6,46,32,.78));
      border-color:rgba(252,211,77,.26);
    }
    .quote-meta{
      display:flex;
      gap:10px;
      align-items:center;
      margin-top:18px;
      color:var(--gold-2);
      font-weight:900;
      font-size:.86rem;
    }
    .quote-meta span{
      color:rgba(209,250,229,.72);
      font-weight:700;
    }
    .audience-section{
      background:linear-gradient(180deg, rgba(9,39,25,.36), rgba(3,20,13,.22));
      border-block:1px solid rgba(209,250,229,.08);
    }
    .audience-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:26px;
      align-items:start;
    }
    .audience-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .audience-card{
      padding:22px;
      border-radius:22px;
      background:rgba(255,255,255,.045);
      border:1px solid var(--line-soft);
      transition:.22s ease;
    }
    .audience-card:hover{
      transform:translateY(-4px);
      border-color:rgba(252,211,77,.3);
    }
    .side-note{
      padding:24px;
      border-radius:var(--radius);
      background:linear-gradient(145deg, rgba(252,211,77,.16), rgba(18,61,43,.78));
      border:1px solid rgba(252,211,77,.26);
      box-shadow:var(--shadow-gold);
    }
    .side-note h3{margin:0 0 10px;font-size:1.35rem}
    .side-note p{margin:0;color:rgba(248,250,252,.84)}
    .side-note ul{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .side-note li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(209,250,229,.86);
      font-weight:720;
    }
    .side-note li::before{
      content:"✓";
      color:#241700;
      width:22px;
      height:22px;
      flex:0 0 22px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-size:.82rem;
      font-weight:950;
      margin-top:2px;
    }
    .news-section{
      background:
        radial-gradient(circle at 86% 14%, rgba(252,211,77,.08), transparent 32%),
        rgba(3,20,13,.3);
    }
    .posts-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .post-card{
      display:flex;
      flex-direction:column;
      min-height:100%;
      border-radius:22px;
      overflow:hidden;
      background:rgba(255,255,255,.045);
      border:1px solid var(--line-soft);
      transition:.24s ease;
    }
    .post-card:hover{
      transform:translateY(-6px);
      border-color:rgba(252,211,77,.34);
      box-shadow:0 18px 46px rgba(0,0,0,.24);
    }
    .post-thumb{
      height:160px;
      background:
        linear-gradient(135deg, rgba(5,31,20,.1), rgba(5,31,20,.7)),
        url('/assets/images/2a3bd067c4732eed.png') center/cover no-repeat;
      border-bottom:1px solid rgba(252,211,77,.16);
    }
    .post-body{
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }
    .post-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      color:var(--gold-2);
      font-size:.78rem;
      font-weight:850;
    }
    .post-card h3{font-size:1rem;margin:0}
    .post-card p{font-size:.92rem}
    .post-link{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--gold-2);
      font-weight:900;
      font-size:.9rem;
    }
    .empty-news{
      grid-column:1/-1;
      padding:26px;
      border-radius:22px;
      border:1px dashed rgba(252,211,77,.34);
      color:rgba(209,250,229,.82);
      background:rgba(255,255,255,.035);
    }
    .metrics-strip{
      padding:54px 0;
    }
    .metrics-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      padding:14px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.045);
      border:1px solid var(--line-soft);
    }
    .metric{
      padding:18px;
      border-radius:18px;
      background:rgba(5,31,20,.56);
      border:1px solid rgba(252,211,77,.12);
    }
    .metric strong{
      display:block;
      color:var(--gold-2);
      font-size:1.55rem;
      letter-spacing:-.05em;
      line-height:1;
      margin-bottom:8px;
    }
    .metric span{
      color:rgba(209,250,229,.78);
      font-size:.86rem;
      font-weight:760;
    }
    .cta-section{
      padding:72px 0 86px;
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      border:1px solid rgba(252,211,77,.28);
      background:
        linear-gradient(135deg, rgba(5,31,20,.92), rgba(11,46,30,.78)),
        url('/assets/images/21893d578bc98450.jpg') center/cover no-repeat;
      box-shadow:var(--shadow);
      padding:42px;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:28px;
      align-items:center;
    }
    .cta-box::before{
      content:"";
      position:absolute;
      inset:-40% auto auto -10%;
      width:360px;
      height:360px;
      border-radius:50%;
      background:rgba(252,211,77,.12);
      filter:blur(4px);
    }
    .cta-content{position:relative;z-index:1}
    .cta-content h2{
      margin:0 0 12px;
      font-size:clamp(1.8rem,3.6vw,3.1rem);
      line-height:1.06;
      letter-spacing:-.055em;
    }
    .cta-content p{
      margin:0;
      max-width:720px;
      color:rgba(248,250,252,.84);
    }
    .cta-actions{
      position:relative;
      z-index:1;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .fab{
      position:fixed;
      left:16px;
      bottom:96px;
      z-index:50;
      width:56px;
      height:56px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--gold-2);
      background:
        radial-gradient(circle at 32% 25%, rgba(252,211,77,.22), transparent 28%),
        linear-gradient(145deg, #110b05, #450a0a 48%, #0a140d);
      border:2px solid var(--gold);
      box-shadow:0 6px 25px rgba(245,158,11,.35), inset 0 0 0 3px rgba(252,211,77,.1);
      opacity:.82;
      transition:.24s ease;
      animation:floatingFab 2.6s ease-in-out infinite;
    }
    .fab::before{
      content:"";
      position:absolute;
      inset:6px;
      border-radius:inherit;
      border:1px dashed rgba(252,211,77,.42);
    }
    .fab-icon{
      position:relative;
      z-index:1;
      font-size:1.35rem;
      transition:transform .45s ease;
    }
    .fab:hover{
      opacity:1;
      transform:scale(1.1);
      box-shadow:0 8px 34px rgba(245,158,11,.48);
    }
    .fab:hover .fab-icon{transform:rotate(360deg)}
    .fab:active{transform:scale(.95) translateY(4px)}
    .fab-badge{
      position:absolute;
      right:1px;
      top:1px;
      width:14px;
      height:14px;
      border-radius:50%;
      background:var(--red);
      ring:2px solid #fff;
      box-shadow:0 0 0 2px #fff, 0 0 18px rgba(220,38,38,.75);
    }
    @keyframes floatingFab{
      0%,100%{translate:0 0}
      50%{translate:0 -7px}
    }
    .site-footer{
      padding:54px 0 26px;
      background:
        linear-gradient(180deg, rgba(3,20,13,.35), rgba(2,11,7,.98)),
        radial-gradient(circle at 12% 0%, rgba(252,211,77,.1), transparent 34%);
      border-top:1px solid var(--line);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .85fr .85fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand strong{
      display:block;
      max-width:640px;
      font-size:1.15rem;
      line-height:1.35;
    }
    .footer-brand p{
      margin:12px 0 0;
      color:rgba(209,250,229,.74);
      max-width:620px;
    }
    .footer-block h3{
      margin:0 0 12px;
      font-size:1rem;
      color:var(--gold-2);
    }
    .footer-block ul{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
      color:rgba(209,250,229,.76);
    }
    .footer-block a:hover{color:var(--gold-2)}
    .license-row{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(252,211,77,.18);
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .license-row span{
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(252,211,77,.16);
      color:rgba(248,250,252,.78);
      font-size:.82rem;
      font-weight:800;
    }
    .copyright{
      margin-top:20px;
      color:rgba(209,250,229,.62);
      font-size:.86rem;
    }
    @media (max-width:1080px){
      .nav{
        grid-template-columns:1fr auto;
        gap:14px;
        padding:12px 0;
      }
      .nav-links{
        grid-column:1/-1;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:6px;
        scrollbar-width:thin;
      }
      .nav-actions{grid-column:2;grid-row:1}
      .hero-shell,.problem-grid,.split,.data-overlay,.audience-layout,.cta-box{
        grid-template-columns:1fr;
      }
      .plain-head{position:static}
      .steps-wrap{grid-template-columns:repeat(2,1fr)}
      .posts-grid{grid-template-columns:repeat(2,1fr)}
      .metrics-row{grid-template-columns:repeat(2,1fr)}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:768px){
      .top-strip .container{
        align-items:flex-start;
        flex-direction:column;
        padding:8px 0;
        gap:8px;
      }
      .strip-note{white-space:normal}
      .strip-payments{justify-content:flex-start}
      .brand-text strong{max-width:174px}
      .nav-actions{gap:7px}
      .btn{min-height:40px;padding:9px 12px;font-size:.88rem}
      section{padding:58px 0}
      .category-hero{padding:34px 0 48px;min-height:auto}
      .hero-shell{gap:24px}
      .icon-matrix{grid-template-columns:repeat(2,1fr)}
      .section-head{grid-template-columns:1fr}
      .quotes-grid{grid-template-columns:1fr}
      .audience-grid{grid-template-columns:1fr}
      .data-cards{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .container{width:min(100% - 24px, var(--container))}
      .brand-mark{width:40px;height:40px}
      .brand-text small{display:none}
      .nav-actions .btn{padding:8px 10px;font-size:.78rem}
      .nav-links a{font-size:.84rem;padding:9px 10px}
      h1{font-size:2.25rem;letter-spacing:-.06em}
      .hero-actions{flex-direction:column}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .status-top{align-items:flex-start;flex-direction:column}
      .icon-matrix{gap:10px;padding:12px}
      .matrix-card{min-height:96px;padding:12px}
      .risk-item{grid-template-columns:1fr}
      .steps-wrap,.posts-grid,.metrics-row{grid-template-columns:1fr}
      .data-overlay,.cta-box{padding:24px}
      .image-panel,.image-panel img{min-height:320px}
      .fab{left:12px;bottom:88px}
    }

/* roulang page: category2 */
:root{
      --bg:#051F14;
      --bg-2:#0B2E1E;
      --bg-3:#092719;
      --panel:#0f3726;
      --panel-2:#123d2b;
      --gold:#F59E0B;
      --gold-2:#FCD34D;
      --red:#DC2626;
      --text:#F8FAFC;
      --muted:#D1FAE5;
      --soft:#A3A375;
      --line:rgba(245,158,11,.28);
      --line-soft:rgba(209,250,229,.12);
      --shadow:0 24px 70px rgba(0,0,0,.34);
      --shadow-gold:0 12px 38px rgba(245,158,11,.22);
      --radius:24px;
      --radius-sm:14px;
      --container:1180px;
      --font:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 2%, rgba(252,211,77,.16), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(220,38,38,.12), transparent 30%),
        linear-gradient(180deg, #03170f 0%, var(--bg) 30%, #04140d 100%);
      line-height:1.62;
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    p,h1,h2,h3,h4{margin-top:0}
    p{color:rgba(209,250,229,.84)}
    ul{margin:0;padding:0}
    li{list-style:none}
    .container{width:min(100% - 32px, var(--container));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(18px);
      background:rgba(5,31,20,.82);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 36px rgba(0,0,0,.22);
    }
    .top-strip{border-bottom:1px solid rgba(252,211,77,.12);background:rgba(3,20,13,.36)}
    .top-strip .container{
      min-height:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .strip-note{color:var(--muted);font-weight:800;font-size:.78rem}
    .strip-payments{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
    .strip-payments span{
      color:#271800;
      background:linear-gradient(135deg, #fff7d6, var(--gold-2));
      border:1px solid rgba(255,255,255,.28);
      border-radius:999px;
      padding:3px 8px;
      font-size:.72rem;
      font-weight:900;
    }
    .nav{
      min-height:76px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#241700;
      font-size:1.32rem;
      background:radial-gradient(circle at 30% 20%, #fff3bf, var(--gold-2) 38%, var(--gold) 70%, #8a4d05);
      box-shadow:0 0 0 4px rgba(245,158,11,.15), 0 10px 28px rgba(245,158,11,.28);
      border:1px solid rgba(255,255,255,.36);
      flex:0 0 auto;
    }
    .brand-text{display:flex;flex-direction:column;min-width:0;line-height:1.12}
    .brand-text strong{font-size:.98rem;max-width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
    .brand-text small{color:var(--muted);font-weight:600;font-size:.72rem}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-width:0;
    }
    .nav-links a{
      padding:10px 12px;
      border-radius:999px;
      color:rgba(248,250,252,.78);
      font-weight:750;
      font-size:.9rem;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-links a:hover,.nav-links a:focus{
      color:#fff;
      background:rgba(245,158,11,.12);
      outline:none;
    }
    .nav-links a.active{
      color:#271800;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .nav-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;white-space:nowrap}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:11px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(1px) scale(.98)}
    .btn:focus-visible{outline:3px solid rgba(252,211,77,.42);outline-offset:3px}
    .btn-primary{
      color:#201400;
      background:linear-gradient(135deg, var(--gold-2), var(--gold) 62%, #f97316);
      box-shadow:0 16px 38px rgba(245,158,11,.26);
    }
    .btn-primary:hover{box-shadow:0 20px 48px rgba(245,158,11,.36)}
    .btn-ghost{
      color:var(--gold-2);
      background:rgba(245,158,11,.07);
      border-color:rgba(252,211,77,.38);
    }
    .btn-ghost:hover{background:rgba(245,158,11,.14)}
    .btn-soft{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
    }
    .btn-soft:hover{border-color:rgba(252,211,77,.38);background:rgba(252,211,77,.09)}
    main{position:relative}
    section{padding:76px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 11px;
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(245,158,11,.1);
      border:1px solid rgba(245,158,11,.22);
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    .section-head{
      display:grid;
      grid-template-columns:minmax(0, 1fr) minmax(280px, 420px);
      gap:26px;
      align-items:end;
      margin-bottom:30px;
    }
    .section-head h2{font-size:clamp(1.85rem,3vw,3rem);line-height:1.12;margin-bottom:0;letter-spacing:-.03em}
    .section-head p{font-size:1rem;margin-bottom:0}
    .category-hero{
      position:relative;
      padding:0 0 62px;
      border-bottom:1px solid var(--line);
      overflow:hidden;
      background:
        linear-gradient(180deg, rgba(5,31,20,.05), rgba(5,31,20,.98)),
        url('/assets/images/a584b8897be57f5e.jpg') center/cover no-repeat;
    }
    .category-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 18% 24%, rgba(252,211,77,.22), transparent 28%),
        linear-gradient(90deg, rgba(3,20,13,.86), rgba(3,20,13,.48) 54%, rgba(3,20,13,.8));
      pointer-events:none;
    }
    .series-bar{
      position:relative;
      z-index:1;
      padding-top:24px;
    }
    .series-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:14px;
      border:1px solid rgba(252,211,77,.28);
      border-radius:999px;
      background:rgba(5,31,20,.7);
      backdrop-filter:blur(14px);
      box-shadow:0 20px 52px rgba(0,0,0,.26);
    }
    .series-label{display:flex;align-items:center;gap:10px;color:var(--gold-2);font-weight:950;padding-left:8px}
    .series-pills{display:flex;gap:8px;align-items:center;justify-content:flex-end;flex-wrap:wrap}
    .series-pills a,.series-pills span{
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(248,250,252,.8);
      font-weight:800;
      font-size:.84rem;
    }
    .series-pills span{
      color:#201400;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      border-color:rgba(255,255,255,.34);
    }
    .hero-wrap{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
      gap:42px;
      align-items:center;
      padding-top:72px;
    }
    .hero-copy{max-width:760px}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      border-radius:999px;
      padding:7px 12px;
      background:rgba(220,38,38,.18);
      color:#fff7ed;
      border:1px solid rgba(252,211,77,.26);
      font-size:.82rem;
      font-weight:900;
      margin-bottom:18px;
    }
    h1{
      font-size:clamp(2.15rem,5vw,5.05rem);
      line-height:1.02;
      letter-spacing:-.055em;
      margin:0 0 20px;
      max-width:880px;
    }
    .hero-copy .lead{
      color:rgba(209,250,229,.9);
      font-size:clamp(1rem,1.5vw,1.2rem);
      max-width:690px;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
    .trust-mini{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:30px;
      max-width:680px;
    }
    .trust-mini div{
      padding:14px;
      border-radius:18px;
      background:rgba(15,55,38,.74);
      border:1px solid rgba(252,211,77,.18);
    }
    .trust-mini strong{display:block;color:var(--gold-2);font-size:1.35rem;line-height:1}
    .trust-mini span{display:block;color:rgba(209,250,229,.78);font-weight:700;font-size:.82rem;margin-top:7px}
    .hero-card{
      border-radius:var(--radius);
      border:1px solid rgba(252,211,77,.3);
      background:linear-gradient(180deg, rgba(18,61,43,.86), rgba(7,32,21,.9));
      box-shadow:var(--shadow);
      padding:18px;
      transform:translateY(12px);
    }
    .hero-card img{
      width:100%;
      aspect-ratio:4/3;
      object-fit:cover;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.1);
    }
    .hero-card-body{padding:20px 4px 4px}
    .hot-tag{
      display:inline-flex;
      align-items:center;
      padding:5px 9px;
      border-radius:999px;
      color:#fff;
      background:linear-gradient(135deg,var(--red),#7f1d1d);
      font-size:.74rem;
      font-weight:950;
      margin-bottom:10px;
    }
    .hero-card h2{font-size:1.35rem;margin-bottom:8px}
    .payment-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
    .payment-row span{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(252,211,77,.1);
      border:1px solid rgba(252,211,77,.24);
      color:var(--gold-2);
      font-weight:850;
      font-size:.8rem;
    }
    .pain-section{background:linear-gradient(180deg, rgba(5,31,20,.14), rgba(11,46,30,.42))}
    .split{
      display:grid;
      grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
      gap:42px;
      align-items:start;
    }
    .text-block h2{font-size:clamp(1.85rem,3vw,3.2rem);line-height:1.12;letter-spacing:-.035em;margin-bottom:16px}
    .check-list{display:grid;gap:14px}
    .check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:16px 0;
      border-bottom:1px solid var(--line-soft);
      color:rgba(248,250,252,.92);
      font-weight:700;
    }
    .check-list li:before{
      content:"✓";
      flex:0 0 26px;
      width:26px;
      height:26px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#231600;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-weight:1000;
      margin-top:1px;
    }
    .solution-panel{
      position:relative;
      border-radius:var(--radius);
      background:linear-gradient(145deg, rgba(15,55,38,.96), rgba(7,32,21,.9));
      border:1px solid rgba(245,158,11,.28);
      padding:28px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .solution-panel:after{
      content:"";
      position:absolute;
      width:190px;height:190px;
      border-radius:50%;
      background:rgba(252,211,77,.12);
      right:-80px;top:-70px;
      filter:blur(2px);
    }
    .solution-panel h3{font-size:1.65rem;margin-bottom:12px;position:relative;z-index:1}
    .pill-stack{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px;position:relative;z-index:1}
    .pill-stack span{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(248,250,252,.88);
      font-weight:800;
      font-size:.86rem;
    }
    .method-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      align-items:stretch;
    }
    .method-image{
      min-height:460px;
      border-radius:var(--radius);
      overflow:hidden;
      border:1px solid rgba(252,211,77,.24);
      box-shadow:var(--shadow);
      position:relative;
    }
    .method-image img{width:100%;height:100%;object-fit:cover}
    .method-image:after{
      content:"Bảo mật · Minh bạch · Rút thưởng rõ ràng";
      position:absolute;
      left:18px;right:18px;bottom:18px;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(3,20,13,.74);
      backdrop-filter:blur(12px);
      border:1px solid rgba(252,211,77,.24);
      color:var(--gold-2);
      font-weight:950;
    }
    .steps{display:grid;gap:16px}
    .step{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      padding:20px;
      border-radius:22px;
      background:rgba(15,55,38,.72);
      border:1px solid rgba(209,250,229,.12);
      transition:.22s ease;
    }
    .step:hover{transform:translateX(5px);border-color:rgba(252,211,77,.34);background:rgba(18,61,43,.86)}
    .step b{
      width:54px;height:54px;border-radius:18px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      color:#231600;
      box-shadow:var(--shadow-gold);
      font-size:1.05rem;
    }
    .step h3{margin-bottom:5px;font-size:1.15rem}
    .step p{margin-bottom:0;font-size:.96rem}
    .outcome-section{background:linear-gradient(180deg, rgba(11,46,30,.32), rgba(5,31,20,.08))}
    .metric-band{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      border-radius:var(--radius);
      overflow:hidden;
      border:1px solid rgba(245,158,11,.28);
      background:linear-gradient(145deg, rgba(18,61,43,.86), rgba(7,32,21,.94));
      box-shadow:var(--shadow);
    }
    .metric{
      padding:28px;
      border-right:1px solid var(--line-soft);
    }
    .metric:last-child{border-right:0}
    .metric strong{display:block;font-size:clamp(1.8rem,3vw,3rem);line-height:1;color:var(--gold-2);letter-spacing:-.04em}
    .metric span{display:block;color:rgba(209,250,229,.82);font-weight:750;margin-top:10px}
    .quote-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(280px,380px);
      gap:34px;
      align-items:start;
    }
    .quote-main{
      padding:34px;
      border-radius:var(--radius);
      background:
        linear-gradient(180deg, rgba(3,20,13,.1), rgba(3,20,13,.7)),
        url('/assets/images/e0a6e246030337d5.jpg') center/cover no-repeat;
      min-height:420px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      border:1px solid rgba(252,211,77,.22);
      box-shadow:var(--shadow);
    }
    .quote-main blockquote{
      margin:0;
      font-size:clamp(1.3rem,2.2vw,2.1rem);
      line-height:1.35;
      font-weight:850;
      letter-spacing:-.025em;
      max-width:760px;
    }
    .quote-main cite{margin-top:18px;color:var(--gold-2);font-style:normal;font-weight:900}
    .review-list{display:grid;gap:14px}
    .review{
      padding:20px;
      border-radius:22px;
      background:rgba(15,55,38,.72);
      border:1px solid rgba(209,250,229,.12);
    }
    .stars{color:var(--gold-2);letter-spacing:2px;margin-bottom:8px}
    .review strong{display:block;margin-bottom:6px}
    .review p{margin-bottom:0;font-size:.94rem}
    .audience-section{background:rgba(11,46,30,.22)}
    .audience-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .audience-card{
      padding:24px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(18,61,43,.88), rgba(15,55,38,.62));
      border:1px solid rgba(252,211,77,.18);
      min-height:230px;
      transition:.22s ease;
    }
    .audience-card:hover{transform:translateY(-5px);border-color:rgba(252,211,77,.4);box-shadow:var(--shadow-gold)}
    .audience-card img{
      width:58px;height:58px;object-fit:cover;border-radius:18px;margin-bottom:18px;
      border:1px solid rgba(252,211,77,.25);
    }
    .audience-card h3{font-size:1.18rem;margin-bottom:10px}
    .audience-card p{margin-bottom:0}
    .channel-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .channel-card{
      padding:20px;
      border-radius:22px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.12);
      transition:.22s ease;
    }
    .channel-card:hover,.channel-card:focus{
      outline:none;
      transform:translateY(-4px);
      border-color:rgba(252,211,77,.38);
      background:rgba(252,211,77,.09);
    }
    .channel-card.active{
      background:linear-gradient(135deg, rgba(252,211,77,.22), rgba(245,158,11,.12));
      border-color:rgba(252,211,77,.48);
    }
    .channel-card span{color:var(--gold-2);font-weight:950;font-size:.78rem}
    .channel-card h3{font-size:1.08rem;margin:8px 0 6px}
    .channel-card p{font-size:.9rem;margin:0}
    .news-section{background:linear-gradient(180deg, rgba(5,31,20,.08), rgba(11,46,30,.28))}
    .post-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .post-card{
      display:flex;
      flex-direction:column;
      min-height:230px;
      padding:22px;
      border-radius:var(--radius);
      background:rgba(15,55,38,.82);
      border:1px solid rgba(209,250,229,.13);
      transition:.22s ease;
    }
    .post-card:hover{transform:translateY(-5px);border-color:rgba(252,211,77,.4);box-shadow:var(--shadow-gold)}
    .post-meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
    .post-meta span{
      font-size:.76rem;
      font-weight:850;
      color:var(--gold-2);
      padding:5px 8px;
      border-radius:999px;
      background:rgba(245,158,11,.1);
      border:1px solid rgba(245,158,11,.18);
    }
    .post-card h3{font-size:1.12rem;line-height:1.35;margin-bottom:10px}
    .post-card p{font-size:.94rem;margin-bottom:18px}
    .post-card .read-link{
      margin-top:auto;
      color:var(--gold-2);
      font-weight:900;
    }
    .empty-news{
      padding:24px;
      border-radius:var(--radius);
      background:rgba(15,55,38,.72);
      border:1px solid rgba(252,211,77,.22);
      color:var(--muted);
      font-weight:800;
    }
    .proof-wrap{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(320px,.75fr);
      gap:28px;
      align-items:stretch;
    }
    .proof-table{
      border-radius:var(--radius);
      overflow:hidden;
      border:1px solid rgba(245,158,11,.26);
      background:rgba(15,55,38,.72);
    }
    .proof-row{
      display:grid;
      grid-template-columns:1fr 1.2fr auto;
      gap:16px;
      padding:18px 20px;
      border-bottom:1px solid var(--line-soft);
      align-items:center;
    }
    .proof-row:last-child{border-bottom:0}
    .proof-row strong{color:#fff}
    .proof-row span{color:rgba(209,250,229,.82)}
    .proof-row b{
      color:#241700;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      border-radius:999px;
      padding:7px 10px;
      font-size:.76rem;
      white-space:nowrap;
    }
    .security-card{
      border-radius:var(--radius);
      padding:28px;
      background:
        linear-gradient(180deg, rgba(3,20,13,.05), rgba(3,20,13,.72)),
        url('/assets/images/6053e348824096cf.png') center/cover no-repeat;
      border:1px solid rgba(252,211,77,.24);
      box-shadow:var(--shadow);
      min-height:360px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
    }
    .security-card h3{font-size:1.55rem;margin-bottom:10px}
    .faq-grid{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
      gap:34px;
      align-items:start;
    }
    .faq-list{display:grid;gap:12px}
    .faq-item{
      border-radius:20px;
      background:rgba(15,55,38,.76);
      border:1px solid rgba(209,250,229,.12);
      padding:20px;
    }
    .faq-item h3{font-size:1.05rem;margin-bottom:8px}
    .faq-item p{margin-bottom:0}
    .cta-section{padding-top:30px}
    .final-cta{
      text-align:center;
      border-radius:32px;
      padding:52px 28px;
      background:
        radial-gradient(circle at 15% 20%, rgba(252,211,77,.2), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(220,38,38,.16), transparent 36%),
        linear-gradient(145deg, rgba(18,61,43,.96), rgba(7,32,21,.94));
      border:1px solid rgba(252,211,77,.3);
      box-shadow:var(--shadow);
    }
    .final-cta h2{font-size:clamp(2rem,3.8vw,3.7rem);line-height:1.08;letter-spacing:-.045em;margin-bottom:14px}
    .final-cta p{max-width:780px;margin:0 auto 24px}
    .fab{
      position:fixed;
      left:16px;
      bottom:96px;
      z-index:50;
      width:58px;
      height:58px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--gold-2);
      background:
        radial-gradient(circle at 34% 24%, rgba(252,211,77,.18), transparent 30%),
        radial-gradient(circle, #2b1206, #07160f 62%);
      border:2px solid var(--gold);
      box-shadow:0 6px 25px rgba(245,158,11,.35), inset 0 0 0 4px rgba(252,211,77,.08);
      opacity:.82;
      transition:.24s ease;
      font-size:1.45rem;
      isolation:isolate;
    }
    .fab:before{
      content:"";
      position:absolute;
      inset:7px;
      border-radius:50%;
      border:1px dashed rgba(252,211,77,.55);
    }
    .fab:after{
      content:"";
      position:absolute;
      width:13px;height:13px;
      right:2px;top:3px;
      background:var(--red);
      border-radius:50%;
      ring:2px;
      box-shadow:0 0 0 2px #fff, 0 0 14px rgba(220,38,38,.8);
    }
    .fab span{position:relative;z-index:1;transition:transform .45s ease}
    .fab:hover{opacity:1;transform:translateY(-4px) scale(1.1)}
    .fab:hover span{transform:rotate(360deg)}
    .fab:active{transform:translateY(2px) scale(.95)}
    .site-footer{
      padding:64px 0 28px;
      background:linear-gradient(180deg, rgba(3,20,13,.96), #020b07);
      border-top:1px solid rgba(245,158,11,.28);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .85fr .85fr;
      gap:34px;
      align-items:start;
    }
    .footer-brand strong{font-size:1.1rem;color:#fff}
    .footer-brand p{margin:12px 0 0;max-width:520px}
    .footer-block h3{font-size:1rem;margin-bottom:12px;color:var(--gold-2)}
    .footer-block li{
      color:rgba(209,250,229,.82);
      padding:6px 0;
      border-bottom:1px solid rgba(209,250,229,.08);
    }
    .footer-block a{color:var(--gold-2);font-weight:850}
    .license-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      padding:20px 0;
      margin-top:34px;
      border-top:1px solid rgba(245,158,11,.22);
      border-bottom:1px solid rgba(245,158,11,.16);
    }
    .license-row span{
      color:#221500;
      background:linear-gradient(135deg, #fff5c7, var(--gold-2));
      border-radius:999px;
      padding:7px 10px;
      font-size:.76rem;
      font-weight:950;
    }
    .copyright{color:rgba(209,250,229,.64);font-size:.86rem;margin-top:18px}
    @media (max-width:1080px){
      .nav{grid-template-columns:1fr auto;gap:14px;padding:12px 0}
      .nav-links{grid-column:1 / -1;justify-content:flex-start;overflow-x:auto;padding-bottom:4px;scrollbar-width:none}
      .nav-links::-webkit-scrollbar{display:none}
      .hero-wrap,.split,.method-grid,.quote-layout,.proof-wrap,.faq-grid{grid-template-columns:1fr}
      .hero-card{transform:none}
      .metric-band{grid-template-columns:repeat(2,1fr)}
      .metric:nth-child(2){border-right:0}
      .audience-grid,.post-grid{grid-template-columns:repeat(2,1fr)}
      .channel-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      .top-strip .container{align-items:flex-start;flex-direction:column;padding:8px 0}
      .strip-payments{justify-content:flex-start}
      .nav{grid-template-columns:1fr;align-items:start}
      .nav-actions{justify-content:flex-start;width:100%}
      .nav-actions .btn{flex:1;padding-inline:12px}
      .brand-text strong{max-width:260px}
      section{padding:56px 0}
      .series-inner{border-radius:24px;align-items:flex-start;flex-direction:column}
      .series-pills{justify-content:flex-start}
      .category-hero{padding-bottom:48px}
      .hero-wrap{padding-top:46px}
      .trust-mini{grid-template-columns:1fr}
      .section-head{grid-template-columns:1fr}
      .metric-band,.audience-grid,.post-grid,.channel-grid{grid-template-columns:1fr}
      .metric{border-right:0;border-bottom:1px solid var(--line-soft)}
      .metric:last-child{border-bottom:0}
      .proof-row{grid-template-columns:1fr;gap:7px}
      .footer-grid{grid-template-columns:1fr}
      .quote-main{min-height:360px;padding:24px}
      .fab{left:14px;bottom:92px}
    }
    @media (max-width:520px){
      .container{width:min(100% - 24px, var(--container))}
      h1{font-size:2.25rem}
      .hero-actions .btn{width:100%}
      .hero-card{padding:12px;border-radius:20px}
      .solution-panel,.final-cta{padding:24px}
      .step{grid-template-columns:1fr}
      .step b{width:46px;height:46px;border-radius:15px}
      .method-image{min-height:320px}
      .btn{min-height:42px}
      .brand-mark{width:40px;height:40px}
      .nav-links a{font-size:.84rem;padding:9px 10px}
    }

/* roulang page: category4 */
:root{
      --bg:#051F14;
      --bg-2:#0B2E1E;
      --bg-3:#092719;
      --panel:#0f3726;
      --panel-2:#123d2b;
      --gold:#F59E0B;
      --gold-2:#FCD34D;
      --red:#DC2626;
      --text:#F8FAFC;
      --muted:#D1FAE5;
      --soft:#A3A375;
      --line:rgba(245,158,11,.28);
      --line-soft:rgba(209,250,229,.12);
      --shadow:0 24px 70px rgba(0,0,0,.34);
      --shadow-gold:0 12px 38px rgba(245,158,11,.22);
      --radius:24px;
      --radius-sm:14px;
      --container:1180px;
      --font:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 2%, rgba(252,211,77,.16), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(220,38,38,.12), transparent 30%),
        linear-gradient(180deg, #03170f 0%, var(--bg) 30%, #04140d 100%);
      line-height:1.62;
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(252,211,77,.34);color:#fff}
    .container{width:min(100% - 32px, var(--container));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(18px);
      background:rgba(5,31,20,.82);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 36px rgba(0,0,0,.22);
    }
    .top-strip{
      border-bottom:1px solid rgba(252,211,77,.12);
      background:rgba(3,23,15,.56);
    }
    .top-strip .container{
      min-height:34px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .strip-note{
      color:var(--muted);
      font-size:.82rem;
      font-weight:700;
      white-space:nowrap;
    }
    .strip-payments{
      display:flex;
      gap:7px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .strip-payments span{
      color:#fffbeb;
      font-size:.76rem;
      font-weight:850;
      padding:3px 8px;
      border-radius:999px;
      border:1px solid rgba(252,211,77,.28);
      background:rgba(245,158,11,.08);
    }
    .nav{
      min-height:76px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#241700;
      font-size:1.32rem;
      background:radial-gradient(circle at 30% 20%, #fff3bf, var(--gold-2) 38%, var(--gold) 70%, #8a4d05);
      box-shadow:0 0 0 4px rgba(245,158,11,.15), 0 10px 28px rgba(245,158,11,.28);
      border:1px solid rgba(255,255,255,.36);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
      line-height:1.12;
    }
    .brand-text strong{
      font-size:.98rem;
      max-width:220px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text small{color:var(--muted);font-weight:600;font-size:.72rem}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-width:0;
    }
    .nav-links a{
      padding:10px 12px;
      border-radius:999px;
      color:rgba(248,250,252,.78);
      font-weight:750;
      font-size:.9rem;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-links a:hover,.nav-links a:focus{
      color:#fff;
      background:rgba(245,158,11,.12);
      outline:none;
    }
    .nav-links a.active{
      color:#271800;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow:var(--shadow-gold);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      white-space:nowrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:11px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(1px) scale(.98)}
    .btn:focus-visible{outline:3px solid rgba(252,211,77,.42);outline-offset:3px}
    .btn-primary{
      color:#201400;
      background:linear-gradient(135deg, var(--gold-2), var(--gold) 62%, #f97316);
      box-shadow:0 16px 38px rgba(245,158,11,.26);
    }
    .btn-primary:hover{box-shadow:0 20px 48px rgba(245,158,11,.36)}
    .btn-ghost{
      color:var(--gold-2);
      background:rgba(245,158,11,.07);
      border-color:rgba(252,211,77,.38);
    }
    .btn-ghost:hover{background:rgba(245,158,11,.14)}
    .btn-soft{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
    }
    .btn-soft:hover{border-color:rgba(252,211,77,.38);background:rgba(252,211,77,.09)}
    main{position:relative}
    section{padding:76px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 11px;
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(245,158,11,.1);
      border:1px solid rgba(245,158,11,.22);
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    .section-head{
      display:grid;
      grid-template-columns:minmax(0, 1fr) minmax(280px, 420px);
      gap:26px;
      align-items:end;
      margin-bottom:30px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(2rem, 4vw, 3.15rem);
      line-height:1.08;
      letter-spacing:-.045em;
    }
    .section-head p{font-size:1rem;color:rgba(209,250,229,.82);margin:0}
    .category-hero{
      position:relative;
      min-height:680px;
      padding:0 0 54px;
      display:flex;
      align-items:stretch;
      background:
        linear-gradient(90deg, rgba(3,23,15,.96) 0%, rgba(5,31,20,.82) 46%, rgba(5,31,20,.3) 100%),
        linear-gradient(180deg, rgba(5,31,20,.08), rgba(5,31,20,.97)),
        url('/assets/images/a584b8897be57f5e.jpg') center/cover no-repeat;
      border-bottom:1px solid var(--line);
      overflow:hidden;
    }
    .category-hero:before{
      content:"";
      position:absolute;
      inset:auto -15% -34% -15%;
      height:260px;
      background:radial-gradient(closest-side, rgba(245,158,11,.22), transparent 70%);
      pointer-events:none;
    }
    .hero-wrap{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0, 1.05fr) minmax(320px, .95fr);
      gap:44px;
      align-items:center;
      padding-top:42px;
    }
    .hero-copy{padding:38px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:7px 12px;
      border-radius:999px;
      color:#fff7d6;
      background:rgba(220,38,38,.22);
      border:1px solid rgba(252,211,77,.36);
      box-shadow:0 0 22px rgba(245,158,11,.14);
      font-weight:950;
      font-size:.83rem;
      letter-spacing:.02em;
    }
    h1{
      margin:18px 0 18px;
      font-size:clamp(2.35rem, 6vw, 5.15rem);
      line-height:.98;
      letter-spacing:-.075em;
      max-width:900px;
    }
    .hero-copy p{
      color:rgba(209,250,229,.88);
      font-size:1.08rem;
      margin:0 0 26px;
      max-width:710px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:26px;
    }
    .hero-trust{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:10px;
      max-width:720px;
    }
    .hero-trust span{
      padding:12px 13px;
      border:1px solid rgba(252,211,77,.22);
      border-radius:18px;
      background:rgba(15,55,38,.72);
      color:#fff8df;
      font-weight:850;
      font-size:.88rem;
    }
    .poster-shell{
      position:relative;
      min-height:520px;
      border-radius:34px;
      padding:18px;
      background:linear-gradient(145deg, rgba(252,211,77,.22), rgba(209,250,229,.06));
      border:1px solid rgba(252,211,77,.32);
      box-shadow:var(--shadow), 0 0 80px rgba(245,158,11,.16);
      transform:rotate(1.5deg);
    }
    .poster-card{
      position:relative;
      height:100%;
      min-height:486px;
      overflow:hidden;
      border-radius:26px;
      background:#092719;
      border:1px solid rgba(255,255,255,.12);
    }
    .poster-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      min-height:486px;
      filter:saturate(1.08) contrast(1.06);
    }
    .poster-overlay{
      position:absolute;
      inset:0;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:22px;
      background:
        linear-gradient(180deg, rgba(0,0,0,.04), transparent 35%, rgba(0,0,0,.78) 100%),
        radial-gradient(circle at 18% 14%, rgba(252,211,77,.24), transparent 28%);
    }
    .heat-badge{
      align-self:flex-start;
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--red), #7f1d1d);
      border:1px solid rgba(255,255,255,.24);
      box-shadow:0 12px 30px rgba(220,38,38,.28);
      font-weight:950;
    }
    .poster-bottom{
      display:grid;
      gap:12px;
    }
    .poster-bottom strong{
      font-size:1.55rem;
      line-height:1.14;
      letter-spacing:-.03em;
    }
    .poster-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:9px;
    }
    .poster-stats span{
      padding:10px;
      border-radius:16px;
      background:rgba(5,31,20,.78);
      border:1px solid rgba(252,211,77,.18);
      color:#fef3c7;
      font-weight:850;
      font-size:.84rem;
    }
    .split{
      display:grid;
      grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
      gap:44px;
      align-items:start;
    }
    .copy-block h2{
      margin:0 0 18px;
      font-size:clamp(1.9rem, 3.8vw, 3.2rem);
      line-height:1.08;
      letter-spacing:-.045em;
    }
    .copy-block p{
      margin:0 0 16px;
      color:rgba(209,250,229,.84);
    }
    .feature-list{
      display:grid;
      gap:12px;
      margin:24px 0 0;
      padding:0;
      list-style:none;
    }
    .feature-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:13px 0;
      border-bottom:1px solid rgba(209,250,229,.11);
      color:rgba(248,250,252,.9);
    }
    .feature-list b{
      color:var(--gold-2);
      flex:0 0 auto;
    }
    .risk-panel,.solution-panel,.step-panel,.testimonial-card,.metric-panel,.cta-panel,.faq-box{
      border:1px solid var(--line);
      background:linear-gradient(145deg, rgba(15,55,38,.88), rgba(9,39,25,.8));
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .risk-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .risk-card{
      padding:22px;
      border-radius:22px;
      background:rgba(0,0,0,.16);
      border:1px solid rgba(209,250,229,.11);
      transition:.22s ease;
    }
    .risk-card:hover{
      transform:translateY(-4px);
      border-color:rgba(252,211,77,.34);
      box-shadow:0 18px 42px rgba(0,0,0,.22);
    }
    .risk-card .tag{
      display:inline-flex;
      margin-bottom:12px;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(220,38,38,.18);
      color:#fecaca;
      border:1px solid rgba(220,38,38,.3);
      font-weight:900;
      font-size:.76rem;
    }
    .risk-card h3,.solution-item h3,.step-card h3,.audience-card h3,.channel-card h3,.news-card h3{
      margin:0 0 9px;
      font-size:1.12rem;
      line-height:1.25;
    }
    .risk-card p,.solution-item p,.step-card p,.audience-card p,.channel-card p,.news-card p{
      margin:0;
      color:rgba(209,250,229,.78);
      font-size:.95rem;
    }
    .solution-section{
      background:
        linear-gradient(180deg, rgba(9,39,25,.55), rgba(5,31,20,.18)),
        radial-gradient(circle at 80% 10%, rgba(245,158,11,.12), transparent 32%);
      border-block:1px solid rgba(252,211,77,.12);
    }
    .solution-panel{
      padding:30px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .solution-item{
      padding:22px;
      border-radius:22px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.1);
    }
    .solution-icon{
      width:44px;
      height:44px;
      display:grid;
      place-items:center;
      margin-bottom:16px;
      border-radius:16px;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      color:#201400;
      font-size:1.25rem;
      box-shadow:var(--shadow-gold);
    }
    .steps-layout{
      display:grid;
      grid-template-columns:340px 1fr;
      gap:28px;
      align-items:stretch;
    }
    .step-visual{
      overflow:hidden;
      min-height:470px;
      border-radius:var(--radius);
      border:1px solid rgba(252,211,77,.26);
      box-shadow:var(--shadow);
      position:relative;
    }
    .step-visual img{
      width:100%;
      height:100%;
      min-height:470px;
      object-fit:cover;
    }
    .step-visual:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent 20%, rgba(3,23,15,.72));
    }
    .step-panel{
      padding:10px;
      display:grid;
      gap:10px;
    }
    .step-card{
      display:grid;
      grid-template-columns:58px 1fr;
      gap:16px;
      align-items:start;
      padding:20px;
      border-radius:20px;
      background:rgba(255,255,255,.045);
      border:1px solid transparent;
      transition:.22s ease;
    }
    .step-card:hover{
      border-color:rgba(252,211,77,.3);
      background:rgba(245,158,11,.075);
    }
    .step-number{
      width:48px;
      height:48px;
      border-radius:50%;
      display:grid;
      place-items:center;
      font-weight:950;
      color:#241700;
      background:radial-gradient(circle at 30% 20%, #fff3bf, var(--gold-2), var(--gold));
      box-shadow:0 12px 26px rgba(245,158,11,.22);
    }
    .data-strip{
      padding:30px;
      border-radius:32px;
      border:1px solid rgba(252,211,77,.28);
      background:
        linear-gradient(135deg, rgba(245,158,11,.15), rgba(15,55,38,.86)),
        url('/assets/images/21893d578bc98450.jpg') center/cover no-repeat;
      box-shadow:var(--shadow);
    }
    .data-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .data-item{
      padding:22px;
      border-radius:22px;
      background:rgba(5,31,20,.76);
      border:1px solid rgba(252,211,77,.2);
    }
    .data-item strong{
      display:block;
      font-size:clamp(1.85rem, 3vw, 2.55rem);
      color:var(--gold-2);
      line-height:1;
      margin-bottom:8px;
      letter-spacing:-.04em;
    }
    .data-item span{
      color:rgba(209,250,229,.82);
      font-weight:700;
      font-size:.93rem;
    }
    .testimonial-section{
      background:linear-gradient(180deg, rgba(3,23,15,.3), rgba(11,46,30,.42));
      border-block:1px solid rgba(209,250,229,.08);
    }
    .testimonial-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:18px;
    }
    .testimonial-card{
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .testimonial-card:before{
      content:"“";
      position:absolute;
      right:18px;
      top:-10px;
      font-size:6rem;
      line-height:1;
      color:rgba(252,211,77,.13);
      font-family:Georgia, serif;
    }
    .testimonial-card p{
      margin:0 0 20px;
      color:rgba(248,250,252,.88);
      position:relative;
      z-index:1;
    }
    .testimonial-person{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:#fef3c7;
      font-weight:900;
      border-top:1px solid rgba(252,211,77,.16);
      padding-top:14px;
    }
    .testimonial-person span{
      color:rgba(209,250,229,.72);
      font-weight:700;
      font-size:.85rem;
    }
    .audience-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:20px;
    }
    .audience-main{
      padding:30px;
      border-radius:var(--radius);
      border:1px solid rgba(252,211,77,.24);
      background:
        linear-gradient(135deg, rgba(15,55,38,.9), rgba(5,31,20,.72)),
        url('/assets/images/e0a6e246030337d5.jpg') center/cover no-repeat;
      box-shadow:var(--shadow);
    }
    .audience-main h2{
      margin:0 0 14px;
      font-size:clamp(1.9rem, 3.5vw, 3rem);
      line-height:1.08;
      letter-spacing:-.045em;
    }
    .audience-main p{max-width:710px;color:rgba(209,250,229,.86)}
    .audience-side{
      display:grid;
      gap:14px;
    }
    .audience-card{
      padding:22px;
      border-radius:22px;
      background:rgba(15,55,38,.74);
      border:1px solid rgba(209,250,229,.12);
    }
    .channel-section{
      padding-top:42px;
    }
    .channel-matrix{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .channel-card{
      padding:22px;
      min-height:172px;
      border-radius:24px;
      border:1px solid rgba(252,211,77,.22);
      background:linear-gradient(145deg, rgba(18,61,43,.8), rgba(9,39,25,.72));
      transition:.22s ease;
      position:relative;
      overflow:hidden;
    }
    .channel-card:after{
      content:"";
      position:absolute;
      inset:auto -20% -42% 30%;
      height:120px;
      background:radial-gradient(closest-side, rgba(252,211,77,.18), transparent 72%);
    }
    .channel-card:hover{
      transform:translateY(-5px);
      border-color:rgba(252,211,77,.5);
      box-shadow:var(--shadow-gold);
    }
    .channel-card small{
      display:inline-flex;
      margin-bottom:12px;
      color:#271800;
      background:linear-gradient(135deg, var(--gold-2), var(--gold));
      border-radius:999px;
      padding:4px 9px;
      font-weight:950;
    }
    .news-section{
      background:rgba(3,23,15,.36);
      border-block:1px solid rgba(252,211,77,.1);
    }
    .news-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .news-card{
      display:flex;
      flex-direction:column;
      min-height:260px;
      padding:20px;
      border-radius:24px;
      border:1px solid rgba(209,250,229,.12);
      background:linear-gradient(145deg, rgba(15,55,38,.82), rgba(4,20,13,.78));
      transition:.22s ease;
    }
    .news-card:hover{
      transform:translateY(-5px);
      border-color:rgba(252,211,77,.32);
      box-shadow:0 18px 40px rgba(0,0,0,.26);
    }
    .news-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:rgba(209,250,229,.72);
      font-size:.8rem;
      margin-bottom:16px;
    }
    .news-meta span{
      padding:4px 8px;
      border-radius:999px;
      background:rgba(245,158,11,.11);
      color:var(--gold-2);
      font-weight:850;
    }
    .news-card h3{font-size:1.05rem}
    .news-card p{
      display:-webkit-box;
      -webkit-line-clamp:4;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .news-card .read-line{
      margin-top:auto;
      padding-top:18px;
      color:var(--gold-2);
      font-weight:900;
    }
    .empty-state{
      padding:24px;
      border-radius:22px;
      border:1px dashed rgba(252,211,77,.38);
      background:rgba(245,158,11,.07);
      color:#fef3c7;
      font-weight:850;
    }
    .final-section{
      padding-bottom:92px;
    }
    .final-grid{
      display:grid;
      grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
      gap:20px;
      align-items:stretch;
    }
    .faq-box{
      padding:28px;
    }
    .faq-item{
      padding:18px 0;
      border-bottom:1px solid rgba(209,250,229,.11);
    }
    .faq-item:last-child{border-bottom:0;padding-bottom:0}
    .faq-item h3{
      margin:0 0 8px;
      font-size:1.05rem;
      color:#fff8df;
    }
    .faq-item p{
      margin:0;
      color:rgba(209,250,229,.8);
    }
    .cta-panel{
      padding:32px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        linear-gradient(145deg, rgba(245,158,11,.18), rgba(15,55,38,.88)),
        url('/assets/images/fdd9d0dc3872235b.jpg') center/cover no-repeat;
      overflow:hidden;
      position:relative;
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg, rgba(5,31,20,.94), rgba(5,31,20,.62));
      pointer-events:none;
    }
    .cta-panel > *{position:relative;z-index:1}
    .cta-panel h2{
      margin:0 0 14px;
      font-size:clamp(2rem, 4vw, 3.35rem);
      line-height:1.05;
      letter-spacing:-.055em;
    }
    .cta-panel p{
      margin:0 0 22px;
      color:rgba(209,250,229,.86);
      max-width:680px;
    }
    .bonus-form{
      display:grid;
      grid-template-columns:1fr 1fr auto;
      gap:10px;
      margin-top:10px;
    }
    .bonus-form input,.bonus-form select{
      width:100%;
      min-height:48px;
      border-radius:999px;
      border:1px solid rgba(252,211,77,.24);
      background:rgba(3,23,15,.68);
      color:#fff;
      padding:0 16px;
      outline:none;
      transition:.18s ease;
    }
    .bonus-form input::placeholder{color:rgba(209,250,229,.5)}
    .bonus-form input:focus,.bonus-form select:focus{
      border-color:rgba(252,211,77,.56);
      box-shadow:0 0 0 3px rgba(252,211,77,.14);
    }
    .site-footer{
      padding:54px 0 28px;
      background:
        linear-gradient(180deg, rgba(4,20,13,.96), rgba(1,10,6,1)),
        radial-gradient(circle at 20% 0%, rgba(245,158,11,.12), transparent 38%);
      border-top:1px solid var(--line);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .85fr .85fr;
      gap:34px;
      align-items:start;
    }
    .footer-brand strong{
      display:block;
      font-size:1.12rem;
      color:#fff8df;
      margin-bottom:10px;
    }
    .footer-brand p,.footer-block li{
      color:rgba(209,250,229,.76);
      margin:0;
    }
    .footer-block h3{
      margin:0 0 12px;
      font-size:1rem;
      color:var(--gold-2);
    }
    .footer-block ul{
      padding:0;
      margin:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .footer-block a{
      color:#fff8df;
      border-bottom:1px solid rgba(252,211,77,.34);
    }
    .footer-block a:hover{color:var(--gold-2)}
    .license-row{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin:34px 0 18px;
      padding-top:20px;
      border-top:1px solid rgba(252,211,77,.18);
    }
    .license-row span{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(245,158,11,.08);
      border:1px solid rgba(252,211,77,.2);
      color:#fef3c7;
      font-weight:800;
      font-size:.82rem;
    }
    .copyright{
      color:rgba(209,250,229,.6);
      font-size:.86rem;
    }
    .fab{
      position:fixed;
      left:16px;
      bottom:96px;
      z-index:50;
      width:58px;
      height:58px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#f8d36b;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 18%),
        radial-gradient(circle, #2b1603 0%, #450a0a 48%, #111827 100%);
      border:2px solid var(--gold);
      box-shadow:0 6px 25px rgba(245,158,11,.35), inset 0 0 18px rgba(252,211,77,.18);
      opacity:.86;
      transition:.22s ease;
      animation:floaty 2.8s ease-in-out infinite;
    }
    .fab:before{
      content:"🎧";
      font-size:1.45rem;
      transition:transform .35s ease;
    }
    .fab:after{
      content:"";
      position:absolute;
      top:5px;
      right:4px;
      width:13px;
      height:13px;
      border-radius:50%;
      background:#dc2626;
      ring:2px solid #fff;
      box-shadow:0 0 0 2px rgba(255,255,255,.9), 0 0 16px rgba(220,38,38,.9);
    }
    .fab:hover{opacity:1;transform:scale(1.1)}
    .fab:hover:before{transform:rotate(360deg)}
    .fab:active{transform:scale(.95) translateY(2px)}
    @keyframes floaty{
      0%,100%{translate:0 0}
      50%{translate:0 -7px}
    }
    @media (max-width:1060px){
      .nav{
        grid-template-columns:1fr auto;
        gap:12px;
        padding:10px 0 12px;
      }
      .nav-links{
        grid-column:1 / -1;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:4px;
        scrollbar-width:thin;
      }
      .category-hero{min-height:auto}
      .hero-wrap,.split,.steps-layout,.final-grid{
        grid-template-columns:1fr;
      }
      .poster-shell{max-width:620px;transform:none}
      .solution-panel,.testimonial-grid,.data-grid{grid-template-columns:1fr 1fr}
      .channel-matrix,.news-grid{grid-template-columns:1fr 1fr}
      .audience-grid{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .container{width:min(100% - 24px, var(--container))}
      section{padding:56px 0}
      .top-strip .container{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
        padding:8px 0;
      }
      .strip-note{white-space:normal}
      .strip-payments{justify-content:flex-start}
      .brand-text strong{max-width:190px}
      .nav-actions .btn{
        min-height:40px;
        padding:9px 12px;
        font-size:.85rem;
      }
      .hero-wrap{gap:22px;padding-top:18px}
      .hero-copy{padding:24px 0 4px}
      h1{font-size:clamp(2.1rem, 11vw, 3.4rem)}
      .hero-trust,.risk-grid,.solution-panel,.testimonial-grid,.data-grid,.channel-matrix,.news-grid{
        grid-template-columns:1fr;
      }
      .section-head{
        grid-template-columns:1fr;
        align-items:start;
      }
      .poster-card,.poster-card img{min-height:390px}
      .step-card{grid-template-columns:44px 1fr;padding:16px}
      .step-number{width:40px;height:40px}
      .bonus-form{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .nav{
        grid-template-columns:1fr;
      }
      .brand{justify-content:flex-start}
      .nav-actions{
        justify-content:stretch;
        width:100%;
      }
      .nav-actions .btn{flex:1}
      .nav-links a{font-size:.84rem;padding:9px 10px}
      .hero-actions .btn{width:100%}
      .poster-stats{grid-template-columns:1fr}
      .risk-card,.solution-item,.data-item,.testimonial-card,.audience-main,.faq-box,.cta-panel{padding:20px}
      .fab{left:12px;bottom:86px}
    }
