/* roulang page: index */
:root{
      --bg:#0b0d16;
      --bg-soft:#111522;
      --surface:#ffffff;
      --surface-2:#f7f8fc;
      --ink:#141827;
      --muted:#697083;
      --muted-2:#8d94a6;
      --line:#e6e9f2;
      --primary:#7c3cff;
      --primary-2:#ff4d8d;
      --primary-3:#00d7b9;
      --warning:#ffb020;
      --success:#18b47b;
      --danger:#ff5964;
      --radius-sm:12px;
      --radius:22px;
      --radius-lg:34px;
      --shadow-sm:0 8px 22px rgba(20,24,39,.08);
      --shadow:0 18px 54px rgba(20,24,39,.14);
      --shadow-dark:0 22px 70px rgba(0,0,0,.28);
      --container:1180px;
      --nav-h:76px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 18% 4%, rgba(124,60,255,.16), transparent 28%),
        radial-gradient(circle at 82% 10%, rgba(255,77,141,.13), transparent 28%),
        linear-gradient(180deg,#fbfbff 0%,#f5f6fb 48%,#ffffff 100%);
      line-height:1.72;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .2s var(--ease),background .2s var(--ease),border-color .2s var(--ease),transform .2s var(--ease)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{cursor:pointer;border:0}
    input,textarea{
      width:100%;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      padding:14px 16px;
      outline:none;
      transition:border-color .2s var(--ease),box-shadow .2s var(--ease),background .2s var(--ease);
    }
    input:focus,textarea:focus{
      border-color:rgba(124,60,255,.55);
      box-shadow:0 0 0 5px rgba(124,60,255,.12);
    }
    ::selection{background:rgba(124,60,255,.18);color:#111}

    .site-wrap{min-height:100vh}
    .container{
      width:min(calc(100% - 36px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:76px 0;
      position:relative;
    }
    .section.compact{padding:48px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-size:14px;
      font-weight:800;
      letter-spacing:.04em;
      margin-bottom:10px;
    }
    .section-title{
      margin:0;
      color:var(--ink);
      font-size:clamp(28px,3vw,44px);
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .section-desc{
      max-width:570px;
      margin:12px 0 0;
      color:var(--muted);
      font-size:16px;
    }

    .skip-link{
      position:absolute;
      left:-999px;
      top:10px;
      z-index:999;
      background:#fff;
      color:var(--primary);
      padding:10px 14px;
      border-radius:12px;
      box-shadow:var(--shadow-sm);
    }
    .skip-link:focus{left:12px}

    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(255,255,255,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(230,233,242,.9);
    }
    .topbar{
      min-height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:230px;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#fff;
      background:
        linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 10px 24px rgba(124,60,255,.28);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-title{
      font-weight:900;
      color:#111426;
      font-size:15px;
      letter-spacing:-.02em;
      max-width:225px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      color:var(--muted-2);
      font-size:12px;
      margin-top:4px;
    }
    .main-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      background:#f3f4fa;
      border:1px solid rgba(230,233,242,.78);
      border-radius:999px;
    }
    .nav-link{
      padding:9px 18px;
      border-radius:999px;
      font-size:14px;
      font-weight:800;
      color:#4d5366;
    }
    .nav-link.active{
      background:#fff;
      color:var(--primary);
      box-shadow:0 6px 18px rgba(20,24,39,.08);
    }
    .nav-link:hover{background:#fff;color:var(--primary)}
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-search{
      width:230px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 12px;
      height:42px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 22px rgba(20,24,39,.05);
    }
    .nav-search i{color:#9aa1b3}
    .nav-search input{
      padding:0;
      border:0;
      box-shadow:none;
      height:38px;
      border-radius:0;
      background:transparent;
      font-size:13px;
    }
    .nav-search input:focus{box-shadow:none}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      font-weight:900;
      font-size:14px;
      line-height:1;
      border:1px solid transparent;
      transition:transform .2s var(--ease),box-shadow .2s var(--ease),background .2s var(--ease),color .2s var(--ease),border-color .2s var(--ease);
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:focus{outline:3px solid rgba(124,60,255,.22);outline-offset:2px}
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 14px 28px rgba(124,60,255,.26);
    }
    .btn-primary:hover{color:#fff;box-shadow:0 18px 36px rgba(124,60,255,.32)}
    .btn-ghost{
      color:#30364a;
      background:#fff;
      border-color:var(--line);
      box-shadow:0 8px 22px rgba(20,24,39,.06);
    }
    .btn-ghost:hover{border-color:rgba(124,60,255,.35);color:var(--primary)}
    .btn-dark{
      color:#fff;
      background:#151827;
      box-shadow:0 14px 30px rgba(20,24,39,.22);
    }
    .btn-dark:hover{color:#fff;background:#0e111d}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      background:#fff;
      border:1px solid var(--line);
      color:#22283a;
      box-shadow:var(--shadow-sm);
    }

    .hero{
      padding:34px 0 70px;
      color:#fff;
    }
    .hero-stage{
      position:relative;
      min-height:620px;
      overflow:hidden;
      border-radius:44px;
      background:
        linear-gradient(180deg,rgba(8,10,20,.16),rgba(8,10,20,.86)),
        radial-gradient(circle at 18% 22%,rgba(124,60,255,.72),transparent 34%),
        radial-gradient(circle at 76% 18%,rgba(255,77,141,.58),transparent 28%),
        linear-gradient(135deg,#101322,#1a1427 58%,#0d1720);
      box-shadow:var(--shadow-dark);
      padding:34px;
      isolation:isolate;
    }
    .hero-stage:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
      background-size:38px 38px;
      opacity:.42;
      mask-image:linear-gradient(180deg,#000 0%,transparent 88%);
      z-index:-2;
    }
    .hero-reels{
      position:absolute;
      inset:26px;
      display:grid;
      grid-template-columns:1.05fr .78fr 1fr .82fr;
      gap:18px;
      opacity:.72;
      z-index:-1;
    }
    .reel{
      min-height:520px;
      border-radius:34px;
      border:1px solid rgba(255,255,255,.16);
      background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.04));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 24px 58px rgba(0,0,0,.22);
      overflow:hidden;
      position:relative;
      transform:translateY(var(--offset,0));
    }
    .reel:nth-child(2){--offset:38px}
    .reel:nth-child(3){--offset:-18px}
    .reel:nth-child(4){--offset:56px}
    .reel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 50% 20%,rgba(255,255,255,.28),transparent 18%),
        linear-gradient(160deg,var(--c1),var(--c2));
      opacity:.82;
    }
    .reel:after{
      content:attr(data-label);
      position:absolute;
      left:18px;
      right:18px;
      bottom:18px;
      padding:12px 14px;
      border-radius:18px;
      color:#fff;
      font-weight:900;
      font-size:14px;
      background:rgba(0,0,0,.28);
      backdrop-filter:blur(12px);
      border:1px solid rgba(255,255,255,.16);
    }
    .hero-content{
      min-height:552px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      align-items:center;
      text-align:center;
      position:relative;
    }
    .hero-topline{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      color:#fff;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(12px);
    }
    .badge.light{
      color:var(--primary);
      background:rgba(124,60,255,.09);
      border-color:rgba(124,60,255,.18);
      backdrop-filter:none;
    }
    .badge.green{
      color:#087b63;
      background:rgba(0,215,185,.13);
      border-color:rgba(0,215,185,.22);
    }
    .hero-title-wrap{
      max-width:900px;
      margin:auto;
      padding:56px 0 28px;
    }
    h1{
      margin:0;
      font-size:clamp(38px,6.2vw,76px);
      line-height:1.02;
      font-weight:1000;
      letter-spacing:-.065em;
      text-shadow:0 18px 42px rgba(0,0,0,.28);
    }
    .hero-lead{
      max-width:760px;
      margin:22px auto 0;
      color:rgba(255,255,255,.84);
      font-size:clamp(16px,1.55vw,20px);
      line-height:1.78;
    }
    .hero-ctas{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .hero-kpis{
      width:100%;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:28px;
    }
    .kpi-card{
      text-align:left;
      padding:18px;
      border-radius:24px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(16px);
      box-shadow:0 12px 32px rgba(0,0,0,.14);
    }
    .kpi-num{
      display:block;
      font-size:31px;
      font-weight:1000;
      line-height:1;
      letter-spacing:-.04em;
    }
    .kpi-label{
      display:block;
      margin-top:8px;
      color:rgba(255,255,255,.76);
      font-size:13px;
      line-height:1.45;
    }

    .steps-strip{
      display:grid;
      grid-template-columns:1.1fr 1fr 1fr;
      gap:18px;
      margin-top:-36px;
      position:relative;
      z-index:3;
    }
    .strip-card{
      display:flex;
      align-items:center;
      gap:16px;
      padding:18px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .strip-icon{
      width:46px;
      height:46px;
      flex:0 0 auto;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
    }
    .strip-card strong{display:block;font-size:16px;line-height:1.25}
    .strip-card span{display:block;margin-top:4px;color:var(--muted);font-size:13px;line-height:1.45}

    .tier-board{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .tier-main{
      padding:28px;
      border-radius:34px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .tier-ladder{
      display:grid;
      gap:14px;
      margin-top:22px;
    }
    .tier-item{
      display:grid;
      grid-template-columns:88px 1fr auto;
      align-items:center;
      gap:18px;
      padding:16px;
      border-radius:22px;
      background:var(--surface-2);
      border:1px solid transparent;
      transition:transform .2s var(--ease),border-color .2s var(--ease),box-shadow .2s var(--ease);
    }
    .tier-item:hover{
      transform:translateY(-3px);
      border-color:rgba(124,60,255,.20);
      box-shadow:var(--shadow-sm);
    }
    .tier-level{
      height:56px;
      border-radius:18px;
      display:grid;
      place-items:center;
      font-weight:1000;
      color:#fff;
      background:linear-gradient(135deg,#181b2b,#383050);
    }
    .tier-copy strong{display:block;font-size:17px}
    .tier-copy span{display:block;color:var(--muted);font-size:14px;line-height:1.55;margin-top:3px}
    .tier-action{
      color:var(--primary);
      font-weight:900;
      font-size:14px;
      white-space:nowrap;
    }
    .reward-box{
      position:relative;
      overflow:hidden;
      padding:28px;
      border-radius:34px;
      color:#fff;
      background:
        radial-gradient(circle at 80% 20%,rgba(255,176,32,.46),transparent 28%),
        linear-gradient(145deg,#1a1430,#3a1a52 58%,#111522);
      box-shadow:var(--shadow-dark);
      min-height:100%;
    }
    .reward-box:before{
      content:"";
      position:absolute;
      width:210px;
      height:210px;
      border-radius:48px;
      right:-54px;
      bottom:-64px;
      background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.04));
      transform:rotate(18deg);
    }
    .reward-box h3{margin:10px 0 10px;font-size:30px;line-height:1.15;font-weight:1000}
    .reward-box p{color:rgba(255,255,255,.76);margin:0}
    .reward-list{
      display:grid;
      gap:12px;
      margin:24px 0;
      position:relative;
    }
    .reward-list li{
      list-style:none;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px;
      border-radius:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
    }

    .compare-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .plan-card{
      position:relative;
      padding:26px;
      border-radius:30px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:transform .2s var(--ease),box-shadow .2s var(--ease),border-color .2s var(--ease);
      overflow:hidden;
    }
    .plan-card:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow);
      border-color:rgba(124,60,255,.22);
    }
    .plan-card.featured{
      color:#fff;
      background:
        radial-gradient(circle at 82% 10%,rgba(255,77,141,.45),transparent 34%),
        linear-gradient(145deg,#171a2d,#261247);
      border-color:rgba(255,255,255,.12);
      box-shadow:var(--shadow-dark);
    }
    .plan-name{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:16px;
    }
    .plan-name h3{margin:0;font-size:22px;font-weight:1000}
    .plan-price{
      font-size:36px;
      line-height:1;
      font-weight:1000;
      letter-spacing:-.04em;
      margin-bottom:12px;
    }
    .plan-price small{font-size:14px;color:inherit;opacity:.72;font-weight:800}
    .plan-card p{color:var(--muted);margin:0 0 18px}
    .plan-card.featured p{color:rgba(255,255,255,.78)}
    .check-list{
      display:grid;
      gap:11px;
      margin:0 0 22px;
      padding:0;
    }
    .check-list li{
      list-style:none;
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#3b4052;
      font-size:14px;
    }
    .plan-card.featured .check-list li{color:rgba(255,255,255,.88)}
    .check-list i{color:var(--success);margin-top:5px}
    .plan-card.featured .check-list i{color:var(--primary-3)}

    .assurance{
      padding:22px;
      border-radius:34px;
      background:#121523;
      color:#fff;
      box-shadow:var(--shadow-dark);
    }
    .assurance-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .assurance-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:18px;
      border-radius:24px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .assurance-item i{
      width:42px;
      height:42px;
      flex:0 0 auto;
      display:grid;
      place-items:center;
      border-radius:15px;
      color:#111523;
      background:var(--primary-3);
    }
    .assurance-item strong{display:block;font-size:16px;line-height:1.25}
    .assurance-item span{display:block;margin-top:6px;color:rgba(255,255,255,.66);font-size:13px;line-height:1.5}

    .news-layout{
      display:grid;
      grid-template-columns:1.45fr .75fr;
      gap:22px;
      align-items:start;
    }
    .news-panel,.side-panel{
      border-radius:32px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .news-list{margin:0;padding:0}
    .news-list li{list-style:none}
    .news-link{
      display:grid;
      grid-template-columns:86px 1fr auto;
      gap:16px;
      align-items:center;
      padding:20px 22px;
      border-bottom:1px solid var(--line);
      color:var(--ink);
    }
    .news-list li:last-child .news-link{border-bottom:0}
    .news-link:hover{background:#fafbff;color:var(--primary)}
    .news-date{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      min-height:64px;
      border-radius:18px;
      background:#f4f1ff;
      color:var(--primary);
      font-weight:1000;
      line-height:1.1;
    }
    .news-date small{font-size:12px;color:#7f6fc5;margin-top:5px}
    .news-copy strong{
      display:block;
      color:inherit;
      font-size:17px;
      line-height:1.35;
      margin-bottom:5px;
    }
    .news-copy span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }
    .news-arrow{
      width:36px;
      height:36px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#f5f6fb;
      color:#9aa1b3;
    }
    .news-link:hover .news-arrow{background:var(--primary);color:#fff}
    .side-panel{padding:22px}
    .side-panel h3{margin:0 0 16px;font-size:21px;font-weight:1000}
    .rank-list{display:grid;gap:12px;margin:0;padding:0}
    .rank-list li{
      list-style:none;
      display:grid;
      grid-template-columns:34px 1fr;
      gap:12px;
      align-items:start;
      padding:12px;
      border-radius:18px;
      background:var(--surface-2);
      transition:transform .2s var(--ease),background .2s var(--ease);
    }
    .rank-list li:hover{transform:translateX(4px);background:#f0edff}
    .rank-num{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:12px;
      background:#fff;
      color:var(--primary);
      font-weight:1000;
      box-shadow:0 6px 16px rgba(20,24,39,.06);
    }
    .rank-copy strong{display:block;font-size:14px;line-height:1.35}
    .rank-copy span{display:block;margin-top:4px;color:var(--muted);font-size:12px;line-height:1.45}

    .insight-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:stretch;
    }
    .quote-card{
      padding:30px;
      border-radius:34px;
      color:#fff;
      background:
        radial-gradient(circle at 18% 18%,rgba(0,215,185,.34),transparent 28%),
        linear-gradient(145deg,#111827,#171a2f);
      box-shadow:var(--shadow-dark);
    }
    .quote-card i{font-size:34px;color:var(--primary-3)}
    .quote-card blockquote{
      margin:18px 0 20px;
      font-size:25px;
      line-height:1.45;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .quote-card p{margin:0;color:rgba(255,255,255,.72)}
    .topic-cards{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .topic-card{
      padding:22px;
      border-radius:28px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .topic-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
    .topic-card i{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:15px;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      margin-bottom:14px;
    }
    .topic-card h3{margin:0 0 8px;font-size:18px;font-weight:1000}
    .topic-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.6}

    .faq-grid{
      display:grid;
      grid-template-columns:.72fr 1.28fr;
      gap:22px;
      align-items:start;
    }
    .faq-note{
      position:sticky;
      top:98px;
      padding:26px;
      border-radius:32px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .faq-note h2{margin:0 0 10px;font-size:28px;line-height:1.2;font-weight:1000}
    .faq-note p{margin:0;color:var(--muted)}
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:24px;
      overflow:hidden;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 22px rgba(20,24,39,.05);
    }
    .accordion-title{
      border:0!important;
      color:var(--ink)!important;
      font-weight:1000;
      font-size:16px;
      padding:20px 54px 20px 22px;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fafbff!important;
      color:var(--primary)!important;
    }
    .accordion-title:before{
      right:22px;
      margin-top:-10px;
      font-size:22px;
      color:var(--primary);
    }
    .accordion-content{
      border:0!important;
      border-top:1px solid var(--line)!important;
      color:var(--muted);
      padding:18px 22px 22px;
      line-height:1.8;
      background:#fff;
    }

    .cta-section{padding-bottom:88px}
    .cta-card{
      position:relative;
      overflow:hidden;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:26px;
      align-items:center;
      padding:34px;
      border-radius:42px;
      color:#fff;
      background:
        radial-gradient(circle at 8% 12%,rgba(255,77,141,.32),transparent 30%),
        radial-gradient(circle at 88% 22%,rgba(0,215,185,.28),transparent 28%),
        linear-gradient(145deg,#14182a,#241347 58%,#10131e);
      box-shadow:var(--shadow-dark);
    }
    .cta-card:after{
      content:"";
      position:absolute;
      inset:auto -80px -120px auto;
      width:300px;
      height:300px;
      border-radius:88px;
      background:rgba(255,255,255,.08);
      transform:rotate(24deg);
    }
    .cta-copy{position:relative;z-index:1}
    .cta-copy h2{
      margin:0;
      font-size:clamp(30px,4vw,52px);
      line-height:1.08;
      font-weight:1000;
      letter-spacing:-.05em;
    }
    .cta-copy p{
      margin:16px 0 24px;
      max-width:620px;
      color:rgba(255,255,255,.74);
      font-size:16px;
    }
    .countdown{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:20px;
    }
    .time-box{
      min-width:82px;
      padding:12px;
      border-radius:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      text-align:center;
    }
    .time-box strong{display:block;font-size:24px;font-weight:1000;line-height:1}
    .time-box span{display:block;margin-top:6px;color:rgba(255,255,255,.62);font-size:12px}
    .lead-form{
      position:relative;
      z-index:1;
      padding:22px;
      border-radius:30px;
      background:rgba(255,255,255,.96);
      color:var(--ink);
      box-shadow:0 22px 58px rgba(0,0,0,.20);
    }
    .lead-form h3{margin:0 0 8px;font-size:22px;font-weight:1000}
    .lead-form p{margin:0 0 16px;color:var(--muted);font-size:14px}
    .form-grid{display:grid;gap:12px}
    .form-tip{
      color:var(--muted-2);
      font-size:12px;
      margin-top:12px;
      line-height:1.55;
    }

    .site-footer{
      background:#0d101b;
      color:#fff;
      padding:54px 0 30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      align-items:start;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      display:flex;
      gap:13px;
      align-items:center;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{width:44px;height:44px}
    .footer-brand strong{display:block;font-size:18px;font-weight:1000;line-height:1.2}
    .footer-about p{margin:0;color:rgba(255,255,255,.62);max-width:460px}
    .footer-col h3{margin:0 0 14px;font-size:15px;color:#fff}
    .footer-links{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
    }
    .footer-links li{list-style:none;color:rgba(255,255,255,.62);font-size:14px}
    .footer-links a:hover{color:#fff}
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding-top:24px;
      color:rgba(255,255,255,.50);
      font-size:13px;
    }
    .socials{display:flex;gap:10px}
    .socials a{
      width:36px;
      height:36px;
      display:grid;
      place-items:center;
      border-radius:13px;
      background:rgba(255,255,255,.08);
      color:rgba(255,255,255,.72);
    }
    .socials a:hover{background:var(--primary);color:#fff;transform:translateY(-2px)}

    @media (max-width:1024px){
      .nav-search{width:190px}
      .brand{min-width:190px}
      .hero-reels{grid-template-columns:repeat(3,1fr)}
      .hero-reels .reel:nth-child(4){display:none}
      .tier-board,.news-layout,.insight-grid,.cta-card{grid-template-columns:1fr}
      .compare-grid{grid-template-columns:1fr 1fr}
      .assurance-row{grid-template-columns:repeat(2,1fr)}
      .faq-grid{grid-template-columns:1fr}
      .faq-note{position:static}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      :root{--nav-h:66px}
      .container{width:min(calc(100% - 28px),var(--container))}
      .topbar{flex-wrap:wrap;padding:10px 0}
      .brand{min-width:0;flex:1}
      .brand-title{max-width:180px}
      .menu-toggle{display:grid;place-items:center}
      .main-nav,.nav-actions{
        display:none;
        width:100%;
      }
      .site-header.is-open .main-nav{
        display:flex;
        order:3;
        overflow-x:auto;
        justify-content:flex-start;
        border-radius:18px;
      }
      .site-header.is-open .nav-actions{
        display:grid;
        order:4;
        grid-template-columns:1fr;
        gap:10px;
      }
      .nav-search{width:100%}
      .section{padding:58px 0}
      .section-head{display:block}
      .hero{padding-top:20px}
      .hero-stage{min-height:620px;border-radius:30px;padding:22px}
      .hero-reels{inset:16px;grid-template-columns:1fr 1fr;gap:12px}
      .hero-reels .reel:nth-child(3){display:none}
      .hero-content{min-height:570px}
      .hero-title-wrap{padding:46px 0 18px}
      .hero-kpis{grid-template-columns:1fr}
      .steps-strip{grid-template-columns:1fr;margin-top:-26px}
      .tier-item{grid-template-columns:68px 1fr}
      .tier-action{grid-column:2}
      .compare-grid,.topic-cards{grid-template-columns:1fr}
      .news-link{grid-template-columns:70px 1fr;padding:17px}
      .news-arrow{display:none}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column;align-items:flex-start}
    }
    @media (max-width:520px){
      .btn{width:100%;min-height:46px}
      .hero-stage{border-radius:24px}
      .hero-topline{justify-content:flex-start}
      .hero-content{text-align:left;align-items:flex-start}
      .hero-ctas{width:100%}
      .kpi-card{text-align:left}
      .strip-card{align-items:flex-start}
      .assurance-row{grid-template-columns:1fr}
      .cta-card{padding:24px;border-radius:30px}
      .lead-form{padding:18px;border-radius:24px}
      .countdown{display:grid;grid-template-columns:repeat(2,1fr)}
      .time-box{min-width:0}
    }
