/* ═══════════════════════════════════════════════════════
   COLDFLOW — shared stylesheet
   ═══════════════════════════════════════════════════════ */

:root {
  --bg:        #1a1a1a;
  --bg-alt:    #242424;
  --card:      #2d2d2d;
  --card-hi:   #353535;
  --accent:    #1D9E75;
  --text:      #ffffff;
  --text-dim:  #c8c8c8;
  --text-dim2: #b0b0b0;
  --border:    rgba(255,255,255,0.10);
  --border-hi: rgba(255,255,255,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.btn-nav {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: rgba(255,255,255,0.08); border-color: var(--border-hi); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel { display: none; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.68) 0%, rgba(12,12,12,0.8) 55%, var(--bg) 100%),
    url('https://images.unsplash.com/photo-1698222472029-7ebef66ad90f?fm=jpg&q=60&w=2400&auto=format&fit=crop')
    center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,158,117,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 112px);
  line-height: 0.94;
  letter-spacing: 1px;
  margin-bottom: 28px;
  max-width: 800px;
  color: var(--text);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }

.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b8b8b8;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hi); }

.hero-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--text);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: var(--text-dim2);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ─── SECTIONS ────────────────────────────────────── */
section { padding: 90px 0; }
section.alt { background: var(--bg-alt); }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #808080;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 120px;
}
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text);
}
.section-sub {
  font-size: 18px;
  color: #d0d0d0;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}

/* ─── PROBLEM SECTION — bulleted bad/good block with one arrow ── */
.problem-block {
  display: grid;
  grid-template-columns: 1fr 84px 1fr;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--border);
  align-items: stretch;
}
.problem-cell { background: #222222; padding: 44px 40px; }
.problem-cell-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 24px;
  display: block;
}
.problem-cell.bad .problem-cell-img { filter: grayscale(55%) brightness(0.8) contrast(1.05); }
.problem-cell.good .problem-cell-img { filter: saturate(1.1); }
.problem-cell-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.problem-cell.bad .problem-cell-label { color: #707070; }
.problem-cell.good { background: #1c2823; border-left: 1px solid rgba(29,158,117,0.18); }
.problem-cell.good .problem-cell-label { color: var(--accent); }
.problem-list { list-style: none; }
.problem-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #d8d8d8;
}
.problem-list li:last-child { margin-bottom: 0; }
.problem-list.bad li::before { content: '–'; position: absolute; left: 0; top: 0; color: #707070; font-weight: 700; }
.problem-list.good li { color: #eef7f2; }
.problem-list.good li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.problem-arrow { background: #1a1a1a; display: flex; align-items: center; justify-content: center; }
.problem-arrow svg { width: 30px; height: 30px; overflow: visible; }
.problem-arrow-line { stroke: var(--accent); stroke-width: 2.5; fill: none; stroke-dasharray: 6 5; animation: arrowFlow 1.1s linear infinite; }
.problem-arrow-head { fill: var(--accent); }
@keyframes arrowFlow { to { stroke-dashoffset: -22; } }

/* ─── WHAT'S INCLUDED ─────────────────────────────── */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.include-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.include-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.include-card:hover { border-color: var(--border-hi); background: var(--card-hi); }
.include-card:hover::before { opacity: 1; }
.include-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.include-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; color: var(--text); }
.include-desc { font-size: 16px; color: var(--text-dim); line-height: 1.8; letter-spacing: 0.01em; }

/* ─── HOW IT WORKS — animated flow (painted line) ─── */
.flow-wrap { position: relative; padding-left: 38px; }
.flow-track {
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 16px;
  border-radius: 4px;
  z-index: -1;
  overflow: visible;
  /* old, cracked, sun-faded line being painted over */
  background:
    repeating-linear-gradient(115deg, rgba(0,0,0,0.28) 0px, rgba(0,0,0,0.28) 1px, transparent 1px, transparent 9px),
    repeating-linear-gradient(25deg, rgba(0,0,0,0.20) 0px, rgba(0,0,0,0.20) 1px, transparent 1px, transparent 13px),
    linear-gradient(180deg, rgba(196,168,90,0.4), rgba(150,125,60,0.32));
}
.flow-track-fill {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #f7d976 0%, #f2c230 14%, #f2c230 100%);
  border-radius: 4px;
  transition: height 0.5s ease;
  box-shadow: 0 0 14px rgba(242,194,48,0.5), 0 0 2px rgba(242,194,48,0.8);
  overflow: visible;
}
/* soft wet-paint glow at the leading edge */
.flow-track-fill::before {
  content: '';
  position: absolute;
  left: -6px; right: -6px;
  bottom: -2px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}
/* paint roller leading the stroke */
.flow-track-fill::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 32px;
  height: 13px;
  background: linear-gradient(180deg, #6b6b6b, #2b2b2b);
  border-radius: 3px;
  transform: translateX(-50%);
  box-shadow: 0 -17px 0 -4.5px #2b2b2b, 0 3px 8px rgba(0,0,0,0.55);
  pointer-events: none;
}
.steps { display: flex; flex-direction: column; gap: 4px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0 28px 0;
  opacity: 0.35;
  transform: translateX(-8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.step.active { opacity: 1; transform: translateX(0); }
.step-dot {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dim2);
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
  z-index: 1;
}
.step.active .step-dot { border-color: #f2c230; color: #f2c230; background: rgba(242,194,48,0.14); }
.step-body { padding-top: 6px; }
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1;
}
.step-text { font-size: 16px; color: var(--text-dim); line-height: 1.85; letter-spacing: 0.01em; max-width: 460px; }
.step-why {
  margin-top: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: #f2c230;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.step.active .step-why { opacity: 1; transform: translateY(0); }

/* ─── FOUNDER / CREDIBILITY ────────────────────────── */
.founder-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.founder-badge {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 36px 32px;
}
.founder-badge-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.founder-badge-row:last-child { border-bottom: none; }
.founder-badge-label { font-size: 13px; color: var(--text-dim2); }
.founder-badge-value { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--accent); font-weight: 700; text-align: right; }
.founder-text p { font-size: 17px; color: var(--text-dim); line-height: 1.9; letter-spacing: 0.01em; margin-bottom: 18px; }
.founder-text p:last-child { margin-bottom: 0; }

/* ─── SAMPLE / PROOF — tone tab switcher ──────────── */
.tone-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.tone-tab {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 11px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--text-dim2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tone-tab:hover { color: var(--text); border-color: var(--border-hi); }
.tone-tab.active { color: var(--accent); border-color: var(--accent); background: rgba(29,158,117,0.1); }
.tone-panels { position: relative; }
.tone-panel { display: none; border-radius: 8px; padding: 32px; border: 1px solid rgba(29,158,117,0.3); background: #202b26; animation: tonePanelIn 0.3s ease; }
.tone-panel.active { display: block; }
@keyframes tonePanelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.sample-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}
.sample-body { font-size: 15.5px; line-height: 1.85; color: #eaf5f0; white-space: pre-line; font-family: 'DM Sans', sans-serif; }

/* ─── PRICING ─────────────────────────────────────── */
.founding-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: rgba(29,158,117,0.1);
  border: 1px solid rgba(29,158,117,0.35);
  border-radius: 5px;
  padding: 8px 16px;
  margin-bottom: 40px;
}
.pricing-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; align-items: stretch; }
.pricing-tiers-single { grid-template-columns: 1fr; max-width: 420px; margin-bottom: 56px; }
.pricing-tiers-three { grid-template-columns: repeat(3, 1fr); }
.pricing-goal-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(29,158,117,0.1);
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.pricing-goal-tag.alt { color: #f2c230; background: rgba(242,194,48,0.1); border-color: rgba(242,194,48,0.35); }
.pricing-goal-tag.managed { color: #cfd6dc; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); }
.pricing-goal-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.3px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
}
.pricing-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.25); }
.pricing-card.featured::before { background: var(--accent); }
.pricing-card.featured { border-color: rgba(29,158,117,0.4); }
.price-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim2); margin-bottom: 16px; }
.pricing-card.featured .price-label { color: var(--accent); }
.price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 60px; line-height: 1; letter-spacing: 1px; margin-bottom: 6px; color: var(--text); }
.price-period { font-size: 13px; color: var(--text-dim2); margin-bottom: 24px; letter-spacing: 0.02em; }
.price-speed {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-speed-num { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--accent); line-height: 1; }
.price-speed-num.managed { color: #cfd6dc; }
.price-speed-label { font-size: 12px; color: var(--text-dim2); text-transform: uppercase; letter-spacing: 0.5px; }
.price-includes { list-style: none; margin-bottom: 32px; flex-grow: 1; }
.price-includes li {
  font-size: 15.5px; color: #d8d8d8; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.5; letter-spacing: 0.01em;
}
.price-includes li:last-child { border-bottom: none; }
.price-includes li::before { content: ''; width: 16px; height: 16px; min-width: 16px; background: var(--accent); border-radius: 50%; margin-top: 2px; flex-shrink: 0; }
.pricing-guarantee {
  font-size: 15px;
  color: #f2c230;
  font-weight: 500;
  margin-bottom: 40px;
  padding: 16px 20px;
  border: 1px dashed rgba(242,194,48,0.4);
  border-radius: 8px;
  display: inline-block;
}
.pricing-faq { padding: 8px 0; max-width: 720px; }
.pricing-right-item { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pricing-right-item:first-child { padding-top: 0; }
.pricing-right-item.no-border { border-bottom: none; }
.pricing-right-q { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: var(--text); letter-spacing: 0.01em; }
.pricing-right-a { font-size: 16px; color: var(--text-dim); line-height: 1.8; letter-spacing: 0.01em; }

/* ─── FORM ────────────────────────────────────────── */
.intake-grid {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 48px;
  align-items: start;
}
.form-wrap {
  max-width: 640px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 44px;
}
.intake-sidebar { padding-top: 12px; }
.intake-sidebar-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim2);
  margin-bottom: 20px;
}
.intake-sidebar-note {
  font-size: 13px;
  color: var(--text-dim2);
  margin-top: 8px;
  font-style: italic;
}
.form-row { margin-bottom: 24px; }
.form-row:last-of-type { margin-bottom: 0; }
.form-row-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim2);
  margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: #222222;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b0b0b0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-hp { position: absolute; left: -9999px; }
.form-submit { width: 100%; border: none; margin-top: 8px; }
.form-trust {
  text-align: center;
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-dim2);
}

/* ─── CTA ─────────────────────────────────────────── */
.cta-section {
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(29,158,117,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 8vw, 88px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 24px; color: var(--text); }
.cta-headline .accent { color: var(--accent); }
.cta-sub { font-size: 17px; color: var(--text-dim); font-weight: 300; max-width: 440px; margin: 0 auto 40px; line-height: 1.8; letter-spacing: 0.01em; }

/* ─── FOOTER ──────────────────────────────────────── */
footer { padding: 40px 0; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; color: #808080; text-decoration: none; }
.footer-logo span { color: var(--accent); }
.footer-right { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-link { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: #808080; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--text-dim2); }

/* ─── ABOUT PAGE ──────────────────────────────────── */
.about-hero { padding: 90px 0 70px; }
.about-hero-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 9vw, 88px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 24px; max-width: 760px; }
.about-hero-sub { font-size: 17px; color: var(--text-dim); max-width: 560px; line-height: 1.85; font-weight: 300; }

/* ─── THANK YOU PAGE ──────────────────────────────── */
.ty-section { min-height: 60vh; display: flex; align-items: center; padding: 100px 0; }
.ty-wrap { text-align: center; max-width: 560px; margin: 0 auto; }
.ty-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(29,158,117,0.14);
  border: 1px solid rgba(29,158,117,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.ty-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 8vw, 64px); line-height: 1; letter-spacing: 1px; margin-bottom: 20px; }
.ty-heading .accent { color: var(--accent); }
.ty-sub { font-size: 17px; color: var(--text-dim); line-height: 1.85; margin-bottom: 40px; font-weight: 300; }

/* ─── REVEAL ON SCROLL ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.12s; }
.reveal-3 { transition-delay: 0.19s; }
.reveal-4 { transition-delay: 0.26s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up   { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.2s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.3s ease both; }
.fade-up-5 { animation: fadeUp 0.7s 0.4s ease both; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .intake-grid { grid-template-columns: 1fr; }
  .form-wrap { max-width: 100%; }
  .pricing-tiers-three { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 20px; }
}

@media (max-width: 860px) {
  .founder-wrap { grid-template-columns: 1fr; }
  .sample-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .problem-block { grid-template-columns: 1fr; }
  .problem-arrow { padding: 12px 0; }
  .problem-arrow svg { transform: rotate(90deg); }
  .problem-cell-img { height: 140px; }
  .tone-panel { padding: 24px 20px; }
  .tone-tab { padding: 9px 14px; font-size: 11px; }
  .container { padding: 0 22px; }
  section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .split-grid, .includes-grid, .pricing-tiers { grid-template-columns: 1fr; }
  .form-row-pair { grid-template-columns: 1fr; }
  .nav-right .nav-link { display: none; }
  .nav-right .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-mobile-panel.open { max-height: 220px; }
  .nav-mobile-inner { padding: 20px 0 4px; display: flex; flex-direction: column; gap: 18px; }
  .nav-mobile-inner .nav-link { display: block; font-size: 12px; }
  .nav-mobile-inner .btn-nav { display: inline-block; width: max-content; }
  .hero-stat-row { gap: 28px; margin-top: 52px; padding-top: 32px; }
  .stat-num { font-size: 32px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
  .step-dot { width: 44px; height: 44px; font-size: 13px; }
  .flow-wrap { padding-left: 26px; }
  .flow-track { left: 6px; width: 12px; }
  .flow-track-fill::after { width: 24px; height: 10px; bottom: -10px; box-shadow: 0 -13px 0 -3.5px #2b2b2b, 0 2px 6px rgba(0,0,0,0.5); }
  .founder-badge { padding: 28px 24px; }
  .form-wrap { padding: 28px 22px; }
  .price-amount { font-size: 54px; }
}
