/* ============================================================
   ZapTask.ai — "Live Current" design system
   Retool-standard reference, our own electricity.
   Canvas #0e0e0e · surfaces stack, no shadows · gold current
   Body floor: 18px. Reading text: 20px.
   ============================================================ */

:root {
  --canvas: #0e0e0e;
  --surface-1: #151515;
  --surface-2: #1c1c1c;
  --surface-3: #242424;
  --line: rgba(233, 235, 223, 0.09);
  --line-strong: rgba(233, 235, 223, 0.16);
  --text: #e9ebdf;
  --text-muted: #9a978c;
  --text-dim: #6d6b62;
  --gold-bright: #ffd45e;
  --gold: #e8b445;
  --gold-deep: #8a6a1f;
  --rust: #b4551f;
  --rust-deep: #7a3d1e;
  --cream: #efe9d9;
  --cream-ink: #141310;
  --lime: #b5d94c;
  --signal-orange: #e87b35;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Instrument Sans', -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-card: 16px;
  --radius-pill: 9999px;
  --pad-section: clamp(5rem, 7.5vw, 9rem);
  --accent: #e8b445;
  --white: #e9ebdf;
}

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

html { font-size: 75%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;           /* 20px reading floor */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--cream-ink); }

img, video { max-width: 100%; display: block; }
a { color: inherit; }

/* Film grain — very subtle, sits above everything */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 9999; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Reveal system (safe without JS) ============ */
.reveal, .fade-in { opacity: 1; transform: none; }
html.js .reveal, html.js .fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
html.js .reveal.visible, html.js .fade-in.visible { opacity: 1; transform: none; }
html.js .reveal-d1 { transition-delay: 0.08s; }
html.js .reveal-d2 { transition-delay: 0.16s; }
html.js .reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============ Nav ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1.2rem, 4vw, 2.5rem);
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
nav.scrolled { border-bottom-color: var(--line); }
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; font-family: var(--font-display);
  font-weight: 500; font-size: 19px; letter-spacing: -0.02em;
}
.logo img { border-radius: 6px; }
.logo > span > span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav-link {
  text-decoration: none; color: var(--text-muted);
  font-size: 18px; transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--cream); color: var(--cream-ink);
  text-decoration: none; font-size: 18px; font-weight: 600;
  padding: 0.55rem 1.4rem; border-radius: var(--radius-pill);
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* ============ Hero ============ */
.hero-wrapper { position: relative; padding-top: 7.5rem; }
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2.5rem) 0;
  text-align: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 18px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line-strong);
  padding: 0.45rem 1.1rem; border-radius: var(--radius-pill);
  margin-bottom: 2.2rem; background: var(--surface-1);
}
.tag-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 212, 94, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(255, 212, 94, 0); }
}
h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3.4rem, 6.75vw, 7.2rem);
  letter-spacing: -0.045em; line-height: 1.02;
  margin-bottom: 1.8rem;
}
h1 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--gold); letter-spacing: -0.02em;
}
.hero p {
  max-width: 860px; margin: 0 auto 2.4rem;
  font-size: 27px; line-height: 1.7; color: var(--text-muted);
}
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--cream-ink);
  font-family: var(--font-body); font-weight: 600; font-size: 18px;
  text-decoration: none; border: none; cursor: pointer;
  padding: 0.85rem 1.9rem; border-radius: var(--radius-pill);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  background: var(--gold-bright); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 180, 69, 0.28);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text);
  font-weight: 500; font-size: 18px; text-decoration: none;
  padding: 0.85rem 1.9rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.btn-secondary:hover { border-color: var(--gold); background: var(--surface-1); }

/* ============ Hero media panel (the loop) ============ */
.hero-media {
  position: relative; max-width: 1200px;
  margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}
.hero-media-frame {
  position: relative; border-radius: var(--radius-card);
  overflow: hidden; border: 1px solid var(--line);
  background: var(--surface-1);
  aspect-ratio: 16 / 8.2;
}
.hero-media-frame video, .hero-media-frame .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media-frame::after {
  /* blend video edges into canvas */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 120px 30px rgba(14, 14, 14, 0.55);
}

/* Prompt card — cream contrast moment, floats on the video */
.prompt-card {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(470px, calc(100% - 3rem));
  background: var(--cream); color: var(--cream-ink);
  border-radius: 18px; padding: 1.5rem 1.6rem 1.2rem;
  text-align: left; z-index: 3;
  border: 1px solid rgba(20, 19, 16, 0.35);
}
.prompt-card-text {
  font-size: 18px; line-height: 1.55; min-height: 3.4em;
  font-family: var(--font-body);
}
.prompt-caret {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--cream-ink); vertical-align: text-bottom;
  margin-left: 2px; animation: caret 1s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.prompt-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem;
}
.prompt-chip {
  font-family: var(--font-mono); font-size: 18px;
  color: rgba(20, 19, 16, 0.6);
  border: 1px solid rgba(20, 19, 16, 0.22);
  padding: 0.3rem 0.85rem; border-radius: var(--radius-pill);
}
.prompt-send {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--cream-ink);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.prompt-send:hover { background: var(--gold-bright); transform: scale(1.06); }
.media-pause {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 4;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14, 14, 14, 0.6); color: var(--text);
  border: 1px solid var(--line-strong); cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease;
}
.media-pause:hover { background: rgba(14, 14, 14, 0.85); }

/* ============ Ticker marquee ============ */
.proof-ticker {
  overflow: hidden; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 4.5rem; padding: 1.05rem 0;
  position: relative;
}
.proof-ticker::before, .proof-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.proof-ticker::before { left: 0; background: linear-gradient(90deg, var(--canvas), transparent); }
.proof-ticker::after { right: 0; background: linear-gradient(-90deg, var(--canvas), transparent); }
.ticker-track {
  display: flex; width: max-content;
  animation: marquee 26s linear infinite;
}
.ticker-track > span { margin-right: 2.6rem; }
.ticker-track span {
  font-family: var(--font-mono); font-size: 18px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
}
.ticker-track .tick-gold { color: var(--gold-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .prompt-caret { animation: none; }
  .tag-pulse { animation: none; }
}

/* ============ Section scaffolding ============ */
section { padding: var(--pad-section) clamp(1.2rem, 4vw, 2.5rem); max-width: 1280px; margin: 0 auto; scroll-margin-top: 4.5rem; }
.outcome-card { scroll-margin-top: 5.5rem; }
.section-tag {
  font-family: var(--font-mono); font-size: 18px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
  display: inline-block; position: relative;
  background: linear-gradient(100deg, var(--gold) 40%, var(--gold-bright) 50%, var(--gold) 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.2s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .section-tag { animation: none; } }
.section-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  letter-spacing: -0.035em; line-height: 1.08;
  margin-bottom: 1.4rem;
}
.section-subtitle {
  font-size: 27px; line-height: 1.7; color: var(--text-muted);
  max-width: 640px;
}
.glow-divider {
  height: 1px; max-width: 1280px;
  margin: 0 clamp(1.2rem, 4vw, 2.5rem);
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  opacity: 0.6; position: relative; overflow: visible;
}
.glow-divider::after {
  content: ''; position: absolute; top: -1.5px; left: 0;
  width: 70px; height: 4px; border-radius: 4px;
  background: radial-gradient(closest-side, var(--gold-bright), transparent);
  animation: spark-travel 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes spark-travel {
  0% { left: -5%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .glow-divider::after { animation: none; opacity: 0; } }
@media (min-width: 1330px) { .glow-divider { margin: 0 auto; } }

/* ============ Rail section (automations) ============ */
.rail-section { display: grid; grid-template-columns: 360px 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
/* min-width: 0 matters: as a grid item this defaults to min-width auto, and the
   nowrap .rail-item pills (4200px+ of them on mobile) then force the whole page
   that wide instead of scrolling inside .rail-nav. Broke every phone until 2026-08-31. */
.rail-left { position: sticky; top: 6.5rem; min-width: 0; }
.rail-left .section-title { font-size: clamp(2.2rem, 2.7vw, 3.2rem); }
.rail-nav { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.rail-item {
  display: flex; align-items: baseline; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 27px; letter-spacing: -0.01em; line-height: 1.25;
  color: var(--text-dim); text-decoration: none;
  padding: 0.15rem 0; border: none; background: none;
  cursor: pointer; text-align: left;
  transition: color 0.3s ease;
}
.rail-item .rail-cursor {
  font-family: var(--font-mono); color: var(--gold);
  opacity: 0; transition: opacity 0.3s ease;
}
.rail-item:hover { color: var(--text-muted); }
.rail-item.active { color: var(--text); }
.rail-item.active .rail-cursor { opacity: 1; animation: caret 1.1s steps(1) infinite; }

.card-stack { min-width: 0; }
.card-stack > .outcome-card + .outcome-card { margin-top: 1.6rem; }
@media (min-width: 1081px) {
  .card-stack {
    max-height: 78vh; overflow-y: auto; overscroll-behavior: contain;
    padding-right: 0.6rem; scroll-behavior: smooth;
    scrollbar-width: thin; scrollbar-color: var(--gold-deep) transparent;
  }
  .card-stack::-webkit-scrollbar { width: 5px; }
  .card-stack::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }
  .card-stack::-webkit-scrollbar-track { background: transparent; }
  .card-stack > .outcome-card { scroll-margin-top: 0.4rem; }
}
.card-nav { display: none !important; }
.card-nav {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: 1.4rem; flex-wrap: wrap;
}
.card-nav button {
  font-family: var(--font-mono); font-size: 18px;
  color: var(--text-muted); background: none; border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 0.5rem 1.2rem; cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card-nav button:hover { color: var(--gold); border-color: var(--gold-deep); }

/* Outcome card — tall media card */
.outcome-card {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
  position: relative;
}
.outcome-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
@media (prefers-reduced-motion: reduce) { .outcome-card:hover { transform: none; } }
.spot::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 0; opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 180, 69, 0.07), transparent 65%);
  transition: opacity 0.35s ease;
}
.spot:hover::before { opacity: 1; }
.outcome-media {
  position: relative; background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: 2rem; min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.outcome-media::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 80% 110%, rgba(180, 85, 31, 0.16), transparent 70%),
    radial-gradient(60% 80% at 10% -10%, rgba(232, 180, 69, 0.07), transparent 70%);
  pointer-events: none;
}
.outcome-body { padding: 2rem; }
.outcome-header { display: flex; gap: 1.1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.outcome-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-3); color: var(--gold);
  border: 1px solid var(--line);
}
.outcome-header-text h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.outcome-problem { font-size: 27px; line-height: 1.65; color: var(--text-muted); }
.outcome-problem a { color: var(--gold); }
.outcome-details { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.8rem; }
@media (min-width: 821px) {
  .outcome-details .outcome-detail-block + .outcome-detail-block {
    border-left: 1px solid var(--line); padding-left: 1.8rem;
  }
}
.outcome-detail-block { min-width: 0; }
.outcome-detail-label {
  font-family: var(--font-mono); font-size: 18px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.55rem;
}
.outcome-detail-block p { font-size: 18px; line-height: 1.7; color: var(--text); }
.outcome-detail-block p { color: #cfcdc2; }

/* Closer card */
.outcome-card-closer {
  background: linear-gradient(160deg, var(--surface-2), var(--surface-1));
  position: relative;
}
.outcome-card-closer::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 120% at 90% 120%, rgba(180, 85, 31, 0.14), transparent 65%);
}
.outcome-card-closer .outcome-body { padding: 2.4rem 2rem; }

.quote-section {
  padding-top: 0;
  background: radial-gradient(55% 65% at 50% 45%, rgba(180, 85, 31, 0.10), transparent 72%);
}
/* Founder quote */
.founder-quote {
  margin: 5.5rem auto 0; max-width: 900px; text-align: center;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.6rem, 2.25vw, 2.3rem); line-height: 1.42;
  letter-spacing: -0.015em; color: var(--text);
  position: relative; padding: 3rem 1rem 0;
}
.founder-quote::before {
  content: '"'; font-family: var(--font-serif); font-style: italic;
  color: var(--gold); font-size: 4.5rem; line-height: 0;
  display: block; margin-bottom: 1.6rem;
}
.founder-attr {
  margin-top: 1.6rem; font-family: var(--font-mono);
  font-size: 18px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
}

/* ============ Demo strips (animated mini-visuals) ============ */
.demo { position: relative; width: 100%; max-width: 560px; z-index: 1; }
.demo-window {
  background: var(--surface-1); border: 1px solid var(--line-strong);
  border-radius: 12px; overflow: hidden;
}
.demo-titlebar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.9rem; border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); }
.demo-title {
  margin-left: 0.4rem; font-family: var(--font-mono);
  font-size: 18px; color: var(--text-dim); letter-spacing: 0.06em;
}
.demo-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 18px; color: var(--lime);
}
.demo-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); animation: pulse 2s ease-in-out infinite;
}
.demo-body { padding: 1.1rem 1.2rem 1.3rem; min-height: 130px; }
.demo-line { height: 9px; border-radius: 5px; background: var(--surface-3); margin-bottom: 9px; }
.demo-line.gold { background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.w95 { width: 95%; } .w80 { width: 80%; } .w70 { width: 70%; } .w60 { width: 60%; } .w45 { width: 45%; } .w30 { width: 30%; }
.demo-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 18px;
  color: var(--text-muted); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.28rem 0.8rem;
}
.demo-check { color: var(--lime); }

/* Shared demo choreography */
@keyframes seqPop {
  0% { opacity: 0.22; transform: translateY(4px); }
  7% { opacity: 1; transform: none; }
  80% { opacity: 1; transform: none; }
  92%, 100% { opacity: 0.22; transform: translateY(4px); }
}
@keyframes growLine { 0%, 8% { width: 0; } 38%, 80% { width: var(--gw, 90%); } 94%, 100% { width: 0; } }
@keyframes slideUp {
  0%, 42% { opacity: 0; transform: translateY(14px); }
  52% { opacity: 1; transform: none; }
  88% { opacity: 1; transform: none; }
  97%, 100% { opacity: 0; transform: translateY(14px); }
}
@keyframes ripple {
  0% { transform: scale(0.55); opacity: 0.8; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}
.seq { animation: seqPop var(--dur, 9s) ease-in-out infinite; animation-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) {
  .seq, .demo * { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* follow-up sequence demo */
.demo-seq-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.demo-seq-link { flex: 1; height: 1px; min-width: 14px; background: var(--line-strong); }
.demo-seq-note { margin-top: 1rem; }

/* reactivation demo */
.demo-rows { display: flex; flex-direction: column; gap: 0.7rem; }
.demo-row { display: flex; align-items: center; gap: 0.75rem; }
.demo-avatar {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface-3); border: 1px solid var(--line-strong);
}
.demo-row .demo-line { margin-bottom: 0; flex: 1; }
.demo-row.woke .demo-avatar { background: linear-gradient(140deg, var(--gold), var(--gold-deep)); border-color: var(--gold-deep); }

/* documents demo */
.demo-doc-grid { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: center; }
.demo-pdf {
  width: 74px; height: 92px; border-radius: 8px; position: relative;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 0.5rem;
  font-family: var(--font-mono); font-size: 18px; color: var(--signal-orange);
}
.demo-pdf::before {
  content: ''; position: absolute; top: 10px; left: 10px; right: 10px;
  height: 34px;
  background: repeating-linear-gradient(180deg, var(--surface-3) 0 4px, transparent 4px 9px);
}
.demo-listing { display: flex; flex-direction: column; gap: 0.55rem; }
.demo-listing .demo-line { margin-bottom: 0; animation: growLine var(--dur, 8s) ease-in-out infinite; animation-delay: var(--d, 0s); }

/* scheduling demo */
.demo-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.demo-cell { aspect-ratio: 1; border-radius: 5px; background: var(--surface-3); }
.demo-cell.fill { background: var(--gold-deep); }
.demo-cell.conflict { background: var(--signal-orange); }
.demo-cell.ok { background: var(--lime); }

/* seo demo */
.demo-searchbar {
  display: flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius-pill);
  padding: 0.55rem 1rem; margin-bottom: 1rem;
  font-family: var(--font-mono); font-size: 18px; color: var(--text-muted);
}
.demo-result {
  border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 0.9rem 1rem; display: flex; gap: 0.8rem; align-items: center;
  animation: slideUp var(--dur, 7s) ease-in-out infinite;
  background: var(--surface-2);
}
.demo-rank {
  font-family: var(--font-mono); font-size: 18px; font-weight: 500;
  color: var(--cream-ink); background: var(--gold);
  border-radius: 7px; padding: 0.1rem 0.55rem; flex-shrink: 0;
}
.demo-result-lines { flex: 1; }
.demo-result-lines .demo-line:last-child { margin-bottom: 0; }

/* invoicing demo */
.demo-sms {
  max-width: 82%; background: var(--cream); color: var(--cream-ink);
  border-radius: 14px 14px 14px 4px; padding: 0.7rem 1rem;
  font-size: 18px; line-height: 1.5; margin-bottom: 1rem;
}
.demo-invoice-card {
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--surface-2); padding: 0.9rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  animation: slideUp var(--dur, 8s) ease-in-out infinite;
}
.demo-invoice-amt { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--text); }
.demo-paid {
  font-family: var(--font-mono); font-size: 18px; color: var(--cream-ink);
  background: var(--lime); border-radius: var(--radius-pill); padding: 0.2rem 0.75rem;
}

/* loyalty demo */
.demo-tap-wrap { display: flex; align-items: center; gap: 1.6rem; }
.demo-phone {
  position: relative; width: 74px; height: 120px; border-radius: 14px;
  border: 2px solid var(--line-strong); background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.demo-ring {
  position: absolute; width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: ripple 2.6s ease-out infinite; animation-delay: var(--d, 0s);
}
.demo-nfc { color: var(--gold); }
.demo-points { display: flex; flex-direction: column; gap: 0.55rem; }

/* custom software demo (terminal) */
.demo-term-line {
  font-family: var(--font-mono); font-size: 18px; line-height: 1.75;
  color: var(--text-muted); white-space: nowrap; overflow: hidden;
}
.demo-term-line .prompt-sign { color: var(--gold); }
.demo-term-line.lime { color: var(--lime); }

/* ============ Steps (How It Works) ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 3rem); margin-top: 3.5rem; }
.step { border-top: 1px solid var(--line-strong); padding-top: 1.8rem; position: relative; }
.step::before {
  content: ''; position: absolute; top: -1px; left: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
html.js .step.visible::before { width: 64px; }
.step-number {
  font-family: var(--font-mono); font-size: 18px;
  color: var(--gold); letter-spacing: 0.14em; margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.step { transition: transform 0.35s ease; }
.step:hover { transform: translateY(-2px); }
.step:hover .step-number { color: var(--gold-bright); }
.step h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; letter-spacing: -0.02em; margin-bottom: 0.9rem;
}
.step p { font-size: 27px; line-height: 1.7; color: var(--text-muted); }

/* ============ Objections ============ */
.objection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 3.5rem; }
.objection-card {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.9rem 2rem;
  transition: border-color 0.35s ease, transform 0.35s ease;
  position: relative; overflow: hidden;
}
.objection-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.objection-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.objection-card:hover::after { transform: scaleY(1); }
.objection-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; letter-spacing: -0.015em;
  color: var(--gold); margin-bottom: 0.8rem;
}
.objection-answer p { font-size: 18px; line-height: 1.7; color: #cfcdc2; }
.objection-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ============ Contact — the cream moment ============ */
.contact-outer { position: relative; overflow: hidden; }
.contact-ambient {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.contact-ambient video, .contact-ambient img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
}
.contact-ambient::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--canvas) 0%, rgba(14,14,14,0.25) 35%, rgba(14,14,14,0.25) 65%, var(--canvas) 100%);
}
.contact-section { position: relative; z-index: 1; text-align: center; }
.contact-section .section-subtitle { margin: 0 auto; }
.contact-wrapper { max-width: 640px; margin: 3.2rem auto 0; text-align: left; }
.contact-card {
  background: var(--cream); color: var(--cream-ink);
  border-radius: 20px; padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border: 1px solid rgba(20, 19, 16, 0.4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.15rem; }
.form-field label {
  display: block; font-size: 18px; font-weight: 600;
  margin-bottom: 0.45rem; color: var(--cream-ink);
}
.form-field .required { color: var(--rust); }
.form-field input, .form-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 18px;
  padding: 0.75rem 0.95rem; border-radius: 10px;
  border: 1px solid rgba(20, 19, 16, 0.28);
  background: rgba(255, 255, 255, 0.55); color: var(--cream-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(232, 180, 69, 0.25);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(20, 19, 16, 0.45); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-error {
  display: none; font-size: 18px; color: var(--rust); margin-top: 0.4rem;
}
.form-error.visible { display: block; }
.form-global-error {
  display: none; font-size: 18px; color: var(--rust);
  margin-bottom: 1rem; text-align: center;
}
.form-global-error.visible { display: block; }
.form-submit { margin-top: 1.4rem; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 18px; padding: 1rem; }
.form-success { text-align: center; padding: 2rem 0.5rem; }
.form-success h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 21px;
  margin-bottom: 0.8rem; color: var(--cream-ink);
}
.form-success p { font-size: 18px; line-height: 1.7; color: rgba(20, 19, 16, 0.75); }

/* ============ Footer ============ */
footer { border-top: 1px solid var(--line); padding: 4.5rem clamp(1.2rem, 4vw, 2.5rem) 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 4rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 500; font-size: 19px; }
.footer-logo img { border-radius: 6px; }
.footer-tagline { color: var(--text-muted); font-size: 18px; max-width: 340px; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-muted); text-decoration: none; font-size: 18px;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-meta { color: var(--text-dim); font-size: 18px; margin-top: 1rem; }
.footer-wordmark {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(4.5rem, 12vw, 15rem); letter-spacing: -0.05em;
  line-height: 0.95; color: var(--text);
  user-select: none; margin-top: 2rem;
  display: flex; align-items: baseline;
}
.footer-wordmark .wm-bolt { color: var(--gold); font-family: var(--font-serif); font-style: italic; }
.footer-wordmark:hover { color: var(--cream); }
.footer-wordmark { transition: color 0.6s ease; }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .rail-section { grid-template-columns: 1fr; }
  .rail-left { position: static; }
  .rail-nav {
    flex-direction: row; overflow-x: auto; gap: 0.6rem;
    margin-top: 1.6rem; padding-bottom: 0.8rem;
    -webkit-overflow-scrolling: touch;
  }
  .rail-item {
    white-space: nowrap; flex-shrink: 0;
    border: 1px solid var(--line); border-radius: var(--radius-pill);
    padding: 0.45rem 1.1rem; font-size: 27px;
  }
  .rail-item.active { border-color: var(--gold-deep); color: var(--gold); }
  .rail-item .rail-cursor { display: none; }
  .hero-media-frame { aspect-ratio: 16 / 10; }
}
@media (max-width: 820px) {
  .outcome-details { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.2rem; }
  .objection-grid { grid-template-columns: 1fr; }
  .objection-card:last-child:nth-child(odd) { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .prompt-card { position: static; transform: none; width: auto; margin: 1rem; }
  .hero-media-frame { aspect-ratio: auto; }
  .hero-media-frame video, .hero-media-frame .hero-poster { position: absolute; }
  .nav-link { display: none; }
}
@media (max-width: 620px) {
  .autoloop-stages { min-height: 236px; }
}
@media (max-width: 480px) {
  .outcome-media { padding: 1.2rem; }
  .outcome-body { padding: 1.4rem; }
}

/* ============ Autoloop (Speed to Lead live demo) ============ */
.autoloop-frame {
  width: 100%; max-width: 560px; position: relative; z-index: 1;
  background: var(--surface-1); border: 1px solid var(--line-strong);
  border-radius: 12px; overflow: hidden;
}
.autoloop-titlebar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.9rem; border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.al-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); }
.al-title {
  margin-left: 0.4rem; font-family: var(--font-mono);
  font-size: 18px; color: var(--text-dim); letter-spacing: 0.06em;
}
.al-status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 18px; color: var(--lime);
}
.al-status-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}
.autoloop-stages { position: relative; min-height: 172px; }
.al-stage {
  position: absolute; inset: 0; padding: 1.1rem 1.2rem;
  opacity: 0; transition: opacity 0.45s ease; pointer-events: none;
}
.al-stage.al-active { opacity: 1; }
.al-label {
  font-family: var(--font-mono); font-size: 18px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.7rem;
}
.al-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 0.9rem 1rem;
}
.al-email-head { display: flex; gap: 0.8rem; align-items: center; }
.al-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-3); color: var(--gold);
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
}
.al-line { font-size: 18px; line-height: 1.5; }
.al-strong { color: var(--text); font-weight: 600; }
.al-dim { color: var(--text-muted); }
.al-gold { color: var(--gold); font-family: var(--font-mono); font-size: 18px; }
.al-type-line {
  height: 9px; border-radius: 5px; margin-bottom: 9px;
  background: var(--surface-3); overflow: hidden; position: relative;
}
.al-type-line::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform-origin: left; animation: typefill 2.4s ease-in-out infinite;
}
@keyframes typefill { 0% { transform: scaleX(0); } 60%, 100% { transform: scaleX(1); } }
.al-draft-meta {
  font-family: var(--font-mono); font-size: 18px;
  color: var(--text-dim); margin-top: 0.5rem;
}
.al-approve { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.al-approve-btn {
  background: var(--gold); color: var(--cream-ink);
  font-weight: 600; font-size: 18px;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.al-done { display: flex; gap: 0.9rem; align-items: center; }
.al-check {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(181, 217, 76, 0.14); color: var(--lime);
  border: 1px solid rgba(181, 217, 76, 0.4);
}
.autoloop-progress { height: 3px; background: var(--surface-2); }
.al-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
@media (prefers-reduced-motion: reduce) {
  .al-stage { position: static; opacity: 1; }
  .autoloop-stages { min-height: 0; }
  .al-type-line::after { animation: none; transform: scaleX(1); }
}

/* ============ Subpages ============ */
.page-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  letter-spacing: -0.035em; line-height: 1.08;
  color: var(--text); margin-bottom: 1.2rem;
}
.page-lede { font-size: 27px; color: var(--text-muted); line-height: 1.7; max-width: 640px; }

/* Case studies */
.proof-section .founder-quote { margin-bottom: 4rem; }
.case-study {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: clamp(1.8rem, 3vw, 3rem);
  margin-top: 2.4rem;
}
.case-study h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; letter-spacing: -0.02em;
  margin: 0.4rem 0 1rem;
}
.case-study p { font-size: 27px; line-height: 1.7; color: var(--text-muted); margin-top: 0.75rem; }
.case-study p.cs-strong { color: var(--gold); font-weight: 600; margin-top: 1.5rem; }
.case-study-tag {
  font-family: var(--font-mono); font-size: 18px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.case-study-list { margin: 1.4rem 0 0 1.2rem; }
.case-study-list li { font-size: 18px; line-height: 1.7; color: #cfcdc2; margin-bottom: 0.5rem; }
.automation-flow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.7rem;
  margin: 1.8rem 0 0.4rem; padding: 1.4rem 1.5rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
}
.flow-node { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.flow-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-3); color: var(--gold); border: 1px solid var(--line);
}
.flow-label { font-family: var(--font-mono); font-size: 18px; color: var(--text-muted); }
.flow-arrow { color: var(--text-dim); flex-shrink: 0; }
.before-after-table {
  width: 100%; border-collapse: collapse; margin-top: 1.8rem;
  font-size: 18px; line-height: 1.6;
}
.before-after-table th {
  font-family: var(--font-mono); font-size: 18px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep); text-align: left;
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--line-strong);
}
.before-after-table td {
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--line);
  color: var(--text-muted); vertical-align: top;
}
.before-after-table .after-cell { color: var(--lime); }
@media (max-width: 700px) {
  .before-after-table { display: block; overflow-x: auto; }
}

/* FAQ — always open, no chevrons */
.faq-grid { display: grid; gap: 1.4rem; margin-top: 3rem; max-width: 860px; }
.faq-card {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.7rem 1.9rem;
}
.faq-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; cursor: default; }
.faq-header h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; letter-spacing: -0.015em; color: var(--gold);
}
.faq-chevron { display: none; }
.faq-answer { display: block; }
.faq-answer p { font-size: 18px; line-height: 1.7; color: #cfcdc2; margin-top: 0.8rem; }

/* Blog */
.blog-content, .sources-content { max-width: 900px; margin: 0 auto; padding: 9rem clamp(1.2rem, 4vw, 2.5rem) var(--pad-section); }
.blog-card {
  display: block; text-decoration: none; margin-top: 2.4rem;
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.9rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.blog-card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.blog-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; letter-spacing: -0.02em; margin-bottom: 0.6rem;
}
.blog-card p { font-size: 27px; line-height: 1.7; color: var(--text-muted); }
.blog-card-date, .blog-post-date {
  font-family: var(--font-mono); font-size: 18px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.8rem;
}
.read-more {
  display: inline-block; margin-top: 1rem; font-size: 18px;
  color: var(--gold); font-weight: 500;
}
.back-link { font-size: 18px; color: var(--text-muted); text-decoration: none; display: inline-block; margin-bottom: 2rem; }
.back-link:hover { color: var(--gold); }

/* Blog post article */
.blog-post { max-width: 760px; margin: 0 auto; padding: 9rem clamp(1.2rem, 4vw, 2.5rem) var(--pad-section); }
.blog-post h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem); letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 1.6rem;
}
.blog-post h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; letter-spacing: -0.02em; margin: 2.4rem 0 0.9rem;
}
.blog-post p, .blog-post li { font-size: 18px; line-height: 1.75; color: #cfcdc2; margin-bottom: 1.1rem; }
.blog-post ul, .blog-post ol { margin: 0 0 1.1rem 1.3rem; }
.blog-post a { color: var(--gold); }
.blog-cta {
  margin-top: 2.6rem; padding: 1.9rem 2rem; text-align: center;
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius-card);
}
.blog-cta p { color: var(--text); margin-bottom: 1.2rem; }

/* Sources */
.sources-content .intro { font-size: 18px; color: var(--text-muted); line-height: 1.7; max-width: 640px; margin-bottom: 2.4rem; }
.source-entry {
  border-left: 2px solid var(--gold-deep); padding: 0.2rem 0 0.2rem 1.4rem;
  margin-top: 1.8rem;
}
.source-stat { font-size: 18px; font-weight: 600; color: var(--text); line-height: 1.6; }
.source-citation { font-size: 18px; color: var(--text-dim); line-height: 1.6; margin-top: 0.4rem; }
.source-citation a { color: var(--gold-deep); }

/* "Running today" reads as a gold claim, matching the On the Workbench tag
   that now closes the same section directly under the card stack. */
#workbench,
#consulting {
  padding-top: 0.5rem;
}
.section-subtitle.bench-item { margin-top: 1.1rem; }

/* On the Workbench lives at the bottom of the same rail and the same scroll box.
   The divider is not a .rail-item, so the scroll-spy never targets it. */
.rail-divider {
  font-family: var(--font-mono); font-size: 18px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.85;
  margin: 1.4rem 0 0.7rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(240, 192, 64, 0.18);
}
.outcome-card-bench .outcome-body { padding: 2.2rem 2rem; }
.outcome-card-bench {
  border-style: dashed;
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
}
@media (max-width: 1080px) {
  .rail-divider {
    margin: 0 0.4rem; padding: 0.5rem 0 0; border-top: 0;
    white-space: nowrap; align-self: center; font-size: 12px;
  }
}

/* Gray reading text at 1.5x per Chris 2026-08-25 */
.outcome-details p { font-size: 22px; }

/* ============ Phone typography (2026-08-31) ============
   The 1.5x reading sizes above are a desktop decision (Chris, 2026-08-25).
   At phone width 27px body copy wraps at ~6 words a line and the hero
   paragraph alone fills two screens. Scale reading text back down for
   small screens only; desktop keeps the approved sizes untouched. */
@media (max-width: 620px) {
  h1 { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .hero p, .section-subtitle, .outcome-problem, .step p,
  .page-lede, .case-study p, .founder-quote p, .faq-a { font-size: 18px; line-height: 1.65; }
  .outcome-details p { font-size: 16.5px; }
  .outcome-header-text h3, .step h3, .case-study h3 { font-size: 19px; }
  .hero-tag, .section-tag, .case-study-tag { font-size: 12px; letter-spacing: 0.12em; }
  .rail-item { font-size: 16px; }
  .rail-left .section-title { font-size: 2rem; }
  .section-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .ticker-track span { font-size: 13px; }
}
