/* latin-ext */
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif-italic-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif-italic.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

  :root {
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --black: #000;
    --ink: #1d1d1f;
    --hairline-dark: rgba(255,255,255,0.08);
    --hairline-light: rgba(0,0,0,0.08);
    --paper: #f5f5f7;
    --paper-2: #fbfbfd;
    --mute-dark: #86868b;
    --mute-light: #6e6e73;
    --blue: #e9b365;
    --blue-deep: #c89043;
    --hot: #ff7a3d;
    --hot-deep: #ff5b1f;
    --warm: #ffb547;
    --cool: #4cc1ff;
    --good: #2fd56a;
    --red: #ff453a;
    --radius: 22px;
    --radius-lg: 32px;
    --shell: clamp(20px, 4vw, 64px);
    --maxw: 1280px;
    --font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --serif: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
    --mono: "SF Mono", ui-monospace, "JetBrains Mono", "Menlo", monospace;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }
  html, body {
    margin: 0; padding: 0; background: #000; color: #f5f5f7;
    font-family: var(--font); -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility; letter-spacing: -0.011em;
  }
  body { overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  ::selection { background: var(--blue-deep); color: white; }

  /* ============ NAV ============ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100; color: #f5f5f7;
    transition: background 500ms var(--ease), border-color 500ms var(--ease);
    background: rgba(0,0,0,0); border-bottom: 1px solid transparent;
    backdrop-filter: saturate(180%) blur(0px); -webkit-backdrop-filter: saturate(180%) blur(0px);
  }
  .nav.scrolled {
    background: rgba(0,0,0,0.62); border-bottom-color: var(--hairline-dark);
    backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
  }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto; height: 60px; padding: 0 var(--shell);
    display: flex; align-items: center; gap: 28px;
    font-size: 13px; font-weight: 400; letter-spacing: -0.005em;
  }
  .nav-brand {
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 500; letter-spacing: -0.018em; font-size: 15px;
  }
  .nav-links { display: flex; align-items: center; gap: 28px; margin-left: 18px; opacity: 0.9; }
  .nav-links a { opacity: 0.85; transition: opacity 200ms var(--ease); position: relative; }
  .nav-links a:hover { opacity: 1; }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: left;
    transition: transform 320ms var(--ease);
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-spacer { flex: 1; }
  .nav-cta { opacity: 0.85; transition: opacity 200ms var(--ease); }
  .nav-cta:hover { opacity: 1; }
  .nav-pill {
    background: white; color: #1d1d1f; padding: 8px 18px; border-radius: 980px;
    font-size: 13px; font-weight: 500; border: none; letter-spacing: -0.005em;
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
  }
  .nav-pill:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255,255,255,0.22); }
  .nav-pill:active { transform: translateY(0) scale(0.98); }

  /* ============ TYPE ============ */
  .display { font-size: clamp(56px, 9.5vw, 132px); line-height: 0.98; letter-spacing: -0.048em; font-weight: 600; margin: 0; }
  .h1 { font-size: clamp(48px, 7vw, 96px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 600; margin: 0; }
  .h2 { font-size: clamp(40px, 5.4vw, 72px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 600; margin: 0; }
  /* Editorial accent: italic serif for one emphasized word in a headline */
  .em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #f5d99c 0%, #c89043 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    padding-right: 0.04em;
  }
  .display .em, .h1 .em, .h2 .em { font-size: 1.08em; line-height: 0.92; }
  .h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.18; letter-spacing: -0.022em; font-weight: 600; margin: 0; }
  .eyebrow { font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; font-weight: 500; color: var(--blue); }
  .eyebrow.mute { color: var(--mute-dark); }
  .light .eyebrow.mute { color: var(--mute-light); }
  .lede {
    font-size: clamp(20px, 1.55vw, 24px); line-height: 1.35; letter-spacing: -0.012em;
    color: #a1a1a6; font-weight: 400; margin: 0; text-wrap: pretty;
  }
  .light .lede { color: var(--mute-light); }
  .mono { font-family: var(--mono); font-feature-settings: "tnum","ss01"; }

  /* ============ BUTTONS ============ */
  .btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 52px; padding: 0 28px; border-radius: 980px; border: none;
    font-size: 16px; letter-spacing: -0.005em; font-weight: 500;
    transition: transform 220ms var(--ease), background 220ms var(--ease), box-shadow 320ms var(--ease), color 220ms var(--ease);
    position: relative; overflow: hidden;
  }
  .btn::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.20) 50%, transparent 70%);
    transform: translateX(-110%); transition: transform 700ms var(--ease); pointer-events: none;
  }
  .btn:hover::before { transform: translateX(110%); }
  .btn-primary { background: white; color: #1d1d1f; }
  .btn-primary:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 20px 50px -10px rgba(255,255,255,0.28); }
  .btn-primary:active { transform: translateY(0) scale(0.98); }
  .btn-dark { background: #1d1d1f; color: white; }
  .btn-dark:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.45); background: #2a2a2c; }
  .btn-blue { background: var(--blue-deep); color: white; }
  .btn-blue:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 20px 50px -10px rgba(200,144,67,0.5); background: var(--blue); }
  .btn-glass {
    background: rgba(255,255,255,0.08); color: white;
    border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(20px);
  }
  .btn-glass:hover { background: rgba(255,255,255,0.13); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--blue); padding: 0 6px; height: auto; }
  .btn-ghost::before { display: none; }
  .btn-ghost::after { content: "›"; font-size: 22px; line-height: 1; transform: translateY(-1px); transition: transform 240ms var(--ease); }
  .btn-ghost:hover::after { transform: translate(4px, -1px); }
  .light .btn-ghost { color: var(--blue-deep); }

  /* ============ SECTION SHELL ============ */
  section { position: relative; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(96px, 12vw, 160px) var(--shell); }
  .wrap.tight { padding-top: clamp(64px, 8vw, 120px); padding-bottom: clamp(64px, 8vw, 120px); }
  .light { background: var(--paper); color: var(--ink); }
  .white { background: white; color: var(--ink); }
  .dark { background: var(--black); color: #f5f5f7; }
  .ink { background: var(--ink); color: #f5f5f7; }

  /* ============ REVEAL ============ */
  .reveal {
    opacity: 0; transform: translate3d(0, 28px, 0);
    transition: opacity 1100ms var(--ease), transform 1100ms var(--ease);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: translate3d(0,0,0); }
  .reveal.delay-1 { transition-delay: 100ms; }
  .reveal.delay-2 { transition-delay: 200ms; }
  .reveal.delay-3 { transition-delay: 300ms; }
  .reveal.delay-4 { transition-delay: 400ms; }
  .reveal.delay-5 { transition-delay: 500ms; }
  .reveal.delay-6 { transition-delay: 600ms; }

  @media (prefers-reduced-motion: reduce) {
    *, ::before, ::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }

  /* ============ CINEMA HERO ============ */
  .cinema { position: relative; height: 380vh; }
  .cinema-stage {
    position: sticky; top: 0; height: 100vh; overflow: hidden;
    background: radial-gradient(120% 80% at 50% 0%, #0a0a0e 0%, #050507 50%, #000 100%);
    perspective: 1600px;
  }
  .orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px); will-change: transform, opacity; }
  .orb.blue {
    width: 760px; height: 760px; top: -220px; left: 50%; transform: translate(-50%, 0);
    background: radial-gradient(circle, rgba(233,179,101,0.50) 0%, rgba(233,179,101,0) 60%);
  }
  .orb.hot {
    width: 580px; height: 580px; bottom: -180px; right: -80px;
    background: radial-gradient(circle, rgba(255,91,31,0.45) 0%, rgba(255,91,31,0) 60%);
  }
  .orb.cool {
    width: 480px; height: 480px; bottom: -80px; left: -140px;
    background: radial-gradient(circle, rgba(76,193,255,0.32) 0%, rgba(76,193,255,0) 60%);
  }
  /* Subtle vignette */
  .vignette {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 50% 60%, transparent 50%, rgba(0,0,0,0.6) 100%);
  }
  .grain {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
  }

  .scene-text {
    position: absolute; left: 50%; top: 14%; transform: translate(-50%, 0);
    text-align: center; width: min(1100px, 92vw);
    opacity: 0; transition: opacity 600ms var(--ease);
    will-change: opacity; z-index: 3; pointer-events: none;
  }
  .scene-text.active { opacity: 1; }
  .scene-text .eyebrow { margin-bottom: 18px; }
  .scene-text .lede { margin: 22px auto 0; max-width: 640px; }

  /* The product (dashboard mock) — animated */
  .product-wrap {
    position: absolute; left: 50%; top: 56%;
    transform: translate(-50%, -50%) translateZ(0);
    width: min(1080px, 90vw); aspect-ratio: 16 / 10;
    will-change: transform, opacity; z-index: 2;
    transform-style: preserve-3d;
  }
  .product {
    position: relative; width: 100%; height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(28,28,32,0.92) 0%, rgba(16,16,20,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
      0 80px 160px -40px rgba(0, 60, 160, 0.45),
      0 30px 80px -20px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden; backdrop-filter: blur(40px);
    padding: 26px; display: flex; flex-direction: column; gap: 16px;
  }
  /* Specular highlight that follows the cursor */
  .specular {
    position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
    background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.10), transparent 60%);
    opacity: 0.7; mix-blend-mode: screen;
  }

  .pd-chrome { display: flex; align-items: center; justify-content: space-between; }
  .pd-title { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #d6d6d8; letter-spacing: -0.005em; }
  .pd-live {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: #2fd56a; font-family: var(--mono);
    background: rgba(47,213,106,0.08); padding: 3px 8px; border-radius: 980px;
    border: 1px solid rgba(47,213,106,0.2);
  }
  .pd-live .pulse {
    width: 6px; height: 6px; border-radius: 50%; background: #2fd56a;
    box-shadow: 0 0 0 0 rgba(47,213,106,0.6); animation: pulseDot 2.4s var(--ease) infinite;
  }
  @keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(47,213,106,0.55); }
    70% { box-shadow: 0 0 0 8px rgba(47,213,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(47,213,106,0); }
  }
  .pd-dots { display: flex; gap: 6px; }
  .pd-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); }
  .pd-body { flex: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; min-height: 0; }
  .pd-feed {
    background: rgba(0,0,0,0.36); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px; padding: 12px; overflow: hidden; position: relative;
    display: flex; flex-direction: column; gap: 8px;
    mask-image: linear-gradient(180deg, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 6%, black 94%, transparent 100%);
  }
  .pd-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 11px 13px; display: flex; flex-direction: column; gap: 6px;
  }
  .pd-card .top { display: flex; align-items: center; justify-content: space-between; }
  .pd-card .name { font-size: 13px; font-weight: 500; letter-spacing: -0.005em; color: #f0f0f2; }
  .pd-card .meta { font-family: var(--mono); font-size: 11px; color: #86868b; }
  .pd-card .row { font-size: 12px; color: #c8c8cc; letter-spacing: -0.005em; display: flex; gap: 8px; align-items: center; }
  .tag { font-size: 10px; letter-spacing: 0.06em; font-weight: 600; text-transform: uppercase; padding: 3px 7px; border-radius: 5px; }
  .tag.hot { background: rgba(255,91,31,0.16); color: #ff8757; }
  .tag.warm { background: rgba(255,181,71,0.16); color: #ffce7d; }
  .tag.qual { background: rgba(76,193,255,0.16); color: #7fcfff; }
  .pd-card.fresh { border-color: rgba(255,91,31,0.4); background: rgba(255,91,31,0.04); }

  .pd-side { display: flex; flex-direction: column; gap: 12px; }
  .pd-stat { background: rgba(0,0,0,0.36); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 13px 16px; }
  .pd-num { font-size: 26px; letter-spacing: -0.03em; font-weight: 600; line-height: 1; }
  .pd-num .delta { font-size: 12px; color: #2fd56a; margin-left: 8px; font-weight: 500; }
  .pd-lbl { font-size: 11px; color: #86868b; margin-top: 4px; letter-spacing: -0.005em; }

  /* Floating feature labels */
  .feature-label {
    position: absolute; background: rgba(20,20,24,0.74);
    backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px; padding: 10px 14px;
    font-size: 13px; letter-spacing: -0.005em; color: #f0f0f2;
    display: flex; align-items: center; gap: 10px;
    opacity: 0; transition: opacity 600ms var(--ease), transform 700ms var(--ease);
    will-change: opacity, transform; pointer-events: none; z-index: 3;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.5);
  }
  .feature-label .dot { width: 8px; height: 8px; border-radius: 50%; }
  .feature-label .lbl-num { font-family: var(--mono); font-size: 11px; color: #86868b; }

  .scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: #86868b; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; transition: opacity 600ms var(--ease); z-index: 4;
  }
  .scroll-hint.show { opacity: 1; }
  .scroll-hint .bar {
    width: 1px; height: 28px;
    background: linear-gradient(180deg, transparent 0%, #86868b 100%);
    animation: scrollBar 2.4s var(--ease) infinite;
  }
  @keyframes scrollBar {
    0% { transform: scaleY(0.4); transform-origin: top; opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.4); transform-origin: bottom; opacity: 0.6; }
  }

  .scene-dots {
    position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 14px; z-index: 5;
  }
  .scene-dots .d {
    width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.18);
    transition: background 400ms var(--ease), transform 400ms var(--ease);
  }
  .scene-dots .d.active { background: white; transform: scale(1.5); }

  /* Orbiting lead cards in 3D space (Scene 1) */
  .orbit {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
    transform-style: preserve-3d;
    opacity: 0; transition: opacity 800ms var(--ease);
  }
  .orbit.show { opacity: 1; }
  .orbit-card {
    position: absolute; left: 50%; top: 50%;
    width: 220px; padding: 12px 14px; border-radius: 12px;
    background: rgba(28,28,32,0.78);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    display: flex; flex-direction: column; gap: 6px;
    will-change: transform;
    font-size: 12px;
  }
  .orbit-card .ttl { display: flex; align-items: center; justify-content: space-between; }
  .orbit-card .nm { font-size: 12.5px; color: #f0f0f2; font-weight: 500; }
  .orbit-card .mt { font-family: var(--mono); font-size: 10.5px; color: #86868b; }
  .orbit-card .rw { font-size: 11.5px; color: #c8c8cc; display: flex; gap: 6px; align-items: center; }

  /* ============ LOGO STRIP ============ */
  .logo-strip { background: #000; border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); padding: 36px 0; }
  .logo-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--shell);
    display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: space-between;
  }
  .logo-inner .h { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute-dark); font-weight: 500; }
  .logo-row { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
  .logo {
    font-size: 17px; letter-spacing: -0.018em; font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: color 240ms var(--ease);
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font);
  }
  .logo:hover { color: rgba(255,255,255,0.95); }
  .logo svg { opacity: 0.55; }
  .logo:hover svg { opacity: 1; }

  /* ============ ANIMATED COUNTERS ============ */
  .counters { background: #000; }
  .counters-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark);
  }
  .counter-cell {
    padding: 64px 36px; border-left: 1px solid var(--hairline-dark);
    display: flex; flex-direction: column; gap: 14px;
  }
  .counter-cell:first-child { border-left: none; }
  .counter-cell .num {
    font-size: clamp(48px, 6vw, 88px); letter-spacing: -0.045em; font-weight: 600; line-height: 0.95;
    background: linear-gradient(180deg, #fff 0%, #b8b8bc 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-variant-numeric: tabular-nums;
  }
  .counter-cell .num.accent {
    background: linear-gradient(180deg, #ffb999 0%, #ff5b1f 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .counter-cell .lbl { font-size: 14px; color: var(--mute-dark); letter-spacing: -0.005em; line-height: 1.4; max-width: 16ch; }

  /* ============ ZIP LOOKUP ============ */
  .zip-section {
    background: #000;
    border-top: 1px solid var(--hairline-dark);
    border-bottom: 1px solid var(--hairline-dark);
    position: relative;
    overflow: hidden;
  }
  .zip-section::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(700px 360px at 18% 30%, rgba(233,179,101,0.08), transparent 60%),
      radial-gradient(620px 320px at 88% 75%, rgba(255,91,31,0.07), transparent 60%);
    pointer-events: none;
  }
  .zip-wrap {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(100px, 11vw, 160px) var(--shell);
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
  }
  .zip-pitch .eyebrow { color: #e9b365; }
  .zip-pitch h2 { margin-top: 16px; }
  .zip-pitch .lede { margin-top: 22px; max-width: 460px; }
  .zip-pitch .zip-pitch-foot {
    margin-top: 28px;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 13px; color: #c8c8d0;
    font-variant-numeric: tabular-nums;
  }
  .zip-pitch .zip-pitch-foot .lvdot {
    width: 7px; height: 7px; border-radius: 50%; background: #2fd56a;
    box-shadow: 0 0 0 4px rgba(47,213,106,0.18);
    animation: zipPulse 1.8s ease-in-out infinite;
  }
  @keyframes zipPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.3); opacity: 0.75; }
  }

  .zip-card {
    position: relative;
    background: linear-gradient(180deg, rgba(20,22,30,0.92) 0%, rgba(10,12,18,0.92) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(12px);
    box-shadow:
      0 24px 64px -20px rgba(0,0,0,0.6),
      0 0 0 1px rgba(255,255,255,0.02) inset,
      0 1px 0 rgba(255,255,255,0.06) inset;
  }
  .zip-card-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
  }
  .zip-card-title { font-size: 13px; letter-spacing: 0.02em; color: #c8c8d0; text-transform: uppercase; font-weight: 500; }
  .zip-card-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #2fd56a; letter-spacing: 0.04em; text-transform: uppercase; }
  .zip-card-live::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2fd56a;
    box-shadow: 0 0 0 3px rgba(47,213,106,0.18);
  }

  .zip-input-row {
    display: flex; gap: 10px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 6px;
    transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  }
  .zip-input-row:focus-within {
    border-color: rgba(233,179,101,0.55);
    box-shadow: 0 0 0 4px rgba(233,179,101,0.12);
  }
  .zip-input {
    flex: 1;
    background: transparent;
    border: none; outline: none;
    color: white;
    font: 500 20px/1 var(--mono);
    letter-spacing: 0.01em;
    padding: 14px 16px;
    font-variant-numeric: tabular-nums;
  }
  .zip-input::placeholder { color: #5a5a64; letter-spacing: 0.01em; }
  .zip-cta {
    appearance: none; cursor: pointer;
    border: none; border-radius: 10px;
    background: linear-gradient(180deg, #3a9fff 0%, #1f7ee0 100%);
    color: white; font-weight: 500; font-size: 14px;
    letter-spacing: -0.005em;
    padding: 0 22px;
    min-width: 100px;
    transition: transform 120ms var(--ease), filter 200ms var(--ease);
    box-shadow: 0 6px 16px -6px rgba(233,179,101,0.5);
  }
  .zip-cta:hover { filter: brightness(1.08); }
  .zip-cta:active { transform: translateY(1px); }
  .zip-cta:disabled { opacity: 0.55; cursor: wait; }

  .zip-result {
    margin-top: 18px;
    min-height: 84px;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
  }
  .zip-result-empty {
    font-size: 13px; color: #6c6c76;
    line-height: 1.5;
  }
  .zip-result-empty kbd {
    display: inline-block;
    padding: 1px 7px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    font-family: var(--mono);
    font-size: 11px;
    color: #a1a1a6;
    background: rgba(255,255,255,0.03);
    margin: 0 2px;
  }
  .zip-state {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    animation: zipFadeUp 380ms var(--ease) both;
  }
  @keyframes zipFadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .zip-state.checking { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
  .zip-state.open     { background: rgba(47,213,106,0.07); border: 1px solid rgba(47,213,106,0.28); }
  .zip-state.reserved { background: rgba(255,91,31,0.06); border: 1px solid rgba(255,91,31,0.28); }
  .zip-state .icon {
    flex: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: grid; place-items: center;
  }
  .zip-state.checking .icon { background: rgba(255,255,255,0.06); }
  .zip-state.open .icon     { background: rgba(47,213,106,0.18); color: #4be38a; }
  .zip-state.reserved .icon { background: rgba(255,91,31,0.18); color: #ff8757; }
  .zip-state .body { flex: 1; min-width: 0; }
  .zip-state .ttl { font-size: 15px; font-weight: 500; color: white; letter-spacing: -0.01em; }
  .zip-state .sub { font-size: 13px; color: #a1a1a6; margin-top: 3px; }
  .zip-state.open .ttl strong { color: #4be38a; font-weight: 500; }
  .zip-state.reserved .ttl strong { color: #ff8757; font-weight: 500; }
  .zip-state .action {
    appearance: none; cursor: pointer;
    background: white; color: black;
    border: none; border-radius: 8px;
    font-size: 13px; font-weight: 500;
    padding: 9px 14px;
    letter-spacing: -0.005em;
    transition: transform 120ms var(--ease);
  }
  .zip-state .action:hover { transform: translateY(-1px); }
  .zip-state .action.ghost {
    background: rgba(255,255,255,0.06); color: white;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .zip-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-top-color: white;
    border-radius: 50%;
    animation: zipSpin 700ms linear infinite;
  }
  @keyframes zipSpin { to { transform: rotate(360deg); } }

  .zip-recent {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed rgba(255,255,255,0.08);
  }
  .zip-recent-label {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: #6c6c76; margin-bottom: 10px;
  }
  .zip-recent-list {
    display: flex; flex-direction: column; gap: 8px;
    max-height: 96px; overflow: hidden;
  }
  .zip-recent-row {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 12px;
    color: #c8c8d0;
    font-variant-numeric: tabular-nums;
    animation: zipFadeUp 320ms var(--ease) both;
  }
  .zip-recent-row .zd {
    width: 5px; height: 5px; border-radius: 50%;
    background: #ff8757;
    box-shadow: 0 0 0 3px rgba(255,91,31,0.18);
    flex: none;
  }
  .zip-recent-row .zp { color: white; letter-spacing: 0.04em; }
  .zip-recent-row .zc { color: #8c8c96; }
  .zip-recent-row .zt { margin-left: auto; color: #6c6c76; font-size: 11px; }

  @media (max-width: 900px) {
    .zip-wrap { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============ STORY ROW (problem + 3 signals) ============ */
  .story-section { background: var(--paper); color: var(--ink); }
  .story-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--shell); }
  .story-row {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 80px; align-items: center;
    padding: clamp(72px, 10vw, 140px) 0; border-top: 1px solid var(--hairline-light);
  }
  .story-row:first-child { border-top: none; }
  .story-row.flip { grid-template-columns: 1.1fr 1fr; }
  .story-row.flip .story-text { order: 2; }
  .story-text .lede { color: var(--mute-light); margin-top: 22px; max-width: 480px; }
  .story-text .h2 { margin-top: 18px; }
  .story-visual {
    aspect-ratio: 5 / 4; border-radius: var(--radius-lg); background: #fff;
    border: 1px solid var(--hairline-light);
    box-shadow: 0 30px 70px -30px rgba(0,0,0,0.18);
    position: relative; overflow: hidden;
    transition: box-shadow 700ms var(--ease);
  }
  .story-visual:hover { box-shadow: 0 56px 100px -30px rgba(0,0,0,0.28); }

  /* Cost bars */
  .v-chart { padding: 36px; display: flex; flex-direction: column; gap: 24px; height: 100%; }
  .v-chart .ttl { font-size: 13px; color: var(--mute-light); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
  .v-chart .bars { flex: 1; display: flex; align-items: flex-end; gap: 22px; padding-bottom: 32px; border-bottom: 1px solid var(--hairline-light); position: relative; }
  .v-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .v-bar .col {
    width: 100%; border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, #d6d6d8 0%, #c0c0c2 100%);
    height: 0; transition: height 1400ms var(--ease);
  }
  .v-bar.us .col { background: linear-gradient(180deg, var(--hot) 0%, var(--hot-deep) 100%); }
  .v-bar .num { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
  .v-bar .lbl { font-size: 11px; color: var(--mute-light); letter-spacing: 0.04em; text-transform: uppercase; }
  .v-bar.us .lbl { color: var(--hot-deep); font-weight: 600; }

  /* States (Hot/Warm/Qualified) */
  .v-states { padding: 36px; display: flex; flex-direction: column; gap: 14px; height: 100%; justify-content: center; }
  .v-state {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px; border-radius: 14px;
    background: rgba(0,0,0,0.02); border: 1px solid var(--hairline-light);
    transition: transform 400ms var(--ease), background 400ms var(--ease);
  }
  .v-state:hover { transform: translateX(4px); background: rgba(0,0,0,0.04); }
  .v-state .ic { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .v-state.hot .ic { background: linear-gradient(135deg, #ff7a3d, #ff5b1f); color: white; }
  .v-state.warm .ic { background: linear-gradient(135deg, #ffce7d, #ffb547); color: white; }
  .v-state.qual .ic { background: linear-gradient(135deg, #7fcfff, #4cc1ff); color: white; }
  .v-state .body { display: flex; flex-direction: column; gap: 2px; }
  .v-state .ttl { font-size: 15px; font-weight: 600; letter-spacing: -0.012em; }
  .v-state .sub { font-size: 13px; color: var(--mute-light); letter-spacing: -0.005em; }
  .v-state .pct { margin-left: auto; font-family: var(--mono); font-size: 13px; color: var(--mute-light); }

  /* ============ LIVE PIPELINE ============ */
  .pipeline-section { background: #000; }
  .pipeline-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }
  .pipeline-board {
    background: linear-gradient(180deg, #0a0a0c 0%, #050505 100%);
    border: 1px solid var(--hairline-dark);
    border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden;
  }
  .pipeline-legend { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: #a1a1a6; margin-bottom: 24px; }
  .pipeline-legend .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; vertical-align: 1px; }
  .pipeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pipeline-col-h {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4px 14px; border-bottom: 1px solid var(--hairline-dark); margin-bottom: 14px;
  }
  .pipeline-col-h .name { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
  .pipeline-col-h .count { font-family: var(--mono); font-size: 12px; color: #86868b; background: rgba(255,255,255,0.04); padding: 3px 8px; border-radius: 980px; }
  .pipeline-stream {
    height: 480px; position: relative; overflow: hidden;
    mask-image: linear-gradient(180deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .pipeline-track {
    position: absolute; left: 0; right: 0; top: 0;
    display: flex; flex-direction: column; gap: 10px;
    animation: streamUp 30s linear infinite;
  }
  .pipeline-track.t2 { animation-duration: 38s; animation-delay: -10s; }
  .pipeline-track.t3 { animation-duration: 46s; animation-delay: -22s; }
  @keyframes streamUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
  .lead-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 8px;
  }
  .lead-card.fresh { background: rgba(255,91,31,0.06); border-color: rgba(255,91,31,0.25); }
  .lead-top { display: flex; align-items: center; justify-content: space-between; }
  .lead-name { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
  .lead-meta { font-family: var(--mono); font-size: 11px; color: #86868b; }
  .lead-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #c8c8cc; letter-spacing: -0.005em; }
  .lead-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.06); overflow: hidden; }
  .lead-bar > i { display: block; height: 100%; border-radius: 2px; }
  .bar-hot { background: linear-gradient(90deg, #ff7a3d, #ff5b1f); }
  .bar-warm { background: linear-gradient(90deg, #ffce7d, #ffb547); }
  .bar-qual { background: linear-gradient(90deg, #7fcfff, #4cc1ff); }

  /* ============ ROI CALCULATOR ============ */
  .roi-section { background: linear-gradient(180deg, #000 0%, #060608 100%); }
  .roi-wrap {
    max-width: 1100px; margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--hairline-dark);
    border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 64px);
    position: relative; overflow: hidden;
  }
  .roi-wrap::before {
    content: ""; position: absolute; left: 50%; top: -40%; transform: translateX(-50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(233,179,101,0.18), transparent 60%);
    filter: blur(40px); pointer-events: none;
  }
  .roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
  .roi-controls { display: flex; flex-direction: column; gap: 36px; }
  .roi-control { display: flex; flex-direction: column; gap: 14px; }
  .roi-control .lbl-row { display: flex; align-items: baseline; justify-content: space-between; }
  .roi-control .lbl { font-size: 13px; color: var(--mute-dark); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
  .roi-control .val { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
  /* Slider */
  .slider {
    appearance: none; -webkit-appearance: none; width: 100%; height: 6px;
    background: rgba(255,255,255,0.08); border-radius: 980px; outline: none;
    cursor: pointer;
  }
  .slider::-webkit-slider-runnable-track { height: 6px; border-radius: 980px; background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue-deep) var(--p, 50%), rgba(255,255,255,0.08) var(--p, 50%), rgba(255,255,255,0.08) 100%); }
  .slider::-moz-range-track { height: 6px; border-radius: 980px; background: rgba(255,255,255,0.08); }
  .slider::-moz-range-progress { height: 6px; border-radius: 980px; background: var(--blue-deep); }
  .slider::-webkit-slider-thumb {
    appearance: none; -webkit-appearance: none;
    width: 24px; height: 24px; border-radius: 50%; background: white;
    margin-top: -9px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
  }
  .slider::-webkit-slider-thumb:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(200,144,67,0.6); }
  .slider::-moz-range-thumb {
    width: 24px; height: 24px; border-radius: 50%; background: white; border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  }
  .roi-output { display: flex; flex-direction: column; gap: 18px; }
  .roi-big {
    background: rgba(0,0,0,0.36); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 6px;
  }
  .roi-big .lbl { font-size: 13px; color: var(--mute-dark); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
  .roi-big .v {
    font-size: clamp(48px, 5.4vw, 80px); letter-spacing: -0.04em; font-weight: 600; line-height: 1;
    background: linear-gradient(180deg, #fff 0%, #b8b8bc 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-variant-numeric: tabular-nums;
  }
  .roi-big .sub { font-size: 13px; color: var(--mute-dark); margin-top: 6px; }
  .roi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .roi-sm { background: rgba(0,0,0,0.36); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 2px; }
  .roi-sm .lbl { font-size: 11px; color: var(--mute-dark); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
  .roi-sm .v { font-size: 24px; font-weight: 600; letter-spacing: -0.022em; font-variant-numeric: tabular-nums; }
  .roi-bar {
    background: rgba(0,0,0,0.36); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 18px 22px; display: flex; flex-direction: column; gap: 10px;
  }
  .roi-bar .lbl-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--mute-dark); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
  .roi-bar .vs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
  .roi-bar-row { display: flex; flex-direction: column; gap: 6px; }
  .roi-bar-row .nm { font-size: 13px; color: #d6d6d8; }
  .roi-bar-row .bar { height: 8px; border-radius: 980px; background: rgba(255,255,255,0.06); overflow: hidden; }
  .roi-bar-row .bar > i { display: block; height: 100%; width: 100%; transform-origin: left center; transform: scaleX(0); border-radius: 980px; will-change: transform; transition: transform 720ms var(--ease); }
  .roi-bar-row.ours .bar > i { background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%); }
  .roi-bar-row.theirs .bar > i { background: linear-gradient(90deg, #5a5a5e 0%, #3a3a3e 100%); }
  .roi-bar-row .v { font-size: 13px; color: white; font-family: var(--mono); }

  /* ============ COMPARISON TABLE ============ */
  .compare-section { background: var(--paper); color: var(--ink); }
  .compare-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
  .compare-table {
    border: 1px solid var(--hairline-light); border-radius: var(--radius-lg);
    overflow: hidden; background: white;
    box-shadow: 0 30px 70px -30px rgba(0,0,0,0.12);
  }
  .compare-row { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); border-top: 1px solid var(--hairline-light); }
  .compare-row:first-child { border-top: none; }
  .compare-cell { padding: 22px 24px; display: flex; align-items: center; font-size: 14px; letter-spacing: -0.005em; }
  .compare-row.head .compare-cell { font-size: 13px; color: var(--mute-light); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; padding-top: 28px; padding-bottom: 28px; }
  .compare-cell .label { font-weight: 600; letter-spacing: -0.012em; font-size: 15px; }
  .compare-cell .sub { font-size: 12px; color: var(--mute-light); margin-top: 2px; }
  .compare-cell.col-2 { background: linear-gradient(180deg, rgba(200,144,67,0.06) 0%, rgba(200,144,67,0.02) 100%); }
  .compare-cell.col-2 .label { color: var(--blue-deep); }
  .compare-cell.col-2.flag { background: var(--blue-deep); color: white; }
  .compare-cell.col-2.flag .label { color: white; }
  .compare-cell.col-2.flag .sub { color: rgba(255,255,255,0.7); }
  .yes { color: var(--good); font-weight: 600; }
  .no { color: var(--mute-light); }
  .partial { color: var(--warm); }
  .v-cell { display: flex; flex-direction: column; gap: 2px; }

  /* ============ COVERAGE ============ */
  .coverage-section { background: #000; }
  .coverage-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; margin-top: 0; }
  .coverage-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
  .chip {
    background: rgba(255,255,255,0.05); border: 1px solid var(--hairline-dark);
    color: #d6d6d8; font-size: 14px; padding: 8px 14px; border-radius: 980px;
    letter-spacing: -0.005em; display: inline-flex; align-items: center; gap: 8px;
    transition: transform 200ms var(--ease), background 200ms var(--ease);
  }
  .chip:hover { transform: translateY(-2px); background: rgba(255,255,255,0.08); }
  .chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--good); }
  .chip.soon { color: #86868b; border-style: dashed; }
  .chip.soon .dot { background: #86868b; }
  .coverage-map {
    aspect-ratio: 5 / 4;
    background:
      radial-gradient(circle at 20% 30%, rgba(200,144,67,0.18), transparent 30%),
      radial-gradient(circle at 78% 42%, rgba(255,91,31,0.16), transparent 30%),
      #0a0a0e;
    border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg);
    position: relative; overflow: hidden;
  }
  .map-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
  .map-arc { fill: none; stroke: rgba(233,179,101,0.4); stroke-width: 1; stroke-dasharray: 4 6; }
  .map-arc.hot { stroke: rgba(255,122,61,0.4); }
  .map-flow { fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 6 200; animation: flowDash 4s linear infinite; }
  @keyframes flowDash { to { stroke-dashoffset: -206; } }
  .map-dot {
    position: absolute; width: 10px; height: 10px; border-radius: 50%;
    background: #e9b365;
    box-shadow: 0 0 0 4px rgba(233,179,101,0.18), 0 0 24px rgba(233,179,101,0.6);
  }
  .map-dot.hot { background: #ff7a3d; box-shadow: 0 0 0 4px rgba(255,91,31,0.18), 0 0 24px rgba(255,91,31,0.6); }
  .map-dot.pulse::after {
    content: ""; position: absolute; inset: -8px; border-radius: 50%;
    border: 1px solid currentColor; opacity: 0.6;
    animation: ping 2.6s ease-out infinite;
  }
  @keyframes ping {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.6); opacity: 0; }
  }
  .map-label {
    position: absolute; font-size: 11px; color: #d6d6d8; font-family: var(--mono);
    transform: translate(12px, -2px); white-space: nowrap;
  }
  .map-caption { position: absolute; font-size: 12px; color: #86868b; font-family: var(--mono); letter-spacing: 0.04em; }

  /* ============ PRICING ============ */
  .pricing-section { background: #000; }
  .pricing-head { text-align: center; margin-bottom: 80px; max-width: 760px; margin-left: auto; margin-right: auto; }
  .pricing-head .lede { margin: 22px auto 0; }
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .price-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg); padding: 40px 36px;
    display: flex; flex-direction: column; gap: 22px;
    position: relative; min-height: 580px;
    transition: transform 500ms var(--ease), border-color 500ms var(--ease), background 500ms var(--ease);
    backdrop-filter: blur(20px);
  }
  .price-card::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(120% 50% at var(--mx, 50%) var(--my, 0%), rgba(233,179,101,0.16), transparent 60%);
    opacity: 0; transition: opacity 500ms var(--ease); pointer-events: none;
  }
  .price-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.24); }
  .price-card:hover::before { opacity: 1; }
  .price-card.featured {
    background: linear-gradient(180deg, rgba(233,179,101,0.13) 0%, rgba(233,179,101,0.02) 100%);
    border-color: rgba(233,179,101,0.40);
  }
  .price-card.featured::before { opacity: 1; }
  .price-card.featured:hover { border-color: rgba(233,179,101,0.7); }
  .price-tier { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #86868b; font-weight: 500; }
  .price-card.featured .price-tier { color: var(--blue); }
  .price-name { font-size: 34px; letter-spacing: -0.028em; font-weight: 600; margin-top: 4px; }
  .price-amount { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; }
  .price-amount .a { font-size: 64px; letter-spacing: -0.04em; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
  .price-amount .b { font-size: 16px; color: #86868b; }
  .price-usd { font-size: 12px; color: #86868b; font-family: var(--mono); letter-spacing: 0.02em; }
  .price-tag {
    position: absolute; top: 24px; right: 24px;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    background: rgba(233,179,101,0.16); color: var(--blue);
    padding: 5px 10px; border-radius: 980px; font-weight: 600;
    border: 1px solid rgba(233,179,101,0.3);
  }
  .price-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }
  .price-feat { display: flex; flex-direction: column; gap: 14px; font-size: 15px; letter-spacing: -0.008em; flex: 1; }
  .price-feat .row { display: flex; gap: 12px; align-items: flex-start; color: #d6d6d8; }
  .price-feat .row svg { flex-shrink: 0; margin-top: 4px; color: var(--blue); }
  .price-cta .btn { width: 100%; }
  .price-foot { font-size: 12px; color: #6e6e73; text-align: center; letter-spacing: -0.005em; }

  /* ============ TESTIMONIALS ============ */
  .test-section { background: var(--paper); color: var(--ink); }
  .test-head { text-align: center; margin-bottom: 80px; max-width: 760px; margin-left: auto; margin-right: auto; }
  .test-head .lede { margin: 22px auto 0; }
  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .test-card {
    background: white; border: 1px solid var(--hairline-light);
    border-radius: var(--radius); padding: 36px;
    display: flex; flex-direction: column; gap: 22px; min-height: 360px;
    transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
    box-shadow: 0 8px 24px -10px rgba(0,0,0,0.06);
  }
  .test-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15); }
  .test-quote { font-size: 21px; line-height: 1.32; letter-spacing: -0.022em; font-weight: 500; text-wrap: pretty; }
  .test-quote .accent { color: var(--blue-deep); font-weight: 600; }
  .test-stat {
    display: flex; gap: 32px; padding: 16px 0; border-top: 1px solid var(--hairline-light); margin-top: auto;
  }
  .test-stat .s { display: flex; flex-direction: column; gap: 2px; }
  .test-stat .v { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; }
  .test-stat .l { font-size: 11px; color: var(--mute-light); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
  .test-who { display: flex; align-items: center; gap: 14px; }
  .test-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 600; color: white;
    flex-shrink: 0;
  }
  .test-who .body { display: flex; flex-direction: column; gap: 2px; }
  .test-who .nm { font-size: 14px; font-weight: 600; letter-spacing: -0.012em; }
  .test-who .role { font-size: 12px; color: var(--mute-light); letter-spacing: -0.005em; }

  /* ============ FAQ ============ */
  .faq-section { background: #000; }
  .faq-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--hairline-dark); }
  .faq-item { border-bottom: 1px solid var(--hairline-dark); }
  .faq-q {
    width: 100%; background: none; border: none; color: inherit;
    padding: 28px 0; display: flex; align-items: center; justify-content: space-between;
    text-align: left; font-size: 19px; letter-spacing: -0.018em; font-weight: 500;
    cursor: pointer; transition: opacity 200ms var(--ease);
  }
  .faq-q:hover { opacity: 0.8; }
  .faq-toggle {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform 360ms var(--ease), background 240ms var(--ease);
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: rgba(255,255,255,0.08); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 500ms var(--ease), padding 400ms var(--ease);
  }
  .faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }
  .faq-a .body { color: #a1a1a6; font-size: 16px; line-height: 1.5; letter-spacing: -0.008em; max-width: 720px; }

  /* ============ FINAL CTA ============ */
  .finale { background: linear-gradient(180deg, #000 0%, #0a0a0e 100%); text-align: center; position: relative; overflow: hidden; }
  .finale::before {
    content: ""; position: absolute; left: 50%; top: 0; transform: translate(-50%, -40%);
    width: 1200px; height: 1200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(233,179,101,0.16), transparent 60%);
    filter: blur(40px); pointer-events: none;
  }
  .finale .wrap { position: relative; padding-top: clamp(120px, 14vw, 200px); padding-bottom: clamp(120px, 14vw, 200px); }
  .finale .display { margin: 22px auto 0; max-width: 14ch; }
  .finale .lede { margin: 28px auto 0; max-width: 520px; }
  .finale .btn-row { justify-content: center; margin-top: 40px; }
  .finale-foot { font-size: 13px; color: var(--mute-dark); margin-top: 32px; }
  .finale-foot .sep { margin: 0 12px; opacity: 0.4; }

  /* ============ FOOTER ============ */
  footer { background: #000; color: var(--mute-dark); font-size: 12px; letter-spacing: -0.005em; border-top: 1px solid var(--hairline-dark); }
  .footer-wrap { max-width: var(--maxw); margin: 0 auto; padding: 36px var(--shell); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .footer-wrap a { color: var(--mute-dark); transition: color 200ms var(--ease); }
  .footer-wrap a:hover { color: #d6d6d8; }
  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
  .footer-legal { margin-left: auto; }

  /* ============ HERO CTAs + TRUST + PARTICLES + ENERGY + INTRO ============ */
  .hero-cta-row {
    display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
    margin-top: 36px; pointer-events: auto;
  }
  .hero-trust {
    display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
    margin-top: 28px; pointer-events: auto;
    font-size: 13px; color: var(--mute-dark); letter-spacing: -0.005em;
  }
  .hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
  .hero-trust svg { flex-shrink: 0; }

  .particles {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    width: 100%; height: 100%;
  }
  .energy {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(100px); opacity: 0.55; will-change: transform;
  }
  .energy-1 {
    width: 1100px; height: 1100px; top: -360px; left: -240px;
    background: radial-gradient(circle, rgba(233,179,101,0.30), transparent 60%);
    animation: drift1 28s ease-in-out infinite alternate;
  }
  .energy-2 {
    width: 950px; height: 950px; bottom: -280px; right: -200px;
    background: radial-gradient(circle, rgba(255,91,31,0.22), transparent 60%);
    animation: drift2 34s ease-in-out infinite alternate;
  }
  .energy-3 {
    width: 700px; height: 700px; top: 30%; left: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(151,87,229,0.14), transparent 65%);
    animation: drift3 42s ease-in-out infinite alternate;
  }
  @keyframes drift1 {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(120px, 60px) scale(1.15); }
  }
  @keyframes drift2 {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(-100px, -50px) scale(1.18); }
  }
  @keyframes drift3 {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-46%,-54%) scale(1.25); opacity: 0.8; }
  }

  /* Live arrival animation in dashboard feed */
  .pd-card {
    transition: opacity 600ms var(--ease), transform 600ms var(--ease),
                border-color 800ms var(--ease), background 800ms var(--ease);
  }
  .pd-card.arriving { opacity: 0; transform: translateY(-22px) scale(0.96); }
  .pd-card.just-arrived {
    border-color: rgba(47,213,106,0.5);
    background: rgba(47,213,106,0.06);
  }
  .pd-card.just-arrived::before {
    content: "NEW"; position: absolute; top: -7px; right: 10px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
    color: #2fd56a; background: rgba(0,0,0,0.7);
    padding: 2px 6px; border-radius: 4px;
    border: 1px solid rgba(47,213,106,0.5);
  }
  .pd-card { position: relative; }

  /* ============ HOW IT WORKS ============ */
  .hiw-section { background: #000; }
  .hiw-head { text-align: center; max-width: 720px; margin: 0 auto 88px; }
  .hiw-head .lede { margin: 22px auto 0; }
  .hiw-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative;
  }
  .hiw-connector {
    position: absolute; left: 0; top: 60px; width: 100%; height: 2px;
    pointer-events: none; overflow: visible;
  }
  .hiw-connector .hiw-line {
    fill: none; stroke: url(#hiwGrad); stroke-width: 1.5;
    stroke-dasharray: 1000; stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1800ms var(--ease);
  }
  .hiw-connector.in .hiw-line { stroke-dashoffset: 0; }
  .hiw-connector .hiw-pulse {
    fill: var(--blue);
    filter: drop-shadow(0 0 6px rgba(233,179,101,0.7));
  }
  .hiw-step {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
    min-height: 280px; position: relative;
    transition: transform 400ms var(--ease), border-color 400ms var(--ease);
    backdrop-filter: blur(20px);
  }
  .hiw-step:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
  .hiw-step .hiw-num {
    font-family: var(--mono); font-size: 12px; color: var(--mute-dark);
    letter-spacing: 0.04em;
  }
  .hiw-step .hiw-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(233,179,101,0.25), rgba(233,179,101,0.08));
    border: 1px solid rgba(233,179,101,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #7fbcff;
    position: relative; z-index: 2;
  }
  .hiw-step.hot .hiw-icon {
    background: linear-gradient(135deg, rgba(255,122,61,0.25), rgba(255,122,61,0.08));
    border-color: rgba(255,122,61,0.3); color: #ff8757;
  }
  .hiw-step.warm .hiw-icon {
    background: linear-gradient(135deg, rgba(255,181,71,0.25), rgba(255,181,71,0.08));
    border-color: rgba(255,181,71,0.3); color: #ffce7d;
  }
  .hiw-step.good .hiw-icon {
    background: linear-gradient(135deg, rgba(47,213,106,0.25), rgba(47,213,106,0.08));
    border-color: rgba(47,213,106,0.3); color: #7be4a3;
  }
  .hiw-step h3 { font-size: 20px; letter-spacing: -0.018em; font-weight: 600; line-height: 1.18; margin: 0; }
  .hiw-body { color: var(--mute-dark); font-size: 14px; line-height: 1.5; letter-spacing: -0.005em; margin: 0; }
  .hiw-step .hiw-foot {
    margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: #d6d6d8; font-family: var(--mono); letter-spacing: 0;
  }
  .hiw-step .hiw-foot .pip { color: var(--good); margin-right: 6px; }

  /* ============ CINEMATIC INTRO ============ */
  /* Central ignition glow — fires during intro phase B */
  .ignition {
    position: absolute; left: 50%; top: 56%;
    transform: translate(-50%, -50%) scale(0);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle,
      rgba(255,255,255,0.95) 0%,
      rgba(250,230,190,0.7) 6%,
      rgba(76,193,255,0.45) 16%,
      rgba(233,179,101,0.2) 32%,
      rgba(233,179,101,0.05) 50%,
      transparent 65%);
    filter: blur(12px); pointer-events: none;
    opacity: 0; z-index: 2; mix-blend-mode: screen;
    will-change: transform, opacity;
  }
  /* Skip-intro button */
  .intro-skip {
    position: fixed; top: 24px; right: 24px; z-index: 200;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 8px 14px; border-radius: 980px; cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: opacity 600ms var(--ease) 1200ms, color 200ms var(--ease), background 200ms var(--ease);
    backdrop-filter: blur(12px);
  }
  body.intro-playing .intro-skip { opacity: 1; pointer-events: auto; }
  .intro-skip:hover { color: white; background: rgba(255,255,255,0.08); }

  /* During intro — keep everything hidden until JS animates it in */
  body.intro-playing { overflow: hidden; }
  body.intro-playing .nav { opacity: 0; transition: opacity 800ms var(--ease); }
  body.intro-done .nav { opacity: 1; transition: opacity 800ms var(--ease) 200ms; }

  body.intro-playing .product-wrap { opacity: 0; }
  body.intro-playing [data-piece] { opacity: 0; }
  body.intro-playing #text-0 .eyebrow,
  body.intro-playing #text-0 .display,
  body.intro-playing #text-0 .lede { opacity: 0; }
  body.intro-playing #text-0 .hero-cta-row .btn,
  body.intro-playing #text-0 .hero-trust span { opacity: 0; }
  body.intro-playing .scroll-hint { opacity: 0 !important; }
  body.intro-playing .scene-dots { opacity: 0; }

  /* Energy / orbs start dim during intro */
  body.intro-playing .energy-1,
  body.intro-playing .energy-2,
  body.intro-playing .energy-3 { opacity: 0.05; }
  body.intro-playing .orb { opacity: 0.06; }

  /* Light beams that emerge from the ignition during phase B */
  .light-beam {
    position: absolute; left: 50%; top: 56%;
    width: 2px; height: 100vh;
    background: linear-gradient(180deg, transparent 0%, rgba(240,200,140,0.35) 20%, rgba(240,200,140,0.55) 50%, rgba(240,200,140,0.35) 80%, transparent 100%);
    transform-origin: 50% 0%;
    transform: translate(-50%, 0) rotate(0deg) scaleY(0);
    opacity: 0; pointer-events: none; z-index: 1;
    filter: blur(1.5px);
    mix-blend-mode: screen;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1080px) {
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-cell { border-left: none; border-top: 1px solid var(--hairline-dark); }
    .counter-cell:first-child, .counter-cell:nth-child(2) { border-top: none; }
    .counter-cell:nth-child(odd) { border-right: 1px solid var(--hairline-dark); }
  }
  @media (max-width: 980px) {
    .price-grid { grid-template-columns: 1fr; }
    .story-row, .story-row.flip, .coverage-grid, .roi-grid { grid-template-columns: 1fr; gap: 36px; }
    .story-row.flip .story-text { order: 0; }
    .test-grid { grid-template-columns: 1fr; }
    .pipeline-grid { grid-template-columns: 1fr 1fr; }
    .compare-row { grid-template-columns: 1.4fr 1fr 1fr; }
    .compare-cell.col-4, .compare-cell.col-5 { display: none; }
    .cinema { height: 380vh; }
    .feature-label, .scene-dots, .orbit { display: none; }
    .hiw-grid { grid-template-columns: 1fr 1fr; }
    .hiw-connector { display: none; }
  }
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .pd-body { grid-template-columns: 1fr; }
    .pd-side { display: none; }
    .product { padding: 16px; }
    .pipeline-grid { grid-template-columns: 1fr; }
    .compare-row { grid-template-columns: 1.4fr 1fr; }
    .compare-cell.col-3 { display: none; }
    .logo-row { gap: 22px; }
    .logo { font-size: 15px; }
    .hiw-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 14px; font-size: 12px; }
  }

  /* ============ SCROLL PROGRESS BAR ============ */
  .scroll-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100;
    background: transparent; pointer-events: none;
  }
  .scroll-progress > i {
    display: block; height: 100%; width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #f5d99c 0%, #e9b365 50%, #c89043 100%);
    box-shadow: 0 0 8px rgba(233,179,101,0.6);
    will-change: transform;
    transition: transform 80ms linear;
  }

  /* ============ STICKY SECTION INDEX ============ */
  .section-index {
    position: fixed; right: max(24px, 2.5vw); top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    display: flex; flex-direction: column; gap: 14px;
    opacity: 0; transition: opacity 500ms var(--ease);
    pointer-events: none;
  }
  .section-index.visible { opacity: 1; pointer-events: auto; }
  .section-index .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: width 360ms var(--ease), height 360ms var(--ease), background-color 360ms var(--ease), box-shadow 360ms var(--ease);
    cursor: pointer;
    position: relative;
  }
  .section-index .dot::after {
    content: attr(data-label);
    position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
    font-family: var(--mono); font-size: 10px;
    color: #c8c8d0; letter-spacing: 0.06em; text-transform: uppercase;
    white-space: nowrap; opacity: 0;
    transition: opacity 220ms var(--ease);
    padding: 4px 8px;
    background: rgba(20,20,24,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
  }
  .section-index .dot:hover::after { opacity: 1; }
  .section-index .dot.active {
    width: 10px; height: 10px;
    background: #e9b365;
    box-shadow: 0 0 0 4px rgba(233,179,101,0.18);
  }
  @media (max-width: 980px) { .section-index { display: none; } }

  /* ============ REVEAL VARIANTS ============ */
  .reveal-l { opacity: 0; transform: translate3d(-40px, 0, 0); transition: opacity 1000ms var(--ease), transform 1000ms var(--ease); will-change: opacity, transform; }
  .reveal-l.in { opacity: 1; transform: translate3d(0,0,0); }
  .reveal-r { opacity: 0; transform: translate3d(40px, 0, 0); transition: opacity 1000ms var(--ease), transform 1000ms var(--ease); will-change: opacity, transform; }
  .reveal-r.in { opacity: 1; transform: translate3d(0,0,0); }
  .reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 900ms var(--ease), transform 900ms var(--ease); will-change: opacity, transform; }
  .reveal-scale.in { opacity: 1; transform: scale(1); }
  [data-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
  [data-stagger].in > *:nth-child(2) { transition-delay: 90ms; }
  [data-stagger].in > *:nth-child(3) { transition-delay: 180ms; }
  [data-stagger].in > *:nth-child(4) { transition-delay: 270ms; }
  [data-stagger].in > *:nth-child(5) { transition-delay: 360ms; }
  [data-stagger].in > *:nth-child(6) { transition-delay: 450ms; }

  /* ============ MARQUEE ============ */
  .marquee {
    background: #000;
    border-top: 1px solid var(--hairline-dark);
    border-bottom: 1px solid var(--hairline-dark);
    overflow: hidden;
    position: relative;
    padding: 18px 0;
  }
  .marquee::before, .marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 140px;
    z-index: 2; pointer-events: none;
  }
  .marquee::before { left: 0;  background: linear-gradient(90deg, #000, transparent); }
  .marquee::after  { right: 0; background: linear-gradient(-90deg, #000, transparent); }
  .marquee-track {
    display: flex; gap: 56px;
    white-space: nowrap;
    animation: marqueeRoll 52s linear infinite;
    will-change: transform;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marqueeRoll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--mono); font-size: 13px; color: #c8c8d0;
    font-variant-numeric: tabular-nums;
  }
  .marquee-item .mq-zip { color: white; letter-spacing: 0.08em; }
  .marquee-item .mq-city { color: #86868b; }
  .marquee-item .mq-tag {
    font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px;
    background: rgba(47,213,106,0.12); color: #4be38a;
    border: 1px solid rgba(47,213,106,0.22);
  }
  .marquee-item .mq-sep { color: rgba(255,255,255,0.16); }

  /* ============ LEAD SCORE GRADER ============ */
  .grader-section {
    background: #000;
    position: relative; overflow: hidden;
    border-top: 1px solid var(--hairline-dark);
  }
  .grader-section::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(900px 500px at 80% 20%, rgba(233,179,101,0.08), transparent 60%),
      radial-gradient(700px 400px at 10% 90%, rgba(255,91,31,0.05), transparent 60%);
    pointer-events: none;
  }
  .grader-wrap {
    position: relative; max-width: var(--maxw); margin: 0 auto;
    padding: clamp(100px, 12vw, 170px) var(--shell);
  }
  .grader-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
  .grader-head .lede { margin: 22px auto 0; }
  .grader-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: stretch;
  }
  .grader-panel {
    background: linear-gradient(180deg, rgba(20,22,30,0.94) 0%, rgba(10,12,18,0.94) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
  }
  .grader-panel h3 {
    font-size: 13px; letter-spacing: 0.02em; color: #c8c8d0;
    text-transform: uppercase; font-weight: 500; margin: 0 0 4px;
  }
  .grader-panel .sub-line {
    font-size: 13px; color: #86868b; margin-bottom: 22px;
  }
  .signal-list { display: flex; flex-direction: column; gap: 10px; }
  .signal {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: border-color 240ms var(--ease), background-color 240ms var(--ease), transform 240ms var(--ease);
    user-select: none;
  }
  .signal:hover { border-color: rgba(233,179,101,0.3); background: rgba(233,179,101,0.04); transform: translateX(3px); }
  .signal.on { border-color: rgba(233,179,101,0.55); background: rgba(233,179,101,0.08); }
  .signal.on .checkbox { background: linear-gradient(180deg, #f5d99c, #c89043); border-color: transparent; }
  .signal.on .checkbox svg { opacity: 1; transform: scale(1); }
  .signal .checkbox {
    flex: none; width: 22px; height: 22px;
    border-radius: 7px;
    border: 1.5px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.4);
    display: grid; place-items: center;
    transition: background-color 240ms var(--ease), border-color 240ms var(--ease);
  }
  .signal .checkbox svg { opacity: 0; transform: scale(0.5); transition: opacity 220ms var(--ease), transform 240ms var(--ease-spring); color: #1a1a1f; }
  .signal .body { flex: 1; min-width: 0; }
  .signal .ttl { font-size: 15px; font-weight: 500; color: white; letter-spacing: -0.01em; }
  .signal .sg-sub { font-size: 12px; color: #86868b; margin-top: 2px; letter-spacing: -0.005em; }
  .signal .pts {
    flex: none;
    font-family: var(--mono); font-size: 12px; color: #86868b;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    font-variant-numeric: tabular-nums;
  }
  .signal.on .pts { color: #e9b365; border-color: rgba(233,179,101,0.3); background: rgba(233,179,101,0.08); }
  .grader-result {
    background: linear-gradient(180deg, rgba(20,22,30,0.94) 0%, rgba(10,12,18,0.94) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex; flex-direction: column;
  }
  .grader-score-head { display: flex; align-items: center; justify-content: space-between; }
  .grader-score-head .lbl {
    font-size: 13px; letter-spacing: 0.02em; color: #c8c8d0;
    text-transform: uppercase; font-weight: 500;
  }
  .grader-score-tag {
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    font-weight: 600; padding: 5px 10px; border-radius: 6px;
    transition: all 400ms var(--ease);
  }
  .grader-score-tag.cold { background: rgba(127,207,255,0.14); color: #7fcfff; border: 1px solid rgba(76,193,255,0.28); }
  .grader-score-tag.warm { background: rgba(255,206,125,0.16); color: #ffce7d; border: 1px solid rgba(255,181,71,0.32); }
  .grader-score-tag.hot  { background: rgba(255,91,31,0.16);  color: #ff8757; border: 1px solid rgba(255,91,31,0.38); }
  .grader-num {
    margin-top: 10px;
    font-size: clamp(80px, 11vw, 144px);
    font-weight: 600; letter-spacing: -0.05em; line-height: 0.95;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #c8e2f5 0%, #4cc1ff 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    transition: background 400ms var(--ease);
  }
  .grader-num.warm { background: linear-gradient(180deg, #ffe2a8 0%, #ffb547 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .grader-num.hot  { background: linear-gradient(180deg, #ffc09c 0%, #ff5b1f 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .grader-num-suffix {
    font-size: 24px; color: #86868b; margin-left: 6px; letter-spacing: -0.02em;
    -webkit-text-fill-color: #86868b;
  }
  .grader-bar {
    margin-top: 22px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
  }
  .grader-bar .fill {
    height: 100%; width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #7fcfff 0%, #ffce7d 50%, #ff5b1f 100%);
    border-radius: 999px;
    will-change: transform;
    transition: transform 720ms var(--ease);
    box-shadow: 0 0 12px rgba(233,179,101,0.4);
  }
  .grader-bar-labels {
    display: flex; justify-content: space-between;
    margin-top: 8px;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #6c6c76;
  }
  .grader-verdict {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px dashed rgba(255,255,255,0.08);
  }
  .grader-verdict .ttl {
    font-size: 16px; font-weight: 500; color: white;
    letter-spacing: -0.012em; line-height: 1.4;
    min-height: 22px;
    transition: opacity 280ms var(--ease);
  }
  .grader-verdict .ttl .em {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    background: linear-gradient(180deg, #f5d99c 0%, #c89043 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-size: 1.05em;
  }
  .grader-verdict .vsub {
    font-size: 13px; color: #86868b; margin-top: 6px; line-height: 1.5;
    min-height: 20px;
    transition: opacity 280ms var(--ease);
  }
  .grader-verdict .next {
    margin-top: 18px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: #e9b365; font-weight: 500;
    opacity: 0; transform: translateY(4px);
    transition: opacity 400ms var(--ease), transform 400ms var(--ease);
    pointer-events: none;
  }
  .grader-verdict .next.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .grader-verdict .next svg { transition: transform 300ms var(--ease); }
  .grader-verdict .next:hover svg { transform: translateX(4px); }

  @media (max-width: 980px) {
    .grader-grid { grid-template-columns: 1fr; }
  }

  /* ============ 3D TILT ON CARDS ============ */
  [data-tilt] {
    transform-style: preserve-3d;
    transition: transform 280ms var(--ease);
    will-change: transform;
  }

  /* ============ MAGNETIC CTA ============ */
  .magnetic {
    transition: transform 240ms var(--ease);
    will-change: transform;
  }

  /* ============ ANIMATED EYEBROW UNDERLINE ============ */
  .eyebrow.reveal {
    position: relative; display: inline-block; padding-left: 26px;
  }
  .eyebrow.reveal::before {
    content: ""; position: absolute; left: 0; top: 50%;
    width: 18px; height: 1px;
    background: currentColor;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 800ms var(--ease) 200ms;
    opacity: 0.7;
  }
  .eyebrow.reveal.in::before { transform: scaleX(1); }

  /* ============ FLOATING CTA ============ */
  .float-cta {
    position: fixed; right: 24px; bottom: 24px; z-index: 90;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f5d99c 0%, #c89043 100%);
    color: #1a1a1f; font-weight: 500; font-size: 14px;
    letter-spacing: -0.005em;
    border: none; cursor: pointer;
    box-shadow:
      0 20px 40px -10px rgba(200,144,67,0.5),
      0 0 0 1px rgba(255,255,255,0.18) inset;
    transform: translateY(80px); opacity: 0;
    transition: transform 480ms var(--ease), opacity 380ms var(--ease), filter 220ms var(--ease);
    will-change: transform, opacity;
  }
  .float-cta.visible { transform: translateY(0); opacity: 1; }
  .float-cta:hover { filter: brightness(1.06); }
  .float-cta .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #1a1a1f;
    position: relative;
  }
  .float-cta .pulse-dot::after {
    content: ""; position: absolute; inset: 0;
    border-radius: 50%;
    background: rgba(26,26,31,0.5);
    animation: floatPulse 1.8s ease-out infinite;
  }
  @keyframes floatPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
  }
  @media (max-width: 640px) {
    .float-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 13px; }
  }


  /* Plan toggle buttons (inside ROI calc) — kept here for proximity */
  .plan-btn {
    flex: 1; height: 40px; border-radius: 980px; border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04); color: #d6d6d8;
    font-size: 13px; font-weight: 500; letter-spacing: -0.005em;
    transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
  }
  .plan-btn:hover { background: rgba(255,255,255,0.08); }
  .plan-btn.active { background: var(--blue-deep); border-color: var(--blue-deep); color: white; }
  /* ---- Hide the native cursor only on capable pointers ---- */
  /* DISABLED: bespoke cursor removed for reliability — native cursor stays. */

  /* ---- Bespoke cursor (DISABLED — kept in DOM but never shown) ---- */
  .cursor-ring, .cursor-dot, .cursor-spotlight { display: none !important; }
  .cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9000;
    width: 6px; height: 6px; border-radius: 50%;
    background: #f5d99c; pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    mix-blend-mode: screen;
    transition: width 200ms var(--ease), height 200ms var(--ease), opacity 200ms var(--ease), background 200ms var(--ease);
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 8999;
    width: 38px; height: 38px; border-radius: 999px;
    border: 1px solid rgba(233,179,101,0.55);
    background: rgba(233,179,101,0.04);
    pointer-events: none; transform: translate3d(-50%, -50%, 0);
    display: flex; align-items: center; justify-content: center;
    transition: width 260ms var(--ease), height 260ms var(--ease),
                border-color 260ms var(--ease), background 260ms var(--ease),
                opacity 260ms var(--ease);
    backdrop-filter: blur(1px);
  }
  .cursor-ring.hidden, .cursor-dot.hidden { opacity: 0; }
  /* hover an interactive element: ring blooms, dot shrinks away */
  html.cur-link .cursor-ring { width: 58px; height: 58px; border-color: rgba(245,217,156,0.9); background: rgba(233,179,101,0.10); }
  html.cur-link .cursor-dot  { width: 0; height: 0; opacity: 0; }
  /* over text inputs: thin I-beam feel */
  html.cur-text .cursor-ring { width: 4px; height: 26px; border-radius: 2px; background: rgba(245,217,156,0.85); border-color: transparent; }
  html.cur-text .cursor-dot  { opacity: 0; }
  /* draggable / scrubbable controls */
  html.cur-drag .cursor-ring { width: 64px; height: 64px; border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
  html.cur-down .cursor-ring { transform: translate3d(-50%, -50%, 0) scale(0.82); }
  .cursor-label {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: #f5d99c; opacity: 0; transform: translateY(2px);
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
    white-space: nowrap; pointer-events: none;
  }
  html.cur-label .cursor-label { opacity: 1; transform: translateY(0); }
  html.cur-label .cursor-ring { width: auto; min-width: 58px; height: 30px; padding: 0 12px; border-radius: 999px; }

  /* On light sections the cursor flips to ink so it stays visible */
  html.cur-onlight .cursor-dot { background: #1d1d1f; mix-blend-mode: normal; }
  html.cur-onlight .cursor-ring { border-color: rgba(200,144,67,0.7); background: rgba(200,144,67,0.06); }

  /* ---- Ambient cursor spotlight (dark sections) ---- */
  @media (hover: hover) and (pointer: fine) {
    .cursor-spotlight {
      display: block; position: fixed; inset: 0; z-index: 1; pointer-events: none;
      opacity: 0; transition: opacity 600ms var(--ease);
      background: radial-gradient(360px circle at var(--cx, 50%) var(--cy, 50%),
                  rgba(233,179,101,0.07), transparent 60%);
      mix-blend-mode: screen;
    }
    .cursor-spotlight.on { opacity: 1; }
  }

  /* ---- ⌘K hint pill ---- */
  .cmdk-hint {
    position: fixed; left: 22px; bottom: 22px; transform: translateY(40px);
    z-index: 95; display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px 8px 10px; border-radius: 999px;
    background: rgba(18,18,22,0.66); backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid rgba(255,255,255,0.10); color: #c8c8d0;
    font-size: 12px; letter-spacing: -0.005em;
    opacity: 0; pointer-events: none;
    transition: opacity 500ms var(--ease), transform 600ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
    box-shadow: 0 14px 40px -16px rgba(0,0,0,0.7);
  }
  body.intro-done .cmdk-hint.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .cmdk-hint:hover { background: rgba(28,28,34,0.82); border-color: rgba(233,179,101,0.4); color: #fff; }
  .cmdk-hint kbd {
    font-family: var(--mono); font-size: 11px; line-height: 1; color: #f5d99c;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
    border-radius: 5px; padding: 3px 5px;
  }
  .cmdk-hint span { margin-left: 2px; }

  /* ---- ⌘K palette ---- */
  .cmdk { position: fixed; inset: 0; z-index: 9500; display: none; }
  .cmdk.open { display: block; }
  .cmdk-scrim {
    position: absolute; inset: 0; background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px) saturate(140%);
    opacity: 0; transition: opacity 320ms var(--ease);
  }
  .cmdk.open .cmdk-scrim { opacity: 1; }
  .cmdk-panel {
    position: absolute; left: 50%; top: 16vh; transform: translateX(-50%) translateY(-12px) scale(0.97);
    width: min(620px, 92vw);
    background: linear-gradient(180deg, rgba(26,26,32,0.96) 0%, rgba(14,14,18,0.97) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 50px 120px -30px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.03) inset;
    opacity: 0;
    transition: opacity 320ms var(--ease), transform 420ms var(--ease-spring);
  }
  .cmdk.open .cmdk-panel { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  .cmdk-search { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); color: #6c6c76; }
  .cmdk-search input {
    flex: 1; background: none; border: none; outline: none; color: #fff;
    font-family: var(--font); font-size: 17px; letter-spacing: -0.01em;
  }
  .cmdk-search input::placeholder { color: #5a5a64; }
  .cmdk-esc { font-family: var(--mono); font-size: 10px; color: #6c6c76; border: 1px solid rgba(255,255,255,0.10); border-radius: 5px; padding: 3px 6px; letter-spacing: 0.08em; }
  .cmdk-list { max-height: min(52vh, 420px); overflow-y: auto; padding: 8px; scrollbar-width: thin; }
  .cmdk-group-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #5a5a64; padding: 12px 12px 6px; font-weight: 600; }
  .cmdk-item {
    display: flex; align-items: center; gap: 14px; padding: 11px 12px; border-radius: 11px;
    color: #d6d6d8; font-size: 14.5px; letter-spacing: -0.008em; cursor: pointer;
    transition: background 140ms var(--ease);
  }
  .cmdk-item .ci-ic {
    flex: none; width: 32px; height: 32px; border-radius: 9px;
    display: grid; place-items: center; color: #f5d99c;
    background: rgba(233,179,101,0.10); border: 1px solid rgba(233,179,101,0.18);
  }
  .cmdk-item .ci-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
  .cmdk-item .ci-ttl { color: #f0f0f2; }
  .cmdk-item .ci-sub { font-size: 12px; color: #86868b; }
  .cmdk-item .ci-key { font-family: var(--mono); font-size: 11px; color: #6c6c76; }
  .cmdk-item.active, .cmdk-item:hover { background: rgba(255,255,255,0.06); }
  .cmdk-item.active { background: rgba(233,179,101,0.12); }
  .cmdk-item.active .ci-ttl { color: #fff; }
  .cmdk-empty { padding: 28px 16px; text-align: center; color: #6c6c76; font-size: 14px; }
  .cmdk-foot {
    display: flex; align-items: center; gap: 18px; padding: 11px 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 11px; color: #6c6c76;
  }
  .cmdk-foot kbd { font-family: var(--mono); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 2px 5px; margin-right: 3px; color: #a1a1a6; }
  .cmdk-foot-brand { margin-left: auto; color: #5a5a64; letter-spacing: 0.04em; }

  /* ---- Editorial line-reveal headlines ---- */
  .v8-lines { display: block; }
  .v8-line { display: block; overflow: hidden; }
  .v8-line > span {
    display: block;
    transform: translateY(108%);
    transition: transform 1100ms var(--ease);
    will-change: transform;
  }
  .v8-line.in > span { transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    .cursor-ring, .cursor-dot, .cursor-spotlight { display: none !important; }
    html.v8-cursor, html.v8-cursor * { cursor: auto !important; }
    .v8-line > span { transform: none !important; }
  }

  /* ---- ROI payback ring (added to the calculator) ---- */
  .roi-payback {
    display: flex; align-items: center; gap: 18px;
    background: rgba(0,0,0,0.36); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 16px 20px;
  }
  .roi-payback .ring { flex: none; width: 56px; height: 56px; position: relative; }
  .roi-payback .ring svg { transform: rotate(-90deg); display: block; }
  .roi-payback .ring .track { stroke: rgba(255,255,255,0.08); }
  .roi-payback .ring .val { stroke: url(#paybackGrad); stroke-linecap: round; transition: stroke-dashoffset 720ms var(--ease); }
  .roi-payback .ring .ct {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-family: var(--mono); font-size: 15px; font-weight: 600; color: #fff;
    font-variant-numeric: tabular-nums;
  }
  .roi-payback .pb-body { display: flex; flex-direction: column; gap: 2px; }
  .roi-payback .pb-ttl { font-size: 14px; color: #f0f0f2; letter-spacing: -0.01em; }
  .roi-payback .pb-sub { font-size: 12px; color: var(--mute-dark); }
  .roi-payback .pb-ttl b { color: #f5d99c; font-weight: 600; }

  /* ---- Coverage radar ---- */
  .radar-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .radar-sweep {
    position: absolute; left: 50%; top: 50%;
    height: 87%; aspect-ratio: 1 / 1; border-radius: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
      rgba(233,179,101,0.24) 0deg,
      rgba(233,179,101,0.06) 34deg,
      transparent 72deg, transparent 360deg);
    pointer-events: none; mix-blend-mode: screen;
    animation: radarSpin 7s linear infinite;
    will-change: transform;
  }
  @keyframes radarSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
  .coverage-map .map-dot { transform: translate(-50%, -50%); z-index: 2; }
  .coverage-map .map-dot.sm {
    width: 6px; height: 6px;
    background: rgba(233,179,101,0.55);
    box-shadow: 0 0 0 3px rgba(233,179,101,0.10);
  }
  .coverage-map .map-dot.sm.hot {
    background: rgba(255,122,61,0.6);
    box-shadow: 0 0 0 3px rgba(255,91,31,0.10);
  }
  .coverage-map .map-label { transform: translate(12px, -50%); z-index: 3; }
  .coverage-map .map-caption b { color: #f5d99c; font-weight: 600; }
  @media (prefers-reduced-motion: reduce) { .radar-sweep { animation: none; } }

/* ============ BOOKING MODAL ============ */
.booking-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); z-index: 998; opacity: 0; pointer-events: none;
  transition: opacity 280ms var(--ease);
}
.booking-scrim.open { opacity: 1; pointer-events: auto; }
.booking-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%);
  width: min(460px, calc(100vw - 40px)); max-height: calc(100vh - 60px); overflow-y: auto;
  background: #0e0e12; border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg);
  padding: 32px; z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.booking-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.booking-modal h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.booking-sub { color: var(--mute-dark); font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
.booking-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--hairline-dark); background: transparent; color: #f5f5f7; font-size: 18px;
  line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 200ms var(--ease);
}
.booking-close:hover { background: rgba(255,255,255,0.08); }
#booking-form { display: flex; flex-direction: column; gap: 14px; }
#booking-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--mute-dark); }
#booking-form input, #booking-form textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--hairline-dark); border-radius: 10px;
  padding: 10px 12px; color: #f5f5f7; font-family: var(--font); font-size: 14px; resize: vertical;
}
#booking-form input:focus, #booking-form textarea:focus { outline: none; border-color: var(--blue-deep); }
.booking-hp { position: absolute; left: -9999px; }
#booking-submit { margin-top: 6px; width: 100%; justify-content: center; }
#booking-submit[disabled] { opacity: 0.6; pointer-events: none; }
