/* roulang page: index */
:root{
      --color-primary:#2563eb;
      --color-primary-dark:#1d4ed8;
      --color-secondary:#06b6d4;
      --color-accent:#f59e0b;
      --color-bg:#f7fbff;
      --color-surface:#ffffff;
      --color-surface-2:#eef6ff;
      --color-text:#102033;
      --color-muted:#64748b;
      --color-soft:#94a3b8;
      --color-border:#dbe7f4;
      --radius-xs:10px;
      --radius-sm:14px;
      --radius-md:20px;
      --radius-lg:28px;
      --shadow-sm:0 8px 22px rgba(37,99,235,.08);
      --shadow-md:0 18px 45px rgba(15,58,115,.12);
      --shadow-lg:0 28px 80px rgba(30,64,175,.18);
      --container:1180px;
      --nav-h:76px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 5%, rgba(6,182,212,.14), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(37,99,235,.16), transparent 30%),
        linear-gradient(180deg,#f8fbff 0%,#f4f9ff 40%,#ffffff 100%);
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei",Arial,sans-serif;
      line-height:1.7;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none}
    img{display:block;max-width:100%;height:auto}
    button,input,select,textarea{font:inherit}
    button{border:0;cursor:pointer}
    ::selection{background:rgba(37,99,235,.18);color:#0f172a}
    .container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(180%) blur(18px);
      background:rgba(255,255,255,.82);
      border-bottom:1px solid rgba(219,231,244,.82);
      transition:box-shadow .25s var(--ease), background .25s var(--ease);
    }
    .site-header.is-scrolled{
      box-shadow:0 16px 45px rgba(15,58,115,.08);
      background:rgba(255,255,255,.92);
    }
    .nav-wrap{
      height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary) 0%,var(--color-secondary) 100%);
      box-shadow:0 12px 28px rgba(37,99,235,.24);
      flex:0 0 auto;
    }
    .brand-text{
      font-size:18px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:280px;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      border:1px solid rgba(219,231,244,.86);
      border-radius:999px;
      background:rgba(255,255,255,.72);
      box-shadow:var(--shadow-sm);
    }
    .nav-item{
      position:relative;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 18px;
      border-radius:999px;
      font-size:15px;
      font-weight:800;
      color:#27415e;
      transition:background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible{
      background:#edf6ff;
      color:var(--color-primary-dark);
      outline:none;
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));
      box-shadow:0 10px 22px rgba(37,99,235,.20);
    }
    .mega-panel{
      position:absolute;
      top:calc(100% + 14px);
      left:50%;
      transform:translateX(-50%) translateY(8px);
      width:min(520px, calc(100vw - 48px));
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:.24s var(--ease);
      border:1px solid rgba(219,231,244,.95);
      border-radius:24px;
      background:rgba(255,255,255,.98);
      box-shadow:var(--shadow-lg);
      padding:16px;
    }
    .nav-item:hover .mega-panel,
    .nav-item:focus-within .mega-panel{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translateX(-50%) translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mega-card{
      padding:14px;
      border-radius:18px;
      background:linear-gradient(180deg,#f8fbff,#eef6ff);
      border:1px solid rgba(219,231,244,.9);
      transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    }
    .mega-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-sm);
      border-color:rgba(37,99,235,.24);
    }
    .mega-card strong{
      display:block;
      font-size:14px;
      margin-bottom:4px;
    }
    .mega-card span{
      display:block;
      color:var(--color-muted);
      font-size:12px;
      line-height:1.55;
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      width:230px;
      padding:9px 12px;
      border:1px solid var(--color-border);
      border-radius:999px;
      background:#fff;
      transition:border-color .22s var(--ease), box-shadow .22s var(--ease);
    }
    .search-box:focus-within{
      border-color:rgba(37,99,235,.55);
      box-shadow:0 0 0 4px rgba(37,99,235,.10);
    }
    .search-box input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--color-text);
      font-size:14px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      font-weight:850;
      letter-spacing:-.01em;
      white-space:nowrap;
      transition:transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
    }
    .btn:focus-visible{
      outline:3px solid rgba(37,99,235,.22);
      outline-offset:3px;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));
      box-shadow:0 14px 32px rgba(37,99,235,.24);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 40px rgba(37,99,235,.30)}
    .btn-secondary{
      color:#16417a;
      background:#fff;
      border:1px solid rgba(37,99,235,.18);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover{transform:translateY(-2px);border-color:rgba(37,99,235,.38);color:var(--color-primary-dark)}
    .btn-ghost{
      color:#24507d;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(219,231,244,.92);
    }
    .btn-ghost:hover{background:#fff;transform:translateY(-1px);box-shadow:var(--shadow-sm)}
    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      background:#fff;
      border:1px solid var(--color-border);
      color:#183a60;
      place-items:center;
    }
    .mobile-menu{
      display:none;
      border-top:1px solid var(--color-border);
      background:#fff;
      padding:14px 20px 20px;
    }
    .mobile-menu.open{display:block}
    .mobile-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      font-weight:850;
      color:#183a60;
      border-bottom:1px solid #edf2f7;
    }
    main{overflow:hidden}
    .section{
      padding:78px 0;
    }
    .section-tight{
      padding:54px 0;
    }
    .section-heading{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      color:#1d4ed8;
      background:#e8f2ff;
      border:1px solid rgba(37,99,235,.13);
      font-size:13px;
      font-weight:900;
      margin-bottom:10px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,3vw,42px);
      line-height:1.16;
      letter-spacing:-.04em;
      color:#0f2b4d;
      font-weight:950;
    }
    .section-desc{
      margin:10px 0 0;
      max-width:720px;
      color:var(--color-muted);
      font-size:16px;
      line-height:1.85;
    }
    .hero{
      padding:34px 0 42px;
    }
    .hero-stage{
      position:relative;
      min-height:520px;
      border-radius:34px;
      overflow:hidden;
      background:
        linear-gradient(100deg, rgba(13,36,76,.94) 0%, rgba(30,64,175,.76) 52%, rgba(6,182,212,.44) 100%),
        radial-gradient(circle at 78% 32%, rgba(255,255,255,.42), transparent 20%),
        linear-gradient(135deg,#12315f,#0f7ca5);
      box-shadow:var(--shadow-lg);
      border:1px solid rgba(255,255,255,.46);
    }
    .hero-stage:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(90deg,rgba(0,0,0,.9),transparent 88%);
      pointer-events:none;
    }
    .live-cover{
      position:absolute;
      inset:26px;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.18);
      background:
        radial-gradient(circle at 82% 28%, rgba(245,158,11,.42), transparent 18%),
        radial-gradient(circle at 68% 68%, rgba(6,182,212,.34), transparent 26%),
        linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.03));
      pointer-events:none;
    }
    .hero-content{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);
      gap:24px;
      padding:46px;
      min-height:520px;
      align-items:stretch;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      max-width:760px;
      color:#fff;
    }
    .hero-badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      line-height:1;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.13);
      color:#fff;
      backdrop-filter:blur(12px);
    }
    .badge.light{
      color:#1d4ed8;
      background:#eaf3ff;
      border-color:#d5e8ff;
      backdrop-filter:none;
    }
    .badge.orange{
      color:#8a4b00;
      background:#fff6dd;
      border-color:#ffe2a0;
      backdrop-filter:none;
    }
    .hero h1{
      margin:0;
      max-width:880px;
      font-size:clamp(36px,5.3vw,70px);
      line-height:.98;
      letter-spacing:-.065em;
      font-weight:1000;
    }
    .hero p{
      margin:20px 0 0;
      max-width:760px;
      font-size:17px;
      line-height:1.9;
      color:rgba(255,255,255,.86);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      margin-top:28px;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:30px;
      max-width:720px;
    }
    .metric-chip{
      padding:16px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.11);
      backdrop-filter:blur(14px);
    }
    .metric-chip strong{
      display:block;
      font-size:28px;
      line-height:1;
      letter-spacing:-.03em;
      color:#fff;
    }
    .metric-chip span{
      display:block;
      margin-top:8px;
      color:rgba(255,255,255,.74);
      font-size:13px;
      font-weight:750;
    }
    .count-card{
      align-self:center;
      justify-self:end;
      width:100%;
      max-width:420px;
      padding:22px;
      border-radius:28px;
      background:rgba(255,255,255,.94);
      box-shadow:0 22px 70px rgba(2,8,23,.26);
      border:1px solid rgba(255,255,255,.72);
    }
    .count-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-bottom:16px;
      border-bottom:1px solid #e7eef8;
    }
    .live-dot{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#dc2626;
      font-weight:950;
      font-size:13px;
    }
    .live-dot i{
      width:9px;
      height:9px;
      border-radius:50%;
      background:#ef4444;
      box-shadow:0 0 0 8px rgba(239,68,68,.12);
      animation:pulse 1.4s infinite;
    }
    @keyframes pulse{50%{box-shadow:0 0 0 12px rgba(239,68,68,0)}}
    .count-title{
      margin:16px 0 8px;
      font-size:24px;
      line-height:1.25;
      letter-spacing:-.03em;
      font-weight:950;
      color:#0f2b4d;
    }
    .count-sub{
      margin:0 0 18px;
      color:var(--color-muted);
      font-size:14px;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-bottom:18px;
    }
    .time-box{
      padding:12px 8px;
      border-radius:18px;
      background:linear-gradient(180deg,#f8fbff,#eaf3ff);
      border:1px solid #dbeafe;
      text-align:center;
    }
    .time-box strong{
      display:block;
      color:#1d4ed8;
      font-size:26px;
      line-height:1.1;
      font-weight:1000;
      letter-spacing:-.04em;
    }
    .time-box span{
      color:#64748b;
      font-size:12px;
      font-weight:850;
    }
    .subscribe-form{
      display:grid;
      grid-template-columns:1fr auto;
      gap:10px;
      margin-top:16px;
    }
    .form-input{
      width:100%;
      min-height:46px;
      border:1px solid var(--color-border);
      border-radius:999px;
      padding:0 15px;
      outline:0;
      color:#102033;
      background:#fff;
      transition:border-color .22s var(--ease), box-shadow .22s var(--ease);
    }
    .form-input:focus{
      border-color:rgba(37,99,235,.62);
      box-shadow:0 0 0 4px rgba(37,99,235,.10);
    }
    .form-note{
      margin-top:10px;
      color:#64748b;
      font-size:12px;
    }
    .card{
      border:1px solid rgba(219,231,244,.9);
      border-radius:var(--radius-md);
      background:rgba(255,255,255,.92);
      box-shadow:var(--shadow-sm);
      transition:transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(37,99,235,.26);
    }
    .deal-track{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .deal-card{
      padding:20px;
      position:relative;
      overflow:hidden;
    }
    .deal-card:after{
      content:"";
      position:absolute;
      width:120px;
      height:120px;
      right:-48px;
      top:-48px;
      border-radius:999px;
      background:rgba(37,99,235,.08);
    }
    .deal-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:20px;
      position:relative;
      z-index:1;
    }
    .deal-icon{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:17px;
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      box-shadow:0 10px 22px rgba(37,99,235,.20);
    }
    .deal-card h3{
      margin:0 0 8px;
      font-size:19px;
      font-weight:950;
      letter-spacing:-.03em;
      color:#0f2b4d;
      position:relative;
      z-index:1;
    }
    .deal-card p{
      margin:0;
      color:var(--color-muted);
      font-size:14px;
      line-height:1.75;
      position:relative;
      z-index:1;
    }
    .deal-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid #e8eef7;
      position:relative;
      z-index:1;
    }
    .deal-price{
      color:#0f2b4d;
      font-weight:1000;
      letter-spacing:-.03em;
    }
    .mini-link{
      color:var(--color-primary-dark);
      font-size:13px;
      font-weight:900;
    }
    .inventory-layout{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
      gap:18px;
      align-items:stretch;
    }
    .inventory-panel{
      padding:24px;
      background:#fff;
    }
    .inventory-panel.dark{
      color:#fff;
      background:linear-gradient(135deg,#102a5c,#1d4ed8);
      border-color:rgba(255,255,255,.1);
    }
    .inventory-panel h3{
      margin:0 0 10px;
      font-size:24px;
      font-weight:950;
      letter-spacing:-.035em;
    }
    .inventory-panel p{
      margin:0;
      color:var(--color-muted);
    }
    .inventory-panel.dark p{color:rgba(255,255,255,.75)}
    .stock-list{
      display:grid;
      gap:14px;
      margin-top:22px;
    }
    .stock-item{
      padding:14px;
      border-radius:18px;
      background:#f8fbff;
      border:1px solid #e2edf8;
    }
    .stock-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:900;
      color:#173b63;
      margin-bottom:10px;
    }
    .progress{
      height:10px;
      border-radius:999px;
      overflow:hidden;
      background:#e5eef8;
    }
    .progress > span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-primary),var(--color-secondary));
    }
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:22px;
    }
    .compare-item{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
    }
    .compare-item strong{
      display:block;
      font-size:30px;
      line-height:1;
      letter-spacing:-.04em;
    }
    .compare-item span{
      display:block;
      margin-top:8px;
      color:rgba(255,255,255,.72);
      font-size:13px;
      font-weight:800;
    }
    .news-layout{
      display:grid;
      grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
      gap:18px;
    }
    .news-list{
      overflow:hidden;
    }
    .news-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 20px;
      border-bottom:1px solid #e8eef7;
      background:#fff;
      transition:background .22s var(--ease), transform .22s var(--ease);
    }
    .news-item:hover{
      background:#f8fbff;
      transform:translateX(4px);
    }
    .news-item:last-child{border-bottom:0}
    .news-date{
      width:64px;
      height:58px;
      display:grid;
      place-items:center;
      border-radius:18px;
      background:#eaf3ff;
      color:#1d4ed8;
      font-weight:1000;
      line-height:1.1;
      text-align:center;
    }
    .news-date small{
      display:block;
      color:#64748b;
      font-size:11px;
      font-weight:850;
    }
    .news-item h3{
      margin:0;
      font-size:17px;
      font-weight:950;
      letter-spacing:-.02em;
      color:#0f2b4d;
    }
    .news-item h3 a:hover{color:var(--color-primary-dark)}
    .news-item p{
      margin:5px 0 0;
      color:var(--color-muted);
      font-size:14px;
      line-height:1.6;
    }
    .trend-card{
      padding:20px;
    }
    .rank-list{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .rank-item{
      display:grid;
      grid-template-columns:34px 1fr auto;
      gap:12px;
      align-items:center;
      padding:12px;
      border-radius:16px;
      background:#f8fbff;
      border:1px solid #e5eef8;
      transition:transform .22s var(--ease), border-color .22s var(--ease);
    }
    .rank-item:hover{
      transform:translateY(-2px);
      border-color:rgba(37,99,235,.25);
    }
    .rank-num{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:12px;
      color:#fff;
      background:#1d4ed8;
      font-weight:950;
    }
    .rank-item strong{
      display:block;
      font-size:14px;
      color:#183a60;
      line-height:1.35;
    }
    .rank-item span{
      color:#64748b;
      font-size:12px;
      font-weight:800;
    }
    .button-zone{
      position:relative;
      padding:28px;
      border-radius:30px;
      overflow:hidden;
      background:
        radial-gradient(circle at 96% 10%, rgba(6,182,212,.22), transparent 22%),
        linear-gradient(135deg,#ffffff,#eef6ff);
      border:1px solid rgba(219,231,244,.94);
      box-shadow:var(--shadow-md);
    }
    .button-zone-grid{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(320px,.72fr);
      gap:22px;
      align-items:center;
    }
    .cta-buttons{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:20px;
    }
    .form-card{
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid #dce8f5;
      box-shadow:var(--shadow-sm);
    }
    .form-card label{
      display:block;
      margin-bottom:7px;
      color:#173b63;
      font-size:13px;
      font-weight:900;
    }
    .form-card .form-input{
      border-radius:16px;
      margin-bottom:12px;
    }
    .safe-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:20px;
    }
    .safe-item{
      padding:12px;
      border-radius:16px;
      background:#f8fbff;
      border:1px solid #e4eef8;
      color:#31506f;
      font-size:13px;
      font-weight:850;
    }
    .timeline{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .timeline-card{
      position:relative;
      padding:20px;
      border-radius:22px;
      background:#fff;
      border:1px solid #dfeaf6;
      box-shadow:var(--shadow-sm);
    }
    .timeline-card:before{
      content:"";
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--color-primary);
      box-shadow:0 0 0 7px rgba(37,99,235,.12);
      position:absolute;
      top:22px;
      right:22px;
    }
    .timeline-card time{
      display:inline-flex;
      margin-bottom:12px;
      color:#1d4ed8;
      font-size:13px;
      font-weight:950;
    }
    .timeline-card h3{
      margin:0 0 8px;
      font-size:18px;
      font-weight:950;
      color:#0f2b4d;
    }
    .timeline-card p{
      margin:0;
      color:var(--color-muted);
      font-size:14px;
      line-height:1.75;
    }
    .faq-layout{
      display:grid;
      grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr);
      gap:24px;
      align-items:start;
    }
    .faq-aside{
      padding:24px;
      border-radius:26px;
      color:#fff;
      background:linear-gradient(135deg,#102a5c,#2563eb);
      box-shadow:var(--shadow-md);
    }
    .faq-aside h2{
      margin:0;
      font-size:30px;
      line-height:1.2;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .faq-aside p{
      margin:12px 0 0;
      color:rgba(255,255,255,.78);
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      border:1px solid #dfeaf6;
      border-radius:20px;
      background:#fff;
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 20px;
      color:#0f2b4d;
      background:#fff;
      text-align:left;
      font-weight:950;
      transition:background .22s var(--ease), color .22s var(--ease);
    }
    .faq-question:hover,
    .faq-question:focus-visible{
      background:#f5faff;
      color:var(--color-primary-dark);
      outline:none;
    }
    .faq-icon{
      width:28px;
      height:28px;
      flex:0 0 auto;
      display:grid;
      place-items:center;
      border-radius:10px;
      background:#eaf3ff;
      color:#1d4ed8;
      transition:transform .22s var(--ease);
    }
    .faq-answer{
      display:none;
      padding:0 20px 20px;
      color:var(--color-muted);
      font-size:15px;
      line-height:1.85;
    }
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-icon{transform:rotate(45deg)}
    .footer{
      padding:54px 0 28px;
      color:#dbeafe;
      background:
        radial-gradient(circle at 15% 10%, rgba(6,182,212,.18), transparent 24%),
        linear-gradient(135deg,#0b1730,#102a5c 58%,#0f3b75);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr .75fr;
      gap:28px;
      padding-bottom:34px;
      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:19px;
      letter-spacing:-.03em;
    }
    .footer p{
      color:rgba(219,234,254,.76);
      margin:14px 0 0;
      max-width:560px;
    }
    .footer h3{
      margin:0 0 14px;
      color:#fff;
      font-size:15px;
      font-weight:950;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(219,234,254,.76);
      font-size:14px;
      transition:color .22s var(--ease), transform .22s var(--ease);
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding-top:22px;
      color:rgba(219,234,254,.68);
      font-size:13px;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:28px;
      z-index:80;
      transform:translateX(-50%) translateY(20px);
      opacity:0;
      pointer-events:none;
      padding:12px 16px;
      border-radius:999px;
      color:#fff;
      background:#0f2b4d;
      box-shadow:0 18px 45px rgba(15,43,77,.22);
      transition:.24s var(--ease);
      font-size:14px;
      font-weight:850;
    }
    .toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(0);
    }
    @media (max-width:1024px){
      :root{--nav-h:70px}
      .container{width:min(100% - 32px, var(--container))}
      .search-box{display:none}
      .hero-content{
        grid-template-columns:1fr;
        padding:34px;
      }
      .count-card{
        justify-self:stretch;
        max-width:none;
      }
      .deal-track{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .inventory-layout,
      .news-layout,
      .button-zone-grid,
      .faq-layout{
        grid-template-columns:1fr;
      }
      .timeline{
        grid-template-columns:repeat(2,1fr);
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
    }
    @media (max-width:768px){
      .desktop-nav,
      .nav-actions .btn-primary{
        display:none;
      }
      .mobile-toggle{
        display:grid;
      }
      .brand-text{
        max-width:220px;
        font-size:16px;
      }
      .section{
        padding:58px 0;
      }
      .section-tight{
        padding:44px 0;
      }
      .section-heading{
        align-items:flex-start;
        flex-direction:column;
      }
      .hero{
        padding-top:22px;
      }
      .hero-stage{
        border-radius:26px;
        min-height:auto;
      }
      .live-cover{
        inset:14px;
        border-radius:22px;
      }
      .hero-content{
        padding:26px;
        min-height:auto;
      }
      .hero h1{
        font-size:clamp(34px,10vw,52px);
      }
      .hero p{
        font-size:15px;
      }
      .hero-metrics{
        grid-template-columns:1fr;
      }
      .subscribe-form{
        grid-template-columns:1fr;
      }
      .deal-track{
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        padding-bottom:8px;
      }
      .deal-card{
        min-width:280px;
        scroll-snap-align:start;
      }
      .inventory-panel{
        padding:20px;
      }
      .compare-grid,
      .safe-strip{
        grid-template-columns:1fr;
      }
      .news-item{
        grid-template-columns:1fr;
        gap:8px;
      }
      .news-date{
        width:max-content;
        height:auto;
        padding:8px 12px;
        display:inline-block;
      }
      .timeline{
        grid-template-columns:1fr;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
      }
    }
    @media (max-width:520px){
      .container{width:min(100% - 24px, var(--container))}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .brand-text{max-width:180px}
      .hero-actions .btn,
      .cta-buttons .btn{
        width:100%;
      }
      .countdown{
        grid-template-columns:repeat(2,1fr);
      }
      .section-title{
        font-size:28px;
      }
      .button-zone{
        padding:20px;
        border-radius:24px;
      }
      .mega-panel{
        display:none;
      }
    }
