      /* ---------- Tokens ---------- */
      :root {
        --bg: #08080a;
        --bg-soft: #0d0d12;
        --bg-panel: #111115;
        --bg-elev: #15151c;
        --border: rgba(255, 255, 255, 0.08);
        --border-strong: rgba(255, 255, 255, 0.14);
        --text: #f3efe6;
        --text-dim: #d4cfc3;
        --muted: #a39c91;
        --muted-2: #6b6760;
        --gold: #f3b34d;
        --gold-2: #ffd78f;
        --gold-soft: rgba(243, 179, 77, 0.14);
        --blue: #6b92ff;
        --blue-2: #80b8ff;
        --blue-soft: rgba(107, 146, 255, 0.14);
        --success: #3ddc97;
        --radius: 18px;
        --radius-sm: 12px;
        --radius-lg: 28px;
      }
      * { box-sizing: border-box; margin: 0; padding: 0; }
      html { scroll-behavior: smooth; }
      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.55;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        padding-bottom: 88px;
      }
      @media (min-width: 900px) { body { padding-bottom: 0; } }
      a { color: inherit; text-decoration: none; }
      button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
      img { max-width: 100%; display: block; }

      /* ---------- Layout ---------- */
      .shell {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      @media (min-width: 720px) { .shell { padding: 0 32px; } }

      /* ---------- Scroll progress bar ---------- */
      .progress {
        position: fixed; top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--blue));
        transform: scaleX(0); transform-origin: 0 50%;
        z-index: 100; transition: transform 0.1s linear;
      }

      /* ---------- Nav ---------- */
      .nav {
        position: sticky; top: 0; z-index: 50;
        padding: 16px 0;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        background: rgba(8, 8, 10, 0.72);
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s, background 0.2s;
      }
      @media (min-width: 900px) { .nav { padding: 20px 0; } }
      .nav.scrolled { border-color: var(--border); background: rgba(8, 8, 10, 0.88); }
      .nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
      .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
      .brand-logo {
        width: 44px; height: 44px; border-radius: 12px;
        box-shadow: 0 10px 28px -10px rgba(243, 179, 77, 0.6);
        display: block;
      }
      @media (min-width: 900px) {
        .brand-logo { width: 52px; height: 52px; border-radius: 14px; }
      }
      .brand-name { font-weight: 800; letter-spacing: 0.1em; font-size: 17px; white-space: nowrap; }
      @media (min-width: 900px) { .brand-name { font-size: 19px; } }
      @media (max-width: 420px) { .brand-name { display: none; } }

      .nav-links {
        display: none; gap: 30px; font-size: 15px; color: var(--text-dim); font-weight: 500;
      }
      .nav-links a { transition: color 0.2s; }
      .nav-links a:hover { color: var(--gold); }
      @media (min-width: 900px) { .nav-links { display: flex; font-size: 16px; gap: 34px; } }

      .nav-actions { display: flex; gap: 8px; align-items: center; }
      @media (min-width: 900px) { .nav-actions { gap: 10px; } }

      /* Site / ghost button with icon — icon-only on mobile */
      .nav-site-btn {
        display: inline-flex; align-items: center; justify-content: center;
        gap: 8px;
        width: 44px; height: 44px;
        padding: 0;
        border-radius: 12px;
        color: var(--text); background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-strong);
        transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
        flex-shrink: 0;
      }
      .nav-site-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-1px);
      }
      .nav-site-btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
      .nav-site-btn__text { display: none; font-size: 15px; font-weight: 600; }
      @media (min-width: 900px) {
        .nav-site-btn { width: auto; height: auto; padding: 14px 20px; border-radius: 14px; }
        .nav-site-btn__text { display: inline; }
        .nav-site-btn__icon { width: 18px; height: 18px; }
      }

      /* Nav primary button (Start in Telegram) — keep compact on mobile */
      .nav-cta { padding: 11px 16px; font-size: 14px; border-radius: 12px; }
      @media (min-width: 900px) { .nav-cta { padding: 14px 22px; font-size: 15px; border-radius: 14px; } }
      .nav-cta__text-short { display: inline; }
      .nav-cta__text-long { display: none; }
      @media (min-width: 560px) {
        .nav-cta__text-short { display: none;
        }
        .nav-cta__text-long { display: inline; }
      }

      /* Hamburger toggle (mobile only) */
      .nav-toggle {
        position: relative;
        display: inline-flex; align-items: center; justify-content: center;
        width: 44px; height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-strong);
        color: var(--text);
        transition: background 0.2s, border-color 0.2s;
        flex-shrink: 0;
      }
      .nav-toggle:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--gold); }
      .nav-toggle__bar {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 18px;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.28s ease, opacity 0.2s ease;
      }
      .nav-toggle__bar:nth-child(1) { transform: translate(-50%, -8px); }
      .nav-toggle__bar:nth-child(2) { transform: translate(-50%, -50%); }
      .nav-toggle__bar:nth-child(3) { transform: translate(-50%, 6px); }
      .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
      .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scaleX(0.4); }
      .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
      @media (min-width: 900px) { .nav-toggle { display: none; } }

      /* Mobile dropdown menu */
      .nav-drawer {
        position: fixed; top: 76px; left: 12px; right: 12px; z-index: 49;
        background: rgba(14, 14, 18, 0.96);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border: 1px solid var(--border-strong);
        border-radius: 18px;
        padding: 12px;
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
        box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
      }
      .nav-drawer[data-open="true"] {
        opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
      }
      .nav-drawer__link {
        display: block;
        padding: 14px 16px;
        font-size: 15px; font-weight: 500;
        color: var(--text-dim);
        border-radius: 12px;
        transition: background 0.2s, color 0.2s;
      }
      .nav-drawer__link + .nav-drawer__link { margin-top: 2px; }
      .nav-drawer__link:hover, .nav-drawer__link:active { background: rgba(255, 255, 255, 0.05); color: var(--gold); }
      @media (min-width: 900px) { .nav-drawer { display: none; } }

      /* ---------- Buttons ---------- */
      .btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 12px 20px; border-radius: 12px;
        font-size: 14px; font-weight: 600;
        transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
        white-space: nowrap;
      }
      .btn--primary {
        color: #1a1308;
        background: linear-gradient(135deg, #f1b44f, #ffd78f);
        box-shadow: 0 12px 32px -12px rgba(243, 179, 77, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
        position: relative; overflow: hidden;
      }
      .btn--primary::after {
        content: ""; position: absolute; inset: 0;
        background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform 0.6s;
      }
      .btn--primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px -12px rgba(243, 179, 77, 0.7); }
      .btn--primary:hover::after { transform: translateX(100%); }
      .btn--ghost {
        color: var(--text); background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-strong);
      }
      .btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--gold); color: var(--gold); }
      .btn--lg { padding: 16px 28px; font-size: 15px; border-radius: 14px; }

      /* ---------- Section ---------- */
      .section { padding: 64px 0; position: relative; }
      @media (min-width: 900px) { .section { padding: 96px 0; } }
      .section-head { max-width: 720px; margin-bottom: 40px; }
      @media (min-width: 900px) { .section-head { margin-bottom: 56px; } }
      .kicker {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 6px 14px; border-radius: 999px;
        background: var(--gold-soft); color: var(--gold);
        font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
        margin-bottom: 16px;
      }
      .kicker::before {
        content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
        box-shadow: 0 0 8px var(--gold); animation: pulse 2s infinite;
      }
      @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
      h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
      h1 { font-size: clamp(36px, 7vw, 68px); letter-spacing: -0.03em; }
      h2 { font-size: clamp(28px, 4.5vw, 44px); }
      h3 { font-size: clamp(18px, 2.2vw, 22px); }
      .lead {
        font-size: clamp(15px, 1.8vw, 18px); color: var(--text-dim);
        margin-top: 16px; max-width: 640px;
      }

      /* ---------- Hero ---------- */
      .hero {
        position: relative; padding-top: 32px; padding-bottom: 48px;
        overflow: hidden;
      }
      @media (min-width: 900px) { .hero { padding-top: 80px; padding-bottom: 96px; } }
      .hero__backdrop {
        position: absolute; inset: -100px; z-index: 0;
        pointer-events: none; overflow: hidden;
      }
      .orb {
        position: absolute; border-radius: 50%; filter: blur(80px);
        opacity: 0.7;
      }
      .orb--gold {
        width: 480px; height: 480px; top: -120px; right: -100px;
        background: radial-gradient(circle, rgba(243, 179, 77, 0.45), transparent 70%);
        animation: orb-float-a 18s ease-in-out infinite;
      }
      .orb--blue {
        width: 520px; height: 520px; bottom: -180px; left: -120px;
        background: radial-gradient(circle, rgba(107, 146, 255, 0.35), transparent 70%);
        animation: orb-float-b 22s ease-in-out infinite;
      }
      @keyframes orb-float-a {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(-40px, 30px) scale(1.08); }
        66% { transform: translate(20px, -20px) scale(0.95); }
      }
      @keyframes orb-float-b {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(60px, -40px) scale(1.1); }
      }
      .grid-bg {
        position: absolute; inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 80%);
      }
      .hero__content { position: relative; z-index: 1; }
      .hero h1 { max-width: 920px; }
      .hero h1 em {
        font-style: normal;
        background: linear-gradient(135deg, var(--gold), var(--gold-2) 60%, var(--blue-2));
        -webkit-background-clip: text; background-clip: text; color: transparent;
      }
      .hero__lead { max-width: 580px; margin-top: 24px; font-size: clamp(16px, 2vw, 19px); }
      .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
      .hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
      .chip {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 8px 14px; border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        color: var(--text-dim); font-size: 13px; font-weight: 500;
      }
      .chip::before {
        content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success);
        box-shadow: 0 0 8px rgba(61, 220, 151, 0.6);
        animation: pulse 1.8s infinite;
      }

      /* ---------- Metrics strip ---------- */
      .metrics {
        display: grid; grid-template-columns: repeat(2, 1fr);
        gap: 1px; background: var(--border);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        margin-top: 48px;
      }
      @media (min-width: 720px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
      .metric {
        padding: 22px 18px; background: var(--bg-soft);
        text-align: center;
      }
      .metric__value {
        font-family: "JetBrains Mono", monospace;
        font-size: clamp(26px, 3.5vw, 34px); font-weight: 500;
        color: var(--gold); letter-spacing: -0.02em;
        display: block; line-height: 1;
      }
      .metric__label {
        margin-top: 8px; font-size: 12px; color: var(--muted);
        letter-spacing: 0.04em;
      }

      /* ---------- Benefit grid ---------- */
      .benefits-grid {
        display: grid; grid-template-columns: 1fr; gap: 16px;
      }
      @media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
      @media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
      .benefit-card {
        position: relative; padding: 28px 24px;
        background: var(--bg-soft);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        transition: transform 0.3s, border-color 0.3s, background 0.3s;
      }
      .benefit-card::before {
        content: ""; position: absolute; inset: 0; opacity: 0;
        background: radial-gradient(circle at top right, var(--gold-soft), transparent 60%);
        transition: opacity 0.3s; pointer-events: none;
      }
      .benefit-card:hover {
        transform: translateY(-4px); border-color: var(--gold);
      }
      .benefit-card:hover::before { opacity: 1; }
      .benefit-card__icon {
        display: grid; place-items: center;
        width: 44px; height: 44px; border-radius: 12px;
        background: var(--gold-soft); color: var(--gold);
        margin-bottom: 18px;
      }
      .benefit-card__icon svg { width: 22px; height: 22px; }
      .benefit-card h3 { margin-bottom: 8px; }
      .benefit-card p { color: var(--muted); font-size: 14.5px; position: relative; }

      /* ---------- Servers table ---------- */
      .servers-wrap {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        background: var(--bg-soft);
      }
      .servers-head {
        padding: 18px 20px 14px;
        display: flex; align-items: center; justify-content: space-between;
        border-bottom: 1px solid var(--border);
      }
      .servers-head__title { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
      .servers-head__live {
        display: inline-flex; align-items: center; gap: 8px;
        font-size: 12px; color: var(--success);
        font-family: "JetBrains Mono", monospace;
      }
      .servers-head__live::before {
        content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success);
        box-shadow: 0 0 10px var(--success); animation: pulse 1.4s infinite;
      }
      .server-row {
        display: grid;
        grid-template-columns: 32px 1fr auto auto;
        align-items: center; gap: 12px;
        padding: 14px 20px;
        border-bottom: 1px solid var(--border);
        transition: background 0.2s;
      }
      .server-row:last-child { border-bottom: none; }
      .server-row:hover { background: rgba(255, 255, 255, 0.02); }
      .server-flag { font-size: 20px; line-height: 1; }
      .server-name strong { display: block; font-size: 14.5px; font-weight: 600; }
      .server-name span { font-size: 12px; color: var(--muted); }
      .server-ping {
        font-family: "JetBrains Mono", monospace; font-size: 13px;
        color: var(--text-dim);
      }
      .server-ping em { font-style: normal; color: var(--success); }
      .server-status {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 12px; font-weight: 600;
        color: var(--success);
      }
      .server-status::before {
        content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success);
        box-shadow: 0 0 6px var(--success);
      }
      @media (max-width: 600px) {
        .server-row { grid-template-columns: 28px 1fr auto; gap: 10px; padding: 12px 16px; }
        .server-status { display: none; }
        .server-name strong { font-size: 13.5px; }
      }

      /* ---------- How it works ---------- */
      .steps {
        display: grid; gap: 16px; grid-template-columns: 1fr;
        position: relative;
      }
      @media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
      .step {
        position: relative;
        padding: 28px 24px;
        background: linear-gradient(180deg, var(--bg-soft), var(--bg));
        border: 1px solid var(--border);
        border-radius: var(--radius);
      }
      .step__num {
        display: grid; place-items: center;
        width: 44px; height: 44px; border-radius: 12px;
        background: linear-gradient(135deg, var(--gold), var(--gold-2));
        color: #1a1308;
        font-family: "JetBrains Mono", monospace;
        font-weight: 600; font-size: 18px;
        margin-bottom: 18px;
        box-shadow: 0 8px 20px -6px rgba(243, 179, 77, 0.5);
      }
      .step h3 { margin-bottom: 8px; }
      .step p { color: var(--muted); font-size: 14.5px; }

      /* ---------- Devices ---------- */
      .devices {
        display: flex; flex-wrap: wrap; gap: 10px;
      }
      .device {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 16px;
        background: var(--bg-soft);
        border: 1px solid var(--border);
        border-radius: 999px;
        font-size: 14px; color: var(--text-dim);
        transition: border-color 0.2s, color 0.2s, transform 0.2s;
      }
      .device:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
      .device svg { width: 16px; height: 16px; color: var(--muted); }
      .device:hover svg { color: var(--gold); }

      /* ---------- Testimonials marquee ---------- */
      .marquee {
        overflow: hidden;
        -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
        mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      }
      .marquee__track {
        display: flex; gap: 20px; width: max-content;
        animation: marquee 48s linear infinite;
      }
      .marquee:hover .marquee__track { animation-play-state: paused; }
      @keyframes marquee { to { transform: translateX(-50%); } }
      .review {
        width: 320px; flex-shrink: 0;
        padding: 24px; border-radius: var(--radius);
        background: var(--bg-soft);
        border: 1px solid var(--border);
      }
      .review__quote {
        font-size: 15px; color: var(--text-dim);
        line-height: 1.55; min-height: 90px;
      }
      .review__author {
        margin-top: 16px; display: flex; align-items: center; gap: 10px;
      }
      .review__avatar {
        width: 36px; height: 36px; border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--blue));
        display: grid; place-items: center;
        font-weight: 600; font-size: 13px; color: #1a1308;
      }
      .review__name strong { display: block; font-size: 13.5px; }
      .review__name span { color: var(--muted); font-size: 12px; }

      /* ---------- Pricing ---------- */
      .pricing-grid {
        display: grid; grid-template-columns: 1fr; gap: 16px;
      }
      @media (min-width: 560px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
      @media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
      .price-card {
        position: relative; padding: 26px 22px;
        background: var(--bg-soft);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        transition: border-color 0.3s, transform 0.3s;
        display: flex; flex-direction: column;
      }
      .price-card:hover { transform: translateY(-4px); border-color: var(--gold); }
      .price-card--popular {
        border-color: var(--gold);
        background: linear-gradient(180deg, rgba(243, 179, 77, 0.08), var(--bg-soft));
      }
      .price-card--popular::before {
        content: "Популярный"; position: absolute; top: -10px; left: 22px;
        padding: 4px 12px; border-radius: 999px;
        background: linear-gradient(135deg, var(--gold), var(--gold-2));
        color: #1a1308; font-size: 11px; font-weight: 700;
        letter-spacing: 0.04em; text-transform: uppercase;
      }
      .price-card__period { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
      .price-card__amount {
        font-size: 38px; font-weight: 700; letter-spacing: -0.03em;
        margin-top: 10px; line-height: 1;
      }
      .price-card__amount span { font-size: 14px; font-weight: 500; color: var(--muted); }
      .price-card__perday {
        display: block; margin-top: 6px;
        color: var(--text-dim); font-size: 13px;
      }
      .price-card__save {
        display: inline-block; margin-top: 8px;
        padding: 3px 10px; border-radius: 999px;
        background: var(--gold-soft); color: var(--gold);
        font-size: 11px; font-weight: 600;
      }
      .price-card__desc { color: var(--muted); font-size: 13px; margin-top: 12px; flex: 1; }
      .price-card .btn { width: 100%; justify-content: center; margin-top: 18px; }

      /* ---------- FAQ ---------- */
      .faq-list { display: grid; gap: 10px; }
      .faq {
        background: var(--bg-soft);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        overflow: hidden;
        transition: border-color 0.2s;
      }
      .faq[open] { border-color: var(--gold); }
      .faq summary {
        padding: 18px 22px; list-style: none; cursor: pointer;
        display: flex; align-items: center; justify-content: space-between; gap: 12px;
        font-size: 15px; font-weight: 600;
      }
      .faq summary::-webkit-details-marker { display: none; }
      .faq summary::after {
        content: ""; width: 14px; height: 14px; flex-shrink: 0;
        background: var(--gold); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%, 50% 0, 50% 40%, 40% 50%, 50% 60%, 60% 50%, 50% 40%);
        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
        -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
        transition: transform 0.3s;
        clip-path: none;
      }
      .faq[open] summary::after { transform: rotate(180deg); }
      .faq__body {
        padding: 0 22px 20px; color: var(--muted); font-size: 14.5px;
      }

      /* ---------- Final CTA ---------- */
      .final {
        position: relative; overflow: hidden;
        padding: 48px 28px; margin: 48px 0 24px;
        border-radius: var(--radius-lg);
        background: linear-gradient(135deg, rgba(243, 179, 77, 0.12), rgba(107, 146, 255, 0.1));
        border: 1px solid var(--border-strong);
        text-align: center;
      }
      .final::before {
        content: ""; position: absolute; inset: -40%;
        background: radial-gradient(circle at 30% 20%, rgba(243, 179, 77, 0.28), transparent 40%),
          radial-gradient(circle at 70% 80%, rgba(107, 146, 255, 0.28), transparent 40%);
        pointer-events: none;
      }
      .final__inner { position: relative; }
      .final h2 { max-width: 680px; margin: 0 auto; }
      .final p { max-width: 560px; margin: 16px auto 28px; color: var(--text-dim); }
      .final .btn { min-width: 200px; justify-content: center; }

      /* ---------- Footer ---------- */
      .footer {
        padding: 32px 0 24px; text-align: center;
        color: var(--muted-2); font-size: 13px;
        border-top: 1px solid var(--border);
      }
      .footer a { color: var(--muted); transition: color 0.2s; }
      .footer a:hover { color: var(--gold); }
      .footer__links { margin-bottom: 14px; }
      .footer__links a + a { margin-left: 18px; }
      .footer__copy { font-size: 12px; opacity: 0.8; }

      /* ---------- Mobile sticky bar ---------- */
      .mobile-bar {
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
        display: flex; gap: 10px;
        background: rgba(8, 8, 10, 0.55);
        backdrop-filter: blur(22px) saturate(140%);
        -webkit-backdrop-filter: blur(22px) saturate(140%);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }
      .mobile-bar .btn { flex: 1; justify-content: center; }
      .mobile-bar { flex-wrap: wrap; }
      .mobile-bar__hint {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
        padding: 2px 0 0;
        margin: 0;
        pointer-events: none;
      }

      @media (min-width: 900px) { .mobile-bar { display: none; } }

      /* ---------- Scroll reveal ---------- */
      [data-reveal] {
        opacity: 0; transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      }
      [data-reveal].is-visible {
        opacity: 1; transform: translateY(0);
      }
      /* Stagger */
      [data-reveal-delay="1"] { transition-delay: 0.06s; }
      [data-reveal-delay="2"] { transition-delay: 0.12s; }
      [data-reveal-delay="3"] { transition-delay: 0.18s; }
      [data-reveal-delay="4"] { transition-delay: 0.24s; }
      [data-reveal-delay="5"] { transition-delay: 0.3s; }

      /* ---------- Accessibility ---------- */
      @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
      }
