* { box-sizing: border-box; margin: 0; padding: 0; }
    html { -webkit-text-size-adjust: 100%; }
    body {
      font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
      background: #0f172a;
      color: #cbd5e1;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem 1.25rem;
      line-height: 1.6;
    }
    .wordmark {
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #f8fafc;
      font-size: 1.125rem;
      margin-bottom: 2.5rem;
    }
    .code {
      font-size: clamp(4rem, 18vw, 6.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      background: linear-gradient(135deg, #38bdf8, #ff8c4d);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }
    h1 { font-size: clamp(1.25rem, 5vw, 1.75rem); color: #f8fafc; margin-bottom: 0.75rem; }
    .sub { color: #94a3b8; max-width: 26rem; margin: 0 auto 2rem; }
    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 48px;
      padding: 0.75rem 1.75rem;
      background: #ff6b1a;
      color: #fff;
      font-weight: 700;
      border-radius: 0.75rem;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(255, 107, 26, 0.3);
      transition: background 0.15s ease, transform 0.15s ease;
    }
    .cta:hover { background: #e85a0c; transform: translateY(-1px); }
    .links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.625rem;
      margin-top: 1.75rem;
    }
    .links a {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      padding: 0.5rem 1rem;
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 9999px;
      background: rgba(30, 41, 59, 0.6);
      transition: color 0.15s ease, border-color 0.15s ease;
    }
    .links a:hover { color: #e2e8f0; border-color: rgba(148, 163, 184, 0.5); }
    @media (prefers-reduced-motion: reduce) {
      .cta, .links a { transition: none; }
    }

body{font-family:-apple-system,system-ui,sans-serif;background:#0f172a;color:#cbd5e1;line-height:1.6;margin:0;padding:0}
.wrap{max-width:780px;margin:0 auto;padding:40px 24px 80px}
h1{font-size:2em;font-weight:800;color:#f8fafc;margin:0 0 12px;letter-spacing:-.02em}
.lead{font-size:1.05em;color:#94a3b8;margin:0 0 32px;line-height:1.6}
h2{font-size:1.3em;font-weight:700;color:#f1f5f9;margin:36px 0 12px}
.commission-box{background:linear-gradient(135deg,rgba(#ff6b1a08),rgba(#ff6b1a,.02));border:1px solid rgba(#ff6b1a,.12);border-radius:16px;padding:28px;margin:24px 0}
table{width:100%;border-collapse:collapse;font-size:.95rem}
th,td{padding:10px 8px;border-bottom:1px solid #334155;text-align:left}
th{color:#e2e8f0;font-weight:600}
td{color:#94a3b8}
.commission{color:#ff6b1a;font-weight:700}
.payout{color:#e2e8f0}
.cta-box{background:linear-gradient(135deg,rgba(#ff6b1a,.08),rgba(#ff6b1a,.02));border:1px solid rgba(#ff6b1a,.15);border-radius:16px;padding:32px;text-align:center;margin:40px 0}
.cta-box h2{margin:0 0 8px}
.cta-box p{margin:0 0 20px;color:#94a3b8}
.btn{display:inline-block;background:#ff6b1a;color:#fff;padding:12px 28px;border-radius:10px;text-decoration:none;font-weight:600;font-size:.95rem}
a{color:#ff6b1a;text-decoration:none}
.swipe-box{background:#1e293b;border:1px solid #334155;border-radius:12px;padding:20px;margin:16px 0}
.swipe-box h3{margin:0 0 12px;font-size:.95rem;color:#e2e8f0}
.swipe-box div{background:#0f172a;border:1px solid #1e293b;border-radius:8px;padding:14px;font-size:.85rem;color:#64748b;line-height:1.7;font-style:italic}
.note{color:#64748b;font-size:.85rem;text-align:center;margin:40px 0}
@media(max-width:640px){.commission-box table{font-size:.85rem}}

/* Self-contained page styles (same pattern as all pages — no build step) */
    :root {
      --signal-500: #ff6b1a;
      --signal-400: #ff8c4d;
      --brand-500: #0ea5e9;
      --brand-400: #38bdf8;
      --emerald: #10b981;
      --gold: #fbbf24;
      --focus: #fbbf24;
    }

    body.bg-dark-900 {
      background-color: #0b1020;
      background-image:
        radial-gradient(58rem 40rem at 50% -16rem, rgba(251, 191, 36, 0.08), transparent 62%),
        radial-gradient(48rem 38rem at 100% 4%, rgba(14, 165, 233, 0.06), transparent 56%),
        linear-gradient(180deg, #0b1020 0%, #0c1326 100%);
      background-attachment: fixed;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    ::selection { background: rgba(251, 191, 36, 0.25); color: #fff; }

    a:focus-visible {
      outline: 2px solid var(--focus); outline-offset: 3px;
      border-radius: 6px;
    }

    .mobile-cta-stack > * { width: 100%; }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    html { scroll-padding-top: 5rem; }
    @media (max-width: 639px) {
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 4rem; padding-bottom: 4rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-hero-copy { font-size: 1rem; line-height: 1.65; }
      .mobile-main-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-cta-stack .btn {
        white-space: normal; text-align: center; line-height: 1.35;
        padding-left: 1rem; padding-right: 1rem;
      }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(14px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
        box-shadow: 0 -18px 40px -28px rgba(0, 0, 0, 0.9);
      }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }

    /* Progress indicator (Brunson Ch 11 — funnel progress bar) */
    .apply-progress { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
    .apply-progress .dot { width: 0.625rem; height: 0.625rem; border-radius: 999px; background: rgba(148,163,184,0.25); transition: background 250ms, transform 250ms; }
    .apply-progress .dot.active { background: var(--gold); transform: scale(1.2); box-shadow: 0 0 0 4px rgba(251,191,36,0.16); }
    .apply-progress .dot.done { background: var(--emerald); }
    .apply-progress .bar { width: 2rem; height: 2px; background: rgba(148,163,184,0.2); }

    /* Multi-step form */
    .step-panel { display: none; }
    .step-panel.active { display: block; animation: step-in 0.4s cubic-bezier(0.22,1,0.36,1); }
    @keyframes step-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

    /* Form inputs */
    .form-label { display: block; font-size: 0.875rem; font-weight: 600; color: #e2e8f0; margin-bottom: 0.5rem; }
    .form-input, .form-textarea, .form-select {
      width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem;
      background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(148, 163, 184, 0.25);
      color: #f1f5f9; font-size: 1rem; line-height: 1.5; transition: border-color 150ms, box-shadow 150ms;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      outline: none; border-color: rgba(251, 191, 36, 0.5);
      box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.12);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: #64748b; }
    .form-textarea { min-height: 6rem; resize: vertical; }

    /* Radio card selectors (Brunson Ch 13 — multi-choice qualification) */
    .radio-group { display: grid; gap: 0.75rem; }
    .radio-card {
      display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem;
      border-radius: 0.75rem; border: 1px solid rgba(148, 163, 184, 0.22);
      background: rgba(15, 23, 42, 0.55); cursor: pointer; transition: border-color 150ms, background 150ms;
    }
    .radio-card:hover { border-color: rgba(251, 191, 36, 0.35); background: rgba(30, 41, 59, 0.7); }
    .radio-card.selected { border-color: rgba(251, 191, 36, 0.6); background: rgba(251, 191, 36, 0.06); }
    .radio-card input[type="radio"] {
      margin-top: 0.2rem; width: 1.15rem; height: 1.15rem; accent-color: var(--gold); flex: none;
    }
    .radio-card .rc-label { font-weight: 600; color: #f1f5f9; font-size: 0.95rem; }
    .radio-card .rc-desc { color: #94a3b8; font-size: 0.85rem; margin-top: 0.15rem; }

    .form-hint { color: #94a3b8; font-size: 0.8rem; margin-top: 0.35rem; }

    /* Value stack on the review step */
    .value-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(148,163,184,0.08); }
    .value-row:last-child { border-bottom: none; }
    .value-row .vr-item { color: #cbd5e1; font-size: 0.95rem; }
    .value-row .vr-price { color: #94a3b8; font-size: 0.9rem; white-space: nowrap; }
    .value-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; margin-top: 0.5rem; border-top: 2px solid rgba(148,163,184,0.15); }
    .value-total .vt-label { color: #94a3b8; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .value-total .vt-amount { color: #94a3b8; font-size: 1.1rem; text-decoration: line-through; }
    .value-price { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.5rem; }
    .value-price .vp-label { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
    .value-price .vp-amount { color: #fff; font-size: 1.75rem; font-weight: 800; }

    /* Trust card */
    .trust-card {
      background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(15, 23, 42, 0.6));
      border: 1px solid rgba(16, 185, 129, 0.25); border-radius: 1rem; padding: 1.5rem;
    }

    @media (prefers-reduced-motion: reduce) {
      .step-panel.active { animation: none; }
    }

/* Brand-page-only styles — styles.css is prebuilt (no working Tailwind
       build step), so page-specific classes live inline here. */
    .asset-card {
      border: 1px solid #334155;
      border-radius: 1rem;
      background-color: rgba(30, 41, 59, 0.6);
      padding: 1.5rem;
    }
    @media (min-width: 768px) { .asset-card { padding: 2rem; } }
    .asset-preview {
      display: flex; align-items: center; justify-content: center;
      border: 1px dashed #475569; border-radius: 0.75rem;
      background: #0f172a; padding: 2rem; margin-bottom: 1rem;
    }
    .wordmark-sample { font-weight: 700; letter-spacing: -0.02em; font-size: 2rem; color: #fff; }
    .wordmark-sample .accent { color: #ff6b1a; }
    .swatch-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .swatch {
      display: flex; flex-direction: column; gap: 0.4rem;
      font-size: 0.8rem; color: #94a3b8;
    }
    .swatch .chip { width: 7.5rem; height: 3.5rem; border-radius: 0.5rem; border: 1px solid #334155; }
    .swatch code { color: #e2e8f0; font-size: 0.8rem; }
    .og-frame { display: block; width: 100%; max-width: 100%; border-radius: 0.75rem; border: 1px solid #334155; }
    .do-list { list-style: none; padding: 0; margin: 0.75rem 0 0; }
    .do-list li { display: flex; gap: 0.55rem; align-items: flex-start; color: #cbd5e1; font-size: 0.9rem; line-height: 1.55; padding: 0.25rem 0; }
    .do-list li.do::before { content: '✓'; color: #34d399; font-weight: 700; flex: 0 0 auto; }
    .do-list li.dont::before { content: '✕'; color: #f87171; font-weight: 700; flex: 0 0 auto; }
    @media (max-width: 639px) {
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 3rem; padding-bottom: 3rem; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .asset-card { padding: 1.25rem; }
    }

html { scroll-padding-top: 6rem; }
    @media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
    .mobile-cta-stack > * { width: 100%; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 4rem; padding-bottom: 4rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; text-wrap: balance; }
      .mobile-hero-copy { font-size: 1rem; line-height: 1.65; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-cta-stack .btn { white-space: normal; text-align: center; line-height: 1.35; padding-left: 1rem; padding-right: 1rem; }
    }
    .cheat-row { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.25rem; align-items: start; }
    .cheat-num {
      display: flex; align-items: center; justify-content: center;
      flex: 0 0 auto; width: 3rem; height: 3rem; border-radius: 0.75rem;
      background: rgba(255,107,26,0.12); color: #ff6b1a;
      font-size: 1.5rem; font-weight: 800;
    }
    a:focus-visible { outline: 2px solid #38bdf8; outline-offset: 3px; border-radius: 4px; }
    .btn-spinner { width: 1rem; height: 1rem; border: 2px solid rgba(15,23,42,0.35); border-top-color: #0f172a; border-radius: 50%; display: inline-block; animation: btn-spin 0.6s linear infinite; }
    @keyframes btn-spin { to { transform: rotate(360deg); } }
    @media (prefers-reduced-motion: reduce) { .btn-spinner { animation: none; } }
    .btn[aria-busy="true"] { cursor: progress; opacity: 0.9; }

.mobile-cta-stack > * { width: 100%; }
    .mobile-card, .mobile-step-card { transition: border-color 120ms ease, transform 120ms ease; }
    .mobile-card:hover, .mobile-step-card:hover { border-color: rgba(14, 165, 233, 0.5); }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 4rem; padding-bottom: 4rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-hero-copy { font-size: 1rem; line-height: 1.65; }
      .mobile-main-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-grid-gap { gap: 1rem; }
      .mobile-cta-stack .btn {
        white-space: normal; text-align: center; line-height: 1.35;
        padding-left: 1rem; padding-right: 1rem;
      }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(12px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
      }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }

/* ====================================================================
       /dashboard-thanks — OTO: Insider Circle upsell (Brunson Ch 15)
       One Time Offer: the buyer just subscribed to Dashboard (€49/mo).
       This page offers Insider Circle (€197/mo) with a value stack,
       honest urgency (seat cap), and a downsell.
       ==================================================================== */
    :root {
      --signal-500: #ff6b1a;
      --signal-400: #ff8c4d;
      --brand-500: #0ea5e9;
      --brand-400: #38bdf8;
      --insider: #a855f7;
      --insider-light: #c084fc;
      --emerald: #10b981;
      --focus: #c084fc;
    }

    body.bg-dark-900 {
      background-color: #0b1020;
      background-image:
        radial-gradient(58rem 40rem at 50% -16rem, rgba(168, 85, 247, 0.10), transparent 62%),
        radial-gradient(48rem 38rem at 100% 4%, rgba(14, 165, 233, 0.07), transparent 56%),
        linear-gradient(180deg, #0b1020 0%, #0c1326 100%);
      background-attachment: fixed;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    ::selection { background: rgba(168, 85, 247, 0.30); color: #fff; }
    h1, h2 { text-wrap: balance; }
    p { text-wrap: pretty; }

    a:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 6px; }

    .mobile-cta-stack > * { width: 100%; }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-main-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-cta-stack .btn { white-space: normal; text-align: center; line-height: 1.35; padding-left: 1rem; padding-right: 1rem; }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(14px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
        box-shadow: 0 -18px 40px -28px rgba(0, 0, 0, 0.9);
      }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }

    /* OTO card — Insider purple */
    .oto-card {
      position: relative; isolation: isolate;
      border-color: rgba(168, 85, 247, 0.42) !important;
      background:
        radial-gradient(40rem 22rem at 50% -3rem, rgba(168, 85, 247, 0.14), transparent 70%),
        linear-gradient(180deg, rgba(30, 16, 45, 0.55), rgba(13, 19, 35, 0.92)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 44px 100px -54px rgba(168, 85, 247, 0.40),
        0 34px 90px -46px rgba(0, 0, 0, 0.92);
    }

    /* Value stack rows */
    .value-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(148,163,184,0.08); }
    .value-row:last-child { border-bottom: none; }
    .value-row .vr-item { color: #cbd5e1; font-size: 0.95rem; }
    .value-row .vr-price { color: #94a3b8; font-size: 0.9rem; white-space: nowrap; }
    .value-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; margin-top: 0.5rem; border-top: 2px solid rgba(148,163,184,0.15); }
    .value-total .vt-label { color: #94a3b8; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .value-total .vt-amount { color: #64748b; font-size: 1.1rem; text-decoration: line-through; }
    .value-price { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.5rem; }
    .value-price .vp-label { color: var(--insider-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
    .value-price .vp-amount { color: #fff; font-size: 1.75rem; font-weight: 800; text-shadow: 0 8px 32px rgba(168,85,247,0.28); }

    .compare-box {
      background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92)) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .guarantee-box {
      background: rgba(16, 185, 129, 0.09) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px -46px rgba(16, 185, 129, 0.7);
    }

    .urgency-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.4rem 0.8rem; border-radius: 999px;
      background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.3);
      color: var(--insider-light); font-size: 0.8rem; font-weight: 600;
    }

    /* Seat counter */
    .seat-counter {
      display: inline-flex; align-items: center; gap: 0.75rem;
      padding: 0.75rem 1.25rem; border-radius: 0.75rem;
      background: rgba(168, 85, 247, 0.08); border: 1px solid rgba(168, 85, 247, 0.25);
    }
    .seat-counter .sc-bar { display: flex; gap: 3px; }
    .seat-counter .sc-bar span { width: 8px; height: 20px; border-radius: 2px; background: rgba(168,85,247,0.2); }
    .seat-counter .sc-bar span.filled { background: var(--insider); }
    .seat-counter .sc-text { font-size: 0.85rem; color: var(--insider-light); font-weight: 600; }

    @keyframes oto-reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
    .reveal   { animation: oto-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
    .reveal-2 { animation-delay: 0.09s; }
    .reveal-3 { animation-delay: 0.18s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-2, .reveal-3 { animation: none !important; }
    }

.mobile-cta-stack > * { width: 100%; }
    .mobile-card, .mobile-step-card { transition: border-color 120ms ease, transform 120ms ease; }
    .mobile-card:hover, .mobile-step-card:hover { border-color: rgba(14, 165, 233, 0.5); }
    .mobile-sticky-cta { display: none; }
    .stack-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px dashed rgba(71, 85, 105, 0.5); }
    .stack-row:last-child { border-bottom: 0; }
    .stack-row .val { color: #94a3b8; font-variant-numeric: tabular-nums; white-space: nowrap; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 4rem; padding-bottom: 4rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-hero-copy { font-size: 1rem; line-height: 1.65; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-stat-grid { gap: 1rem; }
      .mobile-grid-gap { gap: 1rem; }
      .stack-row { font-size: 0.95rem; }
      .mobile-cta-stack .btn,
      .mobile-form-stack .btn {
        white-space: normal; text-align: center; line-height: 1.35;
        padding-left: 1rem; padding-right: 1rem;
      }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(12px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
      }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }

body{background:#fff;color:#1a1a1a;font-family:-apple-system,system-ui,sans-serif;line-height:1.7}
main{max-width:760px;margin:0 auto;padding:0 20px 60px}
.hero h1{font-size:2em;font-weight:800;margin:1.5em 0 .5em;line-height:1.2;color:#1a1a1a}
.content p{margin-bottom:1em;color:#333}
.content ul{line-height:1.9;color:#333}
.faq h2{font-size:1.45rem;margin-top:2rem;border-bottom:2px solid #e5e7eb;padding-bottom:.3rem}
.faq details{margin-bottom:.75rem}
.faq summary{font-weight:600;cursor:pointer;color:#1a1a1a}
.faq p{color:#333;margin-top:.5em}
footer{max-width:760px;margin:0 auto;padding:1rem 20px;color:#6b7280;font-size:.85rem;border-top:1px solid #e5e7eb}

body{background:#fff;color:#1a1a1a;font-family:-apple-system,system-ui,sans-serif;line-height:1.7}
main{max-width:800px;margin:0 auto;padding:0 20px 60px}
h1{font-size:2em;font-weight:800;margin:1.5em 0 .25em;line-height:1.2;color:#1a1a1a}
.lede{color:#555;font-size:1.05rem;margin-bottom:2rem}
.dataset-grid{display:grid;grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));gap:1.5rem;margin:2rem 0}
.dataset-card{border:1px solid #e5e7eb;border-radius:10px;padding:1.25rem;background:#fafafa;transition:box-shadow .15s}
.dataset-card:hover{box-shadow:0 2px 12px rgba(0,0,0,.08)}
.dataset-card h2{font-size:1.1rem;margin:0 0 .25rem;color:#1a1a1a}
.dataset-card .domain{font-size:.8rem;color:#00d4aa;font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem}
.dataset-card .desc{font-size:.9rem;color:#555;margin-bottom:.75rem}
.dataset-card a{color:#2563eb;text-decoration:none;font-weight:600;font-size:.9rem}
.dataset-card a:hover{text-decoration:underline}
.cta{background:#0f172a;color:#fff;padding:2rem;border-radius:10px;text-align:center;margin:3rem 0}
.cta h2{color:#00d4aa;margin:0 0 .5rem}
.cta p{color:#cbd5e1;margin-bottom:1rem}
.cta a{display:inline-block;background:#00d4aa;color:#04130e;padding:.75rem 2rem;border-radius:.5rem;font-weight:700;text-decoration:none}
footer{max-width:800px;margin:0 auto;padding:1rem 20px;color:#6b7280;font-size:.85rem;border-top:1px solid #e5e7eb}

body{font-family:-apple-system,system-ui,sans-serif;background:#0f172a;color:#cbd5e1;line-height:1.6;margin:0;padding:0}
.wrap{max-width:820px;margin:0 auto;padding:40px 24px 80px}
h1{font-size:2em;font-weight:800;color:#f8fafc;margin:0 0 12px;letter-spacing:-.02em}
.lead{font-size:1.05em;color:#94a3b8;margin:0 0 32px;line-height:1.6}
h2{font-size:1.3em;font-weight:700;color:#f1f5f9;margin:36px 0 12px}
.tier-box{background:#1e293b;border:1px solid #334155;border-radius:12px;padding:20px;margin:0 0 24px}
.tier-box ul{columns:2;margin:0;padding-left:18px;font-size:.92rem;line-height:1.9}
.tier-box li{color:#94a3b8;list-style:disc}
.how-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));margin:20px 0}
.how-card{background:#1e293b;border:1px solid #334155;border-radius:12px;padding:20px}
.how-card h3{margin:0 0 8px;font-size:1rem;color:#e2e8f0}
.how-card p{margin:0;font-size:.88rem;color:#64748b;line-height:1.6}
.cta-box{background:linear-gradient(135deg,rgba(99,102,241,.08),rgba(99,102,241,.02));border:1px solid rgba(99,102,241,.15);border-radius:16px;padding:32px;text-align:center;margin:40px 0}
.cta-box h2{margin:0 0 8px}
.cta-box p{margin:0 0 20px;color:#94a3b8}
.btn{display:inline-block;background:#ff6b1a;color:#fff;padding:12px 28px;border-radius:10px;text-decoration:none;font-weight:600;font-size:.95rem;transition:transform .1s}
.btn:hover{transform:translateY(-1px)}
a{color:#ff6b1a;text-decoration:none}
a:hover{text-decoration:underline}
.note{color:#64748b;font-size:.85rem;text-align:center;margin:40px 0}
@media(max-width:640px){.tier-box ul{columns:1}}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0f172a; color: #e2e8f0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; padding: 2rem 1rem; }
.container { max-width: 800px; margin: 0 auto; }
h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; }
h1 span { color: #10B981; }
p.subtitle { color: #94a3b8; margin-bottom: 2.5rem; font-size: 1rem; }
h2 { font-size: 1.2rem; font-weight: 600; margin: 2rem 0 1rem; color: #e2e8f0; }
.widget-card { background: #1e293b; border: 1px solid #334155; border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: #f1f5f9; }
.widget-card p { color: #94a3b8; font-size: 0.875rem; margin-bottom: 1rem; }
.code-block { position: relative; background: #0f172a; border: 1px solid #334155; border-radius: 8px; padding: 1rem; font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace; font-size: 0.8rem; color: #e2e8f0; overflow-x: auto; word-break: break-all; line-height: 1.5; }
.copy-btn { position: absolute; top: 0.5rem; right: 0.5rem; background: #334155; color: #e2e8f0; border: none; border-radius: 6px; padding: 0.3rem 0.6rem; font-size: 0.75rem; cursor: pointer; transition: background 0.15s; }
.copy-btn:hover { background: #475569; }
.copy-btn.copied { background: #059669; }
.footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #1e293b; text-align: center; color: #64748b; font-size: 0.8rem; }
.footer a { color: #10B981; text-decoration: none; }

/* ====================================================================
       /firstlook-thanks — OTO: Dashboard upsell (Brunson Ch 15)
       One Time Offer: the buyer just paid €7. This page offers Dashboard
       (€49/mo) with the €7 credited via the 14-day upgrade credit window.
       Value stack + honest urgency + downsell.
       ==================================================================== */
    :root {
      --signal-500: #ff6b1a;
      --signal-400: #ff8c4d;
      --brand-500: #0ea5e9;
      --brand-400: #38bdf8;
      --emerald: #10b981;
      --focus: #ff8c4d;
    }

    body.bg-dark-900 {
      background-color: #0b1020;
      background-image:
        radial-gradient(58rem 40rem at 50% -16rem, rgba(255, 107, 26, 0.11), transparent 62%),
        radial-gradient(48rem 38rem at 100% 4%, rgba(14, 165, 233, 0.08), transparent 56%),
        linear-gradient(180deg, #0b1020 0%, #0c1326 100%);
      background-attachment: fixed;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    ::selection { background: rgba(255, 107, 26, 0.30); color: #fff; }
    h1, h2 { text-wrap: balance; }
    p { text-wrap: pretty; }

    a:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 6px; }

    .mobile-cta-stack > * { width: 100%; }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-main-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-cta-stack .btn { white-space: normal; text-align: center; line-height: 1.35; padding-left: 1rem; padding-right: 1rem; }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(14px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
        box-shadow: 0 -18px 40px -28px rgba(0, 0, 0, 0.9);
      }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }

    /* OTO card */
    .oto-card {
      position: relative; isolation: isolate;
      border-color: rgba(255, 107, 26, 0.42) !important;
      background:
        radial-gradient(40rem 22rem at 50% -3rem, rgba(255, 107, 26, 0.12), transparent 70%),
        linear-gradient(180deg, rgba(30, 41, 59, 0.55), rgba(13, 19, 35, 0.92)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 44px 100px -54px rgba(255, 107, 26, 0.45),
        0 34px 90px -46px rgba(0, 0, 0, 0.92);
    }

    /* Value stack rows */
    .value-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(148,163,184,0.08); }
    .value-row:last-child { border-bottom: none; }
    .value-row .vr-item { color: #cbd5e1; font-size: 0.95rem; }
    .value-row .vr-price { color: #94a3b8; font-size: 0.9rem; white-space: nowrap; }
    .value-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; margin-top: 0.5rem; border-top: 2px solid rgba(148,163,184,0.15); }
    .value-total .vt-label { color: #94a3b8; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .value-total .vt-amount { color: #64748b; font-size: 1.1rem; text-decoration: line-through; }
    .value-price { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.5rem; }
    .value-price .vp-label { color: var(--signal-400); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
    .value-price .vp-amount { color: #fff; font-size: 1.75rem; font-weight: 800; text-shadow: 0 8px 32px rgba(255,107,26,0.28); }

    .compare-box {
      background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92)) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .guarantee-box {
      background: rgba(16, 185, 129, 0.09) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px -46px rgba(16, 185, 129, 0.7);
    }

    /* Urgency badge */
    .urgency-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.4rem 0.8rem; border-radius: 999px;
      background: rgba(255, 107, 26, 0.12); border: 1px solid rgba(255, 107, 26, 0.3);
      color: var(--signal-400); font-size: 0.8rem; font-weight: 600;
    }

    @keyframes oto-reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
    .reveal   { animation: oto-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
    .reveal-2 { animation-delay: 0.09s; }
    .reveal-3 { animation-delay: 0.18s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-2, .reveal-3 { animation: none !important; }
    }

.mobile-cta-stack > * { width: 100%; }
    .mobile-card, .mobile-step-card { transition: border-color 120ms ease, transform 120ms ease; }
    .mobile-card:hover, .mobile-step-card:hover { border-color: rgba(14, 165, 233, 0.5); }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 4rem; padding-bottom: 4rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-hero-copy { font-size: 1rem; line-height: 1.65; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-stat-grid { gap: 1rem; }
      .mobile-grid-gap { gap: 1rem; }
      .mobile-cta-stack .btn,
      .mobile-form-stack .btn {
        white-space: normal; text-align: center; line-height: 1.35;
        padding-left: 1rem; padding-right: 1rem;
      }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(12px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
      }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }

.fm-input {
      width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
      background: #0f172a; border: 1px solid #334155; color: #e2e8f0;
      font-size: 1.125rem; font-variant-numeric: tabular-nums;
      transition: border-color 120ms ease;
    }
    .fm-input:focus { outline: none; border-color: #0ea5e9; box-shadow: 0 0 0 2px rgba(14,165,233,0.2); }
    .fm-label { display: block; font-size: 0.875rem; font-weight: 600; color: #94a3b8; margin-bottom: 0.375rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .fm-result-big { font-size: 2.5rem; font-weight: 900; color: #38bdf8; font-variant-numeric: tabular-nums; line-height: 1.1; }
    .fm-result-label { font-size: 0.875rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
    .fm-bar-bg { height: 8px; border-radius: 4px; background: #1e293b; overflow: hidden; }
    .fm-bar-fill { height: 100%; border-radius: 4px; transition: width 400ms cubic-bezier(0.4,0,0.2,1); }
    .fm-tier { padding: 1rem 1.25rem; border-radius: 0.75rem; border: 1px solid #334155; background: #0f172a; }
    .fm-tier:hover { border-color: rgba(14,165,233,0.4); }
    .fm-highlight { background: rgba(14,165,233,0.08); border-color: rgba(14,165,233,0.3); }
    @media (max-width: 639px) { .fm-result-big { font-size: 1.875rem; } }

/* ============================================================
       UiKit v2 — World-class UI/UX for gitdealflow.com
       Principles: mobile-first, 8px grid, accessible, performant
       ============================================================ */

    /* Root-level rhythm + safe zones */
    html { scroll-padding-top: 5rem; }
    /* Tap-target floor (ported from retired ux.css) */
    .btn { min-height: 44px; }
    @media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
    #signup { display: block; height: 0; scroll-margin-top: 4.5rem; }
    body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

    /* ========================= QUALIFICATION CARDS ========================= */
    .qual-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
    @media (min-width: 640px) { .qual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.625rem; } }
    .qual-card {
      position: relative; display: flex; align-items: center; gap: 0.75rem;
      padding: 0.75rem 0.875rem; min-height: 52px;
      border-radius: 0.75rem; border: 1px solid #475569;
      background-color: #1e293b; color: #e5e7eb; cursor: pointer;
      transition: border-color 140ms cubic-bezier(0.4,0,0.2,1),
                  background-color 140ms cubic-bezier(0.4,0,0.2,1),
                  transform 120ms cubic-bezier(0.34,1.56,0.64,1),
                  box-shadow 140ms ease;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
    }
    @media (hover: hover) {
      .qual-card:hover { border-color: #64748b; background-color: #243144; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
    }
    .qual-card:active { transform: scale(0.97); }
    .qual-card input[type="radio"] {
      flex: 0 0 auto; appearance: none; -webkit-appearance: none;
      width: 1.125rem; height: 1.125rem; border-radius: 9999px;
      border: 2px solid #64748b; background-color: transparent;
      display: inline-block; cursor: pointer; margin: 0;
      transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease;
    }
    .qual-card input[type="radio"]:checked {
      border-color: #0ea5e9; background-color: #0ea5e9;
      box-shadow: inset 0 0 0 3px #1e293b;
    }
    .qual-card:has(input[type="radio"]:checked) {
      border-color: #0ea5e9;
      background-color: rgba(14, 165, 233, 0.10);
      box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.3);
    }
    .qual-card input[type="radio"]:focus-visible { outline: 2px solid #0ea5e9; outline-offset: 2px; }
    .qual-card-text { display: flex; flex-direction: column; line-height: 1.2; }
    .qual-card-title { font-weight: 600; font-size: 0.9rem; color: #f1f5f9; }
    .qual-card-sub { font-size: 0.75rem; color: #94a3b8; margin-top: 1px; }

    /* ========================= BENEFIT BLOCK (Hero) ========================= */
    .benefit-why { margin: 2rem auto 2.5rem; max-width: 54rem; }
    .benefit-eyebrow {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: #38bdf8; margin-bottom: 0.4rem;
    }
    .benefit-h2 {
      font-size: 1.35rem; line-height: 1.25; font-weight: 700;
      color: #f1f5f9; margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) { .benefit-h2 { font-size: 1.75rem; } }
    .benefit-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; text-align: left; }
    @media (min-width: 768px) {
      .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
    }
    .benefit-card {
      display: flex; flex-direction: column; align-items: flex-start;
      padding: 1.25rem; border-radius: 1rem;
      border: 1px solid #334155; background-color: rgba(30, 41, 59, 0.6);
      transition: border-color 180ms cubic-bezier(0.4,0,0.2,1),
                  transform 180ms cubic-bezier(0.34,1.56,0.64,1),
                  box-shadow 180ms ease;
    }
    @media (hover: hover) {
      .benefit-card:hover {
        border-color: rgba(14, 165, 233, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,.25);
      }
      .benefit-card:hover .benefit-ico { transform: scale(1.08); }
    }
    .benefit-ico {
      display: inline-flex; align-items: center; justify-content: center;
      flex: 0 0 auto; width: 2.5rem; height: 2.5rem;
      border-radius: 0.75rem; margin-bottom: 0.75rem;
      background-color: rgba(14, 165, 233, 0.12); color: #38bdf8;
      transition: transform 180ms ease;
    }
    .benefit-text { display: flex; flex-direction: column; min-width: 0; }
    .benefit-title { font-size: 1rem; font-weight: 600; color: #f8fafc; margin-bottom: 0.25rem; }
    .benefit-desc { font-size: 0.85rem; line-height: 1.55; color: #a8b3c2; }

    @media (max-width: 639px) {
      .benefit-grid { gap: 0.625rem; }
      .benefit-card { flex-direction: row; align-items: flex-start; gap: 0.75rem; padding: 0.875rem 1rem; }
      .benefit-ico { margin-bottom: 0; width: 2.125rem; height: 2.125rem; border-radius: 0.5rem; }
      .benefit-ico svg { width: 18px; height: 18px; }
      .benefit-title { margin-bottom: 0.1rem; font-size: 0.925rem; }
      .benefit-desc { font-size: 0.8rem; }
      .benefit-why { margin: 1.5rem auto 1.75rem; }
    }

    /* ========================= CARD UNIFORMS ========================= */
    .proof-card, .support-card, .step-card {
      transition: border-color 160ms cubic-bezier(0.4,0,0.2,1),
                  transform 160ms cubic-bezier(0.34,1.56,0.64,1),
                  box-shadow 160ms ease;
    }
    @media (hover: hover) {
      .proof-card:hover, .support-card:hover, .step-card:hover {
        border-color: rgba(14, 165, 233, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,.2);
      }
    }

    /* ========================= MOBILE SYSTEMS ========================= */
    .mobile-cta-stack > * { width: 100%; }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }

    @media (max-width: 639px) {
      html { scroll-padding-top: 4.5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.625rem; padding-bottom: 0.625rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 3rem; padding-bottom: 3rem; }
      .mobile-hero-title { font-size: 1.875rem; line-height: 1.1; text-wrap: balance; }
      .mobile-hero-copy { font-size: 0.95rem; line-height: 1.6; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.125rem; }
      .mobile-proof-grid { gap: 0.625rem; }
      .mobile-proof-grid .proof-card { padding: 0.875rem; border-radius: 0.75rem; }
      .mobile-stat-grid { gap: 0.75rem; }
      .mobile-steps-grid { gap: 0.75rem; }
      .qual-card { min-height: 56px; padding: 0.75rem 0.875rem; }
      .mobile-cta-stack .btn {
        white-space: normal; text-align: center; line-height: 1.3;
        padding-left: 0.875rem; padding-right: 0.875rem;
      }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.625rem 0.875rem calc(0.625rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(12px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
        transform: translateY(115%);
        visibility: hidden;
        transition: transform 280ms cubic-bezier(0.4,0,0.2,1), visibility 0s linear 280ms;
        pointer-events: none;
      }
      .mobile-sticky-cta.is-visible { transform: translateY(0); visibility: visible; transition-delay: 0s; pointer-events: auto; }
      .mobile-sticky-cta .inner {
        display: flex; align-items: center; gap: 0.625rem; max-width: 28rem; margin: 0 auto;
      }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.875rem; line-height: 1.15; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.75rem; margin-top: 0.1rem; }
      .cost-delay-badge { border-radius: 0.875rem; align-items: flex-start; text-align: left; }
      .cost-delay-badge > span:first-child { margin-top: 5px; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 0.875rem; padding-right: 0.875rem; }
    }
    @media (max-width: 639px) and (prefers-reduced-motion: reduce) {
      .mobile-sticky-cta { transition: none; }
    }

    /* ========================= HERO FLOW (A/B) ========================= */
    .hero-flow { display: flex; flex-direction: column; }
    .hero-flow > .hero-how { order: 1; }
    .hero-flow > .hero-benefits { order: 2; }
    .hero-flow.hero-control > .hero-how { order: 2; }
    .hero-flow.hero-control > .hero-benefits { order: 1; margin-bottom: 2rem; }
    .hero-flow.hero-control .hero-kicker { font-size: 1.875rem; line-height: 1.1; }
    @media (min-width: 768px) { .hero-flow.hero-control .hero-kicker { font-size: 3rem; } }

    /* ========================= RECEIPT SPARKLINES ========================= */
    .receipt-spark { display: flex; align-items: center; gap: 0.5rem; margin: 0.75rem 0 0.1rem; }
    .receipt-spark svg { display: block; flex: 0 0 auto; }
    .receipt-spark .lead { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #6ee7b7; }

    /* ========================= SCROLL REVEAL ========================= */
    @media (prefers-reduced-motion: no-preference) {
      .js .reveal { opacity: 0; transform: translateY(12px); transition: opacity 260ms cubic-bezier(0.4,0,0.2,1), transform 260ms cubic-bezier(0.4,0,0.2,1); }
      .js .reveal.in { opacity: 1; transform: none; }
      .js .reveal:nth-child(2) { transition-delay: 80ms; }
      .js .reveal:nth-child(3) { transition-delay: 160ms; }
    }

    /* ========================= FOCUS RINGS ========================= */
    a:focus-visible, summary:focus-visible, button:focus-visible, [tabindex]:focus-visible {
      outline: 2px solid #38bdf8; outline-offset: 3px; border-radius: 4px;
    }

    /* ========================= LOADING / SPINNER ========================= */
    .btn[aria-busy="true"] { cursor: progress; opacity: 0.85; }
    .btn-spinner {
      width: 1rem; height: 1rem; border: 2px solid rgba(15,23,42,0.35);
      border-top-color: #0f172a; border-radius: 50%; display: inline-block;
      animation: btn-spin 0.6s linear infinite;
      flex-shrink: 0;
    }
    @keyframes btn-spin { to { transform: rotate(360deg); } }
    @media (prefers-reduced-motion: reduce) { .btn-spinner { animation: none; } }

    /* ========================= DETAILS/ACCORDION POLISH ========================= */
    details summary::-webkit-details-marker { display: none; }
    details[open] .accordion-plus { transform: rotate(45deg); }
    .accordion-plus { transition: transform 200ms ease; }

    /* ========================= GRADIENT TEXT ========================= */
    .gradient-text {
      background: linear-gradient(135deg, #ff6b1a 0%, #ff8c4d 50%, #fbbf24 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ========================= CARD GLOW OUTLINE ========================= */
    .card-glow {
      position: relative; isolation: isolate;
    }
    .card-glow::before {
      content: ''; position: absolute; inset: -1px; z-index: -1;
      border-radius: inherit;
      background: conic-gradient(from 0deg at 50% 50%, transparent, rgba(14,165,233,0.15), transparent, rgba(255,107,26,0.15), transparent);
      opacity: 0; transition: opacity 400ms ease;
    }
    .card-glow:hover::before { opacity: 1; }

    /* ========================= SKELETON LOADING ========================= */
    .skeleton {
      background: linear-gradient(90deg, #1e293b 25%, #243144 50%, #1e293b 75%);
      background-size: 200% 100%;
      animation: skeleton-shimmer 1.5s ease-in-out infinite;
      border-radius: 0.5rem;
    }
    @keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    @media (prefers-reduced-motion: reduce) { .skeleton { animation: none; background: #1e293b; } }

    /* ========================= CTA HOVER MAGIC ========================= */
    .btn-cta-glow {
      position: relative; overflow: hidden;
    }
    .btn-cta-glow::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.15), transparent 60%);
      opacity: 0; transition: opacity 300ms ease; pointer-events: none;
    }
    .btn-cta-glow:hover::after { opacity: 1; }

    /* ========================= STEP NUMBER BADGE (How it works) ========================= */
    .step-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 3rem; height: 3rem; border-radius: 9999px;
      background: linear-gradient(135deg, #0ea5e9, #0284c7);
      color: #fff; font-size: 1.125rem; font-weight: 700;
      margin-bottom: 0.75rem;
      box-shadow: 0 4px 12px rgba(14,165,233,.3);
      transition: transform 200ms cubic-bezier(0.34,1.56,0.64,1);
    }
    .step-card:hover .step-badge { transform: scale(1.1); }
    /* ========================= EXIT-INTENT POPUP ========================= */
    .exit-popup {
      position: fixed; inset: 0; z-index: 100;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 300ms ease, visibility 0s linear 300ms;
    }
    .exit-popup.is-open {
      opacity: 1; visibility: visible; pointer-events: auto;
      transition: opacity 300ms ease, visibility 0s linear 0s;
    }
    .exit-popup-backdrop {
      position: absolute; inset: 0;
      background: rgba(2,6,23,.82); backdrop-filter: blur(6px);
    }
    .exit-popup-panel {
      position: relative; z-index: 1;
      background: linear-gradient(160deg, #0f172a, #1e293b);
      border: 1px solid #334155; border-radius: 20px;
      padding: 2.5rem 2rem; max-width: 460px; width: calc(100% - 2rem);
      text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,.5);
      animation: exit-popup-in 350ms cubic-bezier(0.34,1.56,0.64,1);
    }
    @keyframes exit-popup-in {
      from { opacity: 0; transform: translateY(24px) scale(.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @media (prefers-reduced-motion: reduce) {
      .exit-popup-panel { animation: none; }
    }
    .exit-popup-close {
      position: absolute; top: 12px; right: 16px;
      background: none; border: none; color: #64748b;
      font-size: 1.5rem; cursor: pointer; line-height: 1;
      padding: 4px 8px; border-radius: 6px;
      transition: color 150ms ease;
    }
    .exit-popup-close:hover { color: #f1f5f9; }
    .exit-popup-eyebrow {
      font-size: .7rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: #f59e0b; margin-bottom: .5rem;
    }
    .exit-popup-headline {
      font-size: 1.35rem; font-weight: 800; color: #f8fafc;
      line-height: 1.25; margin-bottom: .5rem;
    }
    .exit-popup-sub {
      font-size: .9rem; color: #94a3b8; line-height: 1.5;
      margin-bottom: 1.25rem;
    }

:root{--bg:#0a0a0a;--card:#111;--accent:#00d4aa;--red:#ff4444;--amber:#f59e0b;--text:#e5e5e5;--muted:#888}
    *{margin:0;padding:0;box-sizing:border-box}
    body{font-family:system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
    .container{max-width:720px;margin:0 auto;padding:2rem 1.5rem}
    .badge{display:inline-block;background:var(--accent);color:#000;padding:4px 14px;border-radius:20px;font-size:0.8rem;font-weight:700;letter-spacing:0.5px;margin-bottom:1rem}
    h1{font-size:2.2rem;font-weight:800;line-height:1.2;margin-bottom:0.5rem;color:#fff}
    .subtitle{color:var(--muted);font-size:1rem;margin-bottom:2rem}
    .attribution{font-size:0.9rem;color:var(--muted);margin-bottom:2.5rem}
    .attribution strong{color:var(--accent)}
    .secret-card{background:var(--card);border-radius:12px;padding:1.8rem;margin-bottom:2rem;border-left:4px solid var(--accent)}
    .secret-card.red{border-left-color:var(--red)}
    .secret-card.amber{border-left-color:var(--amber)}
    .secret-card h2{font-size:1.3rem;color:#fff;margin-bottom:0.3rem}
    .secret-card .eyebrow{color:var(--accent);font-size:0.85rem;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:0.5rem}
    .secret-card.red .eyebrow{color:var(--red)}
    .secret-card.amber .eyebrow{color:var(--amber)}
    .secret-card blockquote{font-style:italic;border-left:3px solid var(--accent);padding-left:1rem;margin:1rem 0;color:var(--muted)}
    .secret-card.red blockquote{border-left-color:var(--red)}
    .secret-card.amber blockquote{border-left-color:var(--amber)}
    .hook-test{background:#1a1a1a;padding:1rem;border-radius:8px;margin:1rem 0;font-size:0.9rem}
    .hook-test strong{color:var(--accent)}
    .value-stack{background:var(--card);border-radius:12px;padding:1.8rem;margin:2rem 0}
    .value-stack h2{color:#fff;margin-bottom:1rem}
    .stack-item{display:flex;justify-content:space-between;padding:0.5rem 0;border-bottom:1px solid #222}
    .stack-item:last-child{border-bottom:none}
    .stack-price{color:var(--accent);font-weight:600}
    .total{display:flex;justify-content:space-between;padding:1rem 0;font-size:1.2rem;font-weight:700;color:#fff}
    .total del{color:var(--red);margin-right:0.5rem}
    .total .final{color:var(--accent);font-size:1.8rem}
    .guarantee{background:#111;border:1px solid var(--accent);border-radius:8px;padding:1rem;text-align:center;margin:1.5rem 0}
    .guarantee strong{color:var(--accent)}
    .cta-btn{display:block;background:var(--accent);color:#000;text-align:center;padding:1rem 2rem;border-radius:8px;font-size:1.1rem;font-weight:700;text-decoration:none;margin:1.5rem 0}
    .cta-btn:hover{background:#00e6b8}
    .rally{text-align:center;padding:2rem 0;color:var(--muted)}
    .rally strong{color:#fff;font-size:1.1rem}
    .stats{display:flex;justify-content:center;gap:2rem;margin:1.5rem 0;flex-wrap:wrap}
    .stat{text-align:center}
    .stat-num{font-size:1.8rem;font-weight:800;color:var(--accent)}
    .stat-label{font-size:0.8rem;color:var(--muted)}
    @media(max-width:480px){h1{font-size:1.6rem}.container{padding:1.5rem 1rem}}

body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;max-width:720px;margin:0 auto;padding:2rem 1.5rem;line-height:1.6;color:#1a1a2e}
h1{font-size:1.8rem;margin-bottom:0.5rem}
h2{font-size:1.3rem;margin-top:2rem;border-bottom:2px solid #e0e0e0;padding-bottom:0.3rem}
code,pre{font-family:'SF Mono',Fira Code,monospace;font-size:0.9rem}
pre{background:#f5f5f5;padding:1rem;border-radius:8px;overflow-x-auto;border:1px solid #e0e0e0}
a{color:#0066cc}
.badge{display:inline-block;background:#0066cc;color:white;padding:0.25rem 0.75rem;border-radius:999px;font-size:0.8rem;font-weight:600;margin-bottom:1rem}
ul{padding-left:1.5rem} li{margin-bottom:0.5rem}

* { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: transparent;
    color: #e2e8f0;
    overflow: hidden;
  }
  .pin-widget {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 100%;
  }
  .pin-widget h4 {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .pin-list { display: flex; flex-direction: column; gap: 0.5rem; }
  .pin-item {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border-left: 3px solid;
    text-decoration: none;
    transition: background 0.2s;
  }
  .pin-item:hover { background: rgba(255,255,255,0.08); }
  .pin-name { font-weight: 700; color: #e2e8f0; font-size: 0.9rem; }
  .pin-tagline { color: #94a3b8; font-size: 0.8rem; }
  .pin-category { color: #64748b; font-size: 0.7rem; }
  .pin-brand {
    text-align: center;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.7rem;
    color: #475569;
  }
  .pin-brand a { color: #7c3aed; text-decoration: none; }

* { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    min-height: 100vh;
    line-height: 1.6;
  }
  .container { max-width: 900px; margin: 0 auto; padding: 2rem 1.5rem; }
  header {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
  }
  header h1 { 
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }
  header p { color: #94a3b8; font-size: 1.15rem; }
  .intro {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .intro strong { color: #7c3aed; }
  .network-grid { display: flex; flex-direction: column; gap: 1.25rem; }
  .network-card {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .network-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.06);
  }
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .card-header h3 { font-size: 1.3rem; font-weight: 700; }
  .card-header h3 a {
    color: #7c3aed;
    text-decoration: none;
  }
  .card-header h3 a:hover { text-decoration: underline; }
  .category-badge {
    background: rgba(255,255,255,0.1);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
    white-space: nowrap;
  }
  .tagline { color: #cbd5e1; font-weight: 600; margin-bottom: 0.35rem; }
  .description { color: #94a3b8; font-size: 0.95rem; margin-bottom: 0.75rem; }
  .card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
  }
  .visit-btn {
    display: inline-block;
    background: #7c3aed;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
  }
  .visit-btn:hover { filter: brightness(1.2); }
  .widget-promo {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.15);
    text-align: center;
  }
  .widget-promo h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .widget-promo code {
    display: block;
    background: #0f172a;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #a5f3fc;
    overflow-x: auto;
    margin: 0.75rem 0;
    text-align: left;
  }
  footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
  }

/* Pricing-page-only styles — kept inline because styles.css is prebuilt
       (no working Tailwind build step) and these classes don't exist there. */
    html { scroll-padding-top: 5.5rem; }
    @media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
    body { -webkit-font-smoothing: antialiased; }

    .tier-card {
      position: relative;
      border: 1px solid #334155;               /* slate-700 */
      border-radius: 1rem;
      background-color: rgba(30, 41, 59, 0.6); /* dark-800/60 */
      padding: 1.5rem;
      scroll-margin-top: 5.5rem;
      transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }
    .tier-card:hover { border-color: rgba(14, 165, 233, 0.5); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
    @media (min-width: 768px) { .tier-card { padding: 2rem; } }
    .tier-card.tier-featured { border-color: rgba(14, 165, 233, 0.55); box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.25); }

    .tier-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #38bdf8; margin-bottom: 0.35rem; }
    .tier-price { font-size: 2rem; font-weight: 800; color: #f8fafc; line-height: 1.1; }
    .tier-price small { font-size: 0.95rem; font-weight: 600; color: #94a3b8; }
    .tier-badge {
      position: absolute; top: -0.8rem; left: 1.5rem;
      background: #0ea5e9; color: #0f172a; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.25rem 0.6rem; border-radius: 9999px;
    }
    .tier-list { list-style: none; padding: 0; margin: 1rem 0 1.25rem; }
    .tier-list li { display: flex; gap: 0.55rem; align-items: flex-start; color: #cbd5e1; font-size: 0.9rem; line-height: 1.55; padding: 0.22rem 0; }
    .tier-list li::before { content: '✓'; color: #34d399; font-weight: 700; flex: 0 0 auto; }
    .tier-annual { font-size: 0.85rem; color: #94a3b8; margin-top: 0.75rem; }
    .tier-annual a { color: #38bdf8; text-decoration: underline; }
    .tier-annual a:hover { color: #7dd3fc; }
    .tier-note { font-size: 0.8rem; color: #64748b; margin-top: 0.75rem; }
    .mobile-sticky-cta { display: none; }

    @media (max-width: 639px) {
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 3rem; padding-bottom: 3rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .tier-card { padding: 1.25rem; }
      .tier-cta-stack .btn { display: flex; width: 100%; white-space: normal; text-align: center; line-height: 1.35; }
      #dashboard { order: -1; }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(12px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
        transform: translateY(115%);
        transition: transform 280ms cubic-bezier(0.4,0,0.2,1);
        pointer-events: none;
      }
      .mobile-sticky-cta.is-visible { transform: translateY(0); pointer-events: auto; }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }
    @media (max-width: 639px) and (prefers-reduced-motion: reduce) {
      .mobile-sticky-cta { transition: none; }
    }

.related-tools {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    font-family: system-ui, sans-serif;
}
.related-tools h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin: 0 0 1rem;
}
.related-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: background 0.15s;
}
.related-card:hover { background: #f3f4f6; }
.related-card strong {
    display: block;
    font-size: 0.875rem;
    color: #111827;
}
.related-card span {
    font-size: 0.75rem;
    color: #6b7280;
}
.related-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
@media (prefers-color-scheme: dark) {
    .related-tools { background: #1f2937; }
    .related-card:hover { background: #374151; }
    .related-card strong { color: #f9fafb; }
    .related-card span { color: #9ca3af; }
}

.mobile-cta-stack > * { width: 100%; }
    .mobile-card, .mobile-step-card { transition: border-color 120ms ease, transform 120ms ease; }
    .mobile-card:hover, .mobile-step-card:hover { border-color: rgba(14, 165, 233, 0.5); }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 4rem; padding-bottom: 4rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-hero-copy { font-size: 1rem; line-height: 1.65; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-stat-grid { gap: 1rem; }
      .mobile-grid-gap { gap: 1rem; }
      .mobile-cta-stack .btn,
      .mobile-form-stack .btn {
        white-space: normal; text-align: center; line-height: 1.35;
        padding-left: 1rem; padding-right: 1rem;
      }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(12px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
        transform: translateY(115%);
        transition: transform 280ms cubic-bezier(0.4,0,0.2,1);
        pointer-events: none;
      }
      .mobile-sticky-cta.is-visible { transform: translateY(0); pointer-events: auto; }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }
    @media (max-width: 639px) and (prefers-reduced-motion: reduce) {
      .mobile-sticky-cta { transition: none; }
    }

.report-card { transition: border-color 0.2s; }
    .report-card:hover { border-color: rgb(14 165 233 / 0.5); }
    .rank-badge {
      width: 2.5rem; height: 2.5rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 9999px; font-weight: 800; font-size: 1rem;
      flex-shrink: 0;
    }
    .metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; text-align: center; }
    @media (min-width: 640px) { .metric-grid { grid-template-columns: repeat(4, 1fr); } }

:root{--bg:#0f172a;--card:#1e293b;--border:#334155;--text:#e2e8f0;--muted:#94a3b8;--green:#22c55e;--amber:#f59e0b;--red:#ef4444;--accent:#6366f1}
  *{box-sizing:border-box;margin:0;padding:0}
  body{font-family:Inter,system-ui,sans-serif;background:var(--bg);color:var(--text);line-height:1.6;max-width:1100px;margin:0 auto;padding:2rem 1.5rem}
  h1{font-size:1.6rem;font-weight:800;margin-bottom:.5rem}
  h2{font-size:1.1rem;font-weight:700;margin:2rem 0 .75rem;color:#f1f5f9}
  .summary{display:flex;gap:1rem;margin:1.5rem 0;flex-wrap:wrap}
  .metric{flex:1;min-width:160px;background:var(--card);border:1px solid var(--border);border-radius:10px;padding:1rem;text-align:center}
  .metric .num{font-size:1.8rem;font-weight:800;color:var(--accent)}
  .metric .label{font-size:.8rem;color:var(--muted);margin-top:.25rem}
  table{width:100%;border-collapse:collapse;margin:1rem 0;font-size:.85rem}
  th{text-align:left;padding:.6rem .75rem;border-bottom:2px solid var(--border);color:var(--muted);font-size:.75rem;text-transform:uppercase}
  td{padding:.6rem .75rem;border-bottom:1px solid var(--border)}
  .badge{padding:2px 8px;border-radius:4px;font-size:.7rem;font-weight:700}
  .badge-live{background:rgba(34,197,94,.15);color:var(--green)}
  .badge-warn{background:rgba(245,158,11,.15);color:var(--amber)}
  .num-cell{text-align:right;font-variant-numeric:tabular-nums}
  footer{text-align:center;color:#475569;font-size:.75rem;margin-top:3rem;padding-top:1rem;border-top:1px solid var(--border)}
  .auto{font-size:.7rem;color:#475569;margin-top:.5rem}

/* ====================================================================
       /thanks — world-class UI layer (presentation only).
       Every word, id, link, data-attribute and inline handler is unchanged.
       The site ships a pre-built, purged styles.css with no build step on
       deploy, so new Tailwind utilities can't compile — all new styling is
       self-contained here, the same pattern the page already used.
       ==================================================================== */
    :root {
      --signal-500: #ff6b1a;
      --signal-400: #ff8c4d;
      --brand-500:  #0ea5e9;
      --brand-400:  #38bdf8;
      --emerald:    #10b981;
      --focus:      #ff8c4d;
    }

    /* ---- Atmosphere: layered backdrop instead of one flat fill ---- */
    body.bg-dark-900 {
      background-color: #0b1020;
      background-image:
        radial-gradient(58rem 40rem at 50% -16rem, rgba(255, 107, 26, 0.11), transparent 62%),
        radial-gradient(48rem 38rem at 100% 4%, rgba(14, 165, 233, 0.08), transparent 56%),
        radial-gradient(52rem 44rem at 0% 102%, rgba(14, 165, 233, 0.07), transparent 56%),
        linear-gradient(180deg, #0b1020 0%, #0c1326 100%);
      background-attachment: fixed;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    ::selection { background: rgba(255, 107, 26, 0.30); color: #fff; }

    /* ---- Typography: stop awkward wraps, tighten display type ---- */
    h1, h2 { text-wrap: balance; }
    p { text-wrap: pretty; }
    #hero-title { letter-spacing: -0.03em; }
    h2 { letter-spacing: -0.02em; }

    /* ---- Header: hairline depth + readable blur ---- */
    header { box-shadow: 0 1px 0 rgba(148, 163, 184, 0.06); }

    /* ---- Keyboard accessibility: visible focus on every link ---- */
    a:focus-visible {
      outline: 2px solid var(--focus); outline-offset: 3px;
      border-radius: 6px;
    }

    /* ---- Hero eyebrow → status pill with a live dot ---- */
    .eyebrow-pill {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.32rem 0.72rem; border-radius: 999px;
      background: rgba(14, 165, 233, 0.10);
      border: 1px solid rgba(14, 165, 233, 0.32);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }
    .eyebrow-pill::before {
      content: ""; width: 0.45rem; height: 0.45rem; border-radius: 999px;
      background: var(--brand-400);
      box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
    }

    /* ---- Card surfaces: subtle top highlight + real elevation ---- */
    .mobile-card, .support-card {
      transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    }
    .mobile-card {
      background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px -38px rgba(0, 0, 0, 0.85);
    }
    @media (hover: hover) {
      .mobile-card:hover {
        transform: translateY(-3px);
        border-color: rgba(14, 165, 233, 0.5);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 32px 72px -34px rgba(0, 0, 0, 0.9);
      }
    }

    /* ---- The OTO card: the page's centerpiece ---- */
    .support-card {
      position: relative; isolation: isolate;
      border-color: rgba(255, 107, 26, 0.42) !important;
      background:
        radial-gradient(40rem 22rem at 50% -3rem, rgba(255, 107, 26, 0.12), transparent 70%),
        linear-gradient(180deg, rgba(30, 41, 59, 0.55), rgba(13, 19, 35, 0.92)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 44px 100px -54px rgba(255, 107, 26, 0.45),
        0 34px 90px -46px rgba(0, 0, 0, 0.92);
    }
    .support-card img { box-shadow: 0 12px 34px -10px rgba(255, 107, 26, 0.5); }

    /* .btn-secondary is now defined globally in input.css (compiled into styles.css) —
       inline def removed to keep a single source of truth. */

    /* ---- "What to do now" → quiet timeline rail ---- */
    .step-list > div { position: relative; padding-left: 1.15rem; }
    .step-list > div::before {
      content: ""; position: absolute; left: 0; top: 0.2rem; bottom: 0.2rem;
      width: 2px; border-radius: 2px;
      background: linear-gradient(180deg, var(--brand-500), rgba(14, 165, 233, 0.12));
    }

    /* ---- Value stack: circular check chips + row rhythm ---- */
    .value-stack > li { padding: 0.1rem 0; }
    .value-stack > li > span:first-child {
      flex: none; display: inline-flex; align-items: center; justify-content: center;
      width: 1.55rem; height: 1.55rem; margin-top: 0.05rem;
      border-radius: 999px; font-size: 0.82rem; line-height: 1;
      color: var(--emerald);
      background: rgba(16, 185, 129, 0.14);
      box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.4);
    }

    /* ---- Comparison + guarantee callouts ---- */
    .compare-box {
      background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92)) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    .guarantee-box {
      background: rgba(16, 185, 129, 0.09) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px -46px rgba(16, 185, 129, 0.7);
    }

    /* ---- Price: let the rate carry the glow ---- */
    .price-amount { text-shadow: 0 8px 32px rgba(255, 107, 26, 0.28); }

    /* ---- Tasteful entrance (base stays visible if motion is off) ---- */
    @keyframes thx-reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
    .reveal   { animation: thx-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
    .reveal-2 { animation-delay: 0.09s; }
    .reveal-3 { animation-delay: 0.18s; }

    /* ====================================================================
       Preserved mobile layout rules (+ a few refinements)
       ==================================================================== */
    .mobile-cta-stack > * { width: 100%; }
    .mobile-sticky-cta { display: none; }
    @media (min-width: 640px) { html { scroll-behavior: smooth; } .mobile-cta-stack > * { width: auto; } }
    @media (max-width: 639px) {
      html { scroll-padding-top: 5rem; }
      body { padding-bottom: 6rem; }
      .mobile-compact-header { padding-top: 0.75rem; padding-bottom: 0.75rem; }
      .mobile-hero-wrap { padding-left: 1rem; padding-right: 1rem; padding-top: 4rem; padding-bottom: 4rem; }
      .mobile-hero-title { font-size: 2rem; line-height: 1.1; }
      .mobile-hero-copy { font-size: 1rem; line-height: 1.65; }
      .mobile-main-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-section-pad { padding-left: 1rem; padding-right: 1rem; }
      .mobile-card-pad { padding: 1.25rem; }
      .mobile-grid-gap { gap: 1rem; }
      .mobile-cta-stack .btn,
      .btn-xl.w-full {
        white-space: normal; text-align: center; line-height: 1.35;
        padding-left: 1rem; padding-right: 1rem;
      }
      .mobile-sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(2, 6, 23, 0.94); backdrop-filter: blur(14px);
        border-top: 1px solid rgba(71, 85, 105, 0.7);
        box-shadow: 0 -18px 40px -28px rgba(0, 0, 0, 0.9);
      }
      .mobile-sticky-cta::before {
        content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 107, 26, 0.5), transparent);
      }
      .mobile-sticky-cta .inner { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
      .mobile-sticky-cta .meta { flex: 1; min-width: 0; }
      .mobile-sticky-cta .meta strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.1; }
      .mobile-sticky-cta .meta span { display: block; color: #94a3b8; font-size: 0.72rem; margin-top: 0.1rem; }
      .mobile-sticky-cta .btn { white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }
    }

    /* ---- Respect reduced-motion ---- */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal, .reveal-2, .reveal-3 { animation: none !important; }
      .mobile-card, .support-card { transition: none !important; }
    }