/* roulang page: index */
:root{
      --bg:#0f0d12;
      --bg-soft:#17131f;
      --panel:#1f1928;
      --panel-2:#251d30;
      --text:#fff8eb;
      --muted:#b8afc6;
      --weak:#8f859d;
      --gold:#d8ad62;
      --gold-2:#f3d79b;
      --wine:#6b1f35;
      --border:rgba(243,215,155,.18);
      --border-strong:rgba(243,215,155,.34);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --shadow:0 22px 70px rgba(0,0,0,.34);
      --shadow-gold:0 18px 60px rgba(216,173,98,.18);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 14% 0%, rgba(216,173,98,.16), transparent 32%),
        radial-gradient(circle at 86% 10%, rgba(107,31,53,.35), transparent 28%),
        linear-gradient(180deg,#0f0d12 0%,#130f19 45%,#0d0b10 100%);
      line-height:1.65;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{border:0;cursor:pointer}
    ::selection{background:rgba(216,173,98,.32);color:#fff}
    .container{
      width:min(1180px, calc(100% - 40px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(15,13,18,.78);
      border-bottom:1px solid var(--border);
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#241707;
      font-weight:900;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:0 12px 34px rgba(216,173,98,.28);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-text strong{
      font-size:17px;
      letter-spacing:.02em;
    }
    .brand-text span{
      color:var(--muted);
      font-size:12px;
      margin-top:4px;
    }
    .nav-main{
      display:flex;
      align-items:center;
      gap:8px;
      flex:1;
      justify-content:center;
    }
    .nav-link{
      position:relative;
      padding:10px 14px;
      border-radius:999px;
      color:#d9d0e6;
      font-size:14px;
      transition:.22s ease;
    }
    .nav-link:hover,.nav-link:focus-visible{
      color:#fff;
      background:rgba(255,255,255,.06);
      outline:none;
    }
    .nav-link.active{
      color:#211506;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:0 10px 28px rgba(216,173,98,.18);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .mega-holder{position:relative}
    .mega-btn{
      padding:10px 14px;
      color:#fff;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid var(--border);
      transition:.22s ease;
    }
    .mega-btn:hover{border-color:var(--border-strong);transform:translateY(-1px)}
    .mega-panel{
      position:absolute;
      right:0;
      top:48px;
      width:360px;
      padding:16px;
      border:1px solid var(--border);
      border-radius:22px;
      background:rgba(25,20,33,.96);
      box-shadow:var(--shadow);
      opacity:0;
      visibility:hidden;
      transform:translateY(8px);
      transition:.22s ease;
    }
    .mega-holder:hover .mega-panel{opacity:1;visibility:visible;transform:translateY(0)}
    .mega-card{
      padding:14px;
      border-radius:16px;
      background:linear-gradient(135deg,rgba(216,173,98,.12),rgba(255,255,255,.04));
      border:1px solid var(--border);
      margin-bottom:10px;
    }
    .mega-card:last-child{margin-bottom:0}
    .mega-card b{display:block;color:var(--gold-2);margin-bottom:4px}
    .mega-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.55}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      background:rgba(255,255,255,.07);
      border:1px solid var(--border);
      color:#fff;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:800;
      transition:.22s ease;
      white-space:nowrap;
    }
    .btn-primary{
      color:#201304;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:0 16px 40px rgba(216,173,98,.24);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 22px 54px rgba(216,173,98,.3)}
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.07);
      border:1px solid var(--border-strong);
    }
    .btn-secondary:hover{background:rgba(255,255,255,.11);transform:translateY(-2px)}
    .btn-ghost{
      color:var(--gold-2);
      background:transparent;
      border:1px solid rgba(216,173,98,.28);
    }
    .btn-ghost:hover{background:rgba(216,173,98,.1)}
    .btn:focus-visible,.menu-toggle:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(243,215,155,.45);
      outline-offset:3px;
    }
    .hero{
      padding:58px 0 42px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border:1px solid var(--border);
      border-radius:36px;
      background:
        linear-gradient(90deg,rgba(15,13,18,.92),rgba(31,25,40,.82)),
        radial-gradient(circle at 74% 32%,rgba(216,173,98,.22),transparent 30%);
      box-shadow:var(--shadow);
      padding:44px;
    }
    .hero-shell:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg,rgba(243,215,155,.12),transparent 28%),
        repeating-linear-gradient(90deg,rgba(255,255,255,.035) 0 1px,transparent 1px 70px);
      pointer-events:none;
      opacity:.8;
    }
    .hero-content{
      position:relative;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:34px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--border);
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(216,173,98,.08);
      font-size:13px;
      font-weight:700;
    }
    .hero h1{
      margin:18px 0 18px;
      font-size:clamp(34px,5vw,66px);
      line-height:1.05;
      letter-spacing:-.06em;
    }
    .hero-lead{
      max-width:720px;
      color:#d8d1e2;
      font-size:17px;
      margin:0 0 22px;
    }
    .hero-points{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      margin:22px 0 28px;
      padding:0;
      list-style:none;
    }
    .hero-points li{
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.08);
      color:#efe8f7;
      font-size:14px;
    }
    .hero-cta{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
    .trust-strip{
      margin-top:24px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .trust-item{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 11px;
      border-radius:999px;
      background:rgba(0,0,0,.22);
      border:1px solid rgba(255,255,255,.09);
      color:var(--muted);
      font-size:13px;
    }
    .stage{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .stage-card{
      min-height:150px;
      padding:18px;
      border-radius:24px;
      border:1px solid var(--border);
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
      box-shadow:0 16px 44px rgba(0,0,0,.18);
    }
    .stage-card.wide{grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:18px}
    .stage-icon{
      width:44px;height:44px;border-radius:16px;display:grid;place-items:center;
      background:rgba(216,173,98,.14);border:1px solid rgba(216,173,98,.26);color:var(--gold-2);font-size:20px;
    }
    .stage-card b{display:block;margin:14px 0 5px;font-size:18px}
    .stage-card p{margin:0;color:var(--muted);font-size:14px}
    .section{padding:54px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:24px;
    }
    .section-title{
      margin:0;
      font-size:clamp(26px,3.6vw,42px);
      line-height:1.16;
      letter-spacing:-.04em;
    }
    .section-desc{
      margin:10px 0 0;
      color:var(--muted);
      max-width:720px;
      font-size:15px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(216,173,98,.1);
      border:1px solid rgba(216,173,98,.24);
      color:var(--gold-2);
      font-size:13px;
      font-weight:800;
    }
    .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{
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
      box-shadow:0 14px 40px rgba(0,0,0,.2);
      padding:22px;
      transition:.22s ease;
    }
    .card:hover{
      transform:translateY(-4px);
      border-color:var(--border-strong);
      box-shadow:var(--shadow-gold);
    }
    .card h3{margin:12px 0 8px;font-size:20px}
    .card p{margin:0;color:var(--muted);font-size:14px}
    .icon{
      width:46px;height:46px;border-radius:16px;display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(216,173,98,.18),rgba(107,31,53,.15));
      border:1px solid rgba(216,173,98,.22);
      color:var(--gold-2);
      font-size:22px;
    }
    .steps{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:20px;
      align-items:stretch;
    }
    .step-intro{
      padding:28px;
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,rgba(216,173,98,.17),rgba(107,31,53,.24));
      border:1px solid var(--border-strong);
    }
    .step-list{display:grid;gap:14px}
    .step-item{
      display:grid;
      grid-template-columns:56px 1fr;
      gap:14px;
      padding:18px;
      border:1px solid var(--border);
      border-radius:22px;
      background:rgba(255,255,255,.045);
    }
    .step-num{
      width:48px;height:48px;border-radius:16px;display:grid;place-items:center;
      color:#241707;font-weight:900;background:linear-gradient(135deg,var(--gold-2),var(--gold));
    }
    .step-item h3{margin:0 0 5px;font-size:18px}
    .step-item p{margin:0;color:var(--muted);font-size:14px}
    .rank-wrap{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:20px;
    }
    .rank-list{
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      overflow:hidden;
      background:rgba(255,255,255,.04);
    }
    .rank-row{
      display:grid;
      grid-template-columns:54px 1fr 92px 88px;
      gap:12px;
      align-items:center;
      padding:16px 18px;
      border-bottom:1px solid rgba(255,255,255,.07);
    }
    .rank-row:last-child{border-bottom:0}
    .rank-no{
      width:34px;height:34px;border-radius:12px;display:grid;place-items:center;
      background:rgba(216,173,98,.14);
      color:var(--gold-2);
      font-weight:900;
    }
    .rank-title b{display:block}
    .rank-title span{display:block;color:var(--muted);font-size:13px;margin-top:2px}
    .metric{color:#efe4d0;font-weight:800;font-size:14px}
    .trend.up{color:#7ee7aa}
    .recommend{
      border-radius:var(--radius-xl);
      border:1px solid var(--border-strong);
      background:linear-gradient(180deg,rgba(216,173,98,.12),rgba(255,255,255,.04));
      padding:24px;
    }
    .recommend ul{padding:0;margin:16px 0 0;list-style:none;display:grid;gap:10px}
    .recommend li{
      display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:14px;
      padding:10px 0;border-bottom:1px solid rgba(255,255,255,.07);
    }
    .recommend li:last-child{border-bottom:0}
    .material-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:18px;
    }
    .material-card{
      min-height:210px;
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      border:1px solid var(--border);
      padding:24px;
      background:
        linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025)),
        radial-gradient(circle at 80% 0%,rgba(216,173,98,.22),transparent 34%);
    }
    .material-card:after{
      content:"";
      position:absolute;right:-30px;bottom:-34px;width:120px;height:120px;border-radius:36px;
      border:1px solid rgba(243,215,155,.18);
      transform:rotate(18deg);
      background:rgba(216,173,98,.06);
    }
    .material-card h3{margin:18px 0 8px}
    .material-card p{color:var(--muted);font-size:14px;margin:0}
    .hot-scroll{
      display:flex;
      gap:16px;
      overflow:auto;
      padding:4px 2px 12px;
      scroll-snap-type:x mandatory;
    }
    .hot-card{
      min-width:282px;
      scroll-snap-align:start;
      border:1px solid var(--border);
      border-radius:24px;
      padding:20px;
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
    }
    .hot-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}
    .hot-no{font-size:28px;font-weight:950;color:var(--gold-2)}
    .hot-card h3{margin:0 0 8px}
    .hot-card p{color:var(--muted);font-size:14px;margin:0 0 16px}
    .news-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:20px;
    }
    .news-list{
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.04);
      overflow:hidden;
    }
    .news-item{
      display:grid;
      grid-template-columns:110px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 20px;
      border-bottom:1px solid rgba(255,255,255,.07);
      transition:.2s ease;
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:rgba(216,173,98,.07)}
    .news-date{color:var(--gold-2);font-weight:900;font-size:13px}
    .news-title{font-weight:800}
    .news-summary{display:block;color:var(--muted);font-size:13px;margin-top:3px}
    .news-arrow{color:var(--gold-2)}
    .side-panel{
      border-radius:var(--radius-xl);
      border:1px solid var(--border-strong);
      background:linear-gradient(180deg,rgba(107,31,53,.22),rgba(255,255,255,.04));
      padding:24px;
    }
    .side-panel h3{margin:0 0 12px}
    .side-panel p{color:var(--muted);font-size:14px;margin:0 0 16px}
    .check-list{list-style:none;margin:0;padding:0;display:grid;gap:11px}
    .check-list li{
      display:flex;
      gap:10px;
      color:#e8dfef;
      font-size:14px;
    }
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }
    details{
      border:1px solid var(--border);
      border-radius:20px;
      background:rgba(255,255,255,.045);
      padding:18px 20px;
      transition:.2s ease;
    }
    details[open]{border-color:var(--border-strong);background:rgba(216,173,98,.07)}
    summary{
      cursor:pointer;
      font-weight:900;
      list-style:none;
      display:flex;
      justify-content:space-between;
      gap:14px;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{content:"＋";color:var(--gold-2)}
    details[open] summary:after{content:"－"}
    details p{margin:12px 0 0;color:var(--muted);font-size:14px}
    .entry{
      position:relative;
      overflow:hidden;
      border-radius:36px;
      border:1px solid var(--border-strong);
      background:
        linear-gradient(135deg,rgba(216,173,98,.18),rgba(107,31,53,.28) 48%,rgba(255,255,255,.05)),
        radial-gradient(circle at 84% 20%,rgba(243,215,155,.18),transparent 28%);
      padding:34px;
      box-shadow:var(--shadow);
    }
    .entry-content{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:28px;
      align-items:center;
      position:relative;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
    }
    .timebox{
      text-align:center;
      padding:16px 10px;
      border-radius:18px;
      background:rgba(0,0,0,.24);
      border:1px solid rgba(255,255,255,.12);
    }
    .timebox b{display:block;font-size:28px;color:var(--gold-2)}
    .timebox span{font-size:12px;color:var(--muted)}
    .entry h2{margin:10px 0 10px;font-size:clamp(28px,4vw,44px);line-height:1.12}
    .entry p{margin:0 0 22px;color:#e6ddeb}
    .form-row{
      display:flex;
      gap:10px;
      margin-top:16px;
    }
    .email-input{
      flex:1;
      min-height:48px;
      border-radius:999px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.08);
      color:#fff;
      padding:0 16px;
      outline:none;
    }
    .email-input::placeholder{color:#9f95ac}
    .notice{
      margin-top:12px;
      color:var(--muted);
      font-size:12px;
    }
    .site-footer{
      border-top:1px solid var(--border);
      background:rgba(8,7,10,.62);
      padding:38px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:22px;
      align-items:start;
    }
    .footer-title{font-size:20px;font-weight:950;margin-bottom:8px}
    .footer-text{color:var(--muted);font-size:14px;margin:0;max-width:520px}
    .footer-links{display:grid;gap:9px}
    .footer-links a{
      color:var(--muted);
      transition:.2s ease;
      font-size:14px;
    }
    .footer-links a:hover{color:var(--gold-2);padding-left:3px}
    .copyright{
      margin-top:26px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:var(--weak);
      font-size:13px;
    }
    .floating-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:45;
      width:min(640px,calc(100% - 28px));
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding:12px;
      border-radius:999px;
      border:1px solid var(--border-strong);
      background:rgba(20,16,26,.9);
      backdrop-filter:blur(16px);
      box-shadow:0 14px 44px rgba(0,0,0,.36);
    }
    .floating-cta span{color:#efe7f7;font-size:14px;padding-left:10px}
    @media (max-width:1024px){
      .hero-content,.steps,.rank-wrap,.news-layout,.entry-content{grid-template-columns:1fr}
      .stage{max-width:760px}
      .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
      .material-grid{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,1180px)}
      .nav-wrap{min-height:68px}
      .menu-toggle{display:grid;place-items:center}
      .nav-main{
        position:absolute;
        left:14px;
        right:14px;
        top:72px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        border-radius:22px;
        background:rgba(22,18,29,.97);
        border:1px solid var(--border);
        box-shadow:var(--shadow);
      }
      .nav-main.open{display:flex}
      .nav-link{text-align:center}
      .nav-actions{display:none}
      .hero-shell{padding:28px 22px;border-radius:28px}
      .hero-points{grid-template-columns:1fr}
      .stage{grid-template-columns:1fr}
      .stage-card.wide{display:block}
      .section{padding:42px 0}
      .section-head{display:block}
      .grid-3,.grid-4,.material-grid,.faq-grid{grid-template-columns:1fr}
      .rank-row{grid-template-columns:44px 1fr;align-items:start}
      .rank-row .metric,.rank-row .trend{padding-left:56px}
      .news-item{grid-template-columns:1fr auto;gap:8px}
      .news-date{grid-column:1/-1}
      .entry{padding:24px;border-radius:28px}
      .footer-grid{grid-template-columns:1fr}
      .floating-cta{border-radius:24px;align-items:stretch;flex-direction:column}
      .floating-cta span{padding-left:0;text-align:center}
      .floating-cta .btn{width:100%}
    }
    @media (max-width:520px){
      .brand-text strong{font-size:15px}
      .brand-text span{display:none}
      .hero{padding-top:34px}
      .hero h1{letter-spacing:-.045em}
      .hero-cta .btn{width:100%}
      .trust-strip{display:grid;grid-template-columns:1fr}
      .countdown{grid-template-columns:1fr}
      .form-row{flex-direction:column}
      .form-row .btn{width:100%}
    }

/* roulang page: category2 */
:root{
      --bg:#08080a;
      --bg-soft:#111116;
      --panel:#15151c;
      --panel-2:#1b1714;
      --text:#f7f2e8;
      --muted:#b9ad9b;
      --weak:#857b6d;
      --gold:#f5c76b;
      --gold-2:#d89b32;
      --red:#c2410c;
      --green:#22c55e;
      --border:rgba(245,199,107,.18);
      --border-soft:rgba(255,255,255,.08);
      --shadow:0 24px 80px rgba(0,0,0,.35);
      --radius:24px;
      --radius-sm:16px;
      --container:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Microsoft YaHei","PingFang SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 0%, rgba(245,199,107,.15), transparent 32%),
        radial-gradient(circle at 88% 10%, rgba(127,29,29,.24), transparent 34%),
        linear-gradient(180deg, #070708 0%, #111012 46%, #08080a 100%);
      line-height:1.65;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(245,199,107,.35);color:#fff}

    .container{
      width:min(100% - 40px, var(--container));
      margin-inline:auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(8,8,10,.78);
      border-bottom:1px solid var(--border-soft);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#1a1204;
      font-weight:900;
      letter-spacing:-.04em;
      background:linear-gradient(135deg,#fff6cc 0%,#f5c76b 42%,#b76c19 100%);
      box-shadow:0 12px 38px rgba(245,199,107,.28);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-name{
      font-weight:900;
      letter-spacing:-.04em;
      font-size:18px;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
    }

    .nav-wrap{
      display:flex;
      align-items:center;
      gap:14px;
      flex:1;
      justify-content:flex-end;
    }
    .nav-main{
      display:flex;
      align-items:center;
      gap:8px;
      padding:7px;
      border:1px solid var(--border-soft);
      border-radius:999px;
      background:rgba(255,255,255,.035);
    }
    .nav-link{
      position:relative;
      padding:10px 15px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:750;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      color:var(--text);
      background:rgba(255,255,255,.06);
    }
    .nav-link.active{
      color:#1b1305;
      background:linear-gradient(135deg,#fff3bd,#f5c76b 60%,#ce892c);
      box-shadow:0 10px 28px rgba(245,199,107,.22);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .mega-holder{
      position:relative;
    }
    .mega-trigger{
      display:flex;
      align-items:center;
      gap:8px;
      border:1px solid var(--border);
      border-radius:999px;
      padding:10px 14px;
      background:rgba(245,199,107,.08);
      color:var(--gold);
      font-size:14px;
      font-weight:800;
      transition:.22s ease;
    }
    .mega-trigger:hover,.mega-trigger:focus{
      outline:none;
      background:rgba(245,199,107,.14);
      transform:translateY(-1px);
    }
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:360px;
      padding:18px;
      border:1px solid var(--border);
      border-radius:22px;
      background:linear-gradient(180deg,rgba(23,23,29,.98),rgba(12,12,15,.98));
      box-shadow:var(--shadow);
      opacity:0;
      visibility:hidden;
      transform:translateY(8px);
      transition:.22s ease;
    }
    .mega-holder:hover .mega-panel,
    .mega-holder:focus-within .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-card{
      display:block;
      padding:14px;
      border-radius:16px;
      border:1px solid var(--border-soft);
      background:rgba(255,255,255,.035);
      transition:.22s ease;
      margin-bottom:10px;
    }
    .mega-card:hover{
      border-color:var(--border);
      background:rgba(245,199,107,.08);
    }
    .mega-card strong{
      display:block;
      color:var(--text);
      font-size:14px;
      margin-bottom:4px;
    }
    .mega-card span{
      display:block;
      color:var(--muted);
      font-size:12px;
      line-height:1.55;
    }

    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--border-soft);
      border-radius:14px;
      background:rgba(255,255,255,.04);
      color:var(--text);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      transition:.22s ease;
      user-select:none;
    }
    .btn-primary{
      color:#1b1305;
      background:linear-gradient(135deg,#fff4bd,#f5c76b 56%,#c97a1b);
      box-shadow:0 18px 44px rgba(245,199,107,.26);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 26px 54px rgba(245,199,107,.32)}
    .btn-secondary{
      color:var(--text);
      background:rgba(255,255,255,.05);
      border-color:var(--border-soft);
    }
    .btn-secondary:hover{border-color:var(--border);background:rgba(245,199,107,.08);transform:translateY(-2px)}
    .btn:focus-visible,.nav-link:focus-visible,.mega-card:focus-visible{
      outline:3px solid rgba(245,199,107,.45);
      outline-offset:3px;
    }

    main{overflow:hidden}
    .section{padding:84px 0}
    .section-tight{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border:1px solid var(--border);
      border-radius:999px;
      color:var(--gold);
      background:rgba(245,199,107,.08);
      font-size:13px;
      font-weight:850;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--gold);
      box-shadow:0 0 0 6px rgba(245,199,107,.12);
    }
    .section-head{
      max-width:780px;
      margin-bottom:32px;
    }
    .section-head h2{
      margin:16px 0 12px;
      font-size:clamp(28px,4vw,48px);
      line-height:1.12;
      letter-spacing:-.05em;
      font-weight:950;
    }
    .section-head p{
      color:var(--muted);
      font-size:17px;
      margin:0;
    }

    .hero{
      padding:58px 0 42px;
    }
    .bento{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      grid-template-rows:auto auto;
      gap:18px;
      align-items:stretch;
    }
    .hero-main,.hero-side,.hero-strip,.panel-card{
      border:1px solid var(--border);
      background:
        linear-gradient(145deg,rgba(245,199,107,.11),transparent 34%),
        linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.03));
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-main{
      grid-row:span 2;
      padding:44px;
      min-height:540px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .hero-main::after{
      content:"";
      position:absolute;
      width:360px;
      height:360px;
      right:-120px;
      bottom:-120px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(245,199,107,.24),transparent 68%);
      pointer-events:none;
    }
    .hero h1{
      margin:18px 0 18px;
      max-width:830px;
      font-size:clamp(38px,7vw,78px);
      line-height:.98;
      letter-spacing:-.075em;
      font-weight:1000;
    }
    .hero-lead{
      max-width:720px;
      color:#d9cdb8;
      font-size:18px;
      margin:0;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .trust-row{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:34px;
    }
    .trust-item{
      padding:16px;
      border:1px solid var(--border-soft);
      border-radius:18px;
      background:rgba(0,0,0,.18);
    }
    .trust-item b{
      display:block;
      color:var(--gold);
      font-size:24px;
      line-height:1.1;
    }
    .trust-item span{
      display:block;
      color:var(--muted);
      font-size:13px;
      margin-top:6px;
    }
    .hero-side{
      padding:24px;
      min-height:258px;
    }
    .hero-side h3{
      margin:14px 0 8px;
      font-size:22px;
      letter-spacing:-.04em;
    }
    .hero-side p{
      color:var(--muted);
      margin:0;
      font-size:14px;
    }
    .badge-line{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:18px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border:1px solid var(--border);
      border-radius:999px;
      color:var(--goldSoft);
      background:rgba(245,199,107,.08);
      font-size:12px;
      font-weight:800;
    }
    .hero-strip{
      grid-column:1 / -1;
      padding:18px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      background:
        linear-gradient(90deg,rgba(245,199,107,.18),rgba(127,29,29,.16)),
        rgba(255,255,255,.04);
    }
    .hero-strip strong{
      display:block;
      font-size:18px;
    }
    .hero-strip span{
      display:block;
      color:var(--muted);
      font-size:14px;
      margin-top:3px;
    }

    .steps-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:24px;
      align-items:start;
    }
    .side-note{
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:26px;
      background:linear-gradient(180deg,rgba(245,199,107,.10),rgba(255,255,255,.035));
      position:sticky;
      top:102px;
    }
    .side-note h3{font-size:26px;letter-spacing:-.04em;margin:14px 0 10px}
    .side-note p{color:var(--muted);margin:0}
    .step-list{
      display:grid;
      gap:16px;
    }
    .step-card{
      display:grid;
      grid-template-columns:70px 1fr;
      gap:18px;
      padding:22px;
      border:1px solid var(--border-soft);
      border-radius:22px;
      background:rgba(255,255,255,.045);
      transition:.22s ease;
    }
    .step-card:hover{
      transform:translateY(-3px);
      border-color:var(--border);
      background:rgba(245,199,107,.065);
    }
    .step-no{
      width:58px;
      height:58px;
      border-radius:20px;
      display:grid;
      place-items:center;
      color:#1b1305;
      background:linear-gradient(135deg,#fff4bd,#f5c76b,#b96b18);
      font-size:20px;
      font-weight:950;
      box-shadow:0 14px 32px rgba(245,199,107,.2);
    }
    .step-card h3{margin:0 0 7px;font-size:21px;letter-spacing:-.035em}
    .step-card p{margin:0;color:var(--muted)}
    .check-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      gap:10px;
      color:#d6c9b5;
      font-size:14px;
    }
    .check-list li::before{
      content:"✓";
      flex:0 0 22px;
      width:22px;height:22px;
      display:grid;place-items:center;
      border-radius:50%;
      color:#151005;
      background:var(--gold);
      font-weight:900;
      line-height:1;
    }

    .proof-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
      align-items:stretch;
    }
    .proof-main{
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:30px;
      background:
        linear-gradient(140deg,rgba(245,199,107,.11),transparent 42%),
        rgba(255,255,255,.045);
    }
    .proof-main h2{
      font-size:clamp(28px,4vw,46px);
      line-height:1.12;
      letter-spacing:-.05em;
      margin:14px 0 14px;
    }
    .proof-main p{color:var(--muted);margin:0}
    .evidence-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      margin-top:24px;
    }
    .evidence{
      padding:18px;
      border-radius:18px;
      border:1px solid var(--border-soft);
      background:rgba(0,0,0,.16);
    }
    .evidence b{
      display:block;
      color:var(--gold);
      font-size:28px;
      line-height:1.1;
    }
    .evidence span{
      display:block;
      color:var(--muted);
      font-size:13px;
      margin-top:6px;
    }
    .case-stack{
      display:grid;
      gap:14px;
    }
    .case-card{
      padding:22px;
      border-radius:22px;
      border:1px solid var(--border-soft);
      background:rgba(255,255,255,.045);
    }
    .case-card strong{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-size:18px;
      margin-bottom:9px;
    }
    .case-card p{color:var(--muted);margin:0;font-size:14px}
    .status{
      font-size:12px;
      font-weight:900;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid rgba(34,197,94,.28);
      color:#86efac;
      background:rgba(34,197,94,.08);
      white-space:nowrap;
    }

    .objection-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:16px;
    }
    .objection-card{
      border:1px solid var(--border-soft);
      border-radius:22px;
      padding:24px;
      background:rgba(255,255,255,.045);
      transition:.22s ease;
    }
    .objection-card:nth-child(1){grid-column:span 7}
    .objection-card:nth-child(2){grid-column:span 5}
    .objection-card:nth-child(3){grid-column:span 5}
    .objection-card:nth-child(4){grid-column:span 7}
    .objection-card:hover{
      border-color:var(--border);
      transform:translateY(-3px);
      background:rgba(245,199,107,.06);
    }
    .objection-card h3{margin:0 0 9px;font-size:21px;letter-spacing:-.035em}
    .objection-card p{margin:0;color:var(--muted)}
    .icon-pill{
      width:42px;height:42px;
      border-radius:15px;
      display:grid;place-items:center;
      color:#1b1305;
      background:linear-gradient(135deg,#fff4bd,#f5c76b,#c97a1b);
      margin-bottom:16px;
      font-weight:950;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:26px;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    details.faq-item{
      border:1px solid var(--border-soft);
      border-radius:18px;
      background:rgba(255,255,255,.045);
      overflow:hidden;
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:18px 20px;
      font-weight:850;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";
      width:28px;height:28px;
      border-radius:50%;
      display:grid;place-items:center;
      color:#1b1305;
      background:var(--gold);
      flex:0 0 auto;
      transition:.22s ease;
    }
    .faq-item[open] summary::after{content:"−";transform:rotate(180deg)}
    .faq-item p{
      margin:0;
      padding:0 20px 20px;
      color:var(--muted);
    }

    .cta{
      border:1px solid var(--border);
      border-radius:32px;
      padding:34px;
      background:
        linear-gradient(135deg,rgba(245,199,107,.2),rgba(127,29,29,.16) 48%,rgba(255,255,255,.04)),
        rgba(255,255,255,.04);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:center;
      position:relative;
      overflow:hidden;
    }
    .cta::after{
      content:"";
      position:absolute;
      inset:auto -100px -160px auto;
      width:360px;height:360px;
      border-radius:999px;
      background:radial-gradient(circle,rgba(245,199,107,.25),transparent 70%);
      pointer-events:none;
    }
    .cta h2{
      margin:12px 0;
      font-size:clamp(30px,4vw,52px);
      line-height:1.08;
      letter-spacing:-.055em;
      position:relative;
      z-index:1;
    }
    .cta p{color:#ddcfb8;margin:0;position:relative;z-index:1}
    .cta-box{
      border:1px solid var(--border-soft);
      border-radius:24px;
      padding:22px;
      background:rgba(0,0,0,.2);
      position:relative;
      z-index:1;
    }
    .cta-box ul{
      list-style:none;
      padding:0;
      margin:0 0 18px;
      display:grid;
      gap:10px;
      color:#d8ccb8;
    }
    .cta-box li{display:flex;gap:10px}
    .cta-box li::before{content:"◆";color:var(--gold);font-size:12px;margin-top:4px}

    .site-footer{
      border-top:1px solid var(--border-soft);
      background:rgba(5,5,6,.72);
      padding:54px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .8fr 1fr;
      gap:28px;
    }
    .footer-title{
      color:var(--text);
      font-weight:900;
      font-size:16px;
      margin-bottom:12px;
    }
    .footer-text{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
      transition:.2s ease;
    }
    .footer-links a:hover{
      color:var(--gold);
      transform:translateX(3px);
    }
    .copyright{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid var(--border-soft);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:var(--weak);
      font-size:13px;
    }

    @media (max-width:1024px){
      .header-inner{min-height:auto;padding:14px 0;align-items:flex-start}
      .nav-wrap{flex-direction:column;align-items:flex-end}
      .nav-main{max-width:100%;overflow-x:auto;border-radius:18px}
      .bento,.steps-wrap,.proof-layout,.faq-wrap,.cta{grid-template-columns:1fr}
      .hero-main{min-height:auto}
      .hero-strip{grid-column:auto}
      .side-note{position:relative;top:auto}
      .objection-card:nth-child(n){grid-column:span 6}
      .footer-grid{grid-template-columns:1fr 1fr}
    }

    @media (max-width:768px){
      .container{width:min(100% - 28px, var(--container))}
      .site-header{position:relative}
      .header-inner{flex-wrap:wrap}
      .brand-name{font-size:16px}
      .mobile-toggle{display:grid;place-items:center;margin-left:auto}
      .nav-wrap{
        display:none;
        width:100%;
        align-items:stretch;
      }
      .site-header.is-open .nav-wrap{display:flex}
      .nav-main{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        border-radius:20px;
      }
      .nav-link{text-align:center}
      .header-actions{justify-content:center}
      .mega-holder{display:none}
      .hero{padding-top:28px}
      .hero-main,.hero-side,.cta{padding:24px}
      .trust-row,.evidence-grid{grid-template-columns:1fr}
      .step-card{grid-template-columns:1fr}
      .objection-card:nth-child(n){grid-column:span 12}
      .section{padding:62px 0}
      .footer-grid{grid-template-columns:1fr}
    }

    @media (max-width:520px){
      .hero h1{font-size:36px}
      .hero-actions,.hero-strip{
        flex-direction:column;
        align-items:stretch;
      }
      .btn{width:100%}
      .copyright{display:grid}
      .section-head h2,.cta h2{letter-spacing:-.035em}
    }

/* roulang page: category1 */
:root {
      --bg: #09090b;
      --bg-soft: #111114;
      --bg-card: rgba(24, 24, 27, .82);
      --gold: #d6b25e;
      --gold-soft: #f4d991;
      --red: #b73542;
      --cyan: #47c2b1;
      --text: #f7f2e8;
      --muted: #b8b1a5;
      --weak: #7f7a72;
      --border: rgba(214, 178, 94, .24);
      --border-strong: rgba(214, 178, 94, .42);
      --shadow: 0 24px 80px rgba(0, 0, 0, .36);
      --shadow-soft: 0 14px 40px rgba(0, 0, 0, .22);
      --radius: 22px;
      --radius-sm: 14px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(214, 178, 94, .14), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(183, 53, 66, .18), transparent 26%),
        linear-gradient(180deg, #08080a 0%, #101012 44%, #08080a 100%);
      font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
      line-height: 1.7;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(244, 217, 145, .72);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(9, 9, 11, .78);
      border-bottom: 1px solid rgba(214, 178, 94, .18);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      font-weight: 800;
      color: var(--gold-soft);
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #15110a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      box-shadow: 0 10px 28px rgba(214, 178, 94, .26);
      font-size: 18px;
      font-weight: 900;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-text small {
      color: var(--muted);
      font-size: 12px;
      font-weight: 500;
      margin-top: 4px;
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-main {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid rgba(214, 178, 94, .16);
      border-radius: 999px;
      background: rgba(255, 255, 255, .035);
    }

    .nav-link {
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #17120a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    }

    .mega {
      position: relative;
    }

    .mega-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 14px;
      border: 1px solid rgba(214, 178, 94, .24);
      border-radius: 999px;
      color: var(--text);
      background: rgba(255, 255, 255, .04);
      font-size: 14px;
      font-weight: 700;
    }

    .mega-btn:hover {
      border-color: var(--border-strong);
      background: rgba(214, 178, 94, .1);
    }

    .mega-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 14px);
      width: 360px;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: rgba(15, 15, 18, .96);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .2s ease;
    }

    .mega:hover .mega-panel,
    .mega:focus-within .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega-card {
      display: block;
      padding: 14px;
      border: 1px solid rgba(214, 178, 94, .16);
      border-radius: 16px;
      background: rgba(255, 255, 255, .035);
    }

    .mega-card + .mega-card {
      margin-top: 10px;
    }

    .mega-card strong {
      display: block;
      color: var(--gold-soft);
      font-size: 15px;
      margin-bottom: 3px;
    }

    .mega-card span {
      display: block;
      color: var(--muted);
      font-size: 13px;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--gold-soft);
      background: rgba(255, 255, 255, .04);
    }

    .hero {
      position: relative;
      padding: 70px 0 34px;
      overflow: hidden;
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
      gap: 34px;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      padding: 7px 12px;
      border: 1px solid rgba(214, 178, 94, .28);
      border-radius: 999px;
      color: var(--gold-soft);
      background: rgba(214, 178, 94, .08);
      font-size: 13px;
      font-weight: 800;
    }

    .hero h1 {
      margin: 22px 0 18px;
      max-width: 850px;
      font-size: clamp(34px, 5.2vw, 66px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 740px;
      color: var(--muted);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 850;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #14100a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      box-shadow: 0 16px 38px rgba(214, 178, 94, .28);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 48px rgba(214, 178, 94, .36);
    }

    .btn-ghost {
      color: var(--text);
      border-color: rgba(244, 217, 145, .28);
      background: rgba(255, 255, 255, .045);
    }

    .btn-ghost:hover {
      border-color: rgba(244, 217, 145, .58);
      background: rgba(244, 217, 145, .09);
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 11px;
      border: 1px solid rgba(214, 178, 94, .18);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, .035);
      font-size: 13px;
      font-weight: 700;
    }

    .badge.gold {
      color: #17120a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      border-color: transparent;
    }

    .join-panel {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(214, 178, 94, .12), rgba(255,255,255,.035) 42%, rgba(71, 194, 177, .07)),
        rgba(16, 16, 19, .86);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .join-top {
      padding: 24px;
      border-bottom: 1px solid rgba(214, 178, 94, .14);
    }

    .join-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
    }

    .join-title strong {
      font-size: 20px;
    }

    .counter {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .counter-item {
      padding: 15px 12px;
      border: 1px solid rgba(214, 178, 94, .16);
      border-radius: 16px;
      background: rgba(0, 0, 0, .22);
    }

    .counter-item b {
      display: block;
      color: var(--gold-soft);
      font-size: 24px;
      line-height: 1.1;
    }

    .counter-item span {
      display: block;
      margin-top: 5px;
      color: var(--weak);
      font-size: 12px;
      font-weight: 700;
    }

    .join-body {
      padding: 24px;
    }

    .progress {
      height: 10px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, .09);
    }

    .progress span {
      display: block;
      width: 78%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--cyan));
    }

    .notice-list {
      display: grid;
      gap: 12px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
    }

    .notice-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .notice-list i {
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #111;
      background: var(--gold);
      font-style: normal;
      font-size: 12px;
      font-weight: 900;
    }

    main {
      display: block;
    }

    .section {
      padding: 74px 0;
    }

    .section.alt {
      background: rgba(255, 255, 255, .025);
      border-top: 1px solid rgba(214, 178, 94, .1);
      border-bottom: 1px solid rgba(214, 178, 94, .1);
    }

    .section-head {
      max-width: 820px;
      margin-bottom: 30px;
    }

    .section-head h2 {
      margin: 0 0 12px;
      font-size: clamp(26px, 3.4vw, 42px);
      line-height: 1.18;
      font-weight: 900;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .split {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 24px;
      align-items: start;
    }

    .panel {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg-card);
      box-shadow: var(--shadow-soft);
    }

    .panel-pad {
      padding: 26px;
    }

    .step-list {
      display: grid;
      gap: 14px;
      counter-reset: step;
    }

    .step {
      counter-increment: step;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      padding: 18px;
      border: 1px solid rgba(214, 178, 94, .16);
      border-radius: 18px;
      background: rgba(255, 255, 255, .035);
    }

    .step::before {
      content: counter(step, decimal-leading-zero);
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #15110a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      font-weight: 900;
    }

    .step h3,
    .proof h3,
    .risk-card h3,
    .faq-item summary {
      margin: 0;
      font-size: 18px;
      font-weight: 850;
    }

    .step p,
    .proof p,
    .risk-card p {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .rating-board {
      display: grid;
      gap: 12px;
    }

    .rating-row {
      display: grid;
      grid-template-columns: 96px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(214, 178, 94, .14);
    }

    .rating-row strong {
      color: var(--gold-soft);
    }

    .rating-row span {
      color: var(--muted);
      font-size: 14px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: 999px;
      color: var(--gold-soft);
      border: 1px solid rgba(214, 178, 94, .25);
      background: rgba(214, 178, 94, .08);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
    }

    .proof {
      padding: 22px;
      border: 1px solid rgba(214, 178, 94, .16);
      border-radius: 18px;
      background: rgba(255, 255, 255, .035);
    }

    .proof.feature {
      background:
        linear-gradient(135deg, rgba(214, 178, 94, .14), rgba(183, 53, 66, .1)),
        rgba(255, 255, 255, .04);
    }

    .metric-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .metric {
      padding: 15px;
      border-radius: 16px;
      background: rgba(0, 0, 0, .22);
      border: 1px solid rgba(214, 178, 94, .16);
    }

    .metric b {
      display: block;
      color: var(--gold-soft);
      font-size: 27px;
      line-height: 1.1;
    }

    .metric span {
      display: block;
      color: var(--weak);
      font-size: 12px;
      font-weight: 700;
      margin-top: 6px;
    }

    .risk-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .risk-card {
      min-height: 210px;
      padding: 22px;
      border: 1px solid rgba(214, 178, 94, .16);
      border-radius: 18px;
      background: rgba(255, 255, 255, .035);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .risk-card:hover {
      transform: translateY(-4px);
      border-color: rgba(214, 178, 94, .38);
      background: rgba(214, 178, 94, .07);
    }

    .risk-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 14px;
      color: #15110a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      font-weight: 900;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid rgba(214, 178, 94, .16);
      border-radius: 18px;
      background: rgba(255, 255, 255, .035);
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      color: var(--gold-soft);
      font-size: 24px;
      line-height: 1;
      transition: transform .2s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item p {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--muted);
    }

    .cta {
      padding: 76px 0;
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 26px;
      align-items: center;
      padding: 34px;
      border: 1px solid var(--border-strong);
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(214, 178, 94, .16), rgba(71, 194, 177, .07) 44%, rgba(183, 53, 66, .12)),
        rgba(18, 18, 21, .88);
      box-shadow: var(--shadow);
    }

    .cta h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.18;
      font-weight: 900;
    }

    .cta p {
      margin: 0;
      color: var(--muted);
      max-width: 760px;
    }

    .site-footer {
      padding: 48px 0 28px;
      border-top: 1px solid rgba(214, 178, 94, .16);
      background: rgba(5, 5, 7, .74);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr .75fr 1.1fr;
      gap: 28px;
    }

    .footer-title {
      color: var(--gold-soft);
      font-weight: 900;
      font-size: 17px;
      margin-bottom: 12px;
    }

    .footer-text {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--gold-soft);
      transform: translateX(3px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(214, 178, 94, .12);
      color: var(--weak);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .nav-wrap {
        width: 100%;
        justify-content: space-between;
      }

      .hero-layout,
      .split,
      .proof-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .risk-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        position: relative;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-wrap {
        display: none;
        align-items: stretch;
        flex-direction: column;
      }

      .nav-wrap.open {
        display: flex;
      }

      .nav-main {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 18px;
      }

      .mega {
        display: none;
      }

      .hero {
        padding-top: 42px;
      }

      .hero-layout {
        gap: 22px;
      }

      .hero h1 {
        font-size: 38px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .counter,
      .metric-list,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .rating-row {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 54px 0;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .brand-text strong {
        max-width: 190px;
        overflow-wrap: anywhere;
      }

      .hero-actions,
      .cta .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .join-top,
      .join-body,
      .panel-pad,
      .cta-box {
        padding: 20px;
      }

      .step {
        grid-template-columns: 1fr;
      }

      .risk-grid {
        grid-template-columns: 1fr;
      }

      .faq-item summary {
        align-items: flex-start;
      }
    }
