/* ── Transceve marketing site — design system v2 ────────────────────────── */

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --purple: #6E5BB8;
  --purple-ink: #4F4090;
  --purple-deep: #352A63;
  --purple-soft: #EEEAF8;
  --purple-line: #DCD4EF;
  --lime: #B8DD3E;
  --lime-deep: #A4CB28;
  --lime-soft: #F1F7DA;

  /* Neutrals */
  --ink: #16131F;
  --ink-2: #4B4659;
  --ink-3: #827D92;
  --bg: #F5F4F8;
  --bg-2: #ECEAF2;
  --surface: #FFFFFF;
  --line: #E7E4EF;
  --line-2: #D7D2E2;

  /* Product-frame dark */
  --frame: #15111F;
  --frame-bar: #0E0B17;

  /* Legacy aliases used by existing HTML */
  --border: #E7E4EF;
  --border-2: #D7D2E2;
  --text: #16131F;
  --text-2: #4B4659;
  --text-3: #827D92;
  --white: #FFFFFF;
  --ink-2-dark: #14141C; /* used in engine infographic fallback only */

  /* Type */
  --sans: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Outfit', system-ui, sans-serif;
  /* Legacy aliases */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'Outfit', system-ui, sans-serif;

  /* Geometry */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Shadow */
  --shadow: 0 1px 2px rgba(22,19,31,.04), 0 8px 24px rgba(22,19,31,.06);
  --shadow-lg: 0 2px 6px rgba(22,19,31,.05), 0 22px 48px rgba(22,19,31,.10);
}

/* ── Resets and base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-ink); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--purple); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  margin: 0 0 .75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h1 em { font-style: normal; color: var(--purple); font-weight: 700; }
h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h2 em { font-style: normal; color: var(--purple); font-weight: 700; }
h3 { font-size: 1.15rem; line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; }

p { margin: 0 0 1rem; color: var(--ink-2); }
p.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: var(--ink-2); max-width: 56ch; }
em { font-style: normal; }

/* Eyebrow — mono label with lime bar prefix */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.1rem;
}
/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,244,248,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 28px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.current { color: var(--purple); font-weight: 600; }
.nav-links a.current::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

/* Nav CTAs */
.nav-cta {
  background: var(--lime);
  color: var(--ink) !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
  font-size: 0.8125rem;
  border: 2px solid var(--lime);
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: var(--lime-deep);
  border-color: var(--lime-deep);
}
.nav-cta::after { display: none !important; }

/* "Book a conversation" secondary nav CTA */
.nav-cta-wrap .nav-cta {
  background: transparent;
  border-color: var(--purple-line);
  color: var(--purple-ink) !important;
  font-weight: 600 !important;
}
.nav-cta-wrap .nav-cta:hover {
  background: var(--purple-soft);
  border-color: var(--purple);
  color: var(--purple) !important;
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.25rem;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--lime-deep);
  border-color: var(--lime-deep);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--purple-ink);
  border-color: var(--purple-line);
}
.btn-ghost:hover {
  background: var(--purple-soft);
  border-color: var(--purple);
  color: var(--purple);
}
.btn .arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(1.75rem, 3.5vw, 3.25rem); align-items: stretch; }
.hero-head { display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem; }
.hero-head h1 { margin-top: .15rem; font-size: clamp(1.95rem, 3.3vw, 2.85rem); line-height: 1.05; }
.hero-head p.lead { margin-top: .9rem; margin-bottom: 0; font-size: 1.04rem; max-width: 50ch; }
.lead-accent { color: var(--purple-ink); font-weight: 700; }
.hero-definition { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.3rem 0.5rem; margin-bottom: 0.75rem; font-size: clamp(0.875rem, 1.2vw, 1rem); line-height: 1.4; }
.def-word { font-weight: 700; color: var(--purple); }
.def-pos { font-style: italic; color: var(--ink-2); font-size: 0.9em; }
.def-phonetic { font-family: var(--mono); color: var(--ink-2); font-size: 0.85em; }
.def-meaning { color: var(--ink-2); font-size: 0.95em; }
.def-meaning::before { content: '— '; color: var(--ink-3); }
.hero-meta { margin-top: 0; padding-top: 1.1rem; border-top: 1px solid var(--line); font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: .3rem .9rem; text-transform: uppercase; }
.hero-meta .dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--lime); margin: 0 .2rem .15rem .35rem; vertical-align: middle; }
.hero-right { display: flex; flex-direction: column; gap: 1rem; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem 1.25rem; padding: .1rem; }
.trust-line { display: flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--sans); font-weight: 600; font-size: .86rem; line-height: 1.3; color: var(--purple-ink); margin: 0; text-align: center; text-decoration: none; cursor: pointer; transition: color .15s ease; letter-spacing: -0.005em; }
a.trust-line:hover, a.trust-line:focus-visible { color: var(--purple); text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; outline: none; }
.trust-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: var(--purple); }
.trust-icon svg { width: 100%; height: 100%; display: block; }
.trust-text { /* inline span — layout handled by trust-line flex */ }
.hero-video { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--frame); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-video::before { content: ''; display: block; padding-top: 56.25%; }
.hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: var(--frame); }
.hero-video video { display: block; width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: opacity 0.2s; }
.video-play-btn:hover { opacity: 0.85; }
.video-play-btn.hidden { display: none; }
.hero-cta-block { display: flex; flex-direction: column; gap: .55rem; margin-top: .1rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }
.hero-cta-hint { margin: 0; font-size: .85rem; color: var(--ink-2); }
.nav-signin { color: var(--purple-ink) !important; font-weight: 600; padding-left: 1rem; border-left: 1px solid var(--line-2); }
.nav-signin:hover { color: var(--purple) !important; }

/* ── Stats strip ────────────────────────────────────────────────────────── */
.stats {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.stat .num {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  color: var(--purple);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  display: block;
  white-space: nowrap;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--lime);
}
.stat .lbl { font-size: 0.875rem; color: var(--ink-2); line-height: 1.45; }
.stat-inner { display: flex; align-items: center; gap: 0.5rem; padding-bottom: 0.75rem; margin-bottom: 0.75rem; border-bottom: 2px solid var(--lime); }
.stat-inner svg { color: var(--purple); flex-shrink: 0; }
.stat .num { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

/* ── Section headers ────────────────────────────────────────────────────── */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 680px; }
.section-head .eyebrow { margin-bottom: 1rem; display: inline-flex; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.0625rem; color: var(--ink-2); }

/* ── Anxiety strip ──────────────────────────────────────────────────────── */
.anxiety-strip {
  background: var(--surface);
  border-top: 3px solid var(--lime);
  border-bottom: 1px solid var(--line);
}
.anxiety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 0;
  margin-top: 3rem;
}
.anxiety-card {
  background: var(--purple-soft);
  border: 1px solid var(--purple-line);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.anxiety-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow);
}
.anxiety-fear,
.anxiety-resolution {
  padding: 1.5rem;
}
.anxiety-fear {
  border-bottom: 1px solid var(--purple-line);
}
.anxiety-fear p {
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 0.75rem;
  color: var(--ink);
}
.anxiety-resolution {
}
.anxiety-resolution p {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-top: 0.75rem;
}
.anxiety-resolution p strong { color: var(--ink); font-weight: 600; }
.anxiety-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.anxiety-fear .anxiety-label { color: var(--purple); }
.anxiety-resolution .anxiety-label { color: var(--purple); }
.fear-text {
  font-style: italic;
  color: var(--purple-ink) !important;
  font-weight: 600;
}

/* ── Text + photo row ───────────────────────────────────────────────────── */
.text-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.text-photo-row .section-head { margin-bottom: 0; }
.row-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.row-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Pullquote pair ─────────────────────────────────────────────────────── */
.pullquote-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.pullquote-pair .pullquote { margin: 0; max-width: none; }

/* ── Pullquote ──────────────────────────────────────────────────────────── */
.pullquote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  border-radius: var(--r);
  padding: clamp(2rem, 4vw, 3rem);
  margin: 0 auto;
  max-width: 940px;
}
.pullquote blockquote {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}
.pullquote cite {
  font-style: normal;
  color: var(--ink-2);
  font-size: 0.9375rem;
  display: block;
}
.quote-context {
  font-size: 0.85rem;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.pullquote cite strong {
  color: var(--purple);
  font-weight: 700;
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}
.pullquote--founder { border-left-color: var(--purple); }
.pullquote--founder cite strong { color: var(--purple-ink); }

/* ── Trust pills ────────────────────────────────────────────────────────── */
.trust-pills { margin-top: 3rem; }
.trust-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: block;
  margin-bottom: 0.75rem;
}
.trust-pill-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.trust-pill {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--purple-ink);
  background: var(--purple-soft);
  border: 1px solid var(--purple-line);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.875rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  counter-increment: step;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.step:hover {
  border-color: var(--purple-line);
  box-shadow: var(--shadow);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--purple);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.step h3 { margin-bottom: 0.75rem; font-size: 1.0625rem; color: var(--ink); }
.step p { font-size: 0.9375rem; line-height: 1.55; margin: 0; color: var(--ink-2); }

/* ── Video embed ────────────────────────────────────────────────────────── */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--frame);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed iframe:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.video-caption {
  max-width: 960px;
  margin: 1.25rem auto 0;
  color: var(--ink-2);
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--purple-deep);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.875rem; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 1.0625rem; margin: 0; }
.cta-band .btn-primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.cta-band .btn-primary:hover { background: var(--lime-deep); border-color: var(--lime-deep); }
.cta-band .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.cta-band .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ── Dual CTA grid ──────────────────────────────────────────────────────── */
.cta-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 2.5rem auto 0;
}
.cta-dual-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-dual-card:hover {
  border-color: var(--purple-line);
  box-shadow: var(--shadow);
}
.cta-dual-card--primary { border-color: var(--purple-line); background: var(--purple-soft); }
.cta-dual-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--ink); }
.cta-dual-card p { font-size: 1rem; line-height: 1.55; }

/* ── Feature sections ───────────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.feature-row:nth-child(even) .feature-visual { order: -1; }
.feature-row + .feature-row { margin-top: clamp(4rem, 8vw, 7rem); }
.feature h2 { margin-bottom: 1.25rem; }
.feature p { font-size: 1.0625rem; margin-bottom: 1.25rem; }
.feature-list { list-style: none; }
.feature-list li {
  padding: 0.8rem 0;
  color: var(--ink-2);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
/* ── Demo video ─────────────────────────────────────────────────────────── */
.demo-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

@media (prefers-reduced-motion: reduce) {
  .demo-video { animation-play-state: paused; }
}

/* ── Viz panel (product page) ───────────────────────────────────────────── */
.viz-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Card label */
.card-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

/* Score rows */
.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
}
.score-row:last-of-type { border-bottom: 0; }
.score-name {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.score-bar {
  flex: 1;
  margin: 0 1.25rem;
  height: 3px;
  background: var(--line);
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}
.score-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--purple), var(--lime));
  transform-origin: left;
  animation: fill 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform: scaleX(0);
  border-radius: 2px;
}
@keyframes fill { to { transform: scaleX(var(--fill, 0.75)); } }
.score-value {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--purple);
  font-weight: 500;
  min-width: 2.5ch;
  text-align: right;
}

/* Card quote */
.card-quote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.55;
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
}
.card-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 3px;
  height: calc(100% - 1.5rem);
  background: var(--lime);
  border-radius: 2px;
}
.card-attrib {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--ink-2);
  padding-left: 1.25rem;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Page header (interior pages) ───────────────────────────────────────── */
.page-header {
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.page-header .eyebrow { margin-bottom: 1.1rem; display: inline-flex; }
.page-header h1 { margin-bottom: 1.25rem; max-width: 820px; }
.page-header .lead { max-width: 640px; }
.page-header-note { margin-top: 1rem; max-width: 640px; font-size: 0.9375rem; color: var(--ink-2); }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb-nav {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.breadcrumb-list li + li::before {
  content: '›';
  margin-right: 0.375rem;
  color: var(--line-2);
}
.breadcrumb-list a { color: var(--ink-2); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--purple); }
.breadcrumb-list [aria-current="page"] { color: var(--purple); }

/* ── Prose (about page) ─────────────────────────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin: 3rem 0 1.25rem; }
.prose h3 { margin: 2rem 0 1rem; font-size: 1.25rem; }
.prose p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.25rem; }
.prose p strong { color: var(--ink); font-weight: 600; }

/* ── Founders (about page) ──────────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 3rem auto 0;
}
.founder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.founder:hover { border-color: var(--purple-line); box-shadow: var(--shadow); }
.founder picture {
  display: block;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  align-self: center;
}
.founder-photo {
  width: 280px;
  height: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-2);
}
.founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.founder-role {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.founder-bio { font-size: 0.9375rem; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* ── Pricing (pricing page) ─────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card.featured {
  border-color: var(--purple);
  background: var(--purple-soft);
}
.price-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 0.25rem 0.875rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.price-card:hover { box-shadow: var(--shadow-lg); }
.price-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.price-tagline { font-size: 0.875rem; color: var(--ink-2); margin-bottom: 1.75rem; }
.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-amount .per { font-size: 1rem; color: var(--ink-2); font-weight: 400; letter-spacing: 0; }
.price-note { font-size: 0.8125rem; color: var(--ink-2); margin-bottom: 1.75rem; }
.price-features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.price-features li {
  padding: 0.6rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.price-features li:last-child { border-bottom: 0; }
.price-card .btn { width: 100%; justify-content: center; }

/* ── FAQ (pricing page) ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--purple);
  transition: transform 0.2s;
  line-height: 1;
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-top: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.contact-method h2 { margin-bottom: 0.5rem; font-size: clamp(1.15rem, 2vw, 1.375rem); color: var(--ink); }
.contact-method a { color: var(--purple); font-size: 1rem; font-family: var(--mono); }
.contact-method a:hover { color: var(--purple-ink); }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form label {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-2);
  margin-bottom: 0.5rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.form textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  padding: 2.5rem 2rem;
  background: var(--lime-soft);
  border: 1px solid var(--lime-deep);
  border-radius: var(--r-lg);
  text-align: center;
}
.form-success.visible { display: block; }
.form-success-mark {
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--lime-deep);
  margin-bottom: 1rem;
  display: block;
}
.form-success h3 { color: var(--ink); margin-bottom: 0.75rem; font-size: 1.25rem; }
.form-success p { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.6; }
.form-success a { color: var(--purple); }

/* ── Ethics page ────────────────────────────────────────────────────────── */
.ethics-photo,
.env-photo {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 480px;
  max-height: 420px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  align-self: flex-start;
}
.ethics-photo-img,
.env-photo-img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 420px; }
.env-photo-img { max-height: 420px; }

.precheck-card {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.precheck-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.precheck-row {
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.precheck-name { color: var(--ink-2); }
.precheck-status { color: var(--lime-deep); font-weight: 600; }
.precheck-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
  font-size: 0.9375rem;
  color: var(--ink-2);
  font-style: italic;
}

.env-stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.env-stat { text-align: left; }
.env-stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.env-stat-unit { font-size: 1rem; color: var(--ink-2); font-weight: 400; margin-left: 0.25rem; }
.env-stat-lbl {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--ink-2);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.env-stat-equivalent {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
  color: var(--ink-2);
  font-size: 0.9375rem;
  font-style: italic;
}
.env-stat-equivalent strong { color: var(--ink); font-weight: 600; font-style: normal; }

/* ── Trust page ─────────────────────────────────────────────────────────── */
.trust-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 4vw, 3rem);
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.trust-card:hover { border-color: var(--purple-line); box-shadow: var(--shadow); }
.trust-card > .eyebrow { margin-bottom: 0.75rem; display: inline-flex; }
.trust-card h3 { font-size: 1.15rem; margin-bottom: 0.875rem; color: var(--ink); }
.trust-card > p { font-size: 0.9375rem; line-height: 1.65; }
.trust-card .feature-list li { font-size: 0.9375rem; }

.trust-warning {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}
.trust-warning-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #B45309;
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 500;
}
.trust-warning p { color: var(--ink-2); font-size: 0.9375rem; line-height: 1.65; }

.trust-env {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
.trust-env-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.75rem; }
.trust-env-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 0.375rem;
}
.trust-env-item p { font-size: 0.9375rem; line-height: 1.65; }
.trust-env-note {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
  font-size: 0.8125rem;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.6;
}

/* ── Highlight utility ──────────────────────────────────────────────────── */
.highlight-lime { color: var(--purple) !important; font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
  background: var(--frame);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2rem;
  margin-top: 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about { max-width: 360px; }
.footer-about img { height: 26px; width: auto; margin-bottom: 1rem; }
.footer-about p { font-size: 0.9375rem; color: rgba(255,255,255,0.5); }
.footer-col h3 {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9375rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .co { font-family: var(--mono); }

/* ── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--purple);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ── Required field markers ─────────────────────────────────────────────── */
.required-marker {
  color: var(--purple);
  margin-left: 2px;
}
.required-note {
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

/* ── Fade on scroll ─────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ── Section photo ──────────────────────────────────────────────────────── */
.section-photo { margin-bottom: clamp(2.5rem, 5vw, 4rem); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.section-photo-img { width: 100%; height: auto; display: block; }

/* ── In-text link underlines ─────────────────────────────────────────────── */
p a:not([class]) { text-decoration: underline; text-underline-offset: 3px; }

/* ── Focus-visible ───────────────────────────────────────────────────────── */
.btn:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.nav-links a:focus-visible,
.logo:focus-visible,
.footer-col a:focus-visible,
.contact-method a:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 2px;
}
.hamburger:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq summary:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 2px;
}
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}

/* ── Waveform (product page) ─────────────────────────────────────────────── */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 120px;
  margin-bottom: 2rem;
}
.waveform .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--lime), var(--purple));
  border-radius: 1px;
  opacity: 0.75;
  animation: wave 2s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(var(--sy, 0.5)); }
}
.transcript-lines { display: flex; flex-direction: column; gap: 0.875rem; }
.transcript-line { display: flex; gap: 0.75rem; font-size: 0.875rem; align-items: baseline; }
.transcript-line .speaker {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--purple);
  min-width: 80px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.transcript-line .text { color: var(--ink); line-height: 1.5; }

.pillars { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pillar {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  align-items: flex-start;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--purple), var(--lime));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.875rem;
}
.pillar-content h4 { margin-bottom: 0.5rem; font-size: 1rem; color: var(--ink); }
.pillar-content p { font-size: 0.875rem; margin: 0; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-row, .contact-grid, .cta-band, .founders-grid,
  .text-photo-row, .pullquote-pair {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero { padding-top: 4rem; padding-bottom: 3rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-visual { order: 0; }
  .stats-grid, .steps, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245,244,248,0.97);
    flex-direction: column;
    padding: 2rem var(--gutter);
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .cta-band { text-align: center; justify-items: center; }
  .cta-band .btn-ghost { color: #fff; }
  .anxiety-grid { grid-template-columns: 1fr; }
  .cta-dual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .row-photo img { max-height: 200px; object-fit: cover; width: 100%; }
  .pullquote-pair .pullquote--founder { display: none; }
  .format-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .format-more { display: none; }
  .ethics-photo-img,
  .env-photo-img { max-height: 200px; object-fit: cover; width: 100%; }
}

@media (max-width: 600px) {
  .stats-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .founder picture { width: 180px; height: 180px; }
  .founder-photo { width: 180px; height: 180px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-pill-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .precheck-grid { grid-template-columns: 1fr; column-gap: 0; }
  .env-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 900px) {
  .trust-card-grid { grid-template-columns: 1fr !important; }
  .trust-pill-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── prefers-reduced-motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .score-fill { animation: none; transform: scaleX(var(--fill, 0.75)); }
  .waveform .bar { animation: none; }
  .faq-body { transition: none; }
  .faq summary::after { transition: none; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .btn .arrow { transition: none; }
  .btn:hover .arrow { transform: none; }
  .step:hover,
  .founder:hover,
  .price-card:hover,
  .anxiety-card:hover,
  .cta-dual-card:hover { transform: none; }
  .step, .founder, .price-card, .anxiety-card, .cta-dual-card { transition: border-color 0.2s; }
  .trust-card { transition: border-color 0.2s; }
  .nav-cta:hover { transform: none; }
  .btn-primary:hover { transform: none; }
}

.text-center { text-align: center; }

/* HubSpot form overrides */
.hs-form-frame {
  width: 100%;
}
.hs-form-frame iframe {
  width: 100% !important;
  border: none;
}
