:root {
  --bg: #ffffff;
  --bg-alt: #f7f6fc;
  --surface: #ffffff;
  --surface-2: #faf9fd;
  --border: #e6e3f0;
  --border-strong: #c9c2dd;
  --text: #14122a;
  --muted: #6b6587;
  --muted-2: #9690af;
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --accent-strong: #4f46e5;
  --accent-soft: rgba(99, 102, 241, 0.08);
  --accent-glow: rgba(99, 102, 241, 0.28);
  --success: #10b981;
  --success-soft: rgba(16, 185, 129, 0.12);
  --shadow-sm: 0 1px 2px rgba(20, 18, 42, 0.04), 0 2px 6px rgba(20, 18, 42, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(20, 18, 42, 0.10);
  --shadow-lg: 0 24px 48px -20px rgba(20, 18, 42, 0.16);
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1140px;
}

[data-theme="dark"] {
  --bg: #0c0a1a;
  --bg-alt: #131127;
  --surface: #181530;
  --surface-2: #1f1b3a;
  --border: #2a2548;
  --border-strong: #423b6e;
  --text: #ece9fb;
  --muted: #a39dc4;
  --muted-2: #6f6896;
  --accent: #8b5cf6;
  --accent-2: #a78bfa;
  --accent-strong: #6366f1;
  --accent-soft: rgba(139, 92, 246, 0.16);
  --accent-glow: rgba(139, 92, 246, 0.42);
  --success: #34d399;
  --success-soft: rgba(52, 211, 153, 0.16);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 28px -10px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .mesh-1 {
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.45), transparent 65%);
}
[data-theme="dark"] .mesh-2 {
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.32), transparent 65%);
}
[data-theme="dark"] .mesh-3 {
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.20), transparent 65%);
}
[data-theme="dark"] .mesh { opacity: 0.55; }
[data-theme="dark"] .grid-overlay {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}
[data-theme="dark"] .nav {
  background: rgba(12, 10, 26, 0.7);
}
[data-theme="dark"] .nav.is-scrolled {
  background: rgba(12, 10, 26, 0.92);
}
[data-theme="dark"] .stat-num,
[data-theme="dark"] .pricing-amount,
[data-theme="dark"] .calc-summary-num {
  background: linear-gradient(180deg, #ece9fb 0%, #a39dc4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.theme-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  padding: 0;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--text);
  border-color: var(--accent);
}
.theme-icon-light, .theme-icon-dark {
  width: 16px;
  height: 16px;
  display: none;
}
.theme-icon-light { display: inline-block; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: inline-block; }

* { 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);
}

[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;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.brand-name { font-size: 18px; }
.brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--muted);
  margin-left: 2px;
}
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cross {
  color: var(--muted-2);
  font-size: 13.5px;
  border-left: 1px solid var(--border);
  padding-left: 22px;
}
.nav-cross:hover { color: var(--accent); }
@media (max-width: 820px) {
  .nav-links a:not(.btn):not(.nav-cross) { display: none; }
  .nav-cross { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 8px 22px -8px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-lg { font-size: 16px; padding: 14px 22px; }
.btn-sm { font-size: 13.5px; padding: 8px 14px; }

/* Hero — editorial */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  isolation: isolate;
}
.hero-editorial {
  padding: 120px 0 140px;
}
.hero-editorial-inner {
  text-align: left;
  max-width: 880px;
  position: relative;
}
.hero-glow {
  position: absolute;
  top: -120px;
  left: 20%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.18), transparent 65%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
[data-theme="dark"] .hero-glow {
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.32), transparent 65%);
}
.hero-eyebrow {
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 32px;
}
.hero-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}
[data-theme="dark"] .hero-number {
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-headline {
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 36px;
  color: var(--text);
}
.hero-headline .serif {
  color: var(--text);
  font-weight: 400;
}
.hero-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 20px;
}
.hero-manifesto {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
  color: var(--text);
  max-width: 620px;
  margin: 0 0 32px;
  font-weight: 600;
}
.hero-manifesto em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  font-size: 1.1em;
}
.hero-guarantee {
  font-size: 16px;
  color: var(--text);
  margin: 0 0 40px;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 12px 12px 0;
  max-width: 580px;
}
.hero-guarantee strong {
  color: var(--accent);
  font-weight: 700;
}
.hero-deal {
  margin: 0 0 40px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 12px 12px 0;
  max-width: 660px;
}
.hero-deal-terms {
  font-size: 17px;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.45;
}
.hero-deal-terms strong {
  color: var(--accent);
  font-weight: 700;
}
.hero-deal-promise {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}
.hero-editorial .hero-cta {
  display: inline-flex;
  margin: 0;
}

/* Legacy hero (centered, for fallback) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  pointer-events: none;
}
.mesh-1 {
  width: 540px;
  height: 540px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.38), transparent 65%);
  animation: float 18s ease-in-out infinite;
}
.mesh-2 {
  width: 480px;
  height: 480px;
  top: -60px;
  right: -120px;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.32), transparent 65%);
  animation: float 22s ease-in-out infinite reverse;
}
.mesh-3 {
  width: 400px;
  height: 400px;
  bottom: -180px;
  left: 30%;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.20), transparent 65%);
  animation: float 26s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 18, 42, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 18, 42, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px var(--success-soft);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 22px;
  max-width: 880px;
}
.hero .lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 32px;
}
.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  justify-content: center;
}
.hero-meta strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 13.5px;
  margin-bottom: 2px;
}

/* Logos strip */
.logos {
  padding: 32px 0 56px;
}
.logos-label {
  text-align: center;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  font-weight: 600;
  margin: 0 0 22px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 48px;
  opacity: 0.7;
}
.logo-wordmark {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--muted);
  text-transform: none;
}
.logo-italic { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 24px; }
.logo-mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; font-size: 16px; letter-spacing: -0.02em; }
.logo-allcaps { text-transform: uppercase; letter-spacing: 0.06em; font-size: 16px; }

/* Stats */
.stats {
  padding: 48px 0 32px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 720px) {
  .stats-row { grid-template-columns: 1fr; }
}
.stat-num {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #14122a 0%, #6b6587 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stat-label {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 280px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 96px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head-left {
  text-align: left;
  margin: 0 0 48px;
  max-width: 720px;
}
.kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}
.kicker.muted { color: var(--muted-2); }
.section h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 18px;
}
.section h2.muted { color: var(--muted); }
.section-sub {
  color: var(--muted);
  font-size: 17px;
  margin: 0 auto;
  max-width: 620px;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 840px) {
  .grid-3 { grid-template-columns: 1fr; }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.card p { color: var(--muted); margin: 0; }

/* Duo — two-card system display */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 840px) {
  .duo { grid-template-columns: 1fr; gap: 20px; }
}
.duo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.duo-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.duo-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.duo-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.duo-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.system-foot {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  margin: 48px auto 0;
  max-width: 600px;
}

/* Phases — 90-day timeline */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 840px) {
  .phases { grid-template-columns: 1fr; }
}
.phase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.phase:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.phase-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.phase h3 {
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.phase p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}
.phase-final {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-color: transparent;
  color: #fff;
}
.phase-final .phase-tag {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.phase-final h3 {
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.phase-final p {
  color: rgba(255, 255, 255, 0.85);
}
.phase-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px var(--accent-glow);
}

/* CTA tight (no form) */
.cta-inner-tight {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 0;
}
.cta-inner-tight h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 16px;
}
.cta-inner-tight .cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 36px;
}

/* Funnel / calculator */
.calc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  max-width: 920px;
  margin: 0 auto;
}
.calc-primary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.calc-big-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.calc-big-unit {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
}
.calc-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 28px;
  cursor: pointer;
  --fill: 50%;
}
.calc-range::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--fill), var(--border) var(--fill), var(--border) 100%);
  border-radius: 999px;
}
.calc-range::-moz-range-track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
}
.calc-range::-moz-range-progress {
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--surface);
  box-shadow: 0 4px 12px -2px var(--accent-glow), 0 0 0 1px var(--accent);
  margin-top: -8px;
}
.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--surface);
  box-shadow: 0 4px 12px -2px var(--accent-glow), 0 0 0 1px var(--accent);
}
.calc-range-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
}
.calc-hint {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.calc-hint-standalone {
  margin: 22px 0 28px;
  padding: 14px 18px;
  background: var(--surface-2);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.funnel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.funnel-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(220px, 1.5fr);
  gap: 18px;
  align-items: center;
}
@media (max-width: 640px) {
  .funnel-row { grid-template-columns: 1fr; }
}
.funnel-track {
  background: var(--surface-2);
  border-radius: 10px;
  height: 44px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.funnel-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  width: var(--w, 50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  transition: width 0.35s cubic-bezier(.2,.8,.2,1);
}
.funnel-fill-final {
  background: linear-gradient(135deg, var(--accent-2) 0%, #ec4899 100%);
}
.funnel-meta strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.funnel-meta span {
  font-size: 13.5px;
  color: var(--muted);
}
.calc-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 22px 26px;
  background: var(--surface-2);
  border-radius: 16px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: space-between;
}
.calc-summary-stat { text-align: left; }
.calc-summary-num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #14122a 0%, #6b6587 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.calc-summary-num-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.calc-summary-label {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 4px;
}
.calc-summary-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 30px;
}
.calc-cta {
  margin-top: 28px;
  width: 100%;
}
.funnel-note {
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 620px;
  margin: 36px auto 0;
  font-style: italic;
}

/* Cost compare */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
@media (max-width: 840px) {
  .cost-grid { grid-template-columns: 1fr; }
}
.cost-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.cost-card-coda {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  position: relative;
}
.cost-card-coda::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  z-index: -1;
  opacity: 0.08;
}
.cost-card-head { margin-bottom: 22px; }
.cost-card-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--muted-2);
  margin: 0 0 8px;
}
.cost-card-coda .cost-card-label { color: var(--accent); }
.cost-card-head h3 {
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.01em;
}
.cost-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cost-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.cost-list li:last-child { border-bottom: none; padding-bottom: 0; }
.cost-line {
  font-weight: 600;
  font-size: 15px;
}
.cost-amount {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cost-card-coda .cost-amount { color: var(--accent); }
.cost-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--muted);
}
.cost-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-bottom: 14px;
}
.cost-total-label {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cost-total-amount {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cost-card-coda .cost-total-amount {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cost-fineprint {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.cost-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  flex-wrap: wrap;
}
.cost-summary-stat { flex: 1; min-width: 160px; }
.cost-summary-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.cost-summary-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}
.cost-summary-vs {
  color: var(--muted-2);
  font-size: 12.5px;
}
.cost-summary-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}
@media (max-width: 720px) {
  .cost-summary-divider { display: none; }
}

/* Stack */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .stack-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .stack-grid { grid-template-columns: 1fr; } }
.stack-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.stack-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.stack-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stack-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stack-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.stack-cta {
  background: var(--accent-soft);
  border: 1px dashed var(--accent);
}
.stack-cta strong { display: block; margin-bottom: 6px; color: var(--accent); font-size: 17px; }
.stack-cta p { color: var(--muted); }

/* Pricing — single offer hero */
.pricing-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, #ec4899 100%);
}
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pricing-title h3 {
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.pricing-title p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.pricing-price-block {
  text-align: right;
}
@media (max-width: 600px) {
  .pricing-price-block { text-align: left; }
}
.pricing-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #14122a 0%, #6b6587 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.pricing-period {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.pricing-guarantee {
  display: flex;
  gap: 14px;
  background: var(--success-soft);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 20px 22px;
  border-radius: 16px;
  margin-bottom: 28px;
}
[data-theme="dark"] .pricing-guarantee {
  border-color: rgba(52, 211, 153, 0.3);
}
.pricing-guarantee-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.pricing-guarantee-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}
.pricing-guarantee-text span {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
@media (max-width: 600px) {
  .pricing-features { grid-template-columns: 1fr; }
}
.pricing-features li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.pricing-cta {
  width: 100%;
}
.pricing-foot {
  text-align: center;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}

/* Process / steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 16px -6px var(--accent-glow);
}
.steps h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Fit / not-fit */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
.check-list,
.x-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li,
.x-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.x-list li {
  color: var(--muted);
}
.x-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Testimonials */
.testimonials .testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-family: var(--serif);
  color: var(--text);
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.avatar {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  background: var(--av, var(--accent));
  font-size: 14px;
}
.testimonial figcaption strong {
  display: block;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.role { color: var(--muted-2); font-size: 13px; }

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq details p + p { padding-top: 12px; }
.faq details a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }

/* CTA section */
.section-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-sub {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 36px;
}
.cta-book {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-book-link {
  color: var(--muted-2);
  font-size: 13px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}
.cta-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 28px;
}
.cta-or::before,
.cta-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.cta-or span {
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.field input,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 96px; }
.fineprint {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}
.fineprint a { color: var(--accent); }

/* Footer */
.footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
.footer-brand p {
  max-width: 380px;
  margin: 12px 0 0;
  font-size: 14px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin: 0 0 14px;
}
.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px 0;
  font-size: 13px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 12px;
}

/* Inline halo on key words */
.halo {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sibling-site banner — top */
.sibling-banner {
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  padding: 8px 16px;
}
.sibling-banner a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-soft);
}
