/* roulang page: index */
:root{
      --bg:#071225;
      --bg-2:#0b1b38;
      --panel:rgba(13,31,62,.68);
      --panel-strong:rgba(18,42,82,.86);
      --panel-soft:rgba(255,255,255,.06);
      --text:#eef6ff;
      --muted:#a8bdd7;
      --muted-2:#7f96b5;
      --brand:#4f9cff;
      --brand-2:#24d3ee;
      --violet:#9b7cff;
      --green:#6ee7b7;
      --amber:#fbbf24;
      --danger:#fb7185;
      --border:rgba(173,207,255,.18);
      --border-strong:rgba(96,165,250,.38);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --shadow:0 24px 80px rgba(0,0,0,.38);
      --shadow-soft:0 16px 45px rgba(7,18,37,.34);
      --glow:0 0 42px rgba(36,211,238,.34),0 0 82px rgba(79,156,255,.22);
      --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,"PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 15% 8%, rgba(79,156,255,.28), transparent 34%),
        radial-gradient(circle at 82% 2%, rgba(139,92,246,.22), transparent 34%),
        radial-gradient(circle at 55% 48%, rgba(34,211,238,.13), transparent 28%),
        linear-gradient(180deg,#051027 0%,#071225 44%,#091426 100%);
      line-height:1.7;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:46px 46px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.78),transparent 78%);
      z-index:-2;
    }
    body::after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:linear-gradient(120deg,rgba(255,255,255,.05),transparent 18%,transparent 82%,rgba(34,211,238,.05));
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(34,211,238,.35);color:#fff}
    .container{
      width:min(var(--container),calc(100% - 40px));
      margin-inline:auto;
    }
    .skip-link{
      position:absolute;
      left:18px;
      top:-48px;
      z-index:99;
      padding:10px 14px;
      border-radius:12px;
      background:#fff;
      color:#071225;
      transition:top .2s ease;
    }
    .skip-link:focus{top:12px;outline:none}
    .site-header{
      position:sticky;
      top:0;
      z-index:60;
      border-bottom:1px solid rgba(173,207,255,.14);
      background:rgba(5,16,39,.72);
      backdrop-filter:blur(18px);
      box-shadow:0 10px 32px rgba(0,0,0,.18);
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      letter-spacing:.02em;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:
        radial-gradient(circle at 30% 25%,#fff,transparent 18%),
        linear-gradient(135deg,var(--brand),var(--brand-2) 48%,var(--violet));
      box-shadow:var(--glow);
      position:relative;
      overflow:hidden;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      width:54px;
      height:16px;
      left:-8px;
      top:17px;
      transform:rotate(-28deg);
      background:rgba(255,255,255,.24);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.05;
    }
    .brand-text strong{font-size:18px}
    .brand-text span{font-size:12px;color:var(--muted);font-weight:600;margin-top:5px}
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      color:var(--muted);
      font-weight:750;
      transition:color .2s ease, background .2s ease, transform .2s ease;
    }
    .nav-link:hover,
    .nav-link:focus-visible{
      color:#fff;
      background:rgba(255,255,255,.08);
      outline:none;
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(79,156,255,.26),rgba(34,211,238,.14));
      border:1px solid rgba(125,211,252,.22);
    }
    .nav-search{
      width:220px;
      height:44px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 12px;
      border:1px solid var(--border);
      border-radius:999px;
      background:rgba(255,255,255,.055);
      color:var(--muted);
      transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .nav-search:focus-within{
      border-color:rgba(34,211,238,.65);
      box-shadow:0 0 0 4px rgba(34,211,238,.12);
      background:rgba(255,255,255,.08);
    }
    .nav-search input{
      width:100%;
      border:0;
      outline:0;
      color:#fff;
      background:transparent;
      font-size:14px;
    }
    .nav-search input::placeholder{color:var(--muted-2)}
    .mobile-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--border);
      border-radius:16px;
      color:#fff;
      background:rgba(255,255,255,.07);
      align-items:center;
      justify-content:center;
      transition:background .2s ease,border-color .2s ease,transform .2s ease;
    }
    .mobile-toggle:hover{background:rgba(255,255,255,.11);border-color:var(--border-strong)}
    .mobile-toggle:active{transform:scale(.96)}
    .mobile-menu{
      display:none;
      padding:0 0 18px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      letter-spacing:.01em;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus-visible{
      outline:none;
      box-shadow:0 0 0 4px rgba(34,211,238,.18),var(--glow);
    }
    .btn-primary{
      color:#04101f;
      background:linear-gradient(135deg,#7dd3fc 0%,#60a5fa 48%,#a78bfa 100%);
      box-shadow:0 0 30px rgba(96,165,250,.38), inset 0 1px 0 rgba(255,255,255,.55);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 0 42px rgba(34,211,238,.48),0 18px 45px rgba(0,0,0,.28)}
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:var(--border);
      backdrop-filter:blur(14px);
    }
    .btn-secondary:hover{transform:translateY(-2px);border-color:rgba(125,211,252,.45);background:rgba(255,255,255,.1)}
    .btn-small{min-height:40px;padding:0 15px;font-size:14px}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:30px;
      padding:4px 11px;
      border-radius:999px;
      border:1px solid rgba(125,211,252,.23);
      color:#dff7ff;
      background:rgba(34,211,238,.08);
      font-size:13px;
      font-weight:800;
    }
    .badge .dot{
      width:8px;height:8px;border-radius:99px;background:var(--brand-2);
      box-shadow:0 0 16px rgba(34,211,238,.8);
    }
    .section{
      padding:76px 0;
      position:relative;
    }
    .section.compact{padding:56px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:30px;
    }
    .section-eyebrow{
      color:var(--brand-2);
      font-size:13px;
      font-weight:900;
      letter-spacing:.14em;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,4vw,44px);
      line-height:1.13;
      letter-spacing:-.04em;
    }
    .section-desc{
      max-width:650px;
      margin:12px 0 0;
      color:var(--muted);
      font-size:16px;
    }
    .glass{
      border:1px solid var(--border);
      background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.045));
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(18px);
    }
    .card{
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      background:linear-gradient(180deg,rgba(255,255,255,.088),rgba(255,255,255,.042));
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(16px);
      transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
    }
    .card:hover{
      transform:translateY(-5px);
      border-color:rgba(125,211,252,.38);
      box-shadow:0 24px 70px rgba(0,0,0,.34),0 0 32px rgba(34,211,238,.1);
      background:linear-gradient(180deg,rgba(255,255,255,.115),rgba(255,255,255,.052));
    }
    .hero{
      min-height:720px;
      padding:118px 0 78px;
      display:flex;
      align-items:center;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      width:720px;
      height:720px;
      right:-240px;
      top:18px;
      background:radial-gradient(circle,rgba(34,211,238,.22),transparent 66%);
      filter:blur(4px);
      pointer-events:none;
    }
    .hero-stage{
      border-radius:34px;
      position:relative;
      overflow:hidden;
      min-height:540px;
      padding:34px;
      background:
        linear-gradient(135deg,rgba(9,24,55,.72),rgba(18,34,72,.5)),
        radial-gradient(circle at 78% 28%,rgba(34,211,238,.2),transparent 36%),
        radial-gradient(circle at 22% 78%,rgba(139,92,246,.2),transparent 32%);
      border:1px solid rgba(173,207,255,.2);
      box-shadow:var(--shadow);
    }
    .hero-stage::after{
      content:"";
      position:absolute;
      inset:1px;
      border-radius:33px;
      pointer-events:none;
      background:linear-gradient(120deg,rgba(255,255,255,.16),transparent 24%,transparent 72%,rgba(34,211,238,.08));
      opacity:.75;
    }
    .hero-grid{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:minmax(0,1.04fr) minmax(340px,.82fr);
      gap:32px;
      align-items:stretch;
    }
    .release-panel{
      min-height:472px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:10px 0;
    }
    .hero h1{
      margin:20px 0 18px;
      max-width:760px;
      font-size:clamp(42px,7vw,78px);
      line-height:.98;
      letter-spacing:-.07em;
    }
    .hero-lead{
      max-width:720px;
      color:#c9daef;
      font-size:clamp(16px,1.8vw,20px);
      margin:0;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:14px;
      margin-top:30px;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
      margin-top:32px;
      max-width:760px;
    }
    .metric{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(173,207,255,.16);
      background:rgba(255,255,255,.055);
    }
    .metric strong{
      display:block;
      font-size:24px;
      line-height:1;
      letter-spacing:-.02em;
    }
    .metric span{
      display:block;
      margin-top:8px;
      color:var(--muted);
      font-size:13px;
    }
    .launch-card{
      padding:24px;
      border-radius:28px;
      background:
        radial-gradient(circle at 45% 20%,rgba(34,211,238,.22),transparent 38%),
        linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
      border:1px solid rgba(173,207,255,.2);
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(16px);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:472px;
    }
    .cover-card{
      min-height:190px;
      border-radius:24px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(79,156,255,.36),rgba(139,92,246,.22)),
        radial-gradient(circle at 76% 30%,rgba(255,255,255,.35),transparent 18%),
        linear-gradient(180deg,#12345f,#091b3a);
      border:1px solid rgba(255,255,255,.17);
    }
    .cover-card::before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,255,255,.18);
      border-radius:20px;
    }
    .cover-lines{
      position:absolute;
      left:24px;
      right:24px;
      bottom:22px;
    }
    .cover-lines span{
      display:block;
      height:10px;
      border-radius:99px;
      background:rgba(255,255,255,.3);
      margin-top:10px;
    }
    .cover-lines span:nth-child(1){width:70%}
    .cover-lines span:nth-child(2){width:46%;background:rgba(125,211,252,.45)}
    .countdown-wrap{
      display:grid;
      grid-template-columns:150px minmax(0,1fr);
      gap:18px;
      align-items:center;
      margin-top:22px;
    }
    .count-ring{
      width:150px;
      height:150px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        conic-gradient(from 200deg,var(--brand-2) var(--progress,68%),rgba(255,255,255,.1) 0),
        radial-gradient(circle,rgba(8,18,37,.98) 62%,transparent 63%);
      box-shadow:0 0 46px rgba(34,211,238,.28);
      position:relative;
    }
    .count-ring::after{
      content:"";
      position:absolute;
      inset:12px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.12);
    }
    .count-ring strong{
      font-size:34px;
      line-height:1;
      letter-spacing:-.04em;
    }
    .count-ring span{
      display:block;
      color:var(--muted);
      font-size:12px;
      text-align:center;
      margin-top:5px;
    }
    .time-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
    }
    .time-box{
      padding:12px 10px;
      border-radius:16px;
      background:rgba(255,255,255,.075);
      border:1px solid rgba(255,255,255,.11);
      text-align:center;
    }
    .time-box b{display:block;font-size:24px;line-height:1}
    .time-box small{color:var(--muted);font-weight:700}
    .selling-points{
      margin-top:20px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .selling-item{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:12px;
      border-radius:16px;
      color:#d9eaff;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.1);
      transition:background .2s ease,border-color .2s ease,transform .2s ease;
    }
    .selling-item.active{
      background:rgba(34,211,238,.12);
      border-color:rgba(34,211,238,.36);
      transform:translateX(3px);
    }
    .selling-item i{
      width:10px;
      height:10px;
      border-radius:50%;
      margin-top:8px;
      flex:0 0 auto;
      background:rgba(125,211,252,.45);
      box-shadow:0 0 16px rgba(34,211,238,.55);
    }
    .series-strip{
      display:flex;
      gap:14px;
      overflow-x:auto;
      padding:6px 2px 18px;
      scrollbar-width:thin;
      scrollbar-color:rgba(125,211,252,.45) transparent;
    }
    .series-chip{
      min-width:190px;
      padding:18px;
      border-radius:20px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.055);
      transition:transform .22s ease,border-color .22s ease,background .22s ease;
    }
    .series-chip:hover{
      transform:translateY(-4px);
      border-color:rgba(34,211,238,.4);
      background:rgba(255,255,255,.09);
    }
    .series-chip strong{display:block;font-size:17px}
    .series-chip span{display:block;margin-top:6px;color:var(--muted);font-size:13px}
    .popular-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:20px;
      align-items:stretch;
    }
    .spotlight{
      min-height:430px;
      padding:28px;
      border-radius:28px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 78% 18%,rgba(251,191,36,.16),transparent 27%),
        radial-gradient(circle at 14% 78%,rgba(34,211,238,.18),transparent 30%),
        linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.045));
    }
    .spotlight::before{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-60px;
      top:40px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(34,211,238,.18),transparent 68%);
    }
    .poster-stack{
      position:absolute;
      right:30px;
      bottom:28px;
      display:flex;
      align-items:end;
      gap:14px;
    }
    .poster{
      width:112px;
      height:168px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.18);
      background:linear-gradient(160deg,rgba(125,211,252,.36),rgba(139,92,246,.22)),linear-gradient(#102b55,#06152e);
      box-shadow:0 18px 45px rgba(0,0,0,.32);
      position:relative;
      overflow:hidden;
    }
    .poster:nth-child(2){height:216px;width:142px;background:linear-gradient(160deg,rgba(251,191,36,.22),rgba(34,211,238,.28)),linear-gradient(#12345f,#06152e)}
    .poster:nth-child(3){height:146px;background:linear-gradient(160deg,rgba(167,139,250,.32),rgba(96,165,250,.22)),linear-gradient(#12345f,#06152e)}
    .poster::after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:18px;
      height:8px;
      border-radius:99px;
      background:rgba(255,255,255,.3);
      box-shadow:0 -18px 0 rgba(255,255,255,.16);
    }
    .spotlight-content{
      position:relative;
      z-index:2;
      max-width:440px;
    }
    .rank-list{
      display:grid;
      gap:14px;
    }
    .rank-item{
      padding:18px;
      border-radius:22px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.055);
      display:grid;
      grid-template-columns:auto minmax(0,1fr) auto;
      gap:14px;
      align-items:center;
      transition:transform .22s ease,border-color .22s ease,background .22s ease;
    }
    .rank-item:hover{transform:translateX(4px);border-color:rgba(34,211,238,.35);background:rgba(255,255,255,.085)}
    .rank-no{
      width:38px;
      height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(34,211,238,.12);
      color:#bff8ff;
      font-weight:950;
      border:1px solid rgba(34,211,238,.24);
    }
    .rank-item h3{margin:0;font-size:16px}
    .rank-item p{margin:4px 0 0;color:var(--muted);font-size:13px;line-height:1.5}
    .trend-pill{
      color:#04101f;
      background:linear-gradient(135deg,#6ee7b7,#7dd3fc);
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      padding:5px 8px;
      white-space:nowrap;
    }
    .news-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:22px;
      align-items:start;
    }
    .news-list{
      border-radius:28px;
      overflow:hidden;
      border:1px solid var(--border);
      background:rgba(255,255,255,.05);
    }
    .news-link{
      display:grid;
      grid-template-columns:118px minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      padding:20px;
      border-bottom:1px solid rgba(173,207,255,.12);
      transition:background .2s ease,transform .2s ease;
    }
    .news-link:last-child{border-bottom:0}
    .news-link:hover{background:rgba(255,255,255,.075)}
    .news-link:focus-visible{outline:3px solid rgba(34,211,238,.35);outline-offset:-3px}
    .news-date{
      display:flex;
      flex-direction:column;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .news-date b{color:#fff;font-size:22px;line-height:1.1}
    .news-link h3{margin:0;font-size:18px}
    .news-link p{margin:5px 0 0;color:var(--muted);font-size:14px;line-height:1.55}
    .arrow{
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.075);
      color:#dff7ff;
    }
    .recommend{
      padding:22px;
      border-radius:28px;
      position:sticky;
      top:96px;
    }
    .recommend ul{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:12px}
    .recommend li{
      padding:14px;
      border-radius:16px;
      background:rgba(255,255,255,.055);
      color:#d9eaff;
      border:1px solid rgba(255,255,255,.1);
    }
    .feature-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .feature-card{
      padding:22px;
      min-height:210px;
    }
    .icon-box{
      width:48px;height:48px;border-radius:17px;
      display:grid;place-items:center;
      color:#061225;
      font-weight:950;
      background:linear-gradient(135deg,#7dd3fc,#a78bfa);
      box-shadow:0 0 24px rgba(96,165,250,.3);
      margin-bottom:18px;
    }
    .feature-card h3,.calendar-item h3,.case-card h3,.price-card h3{margin:0;font-size:19px}
    .feature-card p,.calendar-item p,.case-card p,.price-card p{margin:10px 0 0;color:var(--muted);font-size:14px;line-height:1.65}
    .calendar-shell{
      display:grid;
      grid-template-columns:310px minmax(0,1fr);
      gap:22px;
      align-items:stretch;
    }
    .calendar-rail{
      padding:24px;
      border-radius:28px;
      background:linear-gradient(180deg,rgba(34,211,238,.12),rgba(255,255,255,.045));
    }
    .calendar-rail .big-day{
      font-size:76px;
      line-height:1;
      letter-spacing:-.07em;
      font-weight:950;
      color:#fff;
    }
    .calendar-items{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .calendar-item{
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.055);
      border:1px solid var(--border);
    }
    .calendar-item time{
      display:inline-flex;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(34,211,238,.1);
      color:#c8fbff;
      font-size:12px;
      font-weight:900;
      margin-bottom:14px;
    }
    .timeline{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
      position:relative;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:8%;
      right:8%;
      top:37px;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(125,211,252,.45),transparent);
      pointer-events:none;
    }
    .step{
      position:relative;
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.05);
      border:1px solid var(--border);
    }
    .step-no{
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;
      color:#061225;
      background:linear-gradient(135deg,#7dd3fc,#6ee7b7);
      font-weight:950;
      margin-bottom:18px;
      box-shadow:0 0 24px rgba(34,211,238,.3);
    }
    .step h3{margin:0;font-size:18px}
    .step p{margin:9px 0 0;color:var(--muted);font-size:14px}
    .case-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:16px;
    }
    .case-card{padding:24px;border-radius:24px}
    .quote{
      margin-top:16px;
      padding-top:16px;
      border-top:1px solid rgba(173,207,255,.13);
      color:#dfefff;
      font-size:14px;
    }
    .faq-grid{
      display:grid;
      grid-template-columns:380px minmax(0,1fr);
      gap:24px;
      align-items:start;
    }
    .faq-list{display:grid;gap:12px}
    .faq-item{
      border-radius:20px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.052);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      min-height:62px;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      border:0;
      background:transparent;
      color:#fff;
      font-weight:850;
      text-align:left;
    }
    .faq-question:focus-visible{outline:3px solid rgba(34,211,238,.28);outline-offset:-3px}
    .faq-question span:last-child{
      width:28px;height:28px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.075);
      transition:transform .2s ease;
      flex:0 0 auto;
    }
    .faq-answer{
      display:none;
      padding:0 20px 20px;
      color:var(--muted);
      font-size:15px;
    }
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-question span:last-child{transform:rotate(45deg)}
    .pricing{
      border-radius:34px;
      padding:32px;
      background:
        radial-gradient(circle at 86% 16%,rgba(34,211,238,.18),transparent 32%),
        linear-gradient(135deg,rgba(79,156,255,.14),rgba(139,92,246,.09)),
        rgba(255,255,255,.052);
      border:1px solid rgba(173,207,255,.2);
      box-shadow:var(--shadow);
    }
    .price-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
      margin-top:28px;
    }
    .price-card{
      padding:24px;
      border-radius:26px;
      border:1px solid var(--border);
      background:rgba(5,16,39,.54);
      position:relative;
      overflow:hidden;
    }
    .price-card.featured{
      border-color:rgba(34,211,238,.45);
      background:linear-gradient(180deg,rgba(34,211,238,.12),rgba(5,16,39,.56));
      box-shadow:0 0 46px rgba(34,211,238,.14);
    }
    .price{
      margin:18px 0 10px;
      font-size:42px;
      font-weight:950;
      letter-spacing:-.05em;
    }
    .price small{font-size:14px;color:var(--muted);font-weight:800;letter-spacing:0}
    .benefits{
      list-style:none;
      padding:0;
      margin:18px 0 22px;
      display:grid;
      gap:10px;
      color:#d8eaff;
      font-size:14px;
    }
    .benefits li{display:flex;gap:9px;align-items:flex-start}
    .benefits li::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      margin-top:8px;
      flex:0 0 auto;
      background:var(--green);
      box-shadow:0 0 14px rgba(110,231,183,.55);
    }
    .subscribe-form{
      display:flex;
      gap:12px;
      margin-top:24px;
      max-width:640px;
    }
    .subscribe-form input{
      flex:1;
      min-height:52px;
      border-radius:999px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.07);
      color:#fff;
      padding:0 18px;
      outline:0;
      transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .subscribe-form input::placeholder{color:var(--muted-2)}
    .subscribe-form input:focus{
      border-color:rgba(34,211,238,.62);
      box-shadow:0 0 0 4px rgba(34,211,238,.12);
      background:rgba(255,255,255,.1);
    }
    .form-note{margin-top:10px;color:var(--muted-2);font-size:13px}
    .site-footer{
      padding:46px 0 32px;
      border-top:1px solid rgba(173,207,255,.14);
      background:rgba(3,10,24,.45);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:28px;
      align-items:start;
    }
    .footer-name{font-size:22px;font-weight:950;margin:0 0 12px}
    .footer-desc{color:var(--muted);max-width:640px;margin:0}
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.055);
      color:var(--muted);
      transition:color .2s ease,background .2s ease;
    }
    .footer-links a:hover{color:#fff;background:rgba(255,255,255,.1)}
    .copyright{
      margin-top:30px;
      padding-top:22px;
      border-top:1px solid rgba(173,207,255,.11);
      color:var(--muted-2);
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      :root{--container:920px}
      .hero-grid,.popular-grid,.news-layout,.calendar-shell,.faq-grid{grid-template-columns:1fr}
      .launch-card{min-height:auto}
      .recommend{position:relative;top:auto}
      .feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .calendar-items{grid-template-columns:1fr 1fr}
      .timeline,.case-grid,.price-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .timeline::before{display:none}
      .poster-stack{opacity:.72}
      .spotlight{min-height:380px}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .desktop-nav,.nav-search,.nav-cta{display:none}
      .mobile-toggle{display:flex}
      .mobile-menu.open{display:block}
      .mobile-panel{
        display:grid;
        gap:10px;
        padding:14px;
        border-top:1px solid rgba(173,207,255,.12);
      }
      .mobile-panel .nav-link{
        justify-content:flex-start;
        border-radius:16px;
        background:rgba(255,255,255,.055);
      }
      .hero{padding:96px 0 54px;min-height:auto}
      .hero-stage{padding:22px;border-radius:26px}
      .hero-grid{gap:22px}
      .hero h1{font-size:clamp(36px,12vw,58px)}
      .hero-metrics{grid-template-columns:1fr}
      .countdown-wrap{grid-template-columns:1fr}
      .count-ring{margin:auto}
      .news-link{grid-template-columns:1fr;gap:10px}
      .news-date{flex-direction:row;gap:8px;align-items:center}
      .section{padding:58px 0}
      .section-head{display:block}
      .feature-grid,.calendar-items,.timeline,.case-grid,.price-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .subscribe-form{flex-direction:column}
      .subscribe-form .btn{width:100%}
    }
    @media (max-width:520px){
      .brand-text strong{font-size:16px}
      .brand-text span{display:none}
      .brand-mark{width:38px;height:38px}
      .nav-wrap{min-height:66px}
      .hero-stage{padding:18px}
      .hero-actions{align-items:stretch}
      .hero-actions .btn{width:100%}
      .time-grid{grid-template-columns:1fr 1fr}
      .spotlight{padding:22px;min-height:520px}
      .poster-stack{right:18px;bottom:20px;transform:scale(.82);transform-origin:right bottom}
      .series-chip{min-width:165px}
      .pricing{padding:22px;border-radius:26px}
      .price{font-size:36px}
    }
