/* roulang page: index */
:root{
      --primary:#1867e8;
      --primary-700:#0f48b8;
      --primary-50:#eef5ff;
      --accent:#18b8a6;
      --accent-50:#eafbf8;
      --ink:#10213f;
      --text:#34425f;
      --muted:#71809d;
      --soft:#f6f9ff;
      --white:#ffffff;
      --line:#dbe6f6;
      --line-strong:#c6d7ee;
      --warning:#ffb020;
      --danger:#ee4d5a;
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:28px;
      --shadow-sm:0 8px 22px rgba(16,33,63,.08);
      --shadow:0 18px 48px rgba(16,33,63,.12);
      --shadow-blue:0 20px 56px rgba(24,103,232,.18);
      --container:1180px;
      --ease:all .22s ease;
    }
    *{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(--text);
      background:linear-gradient(180deg,#f7fbff 0%,#ffffff 34%,#f5f8fe 100%);
      line-height:1.72;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(24,103,232,.16);color:var(--ink)}
    .site-container{
      width:min(calc(100% - 36px),var(--container));
      margin:0 auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:auto;
      width:1px;
      height:1px;
      overflow:hidden;
    }
    .skip-link:focus{
      left:18px;
      top:18px;
      width:auto;
      height:auto;
      z-index:999;
      background:var(--ink);
      color:#fff;
      padding:10px 14px;
      border-radius:10px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      background:rgba(255,255,255,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(219,230,246,.82);
    }
    .nav-shell{
      min-height:74px;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:18px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      color:var(--ink);
      letter-spacing:-.02em;
      width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--primary),#62a3ff);
      display:grid;
      place-items:center;
      color:#fff;
      box-shadow:var(--shadow-blue);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      width:18px;
      height:18px;
      border:3px solid rgba(255,255,255,.82);
      border-radius:50%;
      left:8px;
      top:8px;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      width:16px;
      height:8px;
      background:rgba(255,255,255,.9);
      border-radius:20px 20px 4px 4px;
      right:6px;
      bottom:10px;
      transform:rotate(-18deg);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.05;
    }
    .brand-name{font-size:20px}
    .brand-sub{font-size:11px;color:var(--muted);font-weight:700;margin-top:5px;letter-spacing:.12em}
    .main-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:6px;
      background:rgba(238,245,255,.7);
      border:1px solid rgba(219,230,246,.9);
      border-radius:999px;
    }
    .main-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:0 18px;
      border-radius:999px;
      font-weight:800;
      color:var(--muted);
    }
    .main-nav a:hover,
    .main-nav a.active{
      background:var(--white);
      color:var(--primary);
      box-shadow:var(--shadow-sm);
    }
    .nav-actions{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:12px;
    }
    .nav-search{
      width:220px;
      height:42px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 13px;
      color:var(--muted);
      box-shadow:0 8px 20px rgba(16,33,63,.04);
    }
    .nav-search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--ink);
      font-size:14px;
    }
    .nav-search input::placeholder{color:#93a2bb}
    .menu-toggle{
      display:none;
      border:1px solid var(--line);
      background:#fff;
      width:44px;
      height:44px;
      border-radius:14px;
      color:var(--ink);
      box-shadow:var(--shadow-sm);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      line-height:1;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#5fa2ff);
      box-shadow:0 14px 26px rgba(24,103,232,.22);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 34px rgba(24,103,232,.28);
    }
    .btn-secondary{
      color:var(--primary);
      background:var(--white);
      border-color:rgba(24,103,232,.18);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover{
      background:var(--primary-50);
      transform:translateY(-2px);
    }
    .btn-ghost{
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.28);
      color:#fff;
    }
    .btn-ghost:hover{
      color:#fff;
      background:rgba(255,255,255,.22);
      transform:translateY(-2px);
    }
    .btn:focus,
    .menu-toggle:focus,
    input:focus,
    textarea:focus{
      outline:3px solid rgba(24,103,232,.22);
      outline-offset:3px;
    }
    .hero{
      position:relative;
      min-height:520px;
      display:flex;
      align-items:stretch;
      overflow:hidden;
      background:
        radial-gradient(circle at 13% 20%,rgba(110,169,255,.58),transparent 29%),
        radial-gradient(circle at 84% 12%,rgba(24,184,166,.38),transparent 26%),
        linear-gradient(135deg,#08307a 0%,#156de6 54%,#89c6ff 100%);
      color:#fff;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(5,21,54,.70),rgba(5,21,54,.24) 54%,rgba(5,21,54,.08)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0 1px,transparent 1px 88px);
      pointer-events:none;
    }
    .hero-art{
      position:absolute;
      inset:0;
      opacity:.55;
      background:
        radial-gradient(circle at 70% 58%,rgba(255,255,255,.26) 0 8%,transparent 9%),
        radial-gradient(circle at 78% 44%,rgba(255,255,255,.20) 0 5%,transparent 6%),
        linear-gradient(115deg,transparent 0 58%,rgba(255,255,255,.12) 58% 64%,transparent 64%);
    }
    .hero-content{
      position:relative;
      z-index:2;
      padding:78px 0 54px;
      width:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:36px;
    }
    .hero-top{
      max-width:780px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#dff0ff;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      padding:8px 13px;
      border-radius:999px;
      font-weight:900;
      font-size:14px;
      backdrop-filter:blur(10px);
    }
    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:#7cffd3;
      box-shadow:0 0 0 6px rgba(124,255,211,.14);
    }
    h1{
      margin:22px 0 16px;
      color:#fff;
      font-size:clamp(36px,6vw,70px);
      line-height:1.03;
      letter-spacing:-.055em;
      font-weight:950;
      max-width:860px;
    }
    .hero-lead{
      font-size:clamp(17px,2vw,21px);
      max-width:760px;
      color:rgba(255,255,255,.88);
      margin:0;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:14px;
      margin-top:28px;
    }
    .hero-data{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      max-width:760px;
      margin-top:28px;
    }
    .hero-data .data-card{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.22);
      backdrop-filter:blur(12px);
    }
    .data-number{
      display:block;
      font-size:28px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.04em;
      color:#fff;
    }
    .data-text{
      display:block;
      margin-top:7px;
      color:rgba(255,255,255,.78);
      font-size:13px;
      font-weight:700;
    }
    .countdown-strip{
      width:100%;
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:18px;
      align-items:center;
      padding:14px 18px;
      border-radius:24px;
      background:rgba(255,255,255,.92);
      color:var(--ink);
      box-shadow:0 24px 60px rgba(6,31,78,.22);
      border:1px solid rgba(255,255,255,.68);
    }
    .countdown-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color:var(--primary-700);
      white-space:nowrap;
    }
    .countdown-title span{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:var(--primary-50);
    }
    .countdown-bar{
      height:10px;
      border-radius:999px;
      overflow:hidden;
      background:#e7eefb;
      position:relative;
    }
    .countdown-bar i{
      display:block;
      height:100%;
      width:67%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--accent),var(--primary));
      box-shadow:0 0 20px rgba(24,103,232,.35);
    }
    .countdown-time{
      display:flex;
      gap:8px;
      align-items:center;
      white-space:nowrap;
      font-weight:950;
    }
    .time-box{
      min-width:40px;
      height:34px;
      border-radius:11px;
      display:grid;
      place-items:center;
      background:var(--ink);
      color:#fff;
      font-variant-numeric:tabular-nums;
    }
    main{overflow:hidden}
    section{
      padding:72px 0;
      position:relative;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      padding:6px 11px;
      border-radius:999px;
      color:var(--primary);
      background:var(--primary-50);
      font-weight:950;
      font-size:13px;
      margin-bottom:11px;
    }
    .section-title{
      margin:0;
      color:var(--ink);
      font-size:clamp(26px,3.2vw,42px);
      line-height:1.14;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .section-desc{
      margin:12px 0 0;
      color:var(--muted);
      max-width:690px;
      font-size:16px;
    }
    .soft-panel{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(219,230,246,.92);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .deal-section{padding-top:56px}
    .deal-track{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:8px 4px 18px;
      scroll-snap-type:x mandatory;
      scrollbar-width:thin;
      scrollbar-color:var(--line-strong) transparent;
    }
    .deal-card{
      flex:0 0 286px;
      scroll-snap-align:start;
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow-sm);
      padding:18px;
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .deal-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:rgba(24,103,232,.28);
    }
    .deal-card.featured{
      border-color:rgba(24,103,232,.35);
      box-shadow:var(--shadow-blue);
    }
    .deal-card:before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:5px;
      background:linear-gradient(90deg,var(--primary),var(--accent));
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      color:var(--primary-700);
      background:var(--primary-50);
      font-weight:950;
      font-size:12px;
    }
    .badge.hot{color:#a33b00;background:#fff3df}
    .badge.green{color:#08796d;background:var(--accent-50)}
    .deal-name{
      margin:16px 0 9px;
      color:var(--ink);
      font-size:20px;
      line-height:1.22;
      font-weight:950;
    }
    .deal-copy{
      margin:0;
      color:var(--muted);
      min-height:62px;
      font-size:14px;
    }
    .price-row{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-top:17px;
      padding-top:16px;
      border-top:1px dashed var(--line-strong);
    }
    .price{
      color:var(--danger);
      font-weight:950;
      font-size:28px;
      letter-spacing:-.04em;
    }
    .price small{
      font-size:14px;
      color:var(--muted);
      text-decoration:line-through;
      margin-left:6px;
      font-weight:800;
    }
    .mini-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:0 13px;
      border-radius:999px;
      background:var(--ink);
      color:#fff;
      font-weight:950;
      font-size:13px;
    }
    .mini-btn:hover{color:#fff;background:var(--primary)}
    .inventory-board{
      padding:26px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:center;
    }
    .inventory-list{
      display:grid;
      gap:13px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .inventory-item{
      padding:15px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      align-items:center;
    }
    .inventory-item strong{
      display:block;
      color:var(--ink);
      font-weight:950;
    }
    .inventory-item span{
      color:var(--muted);
      font-size:14px;
    }
    .stock-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 10px;
      border-radius:999px;
      background:#fff8eb;
      color:#9a5a00;
      font-weight:950;
      font-size:13px;
      white-space:nowrap;
    }
    .stock-pill.safe{background:var(--accent-50);color:#08796d}
    .gauge{
      min-height:270px;
      border-radius:24px;
      background:
        radial-gradient(circle at 50% 55%,rgba(24,103,232,.14),transparent 39%),
        linear-gradient(135deg,#ffffff,#edf5ff);
      border:1px solid var(--line);
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .gauge-ring{
      width:170px;
      height:170px;
      border-radius:50%;
      margin:8px auto 0;
      background:conic-gradient(var(--primary) 0 72%,#e3ecfb 72% 100%);
      display:grid;
      place-items:center;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.8);
    }
    .gauge-ring div{
      width:118px;
      height:118px;
      border-radius:50%;
      background:#fff;
      display:grid;
      place-items:center;
      text-align:center;
      box-shadow:var(--shadow-sm);
      color:var(--ink);
      font-weight:950;
      line-height:1.1;
    }
    .gauge-ring b{font-size:32px;color:var(--primary)}
    .matrix-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .topic-card{
      min-height:168px;
      padding:18px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .topic-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:rgba(24,103,232,.25);
    }
    .topic-icon{
      width:46px;
      height:46px;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary-50),#fff);
      color:var(--primary);
      display:grid;
      place-items:center;
      font-size:22px;
      border:1px solid rgba(24,103,232,.12);
    }
    .topic-card h3{
      margin:18px 0 8px;
      color:var(--ink);
      font-size:18px;
      font-weight:950;
    }
    .topic-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .hot-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:18px;
    }
    .hot-main{
      min-height:360px;
      padding:26px;
      border-radius:28px;
      background:
        linear-gradient(135deg,rgba(10,38,92,.78),rgba(24,103,232,.72)),
        radial-gradient(circle at 72% 28%,rgba(255,255,255,.32),transparent 28%);
      color:#fff;
      box-shadow:var(--shadow-blue);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .hot-main:after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-80px;
      bottom:-100px;
      border-radius:50%;
      border:42px solid rgba(255,255,255,.14);
    }
    .hot-main h3{
      position:relative;
      z-index:1;
      margin:18px 0 12px;
      color:#fff;
      font-size:34px;
      line-height:1.12;
      font-weight:950;
    }
    .hot-main p{
      position:relative;
      z-index:1;
      color:rgba(255,255,255,.84);
      max-width:520px;
      margin:0;
    }
    .hot-stack{
      display:grid;
      gap:14px;
    }
    .hot-small{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .hot-small:hover{
      transform:translateX(4px);
      box-shadow:var(--shadow);
    }
    .rank{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:var(--primary-50);
      color:var(--primary);
      font-weight:950;
    }
    .hot-small strong{
      display:block;
      color:var(--ink);
      font-weight:950;
    }
    .hot-small span{
      display:block;
      color:var(--muted);
      font-size:13px;
      margin-top:3px;
    }
    .news-layout{
      display:grid;
      grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);
      gap:22px;
    }
    .news-list{
      padding:8px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      box-shadow:var(--shadow-sm);
    }
    .news-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:17px;
      border-radius:20px;
      transition:var(--ease);
    }
    .news-item + .news-item{border-top:1px solid #eef3fb}
    .news-item:hover{
      background:var(--primary-50);
      border-top-color:transparent;
    }
    .news-date{
      width:58px;
      height:58px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:#f7faff;
      color:var(--primary);
      font-weight:950;
      line-height:1.05;
      border:1px solid var(--line);
    }
    .news-date small{display:block;font-size:12px;color:var(--muted);font-weight:800}
    .news-item h3{
      margin:0 0 4px;
      color:var(--ink);
      font-size:17px;
      font-weight:950;
    }
    .news-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .arrow{
      color:var(--primary);
      font-weight:950;
    }
    .recommend-side{
      padding:22px;
      border-radius:28px;
      background:linear-gradient(180deg,#ffffff,#f0f6ff);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .recommend-side h3{
      margin:0 0 14px;
      color:var(--ink);
      font-weight:950;
      font-size:22px;
    }
    .side-link{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:13px 0;
      border-top:1px dashed var(--line-strong);
      color:var(--text);
      font-weight:800;
    }
    .side-link:hover{color:var(--primary);padding-left:4px}
    .cta-strip{
      padding:26px;
      border-radius:30px;
      background:
        radial-gradient(circle at 16% 40%,rgba(255,255,255,.22),transparent 24%),
        linear-gradient(135deg,var(--primary-700),var(--primary));
      box-shadow:var(--shadow-blue);
      color:#fff;
      display:grid;
      grid-template-columns:1fr auto;
      gap:20px;
      align-items:center;
    }
    .cta-strip h2{
      margin:0 0 8px;
      color:#fff;
      font-size:30px;
      line-height:1.18;
      font-weight:950;
    }
    .cta-strip p{
      margin:0;
      color:rgba(255,255,255,.82);
      max-width:720px;
    }
    .button-cluster{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .ticket-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      align-items:stretch;
    }
    .ticket-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      box-shadow:var(--shadow-sm);
      padding:22px;
      transition:var(--ease);
      display:flex;
      flex-direction:column;
    }
    .ticket-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
    }
    .ticket-card.best{
      border-color:rgba(24,103,232,.42);
      box-shadow:var(--shadow-blue);
      position:relative;
    }
    .ticket-card.best:before{
      content:"更受欢迎";
      position:absolute;
      top:18px;
      right:18px;
      padding:5px 10px;
      border-radius:999px;
      background:#fff3df;
      color:#a45b00;
      font-weight:950;
      font-size:12px;
    }
    .ticket-card h3{
      margin:10px 0 8px;
      color:var(--ink);
      font-size:22px;
      font-weight:950;
    }
    .ticket-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      min-height:48px;
    }
    .ticket-card ul{
      margin:18px 0 22px;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
      flex:1;
    }
    .ticket-card li{
      color:var(--text);
      display:flex;
      gap:8px;
      align-items:flex-start;
    }
    .ticket-card li:before{
      content:"✓";
      color:var(--accent);
      font-weight:950;
    }
    .version-timeline{
      display:grid;
      gap:14px;
      padding:8px;
      border-radius:28px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .version-row{
      display:grid;
      grid-template-columns:150px 1fr;
      gap:18px;
      padding:18px;
      border-radius:22px;
      transition:var(--ease);
    }
    .version-row:hover{background:var(--soft)}
    .version-tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:38px;
      border-radius:999px;
      background:var(--primary-50);
      color:var(--primary);
      font-weight:950;
      width:max-content;
      padding:0 13px;
    }
    .version-row h3{
      margin:0 0 6px;
      color:var(--ink);
      font-size:18px;
      font-weight:950;
    }
    .version-row p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .story-band{
      padding:34px;
      border-radius:32px;
      background:
        linear-gradient(90deg,#ffffff 0%,rgba(255,255,255,.92) 57%,rgba(238,245,255,.72)),
        radial-gradient(circle at 88% 36%,rgba(24,103,232,.18),transparent 28%);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr .86fr;
      gap:30px;
      align-items:center;
    }
    .story-band h2{
      color:var(--ink);
      margin:0 0 14px;
      font-size:36px;
      line-height:1.15;
      font-weight:950;
    }
    .story-band p{
      margin:0;
      color:var(--muted);
    }
    .proof-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .proof-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:18px;
      box-shadow:var(--shadow-sm);
    }
    .proof-card b{
      color:var(--primary);
      font-size:30px;
      line-height:1;
      font-weight:950;
    }
    .proof-card span{
      display:block;
      margin-top:8px;
      color:var(--muted);
      font-weight:800;
      font-size:14px;
    }
    .faq-wrap{
      display:grid;
      grid-template-columns:.72fr 1.28fr;
      gap:26px;
      align-items:start;
    }
    .faq-aside{
      position:sticky;
      top:98px;
      padding:24px;
      border-radius:28px;
      background:var(--ink);
      color:#fff;
      box-shadow:var(--shadow);
    }
    .faq-aside h2{
      margin:0 0 12px;
      color:#fff;
      font-size:30px;
      font-weight:950;
      line-height:1.14;
    }
    .faq-aside p{margin:0;color:rgba(255,255,255,.76)}
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      margin-bottom:12px;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .accordion-title{
      border:0;
      color:var(--ink);
      font-weight:950;
      font-size:17px;
      padding:19px 54px 19px 20px;
      background:#fff;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:var(--primary-50);
      color:var(--primary);
    }
    .accordion-title:before{
      right:20px;
      margin-top:-9px;
      font-size:22px;
    }
    .accordion-content{
      border:0;
      border-top:1px solid #eef3fb;
      color:var(--muted);
      padding:18px 20px 20px;
      font-size:15px;
    }
    .form-panel{
      margin-top:26px;
      padding:26px;
      border-radius:30px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .form-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr) auto;
      gap:12px;
      align-items:end;
    }
    .field label{
      display:block;
      color:var(--ink);
      font-weight:950;
      margin-bottom:7px;
      font-size:14px;
    }
    .field input,
    .field select{
      width:100%;
      height:46px;
      border:1px solid var(--line);
      border-radius:15px;
      background:#f9fbff;
      padding:0 14px;
      color:var(--ink);
      box-shadow:none;
      margin:0;
    }
    .field input:focus,
    .field select:focus{
      border-color:rgba(24,103,232,.45);
      background:#fff;
      box-shadow:0 0 0 4px rgba(24,103,232,.10);
    }
    .form-note{
      margin:12px 0 0;
      color:var(--muted);
      font-size:13px;
    }
    .form-status{
      display:none;
      margin-top:12px;
      padding:10px 12px;
      border-radius:14px;
      background:var(--accent-50);
      color:#08796d;
      font-weight:900;
    }
    .site-footer{
      padding:52px 0 28px;
      background:#071a38;
      color:rgba(255,255,255,.72);
    }
    .footer-top{
      display:grid;
      grid-template-columns:1fr auto;
      gap:28px;
      align-items:start;
      padding-bottom:28px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:950;
      font-size:22px;
      margin-bottom:12px;
    }
    .footer-brand .brand-mark{box-shadow:none}
    .footer-copy{
      max-width:660px;
      margin:0;
      color:rgba(255,255,255,.68);
    }
    .footer-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.78);
      font-weight:800;
    }
    .footer-links a:hover{
      color:#fff;
      background:rgba(255,255,255,.08);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:22px;
      font-size:13px;
      color:rgba(255,255,255,.55);
    }
    .mobile-panel{
      display:none;
      padding:0 0 14px;
    }
    .mobile-panel.open{display:block}
    .mobile-panel a{
      display:block;
      padding:13px 16px;
      border-radius:16px;
      background:var(--primary-50);
      color:var(--primary);
      font-weight:950;
      margin-bottom:10px;
    }
    .mobile-panel .nav-search{width:100%;margin-bottom:10px}
    @media (max-width:1024px){
      .nav-shell{grid-template-columns:auto 1fr auto}
      .main-nav{justify-self:center}
      .nav-search{display:none}
      .hero{min-height:500px}
      .matrix-grid{grid-template-columns:repeat(2,1fr)}
      .hot-layout,
      .inventory-board,
      .news-layout,
      .story-band,
      .faq-wrap{grid-template-columns:1fr}
      .faq-aside{position:relative;top:auto}
      .form-grid{grid-template-columns:repeat(2,1fr)}
      .form-grid .btn{grid-column:1/-1}
    }
    @media (max-width:768px){
      .site-container{width:min(calc(100% - 28px),var(--container))}
      .nav-shell{min-height:66px;grid-template-columns:1fr auto}
      .main-nav,.nav-actions .btn-primary{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .brand-mark{width:38px;height:38px}
      .brand-name{font-size:18px}
      .hero-content{padding:54px 0 34px}
      .hero-data{grid-template-columns:1fr;max-width:100%}
      .countdown-strip{grid-template-columns:1fr;gap:12px;border-radius:20px}
      .countdown-time{justify-content:space-between}
      section{padding:54px 0}
      .section-head{display:block}
      .deal-card{flex-basis:260px}
      .hot-main{min-height:310px}
      .cta-strip{grid-template-columns:1fr}
      .button-cluster{justify-content:flex-start}
      .ticket-grid,.proof-grid{grid-template-columns:1fr}
      .version-row{grid-template-columns:1fr;gap:10px}
      .footer-top{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:520px){
      body{line-height:1.66}
      .hero{min-height:auto}
      h1{font-size:39px;letter-spacing:-.045em}
      .hero-lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .countdown-time{gap:5px;font-size:13px}
      .time-box{min-width:36px;height:32px}
      .section-title{font-size:28px}
      .matrix-grid{grid-template-columns:1fr}
      .news-item{grid-template-columns:1fr auto;gap:10px}
      .news-date{width:52px;height:52px}
      .news-item .arrow{grid-column:2;grid-row:1 / span 2}
      .hot-small{grid-template-columns:auto 1fr}
      .hot-small .mini-btn{grid-column:1/-1}
      .form-grid{grid-template-columns:1fr}
      .story-band{padding:24px}
      .cta-strip{padding:22px}
      .site-footer{padding-top:42px}
    }
