/* roulang page: index */
:root{
      --bg:#0b0b10;
      --panel:#12121a;
      --panel2:#171722;
      --line:rgba(255,255,255,.08);
      --text:#f4f4f5;
      --muted:#a1a1aa;
      --accent:#ff4d8d;
      --accent2:#7c3aed;
      --cyan:#12d6df;
      --warm:#f59e0b;
      --radius:18px;
      --shadow:0 18px 48px rgba(0,0,0,.38);
      --ease:220ms ease;
    }
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:
        radial-gradient(circle at 10% 0%, rgba(255,77,141,.12), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(18,214,223,.08), transparent 24%),
        linear-gradient(180deg, #0b0b10 0%, #09090e 100%);
      color:var(--text);
      font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      line-height:1.7;
      letter-spacing:.01em;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size:72px 72px;
      opacity:.12;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.7), transparent 92%);
    }
    ::selection{background:rgba(255,77,141,.28);color:#fff}
    a{transition:all var(--ease); color:inherit}
    img{max-width:100%;display:block}
    .container-site{width:min(1200px, calc(100vw - 2rem)); margin:0 auto}
    .card-surface{
      background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .card-surface:hover{
      border-color:rgba(255,77,141,.32);
      box-shadow:0 22px 62px rgba(0,0,0,.44);
      transform:translateY(-2px);
    }
    .soft-border{border:1px solid var(--line)}
    .title-chip{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.42rem .78rem;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#e4e4e7;
      font-size:.8rem;
      letter-spacing:.02em;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.34rem .62rem;
      border-radius:999px;
      font-size:.76rem;
      line-height:1;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .badge-accent{background:rgba(255,77,141,.12); border-color:rgba(255,77,141,.22); color:#ff9abb}
    .badge-cyan{background:rgba(18,214,223,.12); border-color:rgba(18,214,223,.2); color:#8ff5fb}
    .badge-warm{background:rgba(245,158,11,.12); border-color:rgba(245,158,11,.18); color:#ffd47d}
    .badge-gray{background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.08); color:#cbd5e1}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.55rem;
      padding:.86rem 1.15rem;
      border-radius:14px;
      font-weight:600;
      border:1px solid transparent;
      transition:transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus,.btn:focus-visible,
    .navlink:focus,.navlink:focus-visible,
    input:focus,select:focus,textarea:focus,summary:focus{
      outline:none;
      box-shadow:0 0 0 3px rgba(255,77,141,.18), 0 0 0 1px rgba(255,77,141,.18) inset;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--accent) 0%, #ff6aa0 46%, var(--warm) 125%);
      color:#fff;
      box-shadow:0 14px 34px rgba(255,77,141,.16);
    }
    .btn-primary:hover{transform:translateY(-1px); filter:saturate(1.03)}
    .btn-secondary{
      background:rgba(255,255,255,.03);
      color:#f1f5f9;
      border-color:rgba(255,255,255,.1);
    }
    .btn-secondary:hover{
      transform:translateY(-1px);
      border-color:rgba(255,77,141,.3);
      background:rgba(255,255,255,.055);
    }
    .btn-ghost{
      color:#d4d4d8;
      background:transparent;
      border-color:rgba(255,255,255,.08);
    }
    .btn-ghost:hover{
      border-color:rgba(18,214,223,.26);
      color:#fff;
      background:rgba(18,214,223,.06);
    }
    .navlink{
      display:inline-flex;
      align-items:center;
      padding:.55rem .85rem;
      border-radius:999px;
      color:#d4d4d8;
      border:1px solid transparent;
    }
    .navlink:hover{color:#fff;background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08)}
    .navlink.active{color:#fff;background:rgba(255,77,141,.11);border-color:rgba(255,77,141,.2)}
    .section-label{
      color:#ffb3cc;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size:.74rem;
    }
    .section-title{
      font-size:clamp(1.45rem, 2.2vw, 2.2rem);
      line-height:1.15;
      letter-spacing:-.02em;
      font-weight:800;
    }
    .section-desc{color:#b7b7c3}
    .metric-number{
      font-size:clamp(1.55rem, 2.8vw, 2.35rem);
      line-height:1;
      font-variant-numeric:tabular-nums;
      letter-spacing:-.03em;
      font-weight:800;
    }
    .input-field{
      width:100%;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.09);
      color:#fff;
      border-radius:14px;
      padding:.95rem 1rem;
      transition:all var(--ease);
    }
    .input-field::placeholder{color:#8f8f9c}
    .input-field:hover{border-color:rgba(255,255,255,.14)}
    .input-field:focus{border-color:rgba(255,77,141,.42)}
    details.faq-item{
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      border:1px solid rgba(255,255,255,.08);
      border-radius:16px;
      overflow:hidden;
    }
    details.faq-item[open]{border-color:rgba(255,77,141,.26); box-shadow:0 18px 48px rgba(0,0,0,.24)}
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:1rem 1rem;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
      font-weight:700;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item .answer{
      color:#c8c8d2;
      padding:0 1rem 1rem 1rem;
      margin-top:-.2rem;
    }
    .bar{
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
    }
    .bar > span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg, var(--accent), #ff8db1, var(--cyan))}
    .section-spacing{padding:clamp(2.25rem, 4.5vw, 4.4rem) 0}
    .float-card{
      position:relative;
      overflow:hidden;
    }
    .float-card::after{
      content:"";
      position:absolute;
      inset:auto -20% -40% auto;
      width:220px;
      height:220px;
      background:radial-gradient(circle, rgba(255,77,141,.18), transparent 65%);
      pointer-events:none;
    }
    .menu-panel{
      background:rgba(10,10,16,.96);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 22px 60px rgba(0,0,0,.42);
    }
    .fixed-cta{
      position:fixed;
      right:1rem;
      bottom:1rem;
      z-index:40;
      display:flex;
      gap:.6rem;
    }
    @media (max-width: 768px){
      .container-site{width:min(100vw - 1.2rem, 1200px)}
      .section-spacing{padding:1.85rem 0}
      .fixed-cta{left:1rem; right:1rem}
    }

/* roulang page: category1 */
:root{
      --bg:#0a0a0f;
      --bg-soft:#11111a;
      --panel:#151520;
      --panel-2:#1b1726;
      --text:#f6f4fb;
      --muted:#a5a1b5;
      --weak:#706b80;
      --border:rgba(255,255,255,.10);
      --border-strong:rgba(255,255,255,.18);
      --accent:#ff3d8a;
      --accent-2:#a855f7;
      --cyan:#22d3ee;
      --warm:#f6b54b;
      --green:#4ade80;
      --radius:18px;
      --radius-lg:26px;
      --shadow:0 20px 60px rgba(0,0,0,.35);
      --shadow-soft:0 12px 30px rgba(0,0,0,.26);
      --transition:220ms ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 0%, rgba(255,61,138,.22), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(34,211,238,.14), transparent 32%),
        linear-gradient(180deg,#0a0a0f 0%,#0d0b13 48%,#08080c 100%);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Source Han Sans SC",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      line-height:1.72;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 78%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color var(--transition),border-color var(--transition),background var(--transition),transform var(--transition)}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    img{max-width:100%;display:block}
    ::selection{background:rgba(255,61,138,.35);color:white}
    .container-site{width:min(1160px,calc(100% - 40px));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      border-bottom:1px solid var(--border);
      background:rgba(10,10,15,.82);
      backdrop-filter:blur(16px);
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:.75rem;
      min-width:0;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-icon{
      position:relative;
      display:flex;
      height:42px;
      width:42px;
      flex:none;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.12);
      background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.03));
      box-shadow:inset 0 0 22px rgba(255,61,138,.08);
    }
    .brand-icon:after{
      content:"";
      width:13px;
      height:13px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--accent),var(--cyan));
      box-shadow:0 0 22px rgba(255,61,138,.55);
    }
    .navlink{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      padding:.58rem .92rem;
      color:#bdb8cc;
      font-size:.92rem;
      font-weight:700;
      border:1px solid transparent;
    }
    .navlink:hover{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.10);
    }
    .navlink.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,61,138,.20),rgba(168,85,247,.14));
      border-color:rgba(255,61,138,.36);
      box-shadow:0 0 0 1px rgba(255,61,138,.10) inset;
    }
    .menu-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.05);
      color:white;
      transition:all var(--transition);
    }
    .menu-btn:hover,.menu-btn:focus{border-color:rgba(255,61,138,.45);box-shadow:0 0 0 4px rgba(255,61,138,.10);outline:none}
    .mobile-nav{
      display:none;
      border-top:1px solid var(--border);
      background:rgba(10,10,15,.96);
    }
    .mobile-nav.open{display:block}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.55rem;
      min-height:44px;
      border-radius:999px;
      padding:.72rem 1.05rem;
      font-weight:800;
      border:1px solid transparent;
      transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition),background var(--transition),color var(--transition);
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:focus{outline:none;box-shadow:0 0 0 4px rgba(34,211,238,.18)}
    .btn-primary{
      color:#120711;
      background:linear-gradient(135deg,var(--warm),var(--accent));
      box-shadow:0 14px 34px rgba(255,61,138,.22);
    }
    .btn-primary:hover{box-shadow:0 18px 45px rgba(255,61,138,.32)}
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.15);
    }
    .btn-secondary:hover{border-color:rgba(34,211,238,.42);background:rgba(34,211,238,.08)}
    .section{padding:72px 0}
    .section-tight{padding:48px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      padding:.34rem .72rem;
      color:#d7d2e7;
      background:rgba(255,255,255,.05);
      font-size:.82rem;
      font-weight:800;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 16px rgba(255,61,138,.8);
    }
    .hero-card,.panel-card,.content-card{
      border:1px solid var(--border);
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      min-height:420px;
      background:
        linear-gradient(115deg,rgba(12,12,18,.92),rgba(17,11,24,.78) 52%,rgba(255,61,138,.16)),
        radial-gradient(circle at 88% 16%,rgba(34,211,238,.23),transparent 30%);
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:54px 54px;
      opacity:.38;
    }
    .hero-series{
      position:relative;
      z-index:2;
      display:flex;
      flex-wrap:wrap;
      gap:.6rem;
      border-bottom:1px solid rgba(255,255,255,.10);
      background:rgba(10,10,15,.34);
      padding:1rem;
      backdrop-filter:blur(8px);
    }
    .series-pill{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.05);
      padding:.42rem .72rem;
      color:#ded9eb;
      font-size:.82rem;
      font-weight:800;
    }
    .series-pill.hot{border-color:rgba(255,61,138,.40);color:white;background:rgba(255,61,138,.12)}
    .series-pill.cyan{border-color:rgba(34,211,238,.32);background:rgba(34,211,238,.10)}
    .breadcrumbs{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:.45rem;
      color:#aaa4bb;
      font-size:.9rem;
    }
    .breadcrumbs a:hover{color:#fff}
    .back-link{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.05);
      padding:.55rem .86rem;
      color:#f4f1fb;
      font-size:.9rem;
      font-weight:800;
    }
    .back-link:hover{transform:translateY(-1px);border-color:rgba(255,61,138,.42);background:rgba(255,61,138,.10)}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:.3rem;
      border-radius:999px;
      padding:.28rem .58rem;
      font-size:.76rem;
      font-weight:800;
      border:1px solid transparent;
      line-height:1.2;
    }
    .badge-accent{color:#ffd8e7;background:rgba(255,61,138,.14);border-color:rgba(255,61,138,.32)}
    .badge-cyan{color:#c8f7ff;background:rgba(34,211,238,.12);border-color:rgba(34,211,238,.30)}
    .badge-warm{color:#ffedc5;background:rgba(246,181,75,.13);border-color:rgba(246,181,75,.30)}
    .badge-green{color:#c9fbd9;background:rgba(74,222,128,.12);border-color:rgba(74,222,128,.28)}
    .badge-gray{color:#ddd8e8;background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.12)}
    .metric-card{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      border:1px solid var(--border);
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
      padding:1.15rem;
      transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition);
    }
    .metric-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,61,138,.35);
      box-shadow:0 18px 44px rgba(0,0,0,.28);
    }
    .metric-card.feature{
      min-height:100%;
      background:
        radial-gradient(circle at 80% 8%,rgba(255,61,138,.22),transparent 38%),
        linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
    }
    .metric-num{
      margin-top:.7rem;
      font-size:2rem;
      line-height:1;
      font-weight:950;
      letter-spacing:-.04em;
      font-variant-numeric:tabular-nums;
    }
    .filter-bar{
      border:1px solid var(--border);
      border-radius:24px;
      background:rgba(255,255,255,.045);
      padding:1rem;
      box-shadow:var(--shadow-soft);
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.055);
      color:#d8d2e8;
      padding:.55rem .78rem;
      font-size:.86rem;
      font-weight:800;
      transition:all var(--transition);
    }
    .chip:hover,.chip.active{
      color:#fff;
      border-color:rgba(255,61,138,.46);
      background:rgba(255,61,138,.14);
      box-shadow:0 0 0 3px rgba(255,61,138,.08);
      transform:translateY(-1px);
    }
    .select-control,.input-control,.textarea-control{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(12,12,18,.82);
      color:#fff;
      padding:.82rem .9rem;
      outline:none;
      transition:border-color var(--transition),box-shadow var(--transition),background var(--transition);
    }
    .select-control:focus,.input-control:focus,.textarea-control:focus{
      border-color:rgba(34,211,238,.48);
      box-shadow:0 0 0 4px rgba(34,211,238,.12);
      background:rgba(10,10,15,.96);
    }
    .input-control::placeholder,.textarea-control::placeholder{color:#777286}
    .entry-card{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      border:1px solid var(--border);
      background:
        linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.032)),
        radial-gradient(circle at 100% 0%,rgba(34,211,238,.10),transparent 36%);
      padding:1.2rem;
      transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition),background var(--transition);
    }
    .entry-card:hover{
      transform:translateY(-5px);
      border-color:rgba(255,61,138,.36);
      box-shadow:0 22px 54px rgba(0,0,0,.32);
      background:
        linear-gradient(135deg,rgba(255,255,255,.095),rgba(255,255,255,.04)),
        radial-gradient(circle at 100% 0%,rgba(255,61,138,.14),transparent 36%);
    }
    .entry-card.major{
      grid-row:span 2;
      min-height:360px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        radial-gradient(circle at 84% 10%,rgba(255,61,138,.24),transparent 36%),
        radial-gradient(circle at 16% 88%,rgba(34,211,238,.14),transparent 34%),
        linear-gradient(160deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
    }
    .card-divider{height:1px;background:rgba(255,255,255,.09);margin:1rem 0}
    .status-line{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.8rem;
      color:#a9a2ba;
      font-size:.85rem;
    }
    .progress-track{
      height:8px;
      width:100%;
      overflow:hidden;
      border-radius:999px;
      background:rgba(255,255,255,.08);
    }
    .progress-fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--accent),var(--cyan));
      box-shadow:0 0 18px rgba(255,61,138,.34);
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0 .7rem;
    }
    .compare-table th{
      color:#bbb4cb;
      font-size:.84rem;
      font-weight:900;
      text-align:left;
      padding:.3rem .75rem;
    }
    .compare-table td{
      background:rgba(255,255,255,.045);
      border-top:1px solid rgba(255,255,255,.10);
      border-bottom:1px solid rgba(255,255,255,.10);
      padding:1rem .75rem;
      color:#e7e2f1;
      vertical-align:middle;
    }
    .compare-table td:first-child{border-left:1px solid rgba(255,255,255,.10);border-radius:16px 0 0 16px;font-weight:900}
    .compare-table td:last-child{border-right:1px solid rgba(255,255,255,.10);border-radius:0 16px 16px 0;color:#b7b1c7}
    .faq-item{
      border:1px solid var(--border);
      border-radius:20px;
      background:rgba(255,255,255,.045);
      overflow:hidden;
      transition:border-color var(--transition),background var(--transition);
    }
    .faq-item:hover{border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.06)}
    .faq-q{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:1.05rem 1.15rem;
      color:#fff;
      text-align:left;
      font-weight:900;
    }
    .faq-a{
      display:none;
      padding:0 1.15rem 1.1rem;
      color:#b8b2c7;
      font-size:.95rem;
    }
    .faq-item.open .faq-a{display:block}
    .faq-icon{
      width:28px;
      height:28px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:none;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      color:#f6b54b;
      transition:transform var(--transition);
    }
    .faq-item.open .faq-icon{transform:rotate(45deg)}
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(circle at 10% 10%,rgba(255,61,138,.20),transparent 32%),
        radial-gradient(circle at 88% 14%,rgba(34,211,238,.14),transparent 28%),
        linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
      box-shadow:var(--shadow);
    }
    .cta-panel:after{
      content:"";
      position:absolute;
      right:-90px;
      bottom:-120px;
      width:300px;
      height:300px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.03);
    }
    footer a{transition:color var(--transition),transform var(--transition)}
    footer a:hover{transform:translateX(2px)}
    .floating-cta{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:45;
      display:none;
      border-radius:999px;
      border:1px solid rgba(255,61,138,.38);
      background:linear-gradient(135deg,rgba(246,181,75,.96),rgba(255,61,138,.96));
      color:#160a12;
      padding:.78rem 1rem;
      font-weight:950;
      box-shadow:0 16px 42px rgba(0,0,0,.35);
    }
    .age-note{
      border:1px solid rgba(246,181,75,.28);
      background:rgba(246,181,75,.08);
      color:#ffe8b8;
      border-radius:18px;
      padding:.9rem 1rem;
    }
    @media (max-width:1024px){
      .container-site{width:min(100% - 32px,960px)}
      .section{padding:58px 0}
      .hero-card{min-height:auto}
      .entry-card.major{grid-row:auto;min-height:auto}
    }
    @media (max-width:768px){
      .container-site{width:min(100% - 28px,720px)}
      .section{padding:46px 0}
      .hero-series{padding:.85rem;overflow-x:auto;flex-wrap:nowrap}
      .series-pill{flex:none}
      .compare-table,.compare-table thead,.compare-table tbody,.compare-table tr,.compare-table th,.compare-table td{display:block;width:100%}
      .compare-table thead{display:none}
      .compare-table tr{
        border:1px solid rgba(255,255,255,.10);
        border-radius:18px;
        background:rgba(255,255,255,.045);
        padding:.65rem;
        margin-bottom:.8rem;
      }
      .compare-table td{
        border:0!important;
        border-radius:0!important;
        background:transparent;
        padding:.45rem .25rem;
      }
      .compare-table td:before{
        content:attr(data-label);
        display:block;
        color:#8f879f;
        font-size:.75rem;
        font-weight:900;
        margin-bottom:.1rem;
      }
      .floating-cta{display:inline-flex}
    }
    @media (max-width:520px){
      .container-site{width:min(100% - 22px,520px)}
      .brand-mark span:last-child{font-size:.9rem;line-height:1.25}
      .btn{width:100%;white-space:normal}
      .metric-num{font-size:1.7rem}
      .hero-card{border-radius:22px}
      .section{padding:38px 0}
      .filter-bar{border-radius:20px}
      .entry-card,.metric-card{border-radius:20px}
    }
