  @import url('/fonts/fonts.css');

:root {
    /* ===== BRAND COLOURS (locked — do not change) ===== */
    --geo: #22D3EE; /* GEO / AI Search */
    --seo: #4ADE80; /* SEO */
    --cro: #A78BFA; /* CRO */

    /* ===== LIGHT SURFACES (homepage, /savi, /methodology, etc.) ===== */
    --paper: #FCFDFF; /* page background */
    --paper-2: #F4F6FA; /* card / section surfaces on light */
    --ink: #0F172A; /* primary text on light */
    --ink-2: #0f1729;
    --ink-3: #1a2440;
    --line: rgba(6, 12, 25, 0.08);
    --line-strong: rgba(6, 12, 25, 0.16);
    --muted: #4a5366;
    --muted-2: #6b7488;

    /* ===== DARK SURFACES (product UI: score tiles, demo block) ===== */
    --navy: #060b18;
    --navy-mid: #0a1020;
    --navy-card: #0e1629;
    --navy-border: rgba(255,255,255,0.08);

    /* ===== UTILITY ===== */
    --cta: #2F80FF; /* primary CTA button blue */
    --warning: #F59E0B; /* warnings / amber alerts (non-brand) */
    --red: #ef4444;

    /* ===== DEPRECATED — kept as aliases so legacy code does not break ===== */
    /* New code MUST use the canonical names above. */
    --teal: var(--geo);
    --cyan: var(--geo);
    --blue: var(--cta);
    --blue-dark: #1e5fcc;
    --blue-glow: rgba(47, 128, 255, 0.15);
    --teal-dark: #14b8a6;
    --teal-glow: rgba(54, 230, 208, 0.18);
    --paper-3: #e8eef9;
    --green: var(--seo);

    /* Spacing scale - strict 8px base */
    --s-1: 8px;
    --s-2: 16px;
    --s-3: 24px;
    --s-4: 32px;
    --s-5: 48px;
    --s-6: 64px;
    --s-7: 96px;
    --s-8: 128px;

    /* Elevation tiers - three only */
    --elev-1: 0 1px 2px rgba(6,12,25,0.04), 0 4px 16px rgba(6,12,25,0.06);
    --elev-2: 0 4px 12px rgba(6,12,25,0.08), 0 12px 32px rgba(6,12,25,0.08);
    --elev-3: 0 8px 24px rgba(6,12,25,0.12), 0 24px 64px rgba(6,12,25,0.16);
    --elev-glow-blue: 0 4px 16px rgba(47,128,255,0.25), 0 12px 32px rgba(47,128,255,0.15);
    --elev-glow-teal: 0 4px 16px rgba(54,230,208,0.3), 0 12px 32px rgba(54,230,208,0.18);

    /* Motion */
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  @media (max-width: 767px) { body { padding-bottom: 80px; } }
  img, svg { display: block; max-width: 100%; }

  /* Skip link for keyboard users */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    background: var(--ink);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    z-index: 999;
    font-weight: 600;
    font-size: 14px;
  }
  .skip-link:focus { top: 8px; }

  /* Honour reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .marquee-track { animation: none !important; }
  }

  /* Focus visible - strong, brand-coloured */
  :focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Typography utilities */
  .serif { font-family: 'Instrument Serif', 'Times New Roman', serif; font-weight: 400; letter-spacing: -0.01em; }
  .italic { font-style: italic; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
  @media (min-width: 768px) { .container { padding: 0 32px; } }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  /* Section structure - locked spacing */
  .section { padding: 80px 0; position: relative; }
  @media (min-width: 768px) { .section { padding: var(--s-7) 0; } }
  .section-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: var(--s-2);
    display: inline-flex;
    align-items: center;
    gap: var(--s-1);
  }
  .section-tag::before {
    content: "";
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    border-radius: 1px;
    display: inline-block;
  }
  .section-tag::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid var(--blue);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-left: -7px;
    margin-right: 4px;
  }

  /* Headings */
  .nb { white-space: nowrap; }
  .h1 {
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--ink);
    text-wrap: balance;
  }
  @media (min-width: 1280px) {
    .h1 { font-size: 68px; }
  }
  .h1 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: -0.01em;
  }
  #audit-url, [id="audit-url"] {
    scroll-margin-top: 80px;
  }

  .hero-h1 .geo-word { color: var(--geo); font-style: italic; }
  .hero-h1 .underline-green { color: inherit; text-decoration: underline; text-decoration-color: var(--seo); text-decoration-thickness: 3px; text-underline-offset: 4px; }
  .hero-h1 .cro-word { color: var(--cro); font-style: normal; }
  .h1 .underline-teal {
    position: relative;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
  }
  .h1 .underline-teal::after {
    content: "";
    position: absolute;
    left: -2%; right: -2%; bottom: 0.04em;
    height: 0.22em;
    background: var(--teal);
    z-index: -1;
    transform: skewX(-4deg);
    border-radius: 2px;
  }
  .h2 {
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 800;
    text-wrap: balance;
  }
  .h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: -0.01em;
  }
  .h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .lead { font-size: 18px; line-height: 1.5; color: var(--muted); max-width: 640px; }
  @media (min-width: 768px) { .lead { font-size: 20px; } }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    line-height: 1;
  }
  .btn-primary {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: var(--elev-glow-blue);
  }
  .btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--elev-3);
  }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
  }
  .btn-ghost:hover {
    border-color: var(--ink);
    background: var(--paper-2);
  }
  .btn-dark {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
  }
  .btn-dark:hover {
    background: var(--ink-2);
    transform: translateY(-1px);
  }
  .btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* ============ NAV ============ */
  /* ============ NAV ============ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(252, 253, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  @media (min-width: 768px) { .nav-inner { padding: 18px 32px; } }
  .nav-logo {
    height: 28px;
    flex-shrink: 0;
  }
  .nav-logo img, .nav-logo svg { height: 32px; width: auto; }
  .nav-links {
    display: none;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
  }
  @media (min-width: 1024px) { .nav-links { display: flex; } }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.15s;
    cursor: pointer;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-actions { display: flex; gap: 12px; align-items: center; }
  @media (max-width: 1023px) {
    .nav-actions { gap: 0; }
    .nav-actions > :not(.nav-hamburger) { display: none; }
  }
  @media (min-width: 1024px) { .nav-actions { display: flex; } }
  .nav-cta-secondary {
    display: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-cta-secondary:hover { color: var(--blue); }
  @media (min-width: 1024px) { .nav-cta-secondary { display: inline; } }
  .nav-cta-button {
    display: none;
    padding: 9px 16px;
    font-size: 13px;
  }
  @media (min-width: 1024px) { .nav-cta-button { display: inline-flex; } }

  /* Hamburger button */
  .nav-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 4px;
    color: var(--ink);
    border-radius: 6px;
    transition: background 0.15s;
  }
  .nav-hamburger:hover { background: var(--paper-2); }
  .nav-hamburger:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
  @media (min-width: 1024px) { .nav-hamburger { display: none; } }

  /* Hamburger icon animation */
  .hamburger-icon { display: block; }
  .hamburger-line-top,
  .hamburger-line-mid,
  .hamburger-line-bot {
    transform-origin: center;
    transition: transform 0.2s ease-out, opacity 0.15s ease-out;
  }
  .nav-hamburger[aria-expanded="true"] .hamburger-line-top {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-hamburger[aria-expanded="true"] .hamburger-line-mid {
    opacity: 0;
  }
  .nav-hamburger[aria-expanded="true"] .hamburger-line-bot {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Mobile menu panel */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(252, 253, 255, 0.98);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .mobile-menu.open {
    display: block;
    animation: mobileMenuSlideDown 0.2s ease-out;
  }
  @keyframes mobileMenuSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @media (min-width: 1024px) { .mobile-menu { display: none !important; } }
  .mobile-menu-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu-link {
    color: var(--ink);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    transition: color 0.15s;
  }
  .mobile-menu-link:hover { color: var(--blue); }
  .mobile-menu-link:last-of-type { border-bottom: none; }
  .mobile-menu-cta {
    margin-top: 12px;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
  }

  /* Prevent body scroll when mobile menu is open */
  body.mobile-menu-open { overflow: hidden; }

  /* ============ HERO ============ */
  .hero-wrap {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .hero-wrap::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(circle at center, var(--blue-glow) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-wrap::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle at center, var(--teal-glow) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(6,12,25,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(6,12,25,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    mask: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }

  .hero {
    position: relative;
    z-index: 2;
    padding: 32px 0 48px;
  }
  @media (min-width: 768px) { .hero { padding: 48px 0 64px; } }
  @media (min-width: 1280px) { .hero { padding: 56px 0 72px; } }
  .hero-grid > div { min-width: 0; }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: var(--s-6); } }

  .hero-pills {
    display: flex;
    gap: 8px;
    margin-bottom: var(--s-2);
    flex-wrap: wrap;
  }
  .hero-pill {
    background: white;
    border: 1px solid var(--line-strong);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--elev-1);
  }
  .hero-pill .pill-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.6s infinite;
    flex-shrink: 0;
  }
  .hero-pill.brand .pill-dot { background: var(--blue); box-shadow: 0 0 0 4px rgba(47,128,255,0.2); }
  .hero-pill strong { font-weight: 700; color: var(--blue); font-feature-settings: 'tnum'; }

  .hero-h1 { margin-bottom: var(--s-2); }
  .hero-sub { margin-bottom: var(--s-3); max-width: 560px; }
  .hero-sub strong { color: var(--ink); font-weight: 600; }

  /* Hero audit form */
  .audit-form {
    background: white;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: var(--s-2);
    box-shadow: var(--elev-2);
    max-width: 520px;
    transition: box-shadow 0.25s var(--ease-out);
  }
  .audit-form:focus-within {
    box-shadow: var(--elev-glow-blue);
  }
  .audit-form-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
  }
  .audit-form-row {
    display: flex;
    gap: 8px;
  }
  @media (max-width: 480px) {
    .audit-form-row {
      flex-direction: column;
    }
    .audit-form-cta {
      justify-content: center;
    }
  }
  .audit-input {
    flex: 1;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
  }
  .audit-input:focus-within {
    background: white;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
  }
  .audit-prefix {
    color: var(--muted-2);
    font-size: 14px;
    font-weight: 500;
    user-select: none;
  }
  .audit-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    min-width: 0;
  }
  .audit-input input::placeholder { color: var(--muted-2); }
  .audit-form-cta {
    background: var(--blue);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--elev-glow-blue);
    font-family: inherit;
  }
  .audit-form-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--elev-3);
  }
  .audit-form-cta:active { transform: translateY(0); }
  .audit-form-cta:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }

  .hero-secondary-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
  }
  .hero-secondary-cta a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid var(--blue);
    padding-bottom: 1px;
    cursor: pointer;
  }

  .hero-microproof {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--muted);
    margin-top: 24px;
  }
  .hero-microproof span { display: inline-flex; align-items: center; gap: 6px; }
  .hero-microproof .check {
    width: 14px; height: 14px;
    background: var(--green);
    border-radius: 50%;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    flex-shrink: 0;
  }

  /* Hero SEO H2 - carries keywords without competing visually */
  .hero-seo-h2 {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    max-width: 520px;
    letter-spacing: 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
  }

  /* Hero demo card - clearly a screenshot showcase */
  .demo-card {
    background: var(--ink);
    color: white;
    border-radius: 16px;
    border: 1px solid var(--ink-3);
    overflow: hidden;
    position: relative;
    box-shadow: var(--elev-3);
    /* Subtle non-interactive cue */
    pointer-events: none;
    user-select: none;
  }
  .demo-card * { pointer-events: none; }
  .demo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(47,128,255,0.15) 0%, transparent 50%),
      radial-gradient(circle at bottom left, rgba(54,230,208,0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .demo-chrome {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
  }
  .demo-dots { display: flex; gap: 5px; }
  .demo-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
  }
  .demo-url {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 5px 10px;
    font-family: 'Inter', monospace;
    font-size: 11px;
    color: var(--muted-2);
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .demo-url::before { content: "🔒 "; opacity: 0.5; font-size: 9px; }
  .demo-screenshot-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 10px;
    letter-spacing: 0.08em;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .demo-screenshot-tag::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
  }
  .demo-body { padding: 24px; position: relative; z-index: 2; }
  @media (min-width: 480px) { .demo-body { padding: 28px; } }

  /* 3-score row at top */
  .demo-scores-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .demo-score-tile {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px 8px;
    text-align: center;
  }
  .demo-score-num {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .demo-score-num.teal { color: var(--teal); }
  .demo-score-num.blue { color: var(--blue); }
  .demo-score-num.warning { color: var(--warning); }
  .demo-score-num.geo-color { color: var(--geo); }
  .demo-score-num.seo-color { color: var(--seo); }
  .demo-score-num.cro-color { color: var(--cro); }
  .demo-score-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .demo-score-tier {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .demo-score-tier.teal { color: var(--teal); }
  .demo-score-tier.blue { color: var(--blue); }
  .demo-score-tier.warning { color: var(--warning); }
  .demo-score-tier.geo-color { color: var(--geo); }
  .demo-score-tier.seo-color { color: var(--seo); }
  .demo-score-tier.cro-color { color: var(--cro); }

  .demo-benchmark-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(54,230,208,0.1), rgba(47,128,255,0.05));
    border: 1px solid rgba(54,230,208,0.18);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .demo-benchmark-strip span:first-child { color: var(--teal); font-weight: 700; }

  /* Free tag */
  .demo-cat-free-tag {
    background: rgba(54,230,208,0.18);
    color: var(--teal);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  /* Findings list */
  .demo-findings {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .demo-findings-title {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .demo-finding {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
  }
  .demo-finding:last-child { border-bottom: none; }
  .demo-finding-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
  }
  .demo-finding-dot.red { background: var(--red); box-shadow: 0 0 8px rgba(239,68,68,0.6); }
  .demo-finding-dot.warning { background: var(--warning); box-shadow: 0 0 8px rgba(245,158,11,0.6); }
  .demo-finding-text {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
  }
  .demo-finding-text strong { color: white; font-weight: 700; }

  .demo-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    background: rgba(255,255,255,0.04);
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .demo-tab {
    padding: 10px 4px;
    text-align: center;
    border-radius: 6px;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    position: relative;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .demo-tab .lock {
    position: absolute;
    top: 3px; right: 4px;
    font-size: 8px;
    opacity: 0.5;
  }
  .demo-tab .icon {
    display: block;
    margin: 0 auto 4px;
    width: 16px; height: 16px;
    color: rgba(255,255,255,0.4);
  }
  .demo-tab.active {
    background: linear-gradient(135deg, rgba(54,230,208,0.18), rgba(54,230,208,0.08));
    color: var(--teal);
    border: 1px solid rgba(54,230,208,0.25);
  }
  .demo-tab.active .icon-score-circle {
    width: 28px; height: 28px;
    background: var(--teal);
    border-radius: 50%;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin: 0 auto 4px;
  }

  .demo-tier-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-weight: 600;
  }
  .demo-tier-tag .tier-check {
    color: var(--teal);
    font-weight: 800;
  }
  .demo-headline {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
  }
  .demo-headline .strong-text { color: var(--teal); font-style: italic; }

  .demo-score-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 8px;
  }
  .demo-ring { width: 110px; height: 110px; position: relative; }
  .demo-ring svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);
  }
  .demo-ring-track { stroke: rgba(255,255,255,0.08); stroke-width: 8; fill: none; }
  .demo-ring-fill {
    stroke: var(--teal);
    stroke-width: 8;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 314.16;
    stroke-dashoffset: 78.54;
    filter: drop-shadow(0 0 8px rgba(54,230,208,0.5));
  }
  .demo-ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .demo-ring-num .num {
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .demo-ring-num .label {
    font-size: 10px;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 2px;
    font-weight: 700;
  }
  .demo-benchmark {
    background: linear-gradient(135deg, rgba(54,230,208,0.12), rgba(54,230,208,0.04));
    border: 1px solid rgba(54,230,208,0.2);
    padding: 16px;
    border-radius: 10px;
  }
  .demo-benchmark-rank {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    color: var(--teal);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .demo-benchmark-label {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .demo-categories {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .demo-cat-title {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .demo-cat-row {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
  }
  .demo-cat-icon {
    width: 8px; height: 8px;
    border-radius: 2px;
  }
  .demo-cat-icon.green { background: var(--teal); }
  .demo-cat-icon.red { background: var(--red); }
  .demo-cat-name { font-size: 12px; margin-bottom: 4px; font-weight: 500; }
  .demo-cat-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
  .demo-cat-bar-fill { height: 100%; border-radius: 2px; }
  .demo-cat-bar-fill.green { background: var(--teal); }
  .demo-cat-bar-fill.red { background: var(--red); }
  .demo-cat-score {
    font-size: 11px;
    font-weight: 700;
    font-feature-settings: 'tnum';
  }
  .demo-cat-score.green { color: var(--teal); }
  .demo-cat-score.red { color: var(--red); }

  .demo-unlock {
    margin-top: var(--s-3);
    padding: var(--s-2);
    background: linear-gradient(135deg, rgba(47,128,255,0.16), rgba(47,128,255,0.06));
    border: 1px dashed rgba(47,128,255,0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-2);
    opacity: 0.95;
    pointer-events: auto;
  }
  .demo-unlock * { pointer-events: auto; }
  .demo-unlock-text { font-size: 12px; color: rgba(255,255,255,0.85); }
  .demo-unlock-text strong { display: block; color: var(--blue); font-weight: 700; margin-bottom: 2px; font-size: 13px; }
  .demo-unlock-btn {
    background: rgba(47,128,255,0.25);
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px dashed rgba(47,128,255,0.5);
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
  }
  .demo-unlock-btn:hover { background: rgba(47,128,255,0.4); }
  .demo-unlock-btn:disabled { opacity: 0.6; cursor: not-allowed; }


  .unlock-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
  }
  .unlock-form {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
  }
  .unlock-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 12px;
    font-family: inherit;
    transition: border-color 0.2s;
    min-width: 100px;
    flex: 1;
  }
  .unlock-input:focus { border-color: var(--blue); outline: none; }
  .unlock-input::placeholder { color: rgba(255,255,255,0.4); }
  .unlock-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--ink) inset;
    -webkit-text-fill-color: #fff;
  }
  .unlock-url-input { flex: 1.2; }
  .unlock-error {
    font-size: 11px;
    color: #f87171;
    display: none;
    margin: 0;
  }
  .unlock-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .unlock-trust span {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
  }
  .unlock-success-msg {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    padding: 6px 0;
  }

  @media (max-width: 640px) {
    .demo-unlock {
      flex-direction: column;
      align-items: flex-start;
    }
    .unlock-form {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
    }
    .unlock-input {
      min-width: 0;
      width: 100%;
    }
    .demo-unlock-btn {
      width: 100%;
      text-align: center;
    }
  }

  /* ============ MARQUEE ============ */
  .marquee-section {
    background: var(--ink);
    color: white;
    padding: var(--s-3) 0;
    border-top: 1px solid var(--ink-3);
    border-bottom: 1px solid var(--ink-3);
    overflow: hidden;
    position: relative;
  }
  .marquee-section::before,
  .marquee-section::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--ink), transparent);
  }
  .marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--ink), transparent);
  }
  .marquee-track {
    display: flex;
    gap: var(--s-6);
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    align-items: center;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
  }
  .marquee-item .num {
    color: var(--teal);
    font-weight: 700;
    font-feature-settings: 'tnum';
  }
  .marquee-item::after {
    content: "·";
    margin-left: 56px;
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
  }

  /* ============ TRUST / SOCIAL ROW ============ */
  .trust-section {
    background: var(--paper-2);
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-label {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
  .trust-stat {
    text-align: center;
  }
  .trust-stat-num {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum';
  }
  .trust-stat-num .accent { color: var(--blue); }
  .trust-stat-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  /* ============ AI DEFINITION BLOCK ============ */
  .definition-section { background: var(--paper); padding: var(--s-6) 0; }
  @media (max-width: 767px) { .definition-section { padding: var(--s-5) 0; } }
  .definition-block {
    max-width: 720px;
  }
  .definition-lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 0;
  }
  .definition-lead strong {
    color: var(--ink);
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .definition-lead { font-size: 20px; }
  }

  /* ============ FREE vs PRO ============ */
  .freevpro-section { background: var(--paper); }
  .freevpro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3);
    margin-top: var(--s-6);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
  }
  @media (min-width: 768px) {
    .freevpro-grid {
      grid-template-columns: 0.95fr 1.05fr;
      gap: var(--s-3);
    }
  }
  .freevpro-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: var(--s-4);
    position: relative;
    transition: all 0.25s var(--ease-out);
    box-shadow: var(--elev-1);
  }
  .freevpro-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--elev-2);
    border-color: var(--line-strong);
  }
  .freevpro-card.pro {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
    overflow: hidden;
    box-shadow: var(--elev-3);
  }
  @media (min-width: 768px) {
    .freevpro-card.pro { transform: scale(1.02); }
    .freevpro-card.pro:hover { transform: scale(1.02) translateY(-2px); }
  }
  .freevpro-card.pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(54,230,208,0.12) 0%, transparent 60%),
      radial-gradient(circle at bottom left, rgba(47,128,255,0.08) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
  }
  .freevpro-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--s-1);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--s-3);
    position: relative;
    z-index: 2;
  }
  .freevpro-tag.free {
    background: rgba(16,185,129,0.12);
    color: var(--green);
    border: 1px solid rgba(16,185,129,0.25);
  }
  .freevpro-tag.pro {
    background: rgba(54,230,208,0.15);
    color: var(--teal);
    border: 1px solid rgba(54,230,208,0.3);
  }
  .freevpro-title {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: var(--s-1);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
  }
  .freevpro-card.pro .freevpro-title { font-size: 36px; }
  .freevpro-sub {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: var(--s-3);
    position: relative;
    z-index: 2;
  }
  .freevpro-card.pro .freevpro-sub { color: rgba(255,255,255,0.7); }
  .freevpro-list {
    list-style: none;
    margin-bottom: var(--s-3);
    position: relative;
    z-index: 2;
  }
  .freevpro-list li {
    padding: 9px 0;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px dashed var(--line);
  }
  .freevpro-card.pro .freevpro-list li {
    border-color: rgba(255,255,255,0.08);
    font-size: 15px;
  }
  .freevpro-list li svg {
    width: 16px; height: 16px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .freevpro-card.pro .freevpro-list li svg { color: var(--teal); }
  .freevpro-list li strong { color: var(--blue); font-weight: 700; }
  .freevpro-card.pro .freevpro-list li strong { color: var(--teal); }
  .freevpro-cta-line {
    text-align: center;
    padding: var(--s-2);
    background: var(--paper-2);
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: block;
    transition: transform 0.2s var(--ease-out);
  }
  a.freevpro-cta-line:hover { transform: translateY(-1px); }
  .freevpro-card.pro .freevpro-cta-line {
    background: var(--teal);
    color: var(--ink);
    border: none;
    font-weight: 700;
    padding: var(--s-2);
    box-shadow: var(--elev-glow-teal);
  }

  /* ============ POSITIONING / VALUE PROPS ============ */
  .vprop-section { background: var(--paper); }
  .vprop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: var(--s-6);
  }
  @media (min-width: 768px) { .vprop-grid { grid-template-columns: repeat(3, 1fr); } }
  .vprop-card {
    padding: var(--s-4);
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all 0.25s ease;
    position: relative;
  }
  .vprop-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(6,12,25,0.08);
    border-color: var(--line-strong);
  }
  .vprop-card.featured {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
  }
  .vprop-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(54,230,208,0.12) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
  }
  .vprop-num {
    font-size: 11px;
    color: var(--blue);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
  }
  .vprop-card.featured .vprop-num { color: var(--teal); }
  .vprop-icon-wrap {
    width: 48px; height: 48px;
    background: var(--blue-glow);
    color: var(--blue);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
  }
  .vprop-card.featured .vprop-icon-wrap {
    background: rgba(54,230,208,0.12);
    color: var(--teal);
  }
  .vprop-icon-wrap svg { width: 24px; height: 24px; }
  .vprop-card h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 2;
  }
  .vprop-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55;
    position: relative;
    z-index: 2;
  }
  .vprop-card.featured p { color: rgba(255,255,255,0.75); }

  /* ============ PROBLEM ============ */
  .problem-section { background: var(--paper-2); }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: var(--s-5);
  }
  @media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
  .problem-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: var(--s-4);
    position: relative;
    overflow: hidden;
  }
  .problem-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
  }
  .problem-card:nth-child(1)::before { background: var(--red); }
  .problem-card:nth-child(2)::before { background: var(--warning); }
  .problem-card:nth-child(3)::before { background: var(--blue); }
  .problem-num {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .problem-stat {
    font-family: 'Instrument Serif', serif;
    font-size: 84px;
    font-weight: 400;
    line-height: 0.85;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    font-feature-settings: 'tnum';
  }
  .problem-stat .small { font-size: 28px; vertical-align: top; }
  .problem-card:nth-child(1) .problem-stat { color: var(--red); }
  .problem-card:nth-child(2) .problem-stat { color: var(--warning); }
  .problem-card:nth-child(3) .problem-stat { color: var(--blue); }
  .problem-card h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .problem-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

  .desire-row {
    margin-top: 32px;
    padding: var(--s-4);
    background: var(--ink);
    color: white;
    border-radius: 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .desire-row::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .desire-num {
    font-family: 'Instrument Serif', serif;
    font-size: 64px;
    color: var(--teal);
    line-height: 1;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
  }
  .desire-num .small { font-size: 24px; }
  .desire-text { font-size: 15px; line-height: 1.55; position: relative; z-index: 2; }
  .desire-text strong { color: var(--teal); font-weight: 600; display: block; margin-bottom: 4px; }

  /* ============ COMPARISON ============ */
  .compare-section { background: var(--paper); }
  .compare-table {
    margin-top: var(--s-5);
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--elev-1);
  }
  .compare-row {
    display: grid;
    grid-template-columns: minmax(180px, 1.5fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
    border-bottom: 1px solid var(--line);
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-cell {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.45;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .compare-cell:last-child { border-right: none; }
  .compare-cell svg {
    flex-shrink: 0;
  }
  .compare-cell.head {
    background: var(--ink);
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 20px;
  }
  .compare-cell.head.us {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  }
  .compare-cell.head.us::after {
    content: "★";
    color: var(--teal);
    font-size: 14px;
    margin-left: auto;
    flex-shrink: 0;
    line-height: 1;
  }
  .compare-cell.feat { font-weight: 600; }
  /* Our column: bold, brand-tinted */
  .compare-row .compare-cell:nth-child(2):not(.head) {
    background: rgba(47,128,255,0.04);
    font-weight: 600;
  }
  /* Competitor column: muted */
  .compare-row .compare-cell:nth-child(3):not(.head) {
    color: var(--muted-2);
    background: var(--paper-2);
    opacity: 0.85;
  }
  .compare-cell.yes { color: var(--green); }
  .compare-cell.no { color: var(--red); opacity: 0.6; }
  .compare-cell.partial { color: var(--warning); }

  /* Tablet zone - tighten spacing, slightly smaller font */
  @media (max-width: 900px) and (min-width: 641px) {
    .compare-cell {
      padding: 16px 14px;
      font-size: 13px;
    }
    .compare-cell.head {
      padding: 14px 14px;
      font-size: 12px;
    }
    .compare-cell.head.us::after { font-size: 12px; }
  }

  /* Mobile - stacked card layout */
  @media (max-width: 640px) {
    .compare-table {
      border: none;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
    }
    .compare-row {
      grid-template-columns: 1fr;
      background: white;
      border: 1px solid var(--line);
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: var(--elev-1);
    }
    .compare-row:first-child {
      display: none; /* hide header row, repeat per-card */
    }
    .compare-cell {
      border-right: none;
      border-bottom: 1px solid var(--line);
      padding: 14px 18px;
    }
    .compare-cell:last-child { border-bottom: none; }
    .compare-cell.feat {
      background: var(--ink);
      color: white;
      font-weight: 700;
      font-size: 13px;
      padding: 14px 18px;
    }
    .compare-cell:not(.feat) {
      padding-left: 100px;
      position: relative;
      min-height: 44px;
    }
    .compare-cell:not(.feat)::before {
      content: attr(data-label);
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 700;
      width: 70px;
    }
    .compare-row .compare-cell:nth-child(2):not(.head) {
      background: rgba(47,128,255,0.04);
    }
    .compare-row .compare-cell:nth-child(3):not(.head) {
      background: var(--paper-2);
    }
  }
  @media (max-width: 767px) {
    /* Mobile demo simplification - hide categories/findings, keep score row + unlock form */
    .demo-categories,
    .demo-findings { display: none; }
    .demo-unlock { display: flex; }
    .demo-card { box-shadow: var(--elev-2); }
    /* Mobile marquee - bigger, slower */
    .marquee-item { font-size: 16px; }
    .marquee-track { animation-duration: 60s; }
  }

  /* ============ PROCESS / EARNED OUTREACH ============ */
  .process-section { background: var(--paper-2); }
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: var(--s-5);
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  @media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
  .process-step {
    padding: var(--s-4) var(--s-3);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  @media (min-width: 768px) {
    .process-step { border-bottom: none; border-right: 1px solid var(--line); }
    .process-step:last-child { border-right: none; }
  }
  .process-step:last-child {
    background: var(--blue);
    color: white;
  }
  .process-step:nth-child(3) {
    background: linear-gradient(135deg, rgba(54,230,208,0.08), rgba(47,128,255,0.06));
    position: relative;
  }
  .process-step:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
  }
  .process-step-tag {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 700;
  }
  .process-step:last-child .process-step-tag { color: rgba(255,255,255,0.7); }
  .process-step:nth-child(3) .process-step-tag { color: var(--blue); }
  .process-num {
    font-family: 'Instrument Serif', serif;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--blue);
    letter-spacing: -0.03em;
  }
  .process-step:last-child .process-num { color: var(--teal); }
  .process-step:nth-child(3) .process-num { color: var(--blue); }
  .process-step h3 { margin-bottom: 8px; font-size: 17px; font-weight: 700; }
  .process-step p { font-size: 14px; color: var(--muted); line-height: 1.55; }
  .process-step:last-child p { color: rgba(255,255,255,0.85); }

  /* ============ FREE TOOLS ============ */
  .tools-section {
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .tools-section .section-tag { color: var(--teal); }
  .tools-section .section-tag::before { background: var(--teal); }
  .tools-section .h2 { color: white; }
  .tools-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 40px;
  }
  @media (min-width: 1024px) { .tools-intro { grid-template-columns: 1.5fr 1fr; } }
  .tools-intro p { color: rgba(255,255,255,0.65); font-size: 16px; }
  .tools-intro p strong { color: white; font-weight: 600; }
  .tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 768px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
  .tool-card {
    background: white;
    color: var(--ink);
    padding: 28px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    position: relative;
    transition: transform 0.25s;
  }
  .tool-card:hover { transform: translateY(-4px); }
  .tool-card.featured {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    box-shadow: 0 12px 40px rgba(47,128,255,0.4);
  }
  .tool-card.featured .tool-tag { color: rgba(255,255,255,0.8); }
  .tool-card.featured .tool-tagline { color: rgba(255,255,255,0.85); }
  .tool-card.featured .tool-divider { border-color: rgba(255,255,255,0.2); }
  .tool-card.featured .tool-checks li { color: white; }
  .tool-card.featured .tool-meta { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.2); }

  .tool-badge {
    position: absolute;
    top: -10px;
    right: 24px;
    background: var(--teal);
    color: var(--ink);
    padding: 5px 11px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 100px;
    text-transform: uppercase;
  }
  .tool-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    font-weight: 700;
  }
  .tool-name {
    font-family: 'Instrument Serif', serif;
    font-size: 30px;
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .tool-tagline {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .tool-divider { border-top: 1px dashed var(--line-strong); margin: 16px 0; }
  .tool-checks { list-style: none; flex-grow: 1; margin-bottom: 20px; }
  .tool-checks li {
    padding: 6px 0;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
  }
  .tool-checks li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
  }
  .tool-card.featured .tool-checks li::before { background: var(--teal); }
  .tool-meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line-strong);
    letter-spacing: 0.04em;
  }
  .tool-cta-btn {
    background: var(--ink);
    color: white;
    padding: 14px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s var(--ease-out);
    text-decoration: none;
    display: block;
  }
  .tool-cta-btn:hover { transform: translateY(-1px); }
  .tool-card.featured .tool-cta-btn { background: white; color: var(--blue); }

  /* ============ PRICING ============ */
  .pricing-section { background: var(--paper); }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: var(--s-5);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
  .pricing-card {
    background: white;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    padding: var(--s-4);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--elev-1);
    transition: all 0.3s var(--ease-out);
  }
  .pricing-card:hover {
    box-shadow: var(--elev-2);
    transform: translateY(-2px);
  }
  .pricing-card.featured {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
    box-shadow: var(--elev-3);
  }
  @media (min-width: 768px) {
    .pricing-card.featured { transform: scale(1.03); }
    .pricing-card.featured:hover { transform: scale(1.03) translateY(-2px); }
  }
  .pricing-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(47,128,255,0.15) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
  }

  .pricing-stage {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: var(--paper-2);
    color: var(--blue);
    border: 1px solid var(--blue-glow);
    position: relative;
    z-index: 2;
  }
  .pricing-card.featured .pricing-stage {
    background: rgba(54,230,208,0.12);
    color: var(--teal);
    border-color: rgba(54,230,208,0.25);
  }
  .pricing-name {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1;
    position: relative;
    z-index: 2;
  }
  .pricing-tagline {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
  }
  .pricing-card.featured .pricing-tagline { color: rgba(255,255,255,0.7); }

  .pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .pricing-price {
    font-family: 'Instrument Serif', serif;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .pricing-card.featured .pricing-price { color: white; }
  .pricing-permo {
    font-size: 22px;
    color: var(--muted);
    font-family: 'Instrument Serif', serif;
  }
  .pricing-period {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }

  .pricing-divider {
    border-top: 1px dashed var(--line-strong);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.15); }

  .pricing-list-title {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  .pricing-card.featured .pricing-list-title { color: rgba(255,255,255,0.6); }

  .pricing-list {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
  }
  .pricing-list li {
    padding: 9px 0;
    font-size: 14px;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px dashed var(--line);
  }
  .pricing-card.featured .pricing-list li { border-color: rgba(255,255,255,0.08); }
  .pricing-list li svg {
    width: 16px; height: 16px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pricing-card.featured .pricing-list li svg { color: var(--teal); }
  .pricing-list li strong { color: var(--blue); font-weight: 700; }
  .pricing-card.featured .pricing-list li strong { color: var(--teal); }

  .pricing-cta {
    background: var(--ink);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: block;
  }
  .pricing-cta:hover { transform: translateY(-1px); }
  .pricing-card.featured .pricing-cta {
    background: var(--blue);
    box-shadow: var(--elev-glow-blue);
  }
  .pricing-card.featured .pricing-cta:hover { background: var(--blue-dark); }

  .pricing-microproof {
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    color: var(--muted);
    position: relative;
    z-index: 2;
  }
  .pricing-card.featured .pricing-microproof { color: rgba(255,255,255,0.5); }

  .pricing-footnote {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-footnote strong {
    color: var(--ink);
    display: block;
    margin-bottom: 6px;
    font-family: 'Instrument Serif', serif;
    font-size: 17px;
    font-weight: 400;
  }

  /* ============ TESTIMONIALS ============ */
  .testimonials-section { background: var(--paper-2); }
  .test-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: var(--s-5);
  }
  @media (min-width: 768px) { .test-grid { grid-template-columns: 1.5fr 1fr; } }
  .test-card {
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .test-card.featured {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
  }
  .test-card.featured::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(47,128,255,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .test-score-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(54,230,208,0.15);
    color: var(--teal);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    width: fit-content;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
  }
  .test-score-badge .test-score-circle {
    background: var(--teal);
    color: var(--ink);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
  }
  .test-stars {
    color: var(--blue);
    margin-bottom: 16px;
    font-size: 16px;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
  }
  .test-card.featured .test-stars { color: var(--teal); }
  .test-quote {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 28px;
    flex-grow: 1;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
  }
  .test-card.featured .test-quote { font-size: 26px; }
  .test-card.featured .test-quote .highlight { color: var(--teal); font-style: italic; }
  .test-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    position: relative;
    z-index: 2;
  }
  .test-card.featured .test-meta { border-color: rgba(255,255,255,0.15); }
  .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    background: var(--blue-glow);
    color: var(--blue);
    flex-shrink: 0;
  }
  .test-card.featured .avatar { background: var(--blue); color: white; }
  .test-meta-name { font-weight: 700; }
  .test-meta-role { font-size: 13px; color: var(--muted); }
  .test-card.featured .test-meta-role { color: rgba(255,255,255,0.65); }
  .test-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.12);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 12px;
    width: fit-content;
    position: relative;
    z-index: 2;
  }

  /* ============ AUTHORITY ============ */
  .authority-section { background: var(--ink); color: white; }
  .authority-section .h2 { color: white; }
  .authority-section .section-tag { color: var(--teal); }
  .authority-section .section-tag::before { background: var(--teal); }
  .auth-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: var(--s-5);
  }
  @media (min-width: 768px) { .auth-grid { grid-template-columns: repeat(3, 1fr); } }
  .auth-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: var(--s-4);
    border-radius: 14px;
  }
  .auth-stat {
    font-family: 'Instrument Serif', serif;
    font-size: 72px;
    line-height: 0.9;
    color: var(--teal);
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    font-feature-settings: 'tnum';
  }
  .auth-stat .small { font-size: 24px; }
  .auth-card h3 { margin-bottom: 6px; font-size: 18px; font-weight: 700; }
  .auth-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }
  .auth-cta {
    margin-top: 40px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* ============ FAQ ============ */
  .faq-section { background: var(--paper); }
  .faq-list { margin-top: var(--s-5); max-width: 880px; }
  .faq-group-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-top: var(--s-5);
    margin-bottom: var(--s-2);
    padding-bottom: var(--s-2);
    border-bottom: 1px solid var(--line);
  }
  .faq-list .faq-group-heading:first-of-type { margin-top: 0; }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: var(--s-3) 0;
  }
  .faq-q {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    line-height: 1.25;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-3);
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: color 0.2s var(--ease-out);
  }
  .faq-q:hover { color: var(--blue); }
  .faq-q::after {
    content: "+";
    font-size: 24px;
    color: var(--blue);
    flex-shrink: 0;
    line-height: 0;
    transition: transform 0.3s var(--ease-out);
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    margin-top: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out), margin-top 0.3s var(--ease-out);
  }
  .faq-item.open .faq-a {
    max-height: 500px;
    margin-top: var(--s-2);
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    color: white;
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background:
      radial-gradient(circle at 30% 30%, var(--blue-glow) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, var(--teal-glow) 0%, transparent 50%);
    pointer-events: none;
  }
  .final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
  .final-cta .h2 { color: white; margin: 0 auto 20px; }
  .final-cta-sub {
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 1.5;
  }
  .final-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .final-cta-microproof {
    margin-top: 28px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .final-cta-microproof span::before { content: "✓ "; color: var(--teal); }

  /* ============ BOTTOM UNLOCK ============ */
  .bottom-unlock {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .bottom-unlock-inner { text-align: center; }
  .bottom-unlock-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    justify-content: center;
  }
  .bottom-unlock-fields input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    flex: 1;
    min-width: 160px;
    text-align: left;
  }
  .bottom-unlock-fields input:focus { border-color: var(--blue); outline: none; }
  .bottom-unlock-fields input::placeholder { color: rgba(255,255,255,0.4); }
  .bottom-unlock-fields input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--ink) inset;
    -webkit-text-fill-color: #fff;
  }
  #bottom-submit-btn {
    background: linear-gradient(135deg, var(--blue), var(--teal-dark));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: filter 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
  @media (min-width: 640px) { #bottom-submit-btn { width: auto; min-width: 200px; } }
  #bottom-submit-btn:hover { filter: brightness(1.1); }
  #bottom-submit-btn:active { transform: scale(0.98); }
  #bottom-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
  .bottom-unlock-error {
    font-size: 13px;
    color: #f87171;
    margin-top: 8px;
    display: none;
  }
  .bottom-unlock-trust {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .bottom-unlock-trust span { font-size: 12px; color: #6ee7b7; letter-spacing: 0.02em; }
  .bottom-unlock-trust span::before { content: "✓ "; color: var(--teal); }
  .bottom-unlock-success { text-align: center; padding: 20px 0; }
  .unlock-checkmark {
    width: 56px; height: 56px;
    background: rgba(16,185,129,0.12);
    border: 2px solid rgba(16,185,129,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
  }

  /* ============ FOOTER ============ */
  .footer {
    padding: 56px 24px 32px;
    background: var(--ink);
    color: rgba(255,255,255,0.6);
  }
  @media (min-width: 768px) { .footer { padding: 64px 32px 32px; } }
  .footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
  .footer-brand-block .footer-logo { height: 28px; margin-bottom: 16px; }
  .footer-brand-block .footer-logo img, .footer-brand-block .footer-logo svg { height: 28px; width: auto; }
  .footer-brand-block p { font-size: 14px; line-height: 1.5; max-width: 320px; }
  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { padding: 5px 0; font-size: 14px; }
  .footer-col li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s var(--ease-out);
  }
  .footer-col li a:hover { color: var(--teal); }
  .footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.15s var(--ease-out);
  }
  .footer-bottom a:hover { color: var(--teal); }
  .footer-bottom {
    max-width: 1240px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* STICKY MOBILE CTA */
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--blue);
    color: white;
    padding: 14px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    z-index: 40;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--elev-glow-blue);
    text-decoration: none;
    transition: transform 0.2s var(--ease-out);
  }
  .sticky-cta:hover { transform: translateY(-2px); }
  @media (min-width: 768px) { .sticky-cta { display: none; } }

  /* DESKTOP FLOATING AUDIT CTA – appears after scroll */
  .desktop-float-cta {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 40;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .desktop-float-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  @media (min-width: 768px) { .desktop-float-cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; } }
  .desktop-float-btn {
    background: var(--blue);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--elev-glow-blue), var(--elev-3);
    transition: transform 0.2s var(--ease-out), background 0.15s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
  }
  .desktop-float-btn:hover { background: var(--blue-dark); transform: translateY(-2px); }
  .desktop-float-btn.secondary {
    background: white;
    color: var(--ink);
    box-shadow: var(--elev-2);
    font-size: 13px;
    padding: 10px 16px;
  }
  .desktop-float-btn.secondary:hover { background: var(--paper-2); transform: translateY(-1px); }



/* ── Below-fold lazy rendering ── */
.section.definition-section,
.section.freevpro-section,
.section.vprop-section,
.section.problem-section,
.section.compare-section,
.section.process-section,
.section.tools-section,
.section.testimonials-section,
.section.pricing-section,
.section.authority-section,
.section.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
