:root {
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --accent: #3b82f6;
  --accent-2: #60a5fa;
  --accent-strong: #2563eb;
  --accent-soft: rgba(59, 130, 246, 0.08);
  --accent-glow: rgba(59, 130, 246, 0.28);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px -20px rgba(15, 23, 42, 0.14);
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--accent);
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-name { letter-spacing: -0.01em; font-size: 16px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a:not(.btn) { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.15s ease; }
.nav-links > a:not(.btn):hover { color: var(--text); }
.nav-links > a.is-active { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.05s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-strong); box-shadow: 0 12px 30px -8px var(--accent-glow); }
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--surface-2); border-color: var(--muted-2); }

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  animation: drift 20s ease-in-out infinite alternate;
}
.mesh-1 {
  width: 540px; height: 540px;
  left: -120px; top: -100px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.28), transparent 65%);
}
.mesh-2 {
  width: 620px; height: 620px;
  right: -160px; top: 40px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.22), transparent 65%);
  animation-delay: -6s;
}
.mesh-3 {
  width: 480px; height: 480px;
  left: 30%; bottom: -180px;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.18), transparent 65%);
  animation-delay: -12s;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.05); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}
.hero-inner { max-width: 880px; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin: 0 0 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  font-weight: 800;
  color: var(--text);
}
.hero h1 .serif { font-size: 0.95em; }
.lede {
  font-size: 20px;
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.hero-meta strong { color: var(--text); font-weight: 600; margin-right: 6px; }

.hero-compact { padding: 80px 0 64px; }
.hero-compact .lede { margin-bottom: 0; }

/* Calls page */
.calls-section { padding-top: 64px; }
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  font-family: inherit;
  box-shadow: var(--shadow-sm);
}
.chip:hover {
  border-color: var(--border-strong);
  color: var(--text);
}
.chip.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px -4px var(--accent-glow);
}
.chip.is-active .chip-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  background: var(--bg-alt);
  color: var(--muted-2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.calls-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.call-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.call-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.outcome-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.outcome-meeting-booked {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}
.outcome-follow-up {
  background: rgba(99, 102, 241, 0.1);
  color: #4338ca;
}
.outcome-email-sent {
  background: var(--bg-alt);
  color: var(--muted);
}
.call-company {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  word-break: break-word;
}
.call-role {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Custom audio player */
.player {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.player-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 16px -6px var(--accent-glow);
}
.player-btn:hover { background: var(--accent-strong); }
.player-btn:active { transform: scale(0.95); }
.player-icon-pause { display: none; }
.player-btn.is-playing .player-icon-play { display: none; }
.player-btn.is-playing .player-icon-pause { display: block; }
.player-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.player-bar::after {
  content: "";
  position: absolute;
  inset: -10px 0;
}
.player-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 999px;
  transition: width 0.05s linear;
}
.player-time {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 78px;
  text-align: right;
}

.calls-note {
  margin: 56px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}
.calls-note em { color: var(--text); font-style: italic; }

/* Logo strip */
.logos {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 28px;
}
.logos-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.logo-wordmark {
  color: var(--muted);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.logo-wordmark:hover { opacity: 1; color: var(--text); }
.logo-italic { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; letter-spacing: 0; }
.logo-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 18px; letter-spacing: -0.02em; }

/* Stats */
.stats { padding: 64px 0; border-bottom: 1px solid var(--border); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, var(--text) 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* Sections */
.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-sub {
  margin: 18px 0 0;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 620px;
}
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.kicker.muted { color: var(--muted); }
.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  color: var(--text);
}
.section h2 .serif { font-size: 1em; }
.section h2.muted { color: var(--muted); }

/* Grid of cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.card h3 { margin: 16px 0 10px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.card p { color: var(--muted); margin: 0; font-size: 15.5px; }
.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* Funnel — the math */
.funnel { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.funnel-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: center;
}
.funnel-track {
  height: 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.funnel-fill {
  height: 100%;
  width: var(--w);
  min-width: 96px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 20px -8px var(--accent-glow);
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}
.funnel-fill-final {
  background: linear-gradient(90deg, #6366f1, #4338ca);
  box-shadow: 0 8px 20px -8px rgba(99, 102, 241, 0.45);
}
.funnel-meta { display: flex; flex-direction: column; gap: 4px; }
.funnel-meta strong { font-size: 15px; font-weight: 600; color: var(--text); }
.funnel-meta span { font-size: 13px; color: var(--muted); }
.funnel-note {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

/* Calculator */
.calc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
.calc-primary { display: grid; gap: 14px; }
.calc-primary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.calc-primary-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.calc-big-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.calc-big-unit { font-size: 15px; color: var(--muted); }
.calc-range-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right,
    var(--accent) 0%,
    var(--accent) var(--fill, 0%),
    var(--border) var(--fill, 0%),
    var(--border) 100%);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 4px 14px -4px var(--accent-glow), 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: transform 0.12s ease;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.18); }
.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  cursor: grab;
  box-shadow: 0 4px 14px -4px var(--accent-glow);
}
.calc-range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px var(--accent-soft), 0 4px 14px -4px var(--accent-glow);
}

.calc-assumptions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.calc-assumption { display: grid; gap: 10px; }
.calc-assumption-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.calc-label-sm {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.calc-assumption-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.calc-hint {
  margin: 0;
  font-size: 12px;
  color: var(--muted-2);
}
.calc-hint-standalone {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin: 0;
}
.calc-hint-standalone strong { color: var(--text); font-weight: 700; }

.calc-funnel { padding-top: 8px; }
.calc-funnel .funnel-fill span { font-variant-numeric: tabular-nums; }

.calc-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  text-align: center;
}
.calc-summary-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.calc-summary-num-accent { color: var(--accent); }
.calc-summary-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.calc-summary-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 auto;
}
.calc-cta { justify-self: center; }

/* Stack — tools we use */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stack-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.stack-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.stack-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.stack-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 6px;
}
.stack-item p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.stack-cta {
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  border-color: var(--accent);
  border-style: dashed;
}
.stack-cta strong {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--accent-strong);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-featured {
  border-color: var(--accent);
  box-shadow: 0 24px 50px -20px var(--accent-glow);
}
.pricing-featured:hover { box-shadow: 0 32px 60px -20px var(--accent-glow); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
}
.pricing-badge-muted {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border-strong);
}
.pricing-bridge {
  border-color: #6366f1;
}
.pricing-bridge:hover {
  box-shadow: 0 24px 50px -20px rgba(99, 102, 241, 0.3);
}
.pricing-badge-bridge {
  background: linear-gradient(135deg, #6366f1, #4338ca);
  color: #fff;
}
.pricing-card h3 {
  margin: 8px 0 18px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, var(--text) 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-period { font-size: 14px; color: var(--muted); }
.pricing-sub {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
.pricing-features li::after {
  content: "";
  position: absolute;
  left: 5px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.pricing-card .btn { justify-self: flex-start; }

/* Results */
.results-grid { gap: 20px; }
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.result-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.result-metric {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.result-label { font-size: 14px; color: var(--text); margin-top: 10px; font-weight: 600; }
.result-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}
.result-card blockquote { margin: 0; font-size: 15.5px; color: var(--text); line-height: 1.55; }
.result-attribution { margin: 14px 0 0; font-size: 13px; color: var(--muted); }
.results-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
}

/* Testimonials */
.testimonials { gap: 20px; }
.testimonial {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.testimonial blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.005em;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.testimonial figcaption strong { display: block; font-weight: 600; }
.testimonial figcaption .role { color: var(--muted); font-size: 13px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--av), color-mix(in srgb, var(--av) 65%, #000));
  flex-shrink: 0;
}

/* Two col fit/not-fit */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.two-col h2 { margin-bottom: 24px; }
.check-list, .x-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .x-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.check-list li:last-child, .x-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.x-list li { color: var(--muted); }
.x-list li::before {
  content: "—";
  position: absolute;
  left: 0; top: 12px;
  color: var(--muted-2);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.steps li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.steps li:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.step-num {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -4px var(--accent-glow);
}
.steps h3 { margin: 0 0 6px; font-size: 18px; font-weight: 600; }
.steps p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 36px;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0 0 20px; color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* CTA + contact form */
.section-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  border-bottom: none;
  background: var(--bg);
}
.section-cta .hero-bg { z-index: -1; }
.section-cta .mesh { opacity: 0.55; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner .kicker { text-align: center; }
.cta-inner h2 { margin: 0 auto 12px; }
.cta-sub { color: var(--muted); margin: 0 auto 36px; font-size: 17px; }
.cta-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.cta-book .btn { padding: 16px 32px; font-size: 17px; }
.cta-book-link {
  font-size: 13px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -0.01em;
}
.cta-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 28px;
  max-width: 420px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-or::before,
.cta-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.fineprint { font-size: 13px; color: var(--muted); margin: 0; }
.fineprint a { color: var(--accent); }
.fineprint a:hover { text-decoration: underline; }

.contact-form {
  text-align: left;
  display: grid;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form button[type="submit"] {
  justify-self: center;
  margin-top: 8px;
}
.contact-form .fineprint { text-align: center; margin: 4px 0 0; }

/* Footer */
.footer {
  background: var(--bg-alt);
  padding: 64px 0 28px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand-name { font-size: 16px; color: var(--text); }
.footer-brand p { margin: 14px 0 0; color: var(--muted); max-width: 320px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-links h4 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}
.footer-links a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 880px) {
  .nav-links > a:not(.btn) { display: none; }
  .grid-3, .stats-row { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 80px 0 64px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { gap: 40px; }
  .funnel-row { grid-template-columns: 1fr; gap: 12px; }
  .funnel-meta { padding-left: 4px; }
  .stack-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px; }
  .pricing-badge { left: 28px; }
  .calc { padding: 28px; gap: 28px; }
  .calc-assumptions { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
  .calc-big-num { font-size: 36px; }
  .calc-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }
  .calc-summary-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .calc-summary-num { font-size: 28px; }
  .calls-grid { grid-template-columns: 1fr; }
  .call-card { padding: 22px; }
  .player-time { min-width: 70px; font-size: 11px; }
}
