/* roulang page: index */
:root {
            --ink: #0e0d12;
            --panel: #17151d;
            --panel-2: #201c27;
            --line: rgba(255,255,255,.10);
            --line-bright: rgba(255,138,125,.42);
            --text: #f6f0ee;
            --muted: #aaa2ad;
            --coral: #f2786a;
            --berry: #a9365f;
            --violet: #8b6bd6;
            --gold: #e8bb76;
            --radius: 8px;
            --shadow: 0 18px 55px rgba(0,0,0,.28);
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            background: var(--ink);
            color: var(--text);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            line-height: 1.7;
            letter-spacing: 0;
        }
        a { color: inherit; text-decoration: none; }
        button, input, select, textarea { font: inherit; }
        button { cursor: pointer; }
        .site-shell { min-height: 100vh; }
        .sidebar {
            position: fixed;
            inset: 0 auto 0 0;
            width: 92px;
            z-index: 30;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 22px 12px;
            background: rgba(15,13,19,.95);
            border-right: 1px solid var(--line);
        }
        .brand-mark {
            width: 62px;
            min-height: 88px;
            padding: 10px 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff7f2;
            background: linear-gradient(160deg, var(--berry), #632c5e);
            border: 1px solid rgba(255,170,150,.45);
            border-radius: var(--radius);
            box-shadow: 0 12px 28px rgba(169,54,95,.25);
            font-size: 13px;
            font-weight: 800;
            line-height: 1.4;
        }
        .side-nav { width: 100%; margin-top: 44px; display: grid; gap: 12px; }
        .side-link {
            min-height: 68px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: var(--muted);
            border: 1px solid transparent;
            border-radius: var(--radius);
            transition: .25s ease;
            font-size: 12px;
        }
        .side-link svg { width: 20px; height: 20px; stroke-width: 1.7; }
        .side-link:hover, .side-link.active {
            color: #fff;
            background: rgba(242,120,106,.11);
            border-color: var(--line-bright);
        }
        .side-bottom { margin-top: auto; display: grid; gap: 10px; text-align: center; color: var(--muted); font-size: 11px; }
        .status-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: #74d7a5; box-shadow: 0 0 12px #74d7a5; }
        .content { margin-left: 92px; overflow: hidden; }
        .mobile-header { display: none; }
        .container { width: min(1220px, calc(100% - 64px)); margin: 0 auto; }
        .hero {
            position: relative;
            min-height: 650px;
            display: flex;
            align-items: center;
            padding: 92px 0 72px;
            background:
                linear-gradient(90deg, rgba(14,13,18,.98) 0%, rgba(14,13,18,.79) 50%, rgba(14,13,18,.92) 100%),
                radial-gradient(circle at 78% 20%, rgba(139,107,214,.22), transparent 33%),
                radial-gradient(circle at 65% 78%, rgba(242,120,106,.18), transparent 30%);
        }
        .hero:after {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .24;
            pointer-events: none;
            background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: linear-gradient(90deg, #000, transparent 88%);
        }
        .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 62px; align-items: center; }
        .eyebrow, .badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            border-radius: 999px;
            font-size: 12px;
            line-height: 1;
            white-space: nowrap;
        }
        .eyebrow { padding: 9px 13px; color: #ffd8d1; background: rgba(169,54,95,.2); border: 1px solid rgba(242,120,106,.35); }
        h1 { margin: 22px 0 18px; max-width: 680px; font-size: clamp(40px, 5vw, 66px); line-height: 1.13; letter-spacing: 0; font-weight: 850; }
        .hero-copy { max-width: 650px; color: #c3bbc3; font-size: 17px; }
        .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
        .btn {
            min-height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 0 18px;
            border: 1px solid transparent;
            border-radius: var(--radius);
            font-weight: 750;
            font-size: 14px;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        }
        .btn:hover { transform: translateY(-2px); }
        .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(232,187,118,.7); outline-offset: 3px; }
        .btn-primary { color: #201018; background: linear-gradient(135deg, #ff9a86, var(--coral)); box-shadow: 0 10px 28px rgba(242,120,106,.22); }
        .btn-primary:hover { box-shadow: 0 14px 34px rgba(242,120,106,.36); }
        .btn-secondary { color: #f5d8d3; background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.2); }
        .btn-secondary:hover { background: rgba(255,255,255,.09); }
        .hero-facts { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: var(--muted); font-size: 13px; }
        .hero-facts strong { display: block; color: #fff; font-size: 22px; line-height: 1.2; }
        .dashboard {
            position: relative;
            padding: 22px;
            background: rgba(28,24,35,.92);
            border: 1px solid rgba(255,255,255,.14);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .dashboard:before { content: ""; position: absolute; left: 0; top: 20px; bottom: 20px; width: 3px; background: var(--coral); }
        .dash-top { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
        .dash-title { font-size: 15px; font-weight: 800; }
        .badge { padding: 6px 9px; color: #fbd7d0; background: rgba(242,120,106,.13); border: 1px solid rgba(242,120,106,.3); }
        .badge.violet { color: #ded2ff; background: rgba(139,107,214,.15); border-color: rgba(139,107,214,.35); }
        .badge.gold { color: #f9dfac; background: rgba(232,187,118,.12); border-color: rgba(232,187,118,.3); }
        .metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
        .metric { min-height: 112px; padding: 15px; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 6px; }
        .metric small { display: block; color: var(--muted); font-size: 12px; }
        .metric strong { display: block; margin: 7px 0 4px; color: #fff7f3; font-size: 28px; line-height: 1; }
        .trend { height: 4px; overflow: hidden; background: rgba(255,255,255,.1); border-radius: 999px; }
        .trend i { display: block; height: 100%; background: var(--coral); border-radius: inherit; }
        .section { padding: 92px 0; }
        .section.alt { background: #141219; }
        .section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; }
        .section-kicker { margin: 0 0 8px; color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
        h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.2; }
        .section-intro { max-width: 560px; margin: 10px 0 0; color: var(--muted); font-size: 15px; }
        .section-link { color: #ffad9d; font-size: 14px; font-weight: 700; }
        .section-link:hover { color: #fff; text-decoration: underline; }
        .matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
        .matrix-card { position: relative; min-height: 198px; padding: 22px; overflow: hidden; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); transition: .25s ease; }
        .matrix-card:after { content: ""; position: absolute; right: -22px; bottom: -30px; width: 110px; height: 110px; border: 1px solid rgba(242,120,106,.18); transform: rotate(28deg); }
        .matrix-card:hover { transform: translateY(-4px); border-color: var(--line-bright); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
        .matrix-icon { width: 34px; height: 34px; display: grid; place-items: center; color: #ffc3b8; background: rgba(242,120,106,.13); border-radius: 6px; }
        .matrix-card h3 { margin: 17px 0 7px; font-size: 18px; }
        .matrix-card p { margin: 0; color: var(--muted); font-size: 13px; }
        .matrix-meta { display: flex; gap: 9px; align-items: center; margin-top: 17px; color: #827b87; font-size: 11px; }
        .compare-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: stretch; }
        .compare-note { padding: 28px; background: linear-gradient(145deg, rgba(169,54,95,.28), rgba(139,107,214,.12)); border: 1px solid rgba(242,120,106,.3); border-radius: var(--radius); }
        .compare-note h3 { margin: 0 0 12px; font-size: 24px; }
        .compare-note p { margin: 0; color: #d1c6cc; font-size: 14px; }
        .compare-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 15px; }
        .compare-list li { display: flex; gap: 10px; color: #ded4db; font-size: 13px; }
        .compare-list b { color: var(--coral); }
        .compare-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
        .compare-row { display: grid; grid-template-columns: 1.25fr 1fr 1fr; min-height: 58px; align-items: center; border-bottom: 1px solid var(--line); }
        .compare-row:last-child { border-bottom: 0; }
        .compare-row > * { padding: 13px 16px; font-size: 13px; }
        .compare-row.head { background: rgba(255,255,255,.055); color: var(--muted); font-size: 12px; }
        .compare-row .recommended { background: rgba(242,120,106,.1); color: #ffe1db; }
        .compare-row strong { color: #fff; }
        .insight-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
        .insight { min-height: 138px; padding: 23px; background: var(--panel); }
        .insight strong { display: block; color: var(--coral); font-size: 26px; }
        .insight span { color: var(--muted); font-size: 13px; }
        .news-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
        .news-list, .notice-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
        .news-item { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 70px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
        .news-item:last-child { border: 0; }
        .news-item:hover { background: rgba(242,120,106,.06); }
        .news-title { font-size: 14px; font-weight: 700; }
        .news-sub { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
        .news-date { flex: 0 0 auto; color: #837b87; font-size: 12px; }
        .notice-panel { padding: 25px; }
        .notice-panel h3 { margin: 0 0 12px; font-size: 20px; }
        .notice-panel p { margin: 0; color: var(--muted); font-size: 13px; }
        .notice-line { display: flex; gap: 10px; align-items: center; margin-top: 20px; color: #e6d5d0; font-size: 13px; }
        .faq-list { max-width: 900px; }
        details { border-top: 1px solid var(--line); }
        details:last-child { border-bottom: 1px solid var(--line); }
        summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; color: #fff; cursor: pointer; font-size: 16px; font-weight: 700; list-style: none; }
        summary::-webkit-details-marker { display: none; }
        summary:after { content: "+"; color: var(--coral); font-size: 24px; font-weight: 400; line-height: 1; }
        details[open] summary:after { content: "−"; }
        details p { max-width: 800px; margin: -5px 0 22px; color: var(--muted); font-size: 14px; }
        .cta-section { padding: 88px 0; background: linear-gradient(105deg, #261522, #17131e 62%, #251b2c); border-top: 1px solid rgba(242,120,106,.2); border-bottom: 1px solid var(--line); }
        .cta-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
        .cta-copy h2 { max-width: 500px; }
        .cta-copy p { max-width: 520px; margin: 15px 0 0; color: #c0b5bd; }
        .form-box { padding: 25px; background: rgba(14,13,18,.56); border: 1px solid rgba(242,120,106,.32); border-radius: var(--radius); }
        .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
        .field { display: grid; gap: 7px; }
        .field.full { grid-column: 1 / -1; }
        label { color: #d8cbd0; font-size: 12px; font-weight: 700; }
        input, select, textarea { width: 100%; color: #fff; background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px; outline: 0; }
        input::placeholder, textarea::placeholder { color: #746d78; }
        input:focus, select:focus, textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(242,120,106,.12); }
        textarea { min-height: 86px; resize: vertical; }
        .form-foot { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 17px; }
        .form-tip { color: #89818b; font-size: 11px; }
        .success { display: none; margin-top: 14px; padding: 11px 13px; color: #b9f0cb; background: rgba(73,160,104,.14); border: 1px solid rgba(116,215,165,.35); border-radius: 6px; font-size: 13px; }
        .footer { padding: 44px 0 26px; background: #0a090d; }
        .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 35px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
        .footer-brand { font-weight: 850; font-size: 20px; }
        .footer p { max-width: 370px; margin: 12px 0 0; color: var(--muted); font-size: 13px; }
        .footer h4 { margin: 0 0 12px; color: #fff; font-size: 13px; }
        .footer a { display: block; margin: 6px 0; color: var(--muted); font-size: 13px; }
        .footer a:hover { color: var(--coral); }
        .copyright { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; color: #726b75; font-size: 11px; }
        .mobile-menu { display: none; }
        @media (max-width: 1024px) {
            .hero-grid, .compare-wrap, .cta-grid { grid-template-columns: 1fr; gap: 32px; }
            .hero { min-height: auto; }
            .matrix { grid-template-columns: repeat(2, 1fr); }
            .news-layout { grid-template-columns: 1fr; }
        }
        @media (max-width: 767px) {
            .sidebar { display: none; }
            .content { margin-left: 0; }
            .mobile-header { position: sticky; top: 0; z-index: 25; display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 10px 18px; background: rgba(14,13,18,.96); border-bottom: 1px solid var(--line); }
            .mobile-brand { max-width: 220px; color: #fff; font-size: 14px; font-weight: 850; line-height: 1.2; }
            .menu-button { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: transparent; border: 1px solid var(--line); border-radius: 6px; }
            .mobile-menu { position: absolute; top: 64px; left: 0; right: 0; padding: 10px 18px 16px; background: #131117; border-bottom: 1px solid var(--line); }
            .mobile-menu.open { display: grid; gap: 7px; }
            .mobile-menu a { padding: 12px; color: #d4c9d0; border-bottom: 1px solid var(--line); font-size: 14px; }
            .container { width: min(100% - 36px, 620px); }
            .hero { padding: 60px 0 48px; }
            h1 { font-size: 34px; }
            .hero-copy { font-size: 15px; }
            .hero-actions { display: grid; }
            .btn { width: 100%; }
            .hero-facts { gap: 15px; }
            .section, .cta-section { padding: 64px 0; }
            .section-head { display: block; margin-bottom: 25px; }
            .section-link { display: inline-block; margin-top: 15px; }
            .matrix { grid-template-columns: 1fr; }
            .insight-band { grid-template-columns: repeat(2, 1fr); }
            .compare-row { grid-template-columns: 1.1fr 1fr; }
            .compare-row > * { padding: 11px 12px; }
            .compare-row > :last-child { display: none; }
            .compare-row.head > :last-child { display: none; }
            .form-grid { grid-template-columns: 1fr; }
            .field.full { grid-column: auto; }
            .form-foot { display: block; }
            .form-foot .btn { margin-top: 14px; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .copyright { display: block; }
            .copyright span { display: block; margin-top: 7px; }
        }
        @media (max-width: 520px) {
            .dashboard { padding: 16px; }
            .metric strong { font-size: 23px; }
            .metric { min-height: 102px; padding: 12px; }
            .news-item { align-items: flex-start; padding: 14px; }
            .news-date { display: none; }
            summary { font-size: 14px; }
        }

/* roulang page: category1 */
:root{
      --bg:#090708;
      --bg-soft:#130f12;
      --panel:#171115;
      --panel-2:#20161c;
      --card:#1b1419;
      --card-hover:#241920;
      --text:#f6f1ee;
      --muted:#b9aaa9;
      --weak:#817274;
      --line:rgba(255,255,255,.12);
      --line-strong:rgba(255,118,118,.45);
      --primary:#d83f5f;
      --primary-2:#ff765f;
      --violet:#a970ff;
      --cream:#fff3df;
      --green:#62d394;
      --warning:#ffc36b;
      --radius:8px;
      --radius-sm:6px;
      --shadow:0 18px 60px rgba(0,0,0,.42);
      --glow:0 0 0 1px rgba(255,118,95,.12),0 0 36px rgba(216,63,95,.18);
      --nav-w:88px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 12%, rgba(216,63,95,.20), transparent 30%),
        radial-gradient(circle at 86% 6%, rgba(169,112,255,.14), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 22px),
        var(--bg);
      line-height:1.72;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img,svg{display:block;max-width:100%}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(216,63,95,.55);color:#fff}
    :focus-visible{outline:2px solid var(--primary-2);outline-offset:3px}
    .container{width:min(1220px,calc(100% - 48px));margin:0 auto}
    .page-shell{min-height:100vh;padding-left:var(--nav-w)}
    .side-rail{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--nav-w);
      z-index:40;
      background:rgba(12,8,10,.88);
      border-right:1px solid var(--line);
      backdrop-filter:blur(18px);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:space-between;
      padding:18px 10px;
    }
    .rail-brand{
      width:62px;
      min-height:92px;
      border:1px solid rgba(255,118,95,.32);
      border-radius:8px;
      background:linear-gradient(180deg,rgba(216,63,95,.22),rgba(255,118,95,.06));
      box-shadow:var(--glow);
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:8px 6px;
      font-size:14px;
      font-weight:900;
      line-height:1.18;
      color:#fff7ef;
    }
    .side-nav{display:flex;flex-direction:column;gap:12px;width:100%;align-items:center}
    .side-link{
      width:66px;
      min-height:66px;
      border-radius:8px;
      color:var(--muted);
      border:1px solid transparent;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:6px;
      font-size:12px;
      font-weight:700;
      transition:background .22s ease,border-color .22s ease,color .22s ease,transform .22s ease;
    }
    .side-link svg{width:21px;height:21px;stroke-width:1.9}
    .side-link:hover{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14);color:#fff;transform:translateY(-1px)}
    .side-link.active{
      color:#fff;
      background:linear-gradient(145deg,rgba(216,63,95,.42),rgba(255,118,95,.18));
      border-color:rgba(255,118,95,.42);
      box-shadow:0 0 24px rgba(216,63,95,.20);
    }
    .rail-bottom{display:grid;gap:10px;justify-items:center;color:var(--weak);font-size:11px}
    .age-dot{width:42px;height:42px;border-radius:50%;border:1px solid rgba(98,211,148,.38);display:grid;place-items:center;color:var(--green);font-weight:900;background:rgba(98,211,148,.08)}
    .mobile-header{display:none}
    .mobile-panel{display:none}
    .hero{
      position:relative;
      overflow:hidden;
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(100deg,rgba(216,63,95,.16),transparent 38%),
        radial-gradient(circle at 74% 22%,rgba(255,118,95,.20),transparent 24%),
        radial-gradient(circle at 84% 70%,rgba(169,112,255,.18),transparent 24%);
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:-30% -10% auto 36%;
      height:520px;
      background:linear-gradient(105deg,transparent 0 34%,rgba(255,243,223,.10) 44%,transparent 56% 100%);
      transform:rotate(-8deg);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      min-height:520px;
      padding:56px 0 42px;
      display:grid;
      grid-template-columns:minmax(0,1fr) 360px;
      gap:34px;
      align-items:center;
    }
    .eyebrow{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
    .badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:28px;
      padding:4px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--muted);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .badge.primary{background:rgba(216,63,95,.18);border-color:rgba(216,63,95,.42);color:#ffd9df}
    .badge.green{background:rgba(98,211,148,.12);border-color:rgba(98,211,148,.32);color:#bdf1d0}
    .badge.warn{background:rgba(255,195,107,.12);border-color:rgba(255,195,107,.34);color:#ffe0aa}
    h1{
      margin:0;
      max-width:820px;
      font-size:50px;
      line-height:1.08;
      font-weight:900;
      color:#fff9f4;
    }
    .hero-copy{max-width:760px;margin:18px 0 0;color:var(--muted);font-size:17px}
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
    .btn{
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:8px;
      border:1px solid transparent;
      padding:11px 18px;
      font-weight:900;
      transition:transform .2s ease,filter .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
    }
    .btn-primary{background:linear-gradient(135deg,var(--primary),var(--primary-2));color:#fff;box-shadow:0 12px 30px rgba(216,63,95,.26)}
    .btn-primary:hover{filter:brightness(1.08);transform:translateY(-2px)}
    .btn-secondary{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.16);color:#fff}
    .btn-secondary:hover{background:rgba(255,255,255,.09);border-color:rgba(255,118,95,.36);transform:translateY(-2px)}
    .btn-text{color:#ffd2c8;text-decoration:underline;text-underline-offset:4px;font-weight:900}
    .vertical-preview{
      position:relative;
      width:100%;
      max-width:340px;
      margin-left:auto;
      aspect-ratio:9/15.8;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.14);
      background:
        linear-gradient(180deg,rgba(255,118,95,.18),transparent 34%),
        linear-gradient(160deg,#23141b,#0d090b 62%,#1c1117);
      box-shadow:var(--shadow),var(--glow);
      padding:18px;
      overflow:hidden;
    }
    .vertical-preview:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.54));
      pointer-events:none;
    }
    .preview-top,.preview-bottom,.signal-bars{position:relative;z-index:2}
    .preview-top{display:flex;justify-content:space-between;align-items:center;color:#fff;font-size:12px;font-weight:900}
    .pulse{width:9px;height:9px;border-radius:50%;background:var(--primary-2);box-shadow:0 0 0 7px rgba(255,118,95,.14)}
    .preview-grid{position:relative;z-index:2;margin-top:42px;display:grid;gap:12px}
    .preview-line{height:12px;border-radius:999px;background:rgba(255,255,255,.12);overflow:hidden}
    .preview-line span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--primary),var(--primary-2));width:68%}
    .preview-line:nth-child(2) span{width:84%;background:linear-gradient(90deg,var(--violet),var(--primary-2))}
    .preview-line:nth-child(3) span{width:52%;background:linear-gradient(90deg,var(--warning),var(--primary))}
    .preview-bottom{position:absolute;left:18px;right:18px;bottom:18px;display:grid;gap:12px}
    .mini-card{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);border-radius:8px;padding:12px}
    .mini-card strong{display:block;font-size:22px;line-height:1;color:#fff}
    .mini-card span{display:block;margin-top:6px;color:var(--muted);font-size:12px}
    .section{padding:58px 0;border-bottom:1px solid rgba(255,255,255,.08)}
    .section-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:end;margin-bottom:24px}
    .section-title{margin:0;font-size:30px;line-height:1.22;font-weight:900;color:#fff8f0}
    .section-desc{margin:8px 0 0;color:var(--muted);max-width:760px}
    .filter-bar{
      position:sticky;
      top:0;
      z-index:20;
      padding:14px;
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(18,12,15,.86);
      backdrop-filter:blur(18px);
      box-shadow:0 16px 42px rgba(0,0,0,.24);
    }
    .filter-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
    .select-wrap label{display:block;margin-bottom:6px;color:var(--weak);font-size:12px;font-weight:800}
    select,input,textarea{
      width:100%;
      min-height:44px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:6px;
      background:#120d10;
      color:var(--text);
      padding:10px 12px;
      outline:none;
      transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    select:focus,input:focus,textarea:focus{border-color:var(--primary-2);box-shadow:0 0 0 3px rgba(255,118,95,.16);background:#171014}
    .status-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
    .stat-card{
      min-height:118px;
      border:1px solid var(--line);
      border-radius:8px;
      background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
      padding:16px;
      box-shadow:0 12px 35px rgba(0,0,0,.22);
    }
    .stat-card strong{display:block;font-size:29px;line-height:1;font-weight:900;color:#fff}
    .stat-card p{margin:8px 0 12px;color:var(--muted);font-size:13px}
    .progress{height:6px;border-radius:999px;background:rgba(255,255,255,.1);overflow:hidden}
    .progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--primary),var(--primary-2))}
    .main-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:22px;align-items:start}
    .result-list{display:grid;gap:14px}
    .result-card{
      min-height:174px;
      border:1px solid var(--line);
      border-radius:8px;
      background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
      padding:18px;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:18px;
      transition:background .22s ease,border-color .22s ease,transform .22s ease,box-shadow .22s ease;
    }
    .result-card:hover{background:var(--card-hover);border-color:rgba(255,118,95,.45);transform:translateY(-2px);box-shadow:0 18px 46px rgba(0,0,0,.28)}
    .result-card h3{margin:0 0 8px;font-size:19px;line-height:1.35;font-weight:900;color:#fff}
    .result-card p{margin:0;color:var(--muted);font-size:14px}
    .meta-row{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
    .card-action{display:flex;align-items:center;justify-content:flex-end;min-width:128px}
    .result-card:hover .arrow{transform:translateX(3px)}
    .arrow{display:inline-block;transition:transform .2s ease}
    .side-panel{
      position:sticky;
      top:88px;
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(24,17,22,.78);
      padding:18px;
      box-shadow:0 16px 44px rgba(0,0,0,.24);
    }
    .side-panel h3{margin:0 0 14px;font-size:18px;font-weight:900}
    .summary-list{display:grid;gap:12px;margin:0;padding:0;list-style:none}
    .summary-list li{display:flex;justify-content:space-between;gap:16px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.08);color:var(--muted);font-size:14px}
    .summary-list li:last-child{border-bottom:0;padding-bottom:0}
    .summary-list strong{color:#fff}
    .compare-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .compare-card{border:1px solid var(--line);border-radius:8px;background:rgba(255,255,255,.04);padding:18px}
    .compare-card.featured{border-color:rgba(255,118,95,.45);box-shadow:var(--glow)}
    .compare-card h3{margin:0 0 12px;font-size:18px;font-weight:900}
    .check-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
    .check-list li{position:relative;padding-left:22px;color:var(--muted);font-size:14px}
    .check-list li:before{content:"";position:absolute;left:0;top:.62em;width:8px;height:8px;border-radius:50%;background:var(--primary-2);box-shadow:0 0 12px rgba(255,118,95,.45)}
    .pager{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
    .page-btn{
      min-width:42px;
      min-height:42px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.05);
      color:var(--muted);
      font-weight:900;
      transition:background .2s ease,border-color .2s ease,color .2s ease;
    }
    .page-btn:hover{background:rgba(255,255,255,.1);border-color:rgba(255,118,95,.4);color:#fff}
    .page-btn.current{background:var(--primary);border-color:var(--primary);color:#fff}
    .page-btn:disabled{opacity:.42;cursor:not-allowed}
    .faq-list{display:grid;gap:12px}
    details{
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(255,255,255,.045);
      overflow:hidden;
    }
    summary{
      min-height:58px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:16px 18px;
      font-weight:900;
      cursor:pointer;
      list-style:none;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{content:"+";color:var(--primary-2);font-size:24px;line-height:1}
    details[open]{border-color:rgba(255,118,95,.42);background:rgba(216,63,95,.075)}
    details[open] summary:after{content:"−"}
    details p{margin:0;padding:0 18px 18px;color:var(--muted)}
    .cta-band{
      border:1px solid rgba(255,118,95,.34);
      border-radius:8px;
      background:
        linear-gradient(135deg,rgba(216,63,95,.18),rgba(169,112,255,.10)),
        rgba(255,255,255,.035);
      box-shadow:var(--glow);
      overflow:hidden;
    }
    .cta-inner{display:grid;grid-template-columns:minmax(0,1fr) 430px;gap:26px;padding:26px}
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
    .form-grid .full{grid-column:1/-1}
    textarea{min-height:104px;resize:vertical}
    .form-note{margin:10px 0 0;color:var(--weak);font-size:12px}
    .footer{padding:42px 0 28px;background:#080607;border-top:1px solid var(--line)}
    .footer-grid{display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:28px}
    .footer-brand{font-size:20px;font-weight:900;color:#fff;margin-bottom:10px}
    .footer p{margin:0;color:var(--muted);font-size:14px}
    .footer h4{margin:0 0 10px;color:#fff;font-size:15px;font-weight:900}
    .footer a{display:block;color:var(--muted);font-size:14px;margin:7px 0;transition:color .2s ease}
    .footer a:hover{color:var(--primary-2)}
    .copyright{margin-top:28px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;gap:18px;color:var(--weak);font-size:12px}
    @media (max-width:1024px){
      .hero-inner{grid-template-columns:1fr 300px}
      h1{font-size:42px}
      .filter-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
      .status-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .main-layout{grid-template-columns:1fr}
      .side-panel{position:static}
      .cta-inner{grid-template-columns:1fr}
    }
    @media (max-width:767px){
      .page-shell{padding-left:0;padding-top:66px}
      .side-rail{display:none}
      .mobile-header{
        position:fixed;
        inset:0 0 auto 0;
        z-index:50;
        height:66px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 16px;
        background:rgba(10,7,9,.92);
        border-bottom:1px solid var(--line);
        backdrop-filter:blur(18px);
      }
      .mobile-brand{font-weight:900;color:#fff;max-width:230px;line-height:1.2}
      .menu-btn{width:44px;height:44px;border-radius:8px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#fff;display:grid;place-items:center}
      .mobile-panel{
        position:fixed;
        top:66px;
        left:0;
        right:0;
        z-index:49;
        display:none;
        padding:12px 16px 16px;
        background:rgba(10,7,9,.96);
        border-bottom:1px solid var(--line);
      }
      .mobile-panel.open{display:grid;gap:10px}
      .mobile-panel a{min-height:46px;border-radius:8px;border:1px solid rgba(255,255,255,.12);display:flex;align-items:center;padding:0 14px;color:var(--muted);font-weight:800}
      .mobile-panel a.active{color:#fff;background:rgba(216,63,95,.24);border-color:rgba(255,118,95,.34)}
      .container{width:min(100% - 32px,1220px)}
      .hero-inner{min-height:auto;padding:34px 0 28px;grid-template-columns:1fr}
      h1{font-size:32px;line-height:1.16}
      .hero-copy{font-size:15px}
      .vertical-preview{max-width:260px;margin:0}
      .section{padding:40px 0}
      .section-head{grid-template-columns:1fr}
      .section-title{font-size:25px}
      .filter-bar{position:relative}
      .filter-grid{grid-template-columns:1fr}
      .status-grid{grid-template-columns:1fr 1fr}
      .result-card{grid-template-columns:1fr;min-height:auto}
      .card-action{justify-content:flex-start;min-width:0}
      .compare-grid{grid-template-columns:1fr}
      .cta-inner{padding:18px}
      .form-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
    }
    @media (max-width:520px){
      .status-grid{grid-template-columns:1fr}
      .hero-actions .btn{width:100%}
      .eyebrow{gap:8px}
      .badge,.tag{white-space:normal}
      .pager .page-btn{flex:1}
    }
