/* roulang page: index */
:root{
      --bg:#120a13;
      --bg-2:#170d18;
      --panel:#20131f;
      --panel-strong:#261623;
      --soft:#fff7e8;
      --text:#f7f0f5;
      --muted:#b9aab7;
      --muted-2:#8f8390;
      --primary:#ff2e88;
      --primary-2:#ff3d6e;
      --accent:#b8ff3c;
      --warn:#ffb000;
      --info:#35e8ff;
      --border:rgba(255,255,255,.12);
      --border-strong:rgba(255,46,136,.35);
      --shadow:0 18px 40px rgba(0,0,0,.28);
      --shadow-soft:0 10px 22px rgba(0,0,0,.22);
      --radius:8px;
      --radius-sm:6px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      line-height:1.6;
      background:
        linear-gradient(180deg, #140b15 0%, #110910 100%);
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px) 0 0 / 100% 34px,
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px) 0 0 / 34px 100%;
      opacity:.18;
      z-index:-2;
    }
    body::after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:linear-gradient(180deg, rgba(255,46,136,.05) 0, transparent 24%, transparent 76%, rgba(53,232,255,.04) 100%);
      z-index:-3;
    }
    ::selection{background:rgba(255,46,136,.28);color:#fff}
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    button:disabled{cursor:not-allowed;opacity:.65}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(14px);
      background:rgba(18,10,19,.88);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .topbar{
      border-bottom:1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(90deg, rgba(255,46,136,.18), rgba(255,176,0,.14));
    }
    .topbar-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:8px 0;
      font-size:13px;
      color:#f9eff5;
    }
    .topbar-left,
    .topbar-right{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .topbar-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      white-space:nowrap;
    }
    .site-header-inner{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:14px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:8px;
      border:1px solid rgba(255,46,136,.55);
      background:
        linear-gradient(180deg, rgba(255,46,136,.22), rgba(255,46,136,.08)),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 8px 8px,
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 8px 8px;
      position:relative;
      flex:0 0 auto;
      box-shadow:0 8px 18px rgba(255,46,136,.18);
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:9px;
      border:1px solid rgba(255,255,255,.36);
      border-radius:5px;
    }
    .brand-mark::after{
      inset:14px;
      background:var(--accent);
      border:none;
      box-shadow:0 0 0 2px rgba(184,255,60,.2);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      gap:2px;
      min-width:0;
    }
    .brand-name{
      font-size:18px;
      line-height:1.15;
      font-weight:900;
      letter-spacing:0;
      white-space:nowrap;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:28px;
      flex:1 1 auto;
      justify-content:flex-end;
      min-width:0;
    }
    .desktop-nav a{
      position:relative;
      font-size:15px;
      color:var(--muted);
      padding:10px 0;
      transition:color .18s ease;
      white-space:nowrap;
    }
    .desktop-nav a:hover,
    .desktop-nav a:focus-visible,
    .desktop-nav a.active{
      color:var(--text);
    }
    .desktop-nav a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      height:2px;
      background:transparent;
      transition:background .18s ease;
      border-radius:999px;
    }
    .desktop-nav a:hover::after,
    .desktop-nav a:focus-visible::after,
    .desktop-nav a.active::after{
      background:var(--primary);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 16px;
      border-radius:8px;
      border:1px solid transparent;
      transition:transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
      letter-spacing:0;
    }
    .btn svg{
      width:16px;
      height:16px;
      flex:0 0 auto;
    }
    .btn-primary{
      background:linear-gradient(90deg, var(--primary), var(--primary-2));
      color:#fff;
      box-shadow:0 12px 24px rgba(255,46,136,.25);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      transform:translateY(-2px);
      box-shadow:0 16px 30px rgba(255,46,136,.33);
    }
    .btn-secondary{
      background:rgba(255,255,255,.04);
      color:var(--text);
      border-color:var(--border);
    }
    .btn-secondary:hover,
    .btn-secondary:focus-visible{
      transform:translateY(-2px);
      border-color:rgba(255,255,255,.22);
      background:rgba(255,255,255,.07);
      box-shadow:var(--shadow-soft);
    }
    .btn-compact{
      min-height:40px;
      padding:0 14px;
      font-size:14px;
    }
    .btn:focus-visible,
    .menu-toggle:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    summary:focus-visible{
      outline:2px solid rgba(255,46,136,.85);
      outline-offset:2px;
    }
    .menu-toggle{
      display:none;
      align-items:center;
      justify-content:center;
      width:46px;
      height:46px;
      border-radius:8px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      color:var(--text);
    }
    .menu-toggle svg{
      width:22px;
      height:22px;
    }
    .nav-drawer{
      display:grid;
      gap:10px;
      grid-template-columns:1fr 1fr;
      padding:0 0 16px;
    }
    .nav-drawer a{
      min-height:44px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:8px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      color:var(--text);
      font-weight:700;
    }
    .nav-drawer a.active{
      border-color:rgba(255,46,136,.45);
      background:rgba(255,46,136,.12);
    }
    [hidden]{display:none !important}
    main{
      padding:24px 0 48px;
    }
    section{
      scroll-margin-top:110px;
    }
    .section{
      padding:32px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:20px;
    }
    .section-kicker{
      font-size:13px;
      color:var(--accent);
      font-weight:700;
      letter-spacing:0;
      margin:0 0 8px;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .section-kicker::before{
      content:"";
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 4px rgba(255,46,136,.12);
    }
    .section-title{
      font-size:32px;
      line-height:1.15;
      margin:0;
      font-weight:900;
      letter-spacing:0;
      overflow-wrap:anywhere;
    }
    .section-desc{
      margin:0;
      max-width:760px;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      overflow-wrap:anywhere;
    }
    .panel{
      background:rgba(32,19,31,.92);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .panel-soft{
      background:var(--soft);
      color:#20151d;
      border:1px solid rgba(255,255,255,.48);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
    }
    .hero{
      padding-top:8px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(280px,.9fr) minmax(260px,.82fr);
      gap:18px;
      align-items:stretch;
    }
    .hero-copy,
    .hero-board,
    .entry-stack{
      min-width:0;
    }
    .hero-copy{
      padding:18px 0 6px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      margin-bottom:16px;
      border-radius:999px;
      border:1px solid rgba(255,46,136,.34);
      background:rgba(255,46,136,.12);
      color:#ffd6e8;
      font-size:13px;
      font-weight:700;
      white-space:nowrap;
    }
    .hero h1{
      margin:0;
      font-size:54px;
      line-height:1.08;
      font-weight:900;
      letter-spacing:0;
      max-width:11ch;
      overflow-wrap:anywhere;
    }
    .hero-lead{
      margin:18px 0 0;
      max-width:620px;
      font-size:17px;
      line-height:1.8;
      color:var(--muted);
      overflow-wrap:anywhere;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .hero-chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      color:#f0e7ee;
      font-size:13px;
      white-space:nowrap;
    }
    .chip i{
      width:8px;
      height:8px;
      border-radius:50%;
      display:inline-block;
      background:var(--accent);
    }
    .hero-board{
      position:relative;
      padding:18px;
      overflow:hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), transparent),
        rgba(32,19,31,.96);
    }
    .hero-board::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 28px 100%,
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 100% 28px;
      opacity:.18;
      pointer-events:none;
    }
    .board-inner{
      position:relative;
      z-index:1;
    }
    .board-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .board-note{
      font-size:13px;
      color:var(--muted);
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
      line-height:1;
      border:1px solid transparent;
    }
    .badge-primary{
      background:rgba(255,46,136,.14);
      color:#ffd4e6;
      border-color:rgba(255,46,136,.28);
    }
    .badge-accent{
      background:rgba(184,255,60,.14);
      color:#ecffd1;
      border-color:rgba(184,255,60,.22);
    }
    .badge-warn{
      background:rgba(255,176,0,.16);
      color:#ffe7b0;
      border-color:rgba(255,176,0,.24);
    }
    .badge-info{
      background:rgba(53,232,255,.12);
      color:#d8fbff;
      border-color:rgba(53,232,255,.22);
    }
    .sticker{
      position:absolute;
      top:16px;
      right:-10px;
      transform:rotate(8deg);
      background:var(--warn);
      color:#271400;
      padding:8px 14px;
      border-radius:10px;
      font-weight:900;
      font-size:13px;
      box-shadow:0 10px 22px rgba(255,176,0,.18);
    }
    .countdown-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:10px;
      margin-top:12px;
    }
    .time-box{
      border-radius:8px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      padding:12px 8px 10px;
      text-align:center;
    }
    .time-box strong{
      display:block;
      font-size:26px;
      line-height:1;
      font-variant-numeric:tabular-nums;
      font-feature-settings:"tnum" 1;
      letter-spacing:0;
    }
    .time-box span{
      display:block;
      margin-top:6px;
      font-size:12px;
      color:var(--muted);
    }
    .metric-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:10px;
      margin-top:14px;
    }
    .metric{
      padding:12px 12px 11px;
      border-radius:8px;
      background:rgba(255,255,255,.035);
      border:1px solid var(--border);
    }
    .metric strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      font-variant-numeric:tabular-nums;
    }
    .metric span{
      display:block;
      margin-top:5px;
      font-size:12px;
      color:var(--muted);
    }
    .board-list{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .board-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      font-size:14px;
      color:var(--text);
    }
    .board-list li::before{
      content:"";
      width:10px;
      height:10px;
      margin-top:5px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 4px rgba(255,46,136,.12);
      flex:0 0 auto;
    }
    .entry-stack{
      display:grid;
      gap:12px;
      align-content:start;
    }
    .entry-card{
      position:relative;
      padding:16px 16px 15px;
      background:rgba(32,19,31,.92);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      overflow:hidden;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:rgba(255,46,136,.34);
      box-shadow:0 16px 28px rgba(0,0,0,.26);
    }
    .entry-card::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:3px;
      height:100%;
      background:linear-gradient(180deg, var(--primary), var(--warn));
    }
    .entry-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .entry-top strong{
      font-size:15px;
      line-height:1.3;
    }
    .entry-number{
      font-size:12px;
      color:var(--muted);
      font-variant-numeric:tabular-nums;
    }
    .entry-desc{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .entry-foot{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      margin-top:12px;
    }
    .entry-tag{
      font-size:12px;
      padding:4px 9px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      color:#f1e8ef;
    }
    .entry-link{
      font-size:13px;
      color:var(--primary);
      font-weight:700;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .entry-link svg{
      width:14px;
      height:14px;
    }
    .card-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:16px;
    }
    .promo-card{
      position:relative;
      padding:18px;
      overflow:hidden;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .promo-card:hover{
      transform:translateY(-3px);
      border-color:rgba(255,46,136,.36);
      box-shadow:0 18px 34px rgba(0,0,0,.28);
    }
    .promo-card h3{
      margin:10px 0 8px;
      font-size:21px;
      line-height:1.2;
      font-weight:900;
      overflow-wrap:anywhere;
    }
    .promo-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      overflow-wrap:anywhere;
    }
    .promo-card ul{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
    }
    .promo-card li{
      display:flex;
      gap:8px;
      align-items:flex-start;
      color:#f2e8ee;
      font-size:13px;
      line-height:1.6;
    }
    .promo-card li::before{
      content:"";
      width:7px;
      height:7px;
      margin-top:7px;
      border-radius:50%;
      background:var(--info);
      flex:0 0 auto;
    }
    .card-foot{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--primary);
      font-size:13px;
      font-weight:700;
    }
    .mini-link svg{
      width:14px;
      height:14px;
    }
    .timeline-grid{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
      gap:16px;
      align-items:stretch;
    }
    .timeline-list{
      padding:18px;
    }
    .timeline{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .timeline li{
      display:grid;
      grid-template-columns:52px minmax(0,1fr);
      gap:12px;
      padding:14px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .timeline li:last-child{border-bottom:0;padding-bottom:0}
    .step-num{
      width:52px;
      height:52px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:8px;
      background:rgba(255,46,136,.12);
      border:1px solid rgba(255,46,136,.25);
      color:#ffd5e5;
      font-weight:900;
      font-size:20px;
      font-variant-numeric:tabular-nums;
      flex:0 0 auto;
    }
    .step-content strong{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:18px;
      line-height:1.25;
      margin-bottom:6px;
      overflow-wrap:anywhere;
    }
    .step-content p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      overflow-wrap:anywhere;
    }
    .step-inline{
      margin-top:10px;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .step-panel{
      padding:18px;
      background:var(--soft);
      color:#20151d;
    }
    .step-panel h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.2;
      font-weight:900;
    }
    .step-panel p{
      margin:0;
      font-size:15px;
      line-height:1.8;
      color:#3f3240;
    }
    .step-panel .progress{
      margin:16px 0 14px;
      height:9px;
      border-radius:999px;
      background:rgba(32,21,29,.12);
      overflow:hidden;
      border:1px solid rgba(32,21,29,.1);
    }
    .step-panel .progress span{
      display:block;
      width:76%;
      height:100%;
      background:linear-gradient(90deg, var(--primary), var(--warn));
    }
    .step-panel ul{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .step-panel li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      font-size:14px;
      line-height:1.7;
    }
    .step-panel li::before{
      content:"";
      width:10px;
      height:10px;
      margin-top:5px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 4px rgba(255,46,136,.15);
      flex:0 0 auto;
    }
    .voice-strip{
      display:flex;
      gap:12px;
      overflow-x:auto;
      padding:4px 2px 12px;
      scroll-snap-type:x proximity;
      scrollbar-width:thin;
    }
    .voice-strip::-webkit-scrollbar{height:10px}
    .voice-strip::-webkit-scrollbar-thumb{
      background:rgba(255,255,255,.16);
      border-radius:999px;
    }
    .voice{
      flex:0 0 290px;
      scroll-snap-align:start;
      padding:16px;
      border-radius:var(--radius);
      background:rgba(32,19,31,.92);
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .voice-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .avatar{
      width:38px;
      height:38px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(180deg, rgba(255,46,136,.22), rgba(255,176,0,.16));
      border:1px solid rgba(255,255,255,.14);
      color:#fff;
      font-weight:900;
      flex:0 0 auto;
    }
    .voice-meta{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .voice-name{
      display:block;
      font-size:15px;
      font-weight:800;
      line-height:1.2;
      margin-bottom:3px;
    }
    .voice-time{
      display:block;
      font-size:12px;
      color:var(--muted);
    }
    .rating{
      display:inline-flex;
      align-items:center;
      gap:4px;
      color:var(--warn);
      font-size:12px;
      white-space:nowrap;
    }
    .voice p{
      margin:0;
      color:var(--text);
      font-size:14px;
      line-height:1.75;
      overflow-wrap:anywhere;
    }
    .voice-tags{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .voice-tags span{
      padding:4px 8px;
      border-radius:999px;
      font-size:12px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      color:#f1e8ef;
    }
    .news-grid{
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
      gap:16px;
      align-items:start;
    }
    .news-list{
      display:grid;
      gap:12px;
    }
    .news-item{
      display:grid;
      grid-template-columns:42px minmax(0,1fr) auto;
      gap:14px;
      align-items:center;
      padding:14px 16px;
      border-radius:var(--radius);
      background:rgba(32,19,31,.92);
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .news-item:hover{
      transform:translateY(-2px);
      border-color:rgba(255,46,136,.35);
      box-shadow:0 16px 28px rgba(0,0,0,.25);
    }
    .news-index{
      width:42px;
      height:42px;
      border-radius:8px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,46,136,.12);
      border:1px solid rgba(255,46,136,.28);
      color:#ffd6e6;
      font-weight:900;
      font-variant-numeric:tabular-nums;
    }
    .news-body{
      display:flex;
      flex-direction:column;
      gap:8px;
      min-width:0;
    }
    .news-body strong{
      font-size:16px;
      line-height:1.35;
      overflow-wrap:anywhere;
    }
    .news-meta{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:13px;
    }
    .news-arrow{
      color:var(--primary);
      font-size:18px;
      font-weight:900;
    }
    .news-side{
      padding:18px;
    }
    .news-side h3,
    .join-side h3,
    .faq-side h3,
    .cta-panel h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.2;
      font-weight:900;
      overflow-wrap:anywhere;
    }
    .news-side p,
    .join-side p,
    .faq-side p,
    .cta-panel p{
      margin:0;
      font-size:15px;
      line-height:1.75;
      color:var(--muted);
      overflow-wrap:anywhere;
    }
    .info-list{
      margin:16px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .info-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--text);
      font-size:14px;
      line-height:1.7;
    }
    .info-list li::before{
      content:"";
      width:10px;
      height:10px;
      margin-top:5px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(184,255,60,.14);
      flex:0 0 auto;
    }
    .join-grid{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
      gap:16px;
      align-items:stretch;
    }
    .form-panel{
      padding:18px;
    }
    form{
      display:grid;
      gap:14px;
    }
    .field{
      display:grid;
      gap:8px;
    }
    .field label{
      font-size:14px;
      font-weight:700;
      color:var(--text);
    }
    .field input,
    .field select,
    .field textarea{
      width:100%;
      min-height:46px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.04);
      color:var(--text);
      padding:12px 14px;
      transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
    }
    .field textarea{
      min-height:124px;
      resize:vertical;
    }
    .field input::placeholder,
    .field textarea::placeholder{
      color:#9d90a0;
    }
    .field input:hover,
    .field select:hover,
    .field textarea:hover{
      border-color:rgba(255,255,255,.22);
    }
    .field input:focus-visible,
    .field select:focus-visible,
    .field textarea:focus-visible{
      border-color:rgba(255,46,136,.65);
      box-shadow:0 0 0 4px rgba(255,46,136,.16);
      outline:none;
      background:rgba(255,255,255,.06);
    }
    .form-row{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .form-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .form-note{
      font-size:12px;
      color:var(--muted);
      line-height:1.6;
    }
    .form-status{
      display:none;
      margin-top:10px;
      padding:12px 14px;
      border-radius:8px;
      font-size:14px;
      line-height:1.7;
      border:1px solid transparent;
    }
    .form-status.is-success{
      display:block;
      background:rgba(184,255,60,.14);
      border-color:rgba(184,255,60,.24);
      color:#ecffd1;
    }
    .join-side{
      padding:18px;
    }
    .join-side .panel-card{
      margin-top:16px;
      padding:14px;
      border-radius:8px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.12);
    }
    .join-side .panel-card + .panel-card{margin-top:12px}
    .join-side .panel-card strong{
      display:block;
      margin-bottom:6px;
      font-size:16px;
      line-height:1.3;
    }
    .join-side .panel-card p{
      margin:0;
      font-size:14px;
      line-height:1.75;
      color:var(--muted);
    }
    .join-side .chip-grid{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .join-side .chip-grid .chip{
      background:rgba(255,255,255,.04);
    }
    .faq-grid{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
      gap:16px;
      align-items:start;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      background:rgba(32,19,31,.92);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .faq-item[open]{
      border-color:rgba(255,46,136,.4);
    }
    .faq-item summary{
      list-style:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:16px 18px;
      cursor:pointer;
      font-size:16px;
      font-weight:800;
      line-height:1.4;
      overflow-wrap:anywhere;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";
      width:28px;
      height:28px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      flex:0 0 auto;
      font-size:18px;
      color:var(--text);
      transition:transform .18s ease, background-color .18s ease;
    }
    .faq-item[open] summary::after{
      content:"−";
      background:rgba(255,46,136,.12);
      border-color:rgba(255,46,136,.24);
    }
    .faq-body{
      padding:0 18px 16px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .faq-side{
      padding:18px;
    }
    .cta-band{
      padding:0;
    }
    .cta-panel{
      padding:20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      background:
        linear-gradient(90deg, rgba(255,46,136,.14), rgba(255,176,0,.12)),
        rgba(32,19,31,.94);
    }
    .cta-copy{
      flex:1 1 420px;
      min-width:0;
    }
    .cta-copy h2{
      margin:0 0 10px;
      font-size:30px;
      line-height:1.12;
      font-weight:900;
      overflow-wrap:anywhere;
    }
    .cta-countdown{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      color:#ffdbe7;
      font-size:14px;
    }
    .cta-countdown strong{
      font-variant-numeric:tabular-nums;
      font-feature-settings:"tnum" 1;
      color:#fff;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      flex:0 0 auto;
    }
    .cta-foot{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .cta-foot .chip{
      background:rgba(255,255,255,.04);
    }
    .site-footer{
      margin-top:14px;
      border-top:1px solid rgba(255,255,255,.08);
      background:#0f0810;
    }
    .footer-inner{
      padding:28px 0 34px;
      display:grid;
      grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);
      gap:18px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .footer-brand .brand-name{
      white-space:normal;
      font-size:19px;
    }
    .footer-text{
      margin:0;
      max-width:640px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      overflow-wrap:anywhere;
    }
    .footer-links{
      display:grid;
      gap:10px;
      justify-items:end;
      text-align:right;
    }
    .footer-links a{
      color:#f3e9ef;
      font-size:14px;
      transition:color .18s ease;
      white-space:nowrap;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      color:var(--primary);
    }
    .footer-meta{
      grid-column:1 / -1;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:8px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--muted-2);
      font-size:12px;
    }
    .muted{color:var(--muted)}
    .mono{
      font-variant-numeric:tabular-nums;
      font-feature-settings:"tnum" 1;
    }
    .section--soft .section-title{color:#20151d}
    .section--soft .section-desc{color:#4d3f4b}
    .section--soft .section-kicker{color:#8a2b57}
    .section--soft .section-kicker::before{background:var(--primary)}
    .center-note{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      color:var(--muted);
      font-size:13px;
      margin-top:10px;
    }
    .small-title{
      margin:0 0 8px;
      font-size:18px;
      line-height:1.25;
      font-weight:800;
    }
    .subline{
      font-size:13px;
      color:var(--muted);
      margin-top:8px;
    }
    .label-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }
    .label-row .badge{min-height:26px}
    .marker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:13px;
      color:var(--muted);
    }
    .marker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--info);
      box-shadow:0 0 0 4px rgba(53,232,255,.12);
    }
    .nav-drawer .btn{
      width:100%;
    }
    @media (max-width: 1119px){
      .hero-grid{
        grid-template-columns:minmax(0,1fr) minmax(0,.95fr);
      }
      .entry-stack{
        grid-column:1 / -1;
        grid-template-columns:repeat(4, minmax(0,1fr));
      }
      .card-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .timeline-grid,
      .news-grid,
      .join-grid,
      .faq-grid{
        grid-template-columns:1fr;
      }
    }
    @media (max-width: 767px){
      .container{
        width:min(var(--container), calc(100% - 24px));
      }
      .topbar-inner{
        padding:8px 0;
        gap:8px;
        justify-content:flex-start;
      }
      .site-header-inner{
        min-height:64px;
        padding:10px 0;
      }
      .desktop-nav{
        display:none;
      }
      .header-actions .btn-secondary{
        display:none;
      }
      .menu-toggle{
        display:inline-flex;
      }
      .hero-grid,
      .entry-stack,
      .card-grid,
      .timeline-grid,
      .news-grid,
      .join-grid,
      .faq-grid{
        grid-template-columns:1fr;
      }
      .hero h1{
        font-size:36px;
        max-width:none;
      }
      .hero-lead{
        font-size:16px;
      }
      .section{
        padding:24px 0;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-title{
        font-size:26px;
      }
      .hero-actions,
      .cta-actions,
      .form-actions{
        width:100%;
      }
      .hero-actions .btn,
      .cta-actions .btn,
      .form-actions .btn{
        width:100%;
      }
      .countdown-grid{
        gap:8px;
      }
      .time-box strong{
        font-size:22px;
      }
      .metric-grid{
        grid-template-columns:1fr 1fr;
      }
      .footer-inner{
        grid-template-columns:1fr;
      }
      .footer-links{
        justify-items:start;
        text-align:left;
      }
      .news-item{
        grid-template-columns:38px minmax(0,1fr);
      }
      .news-arrow{
        display:none;
      }
      .form-row{
        grid-template-columns:1fr;
      }
      .cta-panel{
        padding:18px;
      }
      .cta-copy h2{
        font-size:26px;
      }
      .nav-drawer{
        grid-template-columns:1fr;
      }
    }
    @media (max-width: 520px){
      .brand-name{
        font-size:16px;
      }
      .brand-sub{
        font-size:11px;
      }
      .topbar-inner{
        font-size:12px;
      }
      .hero h1{
        font-size:31px;
      }
      .promo-card h3{
        font-size:18px;
      }
      .step-content strong{
        font-size:16px;
      }
      .voice{
        flex-basis:84vw;
      }
      .countdown-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .metric-grid{
        grid-template-columns:1fr;
      }
      .cta-panel{
        gap:14px;
      }
    }
    @media (max-width: 375px){
      .container{
        width:min(var(--container), calc(100% - 18px));
      }
      .hero h1{
        font-size:28px;
      }
      .section-title{
        font-size:24px;
      }
      .btn{
        min-height:44px;
        padding:0 14px;
      }
      .time-box strong{
        font-size:20px;
      }
      .news-index{
        width:38px;
        height:38px;
      }
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{
        animation:none !important;
        transition:none !important;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #120a13;
      --bg-2: #1b101d;
      --bg-3: #241421;
      --panel: rgba(32, 21, 29, 0.88);
      --panel-strong: rgba(38, 24, 35, 0.96);
      --line: rgba(255, 255, 255, 0.14);
      --line-strong: rgba(255, 46, 136, 0.38);
      --text: #f7f0f5;
      --text-soft: #b9aab7;
      --text-dim: #8e7e8a;
      --primary: #ff2e88;
      --primary-2: #ff3d6e;
      --accent: #b8ff3c;
      --accent-2: #ffb000;
      --accent-3: #35e8ff;
      --soft: #fff7e8;
      --ok: #8cff7a;
      --warn: #ffbf4d;
      --shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
      --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.22);
      --radius: 8px;
      --radius-sm: 6px;
      --radius-lg: 10px;
      --container: 1180px;
      --gap: 24px;
      --gap-sm: 14px;
      --transition: 180ms ease;
      --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
      --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      font-family: var(--sans);
      color: var(--text);
      background:
        linear-gradient(180deg, #120a13 0%, #140b15 24%, #1b101d 62%, #120a13 100%);
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.03) 0,
          rgba(255, 255, 255, 0.03) 1px,
          transparent 1px,
          transparent 120px
        ),
        repeating-linear-gradient(
          0deg,
          rgba(255, 255, 255, 0.03) 0,
          rgba(255, 255, 255, 0.03) 1px,
          transparent 1px,
          transparent 120px
        );
      opacity: 0.3;
      z-index: 0;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(135deg, transparent 0 45%, rgba(255, 46, 136, 0.06) 45% 46%, transparent 46% 100%),
        linear-gradient(315deg, transparent 0 55%, rgba(255, 176, 0, 0.05) 55% 56%, transparent 56% 100%);
      z-index: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
      color: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--accent-3);
      outline-offset: 2px;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .mono {
      font-variant-numeric: tabular-nums;
      font-family: var(--mono);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(16px);
      background: linear-gradient(180deg, rgba(18, 10, 19, 0.96), rgba(18, 10, 19, 0.84));
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .topbar {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(90deg, rgba(255, 46, 136, 0.16), rgba(184, 255, 60, 0.08), rgba(53, 232, 255, 0.08));
    }

    .topbar-inner {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 8px 0;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .topbar-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 24px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(32, 21, 29, 0.7);
      color: var(--text-soft);
      font-size: 12px;
      letter-spacing: 0;
    }

    .topbar-pill strong {
      color: var(--text);
      font-weight: 800;
    }

    .site-header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      position: relative;
      background:
        linear-gradient(135deg, rgba(255, 46, 136, 0.95), rgba(255, 176, 0, 0.92));
      box-shadow: 0 10px 24px rgba(255, 46, 136, 0.28);
      flex: 0 0 auto;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: 7px;
      border: 1px solid rgba(255, 255, 255, 0.46);
    }

    .brand-mark::after {
      inset: 15px 9px 15px 9px;
      border-radius: 2px;
      border-top-color: transparent;
      border-bottom-color: transparent;
      transform: rotate(45deg);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      min-width: 0;
      gap: 2px;
    }

    .brand-name {
      font-size: 18px;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-sub {
      color: var(--text-soft);
      font-size: 12px;
      line-height: 1.2;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-left: auto;
    }

    .desktop-nav a {
      position: relative;
      padding: 10px 2px;
      color: var(--text-soft);
      font-size: 14px;
      font-weight: 700;
      transition: color var(--transition);
    }

    .desktop-nav a:hover,
    .desktop-nav a:focus-visible,
    .desktop-nav a.active {
      color: var(--text);
    }

    .desktop-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 4px;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: transparent;
      transition: background var(--transition);
    }

    .desktop-nav a.active::after,
    .desktop-nav a:hover::after {
      background: var(--primary);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 16px;
      border-radius: 8px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
      user-select: none;
      white-space: nowrap;
    }

    .btn svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #fff;
      box-shadow: 0 14px 28px rgba(255, 46, 136, 0.25);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      box-shadow: 0 18px 32px rgba(255, 46, 136, 0.34);
      border-color: rgba(255, 255, 255, 0.16);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.14);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      border-color: rgba(255, 46, 136, 0.35);
      background: rgba(255, 46, 136, 0.08);
    }

    .btn-compact {
      min-height: 42px;
      padding: 0 14px;
      font-size: 14px;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      transition: transform var(--transition), border-color var(--transition), background var(--transition);
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      border-color: rgba(255, 46, 136, 0.35);
      background: rgba(255, 46, 136, 0.08);
      transform: translateY(-1px);
    }

    .menu-toggle svg {
      width: 22px;
      height: 22px;
    }

    .nav-drawer {
      display: none;
      padding: 0 0 14px;
    }

    .nav-drawer a {
      display: block;
      padding: 13px 14px;
      margin-top: 8px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-soft);
      font-weight: 700;
    }

    .nav-drawer a.active {
      color: var(--text);
      border-color: rgba(255, 46, 136, 0.36);
      background: rgba(255, 46, 136, 0.12);
    }

    .hero {
      padding: 30px 0 24px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 22px;
      align-items: stretch;
    }

    .hero-copy,
    .hero-panel,
    .section-shell,
    .cta-shell {
      position: relative;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(32, 21, 29, 0.94), rgba(27, 16, 29, 0.9));
      box-shadow: var(--shadow);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .hero-copy {
      padding: 28px;
    }

    .hero-copy::before,
    .hero-panel::before,
    .section-shell::before,
    .cta-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 100%);
      background-size: 100% 100%, 100% 100%;
      opacity: 0.18;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 46, 136, 0.12);
      border: 1px solid rgba(255, 46, 136, 0.28);
      color: #ffd0e2;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0;
      width: fit-content;
    }

    .hero-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(184, 255, 60, 0.18);
    }

    .hero h1 {
      margin: 16px 0 14px;
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
      max-width: 13ch;
    }

    .hero-lead {
      margin: 0;
      max-width: 62ch;
      color: var(--text-soft);
      font-size: 16px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .metric {
      padding: 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(18, 10, 19, 0.46);
    }

    .metric-value {
      display: block;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
    }

    .metric-label {
      display: block;
      margin-top: 4px;
      color: var(--text-soft);
      font-size: 13px;
    }

    .hero-panel {
      display: grid;
      gap: 14px;
      padding: 22px;
      align-content: start;
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .panel-title {
      margin: 0;
      font-size: 18px;
      font-weight: 900;
    }

    .sticker {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent-2), #ff7f50);
      color: #26150b;
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 10px 18px rgba(255, 176, 0, 0.22);
      transform: rotate(-6deg);
    }

    .countdown-box {
      padding: 16px;
      border-radius: 8px;
      background: rgba(255, 247, 232, 0.98);
      color: #20151d;
      box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
    }

    .countdown-box small {
      display: block;
      color: #6e5c66;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .countdown-box strong {
      display: block;
      font-size: 28px;
      font-weight: 900;
      line-height: 1.1;
      font-variant-numeric: tabular-nums;
    }

    .countdown-box span {
      display: block;
      margin-top: 6px;
      color: #5f4d57;
      font-size: 13px;
    }

    .status-grid {
      display: grid;
      gap: 10px;
    }

    .status-row {
      display: grid;
      grid-template-columns: 74px 1fr 52px;
      gap: 10px;
      align-items: center;
      padding: 12px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .status-row:first-child {
      border-top: 0;
      padding-top: 0;
    }

    .status-name {
      font-weight: 800;
      color: var(--text);
      font-size: 14px;
    }

    .status-track {
      position: relative;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }

    .status-fill {
      position: absolute;
      inset: 0 auto 0 0;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent-2));
    }

    .status-score {
      text-align: right;
      font-size: 13px;
      font-weight: 800;
      color: #fff;
    }

    .hero-quicklist {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .quick-card {
      padding: 12px;
      border-radius: 8px;
      background: rgba(18, 10, 19, 0.52);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform var(--transition), border-color var(--transition), background var(--transition);
    }

    .quick-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 46, 136, 0.3);
      background: rgba(255, 46, 136, 0.08);
    }

    .quick-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--text-soft);
      font-size: 12px;
      font-weight: 700;
    }

    .quick-label::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent-3);
    }

    .quick-card h3 {
      margin: 8px 0 4px;
      font-size: 16px;
      line-height: 1.25;
    }

    .quick-card p {
      margin: 0;
      color: var(--text-soft);
      font-size: 13px;
    }

    .section {
      padding: 20px 0;
    }

    .section-shell {
      padding: 22px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .section-copy {
      max-width: 66ch;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #ffd7e7;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0;
      margin-bottom: 6px;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(255, 46, 136, 0.12);
    }

    .section-title {
      margin: 0;
      font-size: 30px;
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      margin: 10px 0 0;
      color: var(--text-soft);
      font-size: 15px;
    }

    .filter-shell {
      padding: 18px 22px 22px;
    }

    .toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
    }

    .chip-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-soft);
      font-size: 13px;
      font-weight: 800;
      transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    }

    .filter-chip:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 46, 136, 0.32);
    }

    .filter-chip.active {
      background: linear-gradient(135deg, rgba(255, 46, 136, 0.96), rgba(255, 61, 110, 0.92));
      border-color: rgba(255, 255, 255, 0.18);
      color: #fff;
      box-shadow: 0 14px 24px rgba(255, 46, 136, 0.2);
    }

    .search-box {
      min-width: min(100%, 300px);
      flex: 0 1 360px;
      position: relative;
    }

    .search-box input {
      width: 100%;
      min-height: 44px;
      padding: 0 14px 0 42px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(18, 10, 19, 0.58);
      color: var(--text);
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .search-box input::placeholder {
      color: var(--text-dim);
    }

    .search-box input:focus {
      outline: none;
      border-color: rgba(53, 232, 255, 0.55);
      box-shadow: 0 0 0 4px rgba(53, 232, 255, 0.12);
      background: rgba(18, 10, 19, 0.72);
    }

    .search-box svg {
      position: absolute;
      left: 14px;
      top: 50%;
      width: 18px;
      height: 18px;
      transform: translateY(-50%);
      color: var(--text-dim);
      pointer-events: none;
    }

    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .content-card {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: linear-gradient(180deg, rgba(34, 22, 32, 0.96), rgba(22, 13, 23, 0.94));
      box-shadow: var(--shadow-soft);
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
      min-height: 238px;
    }

    .content-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 46, 136, 0.3);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
      background: linear-gradient(180deg, rgba(38, 24, 35, 0.98), rgba(22, 13, 23, 0.96));
    }

    .card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .card-index {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(53, 232, 255, 0.12);
      border: 1px solid rgba(53, 232, 255, 0.28);
      color: #d5fbff;
      font-size: 12px;
      font-weight: 800;
    }

    .card-badge {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .badge-hot {
      background: rgba(255, 176, 0, 0.14);
      border-color: rgba(255, 176, 0, 0.35);
      color: #ffd48d;
    }

    .badge-new {
      background: rgba(184, 255, 60, 0.14);
      border-color: rgba(184, 255, 60, 0.35);
      color: #eaffb8;
    }

    .badge-live {
      background: rgba(255, 46, 136, 0.14);
      border-color: rgba(255, 46, 136, 0.35);
      color: #ffd0e2;
    }

    .badge-safe {
      background: rgba(53, 232, 255, 0.14);
      border-color: rgba(53, 232, 255, 0.35);
      color: #d9fbff;
    }

    .content-card h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 900;
    }

    .content-card p {
      margin: 0;
      color: var(--text-soft);
      font-size: 14px;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-soft);
      font-size: 12px;
      font-weight: 700;
    }

    .card-points {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .card-points li {
      position: relative;
      padding-left: 18px;
      color: var(--text);
      font-size: 13px;
    }

    .card-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(184, 255, 60, 0.12);
      transform: translateY(-50%);
    }

    .card-foot {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding-top: 4px;
    }

    .card-note {
      color: var(--text-dim);
      font-size: 12px;
      font-weight: 700;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 38px;
      padding: 0 12px;
      border-radius: 8px;
      background: rgba(255, 46, 136, 0.12);
      color: #ffd7e7;
      border: 1px solid rgba(255, 46, 136, 0.24);
      font-size: 13px;
      font-weight: 800;
      transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    }

    .card-link:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 46, 136, 0.4);
      background: rgba(255, 46, 136, 0.18);
      color: #fff;
    }

    .task-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 16px;
      margin-top: 18px;
    }

    .task-list {
      display: grid;
      gap: 12px;
    }

    .task-item {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
    }

    .task-ico {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: rgba(255, 46, 136, 0.12);
      border: 1px solid rgba(255, 46, 136, 0.24);
      color: #ffd7e7;
      font-weight: 900;
    }

    .task-item h4 {
      margin: 0;
      font-size: 16px;
      font-weight: 900;
    }

    .task-item p {
      margin: 3px 0 0;
      color: var(--text-soft);
      font-size: 13px;
    }

    .task-state {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(184, 255, 60, 0.12);
      border: 1px solid rgba(184, 255, 60, 0.32);
      color: #ebffbf;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .task-side {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .aside-box {
      padding: 18px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(18, 10, 19, 0.5);
    }

    .aside-box h3 {
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: 900;
    }

    .aside-box p {
      margin: 0;
      color: var(--text-soft);
      font-size: 14px;
    }

    .aside-stat {
      margin-top: 12px;
      display: grid;
      gap: 10px;
    }

    .stat-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--text-soft);
      font-size: 13px;
      font-weight: 700;
    }

    .stat-line strong {
      color: #fff;
      font-weight: 900;
    }

    .bar {
      margin-top: 8px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent-2));
    }

    .reviews-shell {
      padding: 22px;
    }

    .review-strip {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(260px, 1fr);
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 6px;
      scroll-snap-type: x proximity;
    }

    .review-strip::-webkit-scrollbar,
    .chip-row::-webkit-scrollbar {
      height: 8px;
    }

    .review-strip::-webkit-scrollbar-thumb,
    .chip-row::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.18);
      border-radius: 999px;
    }

    .review {
      scroll-snap-align: start;
      padding: 16px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      min-height: 160px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .review-top {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(255, 46, 136, 0.95), rgba(53, 232, 255, 0.82));
      color: #fff;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .review-meta {
      min-width: 0;
    }

    .review-meta strong {
      display: block;
      font-size: 14px;
      font-weight: 900;
    }

    .review-meta span {
      color: var(--text-dim);
      font-size: 12px;
    }

    .review p {
      margin: 0;
      color: var(--text-soft);
      font-size: 14px;
    }

    .review-badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 24px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(53, 232, 255, 0.12);
      border: 1px solid rgba(53, 232, 255, 0.28);
      color: #d9fbff;
      font-size: 12px;
      font-weight: 800;
    }

    .faq-shell {
      padding: 22px;
    }

    .faq-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .faq-item {
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      overflow: hidden;
      transition: border-color var(--transition), background var(--transition);
    }

    .faq-item[open] {
      border-color: rgba(255, 46, 136, 0.36);
      background: rgba(255, 46, 136, 0.08);
    }

    .faq-item summary {
      list-style: none;
      padding: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      font-weight: 800;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-q {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .faq-q .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(255, 46, 136, 0.12);
      flex: 0 0 auto;
    }

    .faq-icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      transition: transform var(--transition);
      color: var(--text-soft);
    }

    .faq-item[open] .faq-icon {
      transform: rotate(180deg);
      color: #fff;
    }

    .faq-answer {
      padding: 0 16px 16px 36px;
      color: var(--text-soft);
      font-size: 14px;
    }

    .cta-shell {
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(255, 46, 136, 0.12), rgba(255, 176, 0, 0.08), rgba(53, 232, 255, 0.07)),
        linear-gradient(180deg, rgba(32, 21, 29, 0.95), rgba(20, 12, 22, 0.96));
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 18px;
      align-items: start;
    }

    .cta-copy h2 {
      margin: 0;
      font-size: 30px;
      line-height: 1.15;
      font-weight: 900;
    }

    .cta-copy p {
      margin: 12px 0 0;
      color: var(--text-soft);
      font-size: 15px;
      max-width: 60ch;
    }

    .cta-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .cta-mini {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(18, 10, 19, 0.44);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
    }

    .cta-mini .mini-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
    }

    .contact-form {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(18, 10, 19, 0.62);
    }

    .field-row {
      display: grid;
      gap: 8px;
    }

    .field-row label {
      font-size: 13px;
      font-weight: 800;
      color: #fff;
    }

    .field-row input,
    .field-row select,
    .field-row textarea {
      width: 100%;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      padding: 12px 14px;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .field-row textarea {
      min-height: 104px;
      resize: vertical;
    }

    .field-row input::placeholder,
    .field-row textarea::placeholder {
      color: var(--text-dim);
    }

    .field-row input:focus,
    .field-row select:focus,
    .field-row textarea:focus {
      outline: none;
      border-color: rgba(53, 232, 255, 0.55);
      box-shadow: 0 0 0 4px rgba(53, 232, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
    }

    .form-note {
      color: var(--text-dim);
      font-size: 12px;
      line-height: 1.5;
    }

    .footer-spacer {
      height: 20px;
    }

    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, #0f0710, #140b15);
      padding: 28px 0 24px;
      margin-top: 20px;
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 20px;
      align-items: start;
    }

    .footer-brand .brand {
      margin-bottom: 12px;
    }

    .footer-text {
      margin: 0;
      color: var(--text-soft);
      font-size: 14px;
      max-width: 42ch;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      justify-content: start;
    }

    .footer-links a {
      color: var(--text-soft);
      font-size: 14px;
      font-weight: 700;
      transition: color var(--transition), transform var(--transition);
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #fff;
      transform: translateX(2px);
    }

    .footer-meta {
      display: grid;
      gap: 10px;
      color: var(--text-dim);
      font-size: 13px;
      justify-content: end;
      text-align: right;
    }

    .article-frame {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 18px;
      align-items: start;
    }

    .article-body {
      width: min(100%, 820px);
    }

    .article-sidebar {
      position: sticky;
      top: 112px;
      display: grid;
      gap: 12px;
    }

    .toc-box,
    .related-box {
      padding: 16px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
    }

    .toc-box h3,
    .related-box h3 {
      margin: 0 0 10px;
      font-size: 16px;
      font-weight: 900;
    }

    .toc-box a,
    .related-box a {
      display: block;
      padding: 8px 0;
      color: var(--text-soft);
      font-size: 14px;
      font-weight: 700;
    }

    .toc-box a:hover,
    .related-box a:hover {
      color: #fff;
    }

    .hidden-card {
      display: none !important;
    }

    @media (max-width: 1179px) {
      .hero-grid,
      .cta-grid,
      .task-grid,
      .article-frame {
        grid-template-columns: 1fr;
      }

      .article-sidebar {
        position: static;
      }

      .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .desktop-nav,
      .header-actions .btn-secondary.btn-compact {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-drawer {
        display: block;
      }

      .site-header-inner {
        padding-bottom: 10px;
      }

      .hero h1 {
        max-width: 14ch;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .footer-meta {
        grid-column: 1 / -1;
        justify-content: start;
        text-align: left;
      }
    }

    @media (max-width: 767px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .site-header-inner {
        align-items: flex-start;
      }

      .brand-name {
        white-space: normal;
      }

      .hero {
        padding-top: 22px;
      }

      .hero-copy,
      .hero-panel,
      .section-shell,
      .cta-shell,
      .reviews-shell,
      .faq-shell,
      .filter-shell {
        padding: 18px;
      }

      .hero h1,
      .section-title,
      .cta-copy h2 {
        font-size: 28px;
      }

      .toolbar {
        align-items: stretch;
      }

      .search-box {
        flex: 1 1 100%;
        min-width: 100%;
      }

      .catalog-grid {
        grid-template-columns: 1fr;
      }

      .hero-quicklist {
        grid-template-columns: 1fr;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }

      .task-item {
        grid-template-columns: 36px 1fr;
      }

      .task-state {
        grid-column: 2;
        justify-self: start;
      }

      .review-strip {
        grid-auto-columns: 82%;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-meta {
        text-align: left;
      }

      .btn {
        min-height: 44px;
      }
    }

    @media (max-width: 420px) {
      .hero-copy,
      .hero-panel,
      .section-shell,
      .cta-shell,
      .reviews-shell,
      .faq-shell,
      .filter-shell {
        padding: 16px;
      }

      .hero h1,
      .section-title,
      .cta-copy h2 {
        font-size: 26px;
      }

      .countdown-box strong {
        font-size: 24px;
      }

      .review-strip {
        grid-auto-columns: 88%;
      }

      .topbar-inner {
        gap: 8px;
      }

      .topbar-left,
      .topbar-right {
        width: 100%;
      }

      .topbar-right {
        justify-content: flex-start;
      }
    }
