/* ============================================
   PRESS AND PLAY — design tokens
   Linktree-energy: iris hero, hydrangea links,
   chartreuse = primary CTA color (hero, reveal pay, pillars).
   Used consistently across all primary actions for brand recall;
   reveal-pay carries extra weight via size + shadow, not color.
   ============================================ */

:root {
  /* Primary palette */
  --iris:        #061492;           /* hero bg, brand mark, primary CTA */
  --iris-deep:   #050f7a;           /* iris hover/active */
  --hydrangea:   #2665d6;           /* links, secondary CTAs, accents */
  --hydrangea-deep: #1d50ad;
  --chartreuse:  #d2e823;           /* primary CTA — every "Start mine" */
  --chartreuse-deep: #c0d420;

  /* Neutrals */
  --marble:      #F1EFE8;           /* warm cream base */
  --marble-deep: #E8E4D5;
  --shade:       #1E2330;           /* near-black ink */
  --shade-soft:  rgba(30, 35, 48, 0.08);
  --ink:         #2A2724;
  --warm-gray:   #6A655F;
  --soft-gray:   #98938B;
  --bone:        #DCD6C7;
  --white:       #FFFFFF;
  --off-white:   #FAFAF7;

  /* Hydrangea tints */
  --hydrangea-soft: rgba(38, 101, 214, 0.10);
  --hydrangea-mist: rgba(38, 101, 214, 0.05);

  /* Iris tints */
  --iris-soft:   rgba(6, 20, 146, 0.10);
  --iris-mist:   rgba(6, 20, 146, 0.05);

  /* Layout */
  --max-width:   1180px;
  --pill:        999px;
  --r-xl:        28px;
  --r-lg:        20px;
  --r-md:        14px;
  --r-sm:        10px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(22, 21, 19, 0.04);
  --shadow-sm:   0 2px 4px rgba(22, 21, 19, 0.04), 0 4px 12px rgba(22, 21, 19, 0.04);
  --shadow-md:   0 4px 8px rgba(22, 21, 19, 0.05), 0 12px 28px rgba(22, 21, 19, 0.07);
  --shadow-lg:   0 8px 16px rgba(22, 21, 19, 0.06), 0 24px 48px rgba(6, 20, 146, 0.12);
  --shadow-iris: 0 14px 32px rgba(6, 20, 146, 0.30);
  --shadow-chartreuse: 0 14px 30px rgba(210, 232, 35, 0.40);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--iris); color: var(--white); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--marble);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body { font-size: 20px; }
}

img { max-width: 100%; display: block; }

.hero-em {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* ---------- Grain overlay (subtle warmth on cream sections) ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.08, 0 0 0 0 0.05, 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

a { color: var(--hydrangea); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

/* ============================================
   NAV — cream sticky bar, iris brand + CTA
   ============================================ */
.nav {
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  background: rgba(241, 239, 232, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  z-index: 50;
  border-bottom: 1px solid rgba(220, 214, 199, 0.55);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--shade);
  letter-spacing: -0.01em;
  white-space: nowrap;
  min-height: 48px;
  padding: 0.5rem 0.25rem;
}
.nav-phone:hover { color: var(--iris); text-decoration: none; }
.nav-phone svg { color: var(--iris); flex-shrink: 0; }
@media (max-width: 540px) {
  .nav-phone { font-size: 1rem; }
  .nav-phone .nav-phone-label { display: none; }
}


/* Senior-UX tap-target minimums (WCAG 2.2 AA target size = 24, AAA = 44).
   We target 48 for primary interactive elements per the brief. */
.btn-primary, .btn-secondary, .btn-ghost, .nav-cta {
  min-height: 48px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--shade);
  font-weight: 700;
  letter-spacing: -0.015em;
  transition: opacity 0.2s var(--ease-out);
}
.brand:hover { text-decoration: none; opacity: 0.78; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, var(--iris) 0%, var(--iris-deep) 100%);
  color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.brand-mark svg { display: block; margin-left: 1px; }
.brand-name { font-size: 1rem; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--iris);
  padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  border-radius: var(--pill);
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.nav-cta:hover { background: var(--iris-deep); text-decoration: none; transform: translateY(-1px); }
.play-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--pill);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: -0.005em;
  transition: transform 0.12s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out), color 0.2s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(145deg, var(--iris) 0%, var(--iris-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 12px 28px rgba(6, 20, 146, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.55; cursor: wait; transform: none; }

.btn-secondary {
  background: var(--white);
  color: var(--shade);
  border: 1px solid var(--bone);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { text-decoration: none; border-color: var(--shade); background: var(--off-white); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.95rem 1.4rem;
}
.btn-ghost:hover { text-decoration: none; color: var(--iris); background: var(--iris-mist); }

/* Ghost button on dark (iris) surfaces — AA contrast and visible focus */
.hero .btn-ghost {
  color: var(--white);
}
.hero .btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}
.hero .btn-ghost:focus-visible {
  outline: 2px solid var(--chartreuse);
  outline-offset: 3px;
}

/* Press start — the large pill silhouette used in hero AND final-cta */
.btn-press {
  padding: 1.15rem 1.85rem;
  font-size: 1.02rem;
}
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn-press:hover .btn-arrow { transform: translateX(3px); }
.play-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 0.62rem;
  padding-left: 2px;
  transition: background 0.2s;
}
.btn-press:hover .play-icon { background: rgba(255, 255, 255, 0.25); }

/* THE MAGICIAN MOMENT — chartreuse, scoped strictly to .hero .btn-press */
.hero .btn-press {
  background: var(--chartreuse);
  color: var(--shade);
  box-shadow: var(--shadow-chartreuse), inset 0 -3px 0 rgba(0, 0, 0, 0.06);
}
.hero .btn-press:hover {
  background: var(--chartreuse-deep);
  box-shadow: 0 18px 36px rgba(210, 232, 35, 0.45), inset 0 -3px 0 rgba(0, 0, 0, 0.06);
}
.hero .btn-press .play-icon {
  background: rgba(30, 35, 48, 0.14);
  color: var(--shade);
}

/* ============================================
   FOUNDING-CLIENT BANNER — sits under the hero
   ============================================ */
.founding-banner {
  background: linear-gradient(145deg, var(--chartreuse) 0%, var(--chartreuse-deep) 100%);
  color: var(--shade);
  padding: 0.85rem 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.founding-banner[hidden] { display: none; }
.founding-banner .founding-count {
  font-weight: 900;
  letter-spacing: -0.01em;
}
.founding-banner .founding-sep {
  margin: 0 0.6rem;
  color: rgba(30, 35, 48, 0.4);
}
.founding-banner .founding-deadline {
  font-weight: 600;
  opacity: 0.78;
}

/* ============================================
   HERO — full-bleed iris, white text, asymmetric bento
   ============================================ */
.hero {
  padding: 4.5rem 0 5.5rem;
  background: var(--iris);
  background-image:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(38, 101, 214, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 90%, rgba(6, 20, 146, 0.8) 0%, transparent 60%);
  color: var(--white);
  position: relative;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
  }
}

/* eyebrow chip — on iris bg, render as soft glassy pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--pill);
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* HERO HEADLINE — exact tokens from the spec */
.hero-headline {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--white);
}
@media (max-width: 768px) {
  .hero-headline { font-size: 5.25vw; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
}
.hero-headline strong { color: var(--white); font-weight: 800; }

/* Rotating word — white italic-feel on iris, no chartreuse (saving for the CTA) */
.rotator {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  height: 1em;
  line-height: 1;
  position: relative;
  color: var(--white);
  padding: 0 0.05em;
}
.rotator::before, .rotator::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 0.2em;
  z-index: 2;
  pointer-events: none;
}
.rotator::before { top: 0; background: linear-gradient(to bottom, var(--iris), transparent); }
.rotator::after  { bottom: 0; background: linear-gradient(to top, var(--iris), transparent); }
.rotator-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.7s var(--ease-out);
}
.rotator-item {
  display: block;
  height: 1em;
  line-height: 1;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* HERO BENTO CARDS */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "time price"
    "quote glyph";
  gap: 0.9rem;
  position: relative;
}
@media (max-width: 940px) {
  .hero-cards { max-width: 480px; }
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
  color: var(--white);
}
.hero-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-card-time { grid-area: time; }
.hero-card-price { grid-area: price; }
.hero-card-trust { grid-area: price; }
.hero-card-quote { grid-area: quote; grid-column: 1 / -1; }
.hero-card-glyph { display: none; }
@media (min-width: 540px) {
  .hero-cards {
    grid-template-areas:
      "time price"
      "quote quote"
      "quote quote";
  }
}

.card-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.card-big {
  font-size: clamp(2.2rem, 4.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.card-big-trust {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
}
.card-unit { font-size: 0.55em; font-weight: 700; letter-spacing: 0; color: inherit; }
.card-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.hero-card-trust { position: relative; }
.hero-card-trust::after {
  content: "✓";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-card-quote {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 1.6rem 1.5rem 1.4rem;
}
.quote-mark {
  font-size: 2.6rem;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.card-quote {
  font-size: 1.02rem;
  line-height: 1.45;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--white);
}
.card-attribution {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.hero-meta {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   DESIGN ADD-ONS — one-off product cards
   ============================================ */
.addons { background: var(--marble); }

.addon-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .addon-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.addon {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.addon:hover {
  transform: translateY(-3px);
  border-color: var(--hydrangea);
  box-shadow: var(--shadow-md);
}

.addon-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.addon-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hydrangea);
  background: var(--hydrangea-mist);
  border: 1px solid var(--hydrangea-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--pill);
}
.addon-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--soft-gray);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.addon h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
  color: var(--shade);
}

.addon .price-veiled { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--bone); }

.addon ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.addon li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
}
.addon li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--hydrangea);
  border-radius: 50%;
}

.addon-note {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--bone);
  font-size: 0.78rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ============================================
   SECTION HEADS
   ============================================ */
section { padding: 5.5rem 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hydrangea);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--hydrangea-soft);
  background: var(--hydrangea-mist);
  border-radius: var(--pill);
}
.section-title {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  margin-bottom: 0.85rem;
  color: var(--shade);
  line-height: 1.08;
}
.section-sub {
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   QUIZ — dark contrast section
   ============================================ */
.quiz-section {
  background: var(--shade);
  color: var(--marble);
}
.quiz-section .section-title { color: var(--white); }
.quiz-section .section-sub { color: rgba(244, 241, 232, 0.65); }
.quiz-section .section-eyebrow {
  color: var(--hydrangea);
  background: rgba(38, 101, 214, 0.15);
  border-color: rgba(38, 101, 214, 0.3);
}

.quiz {
  max-width: 600px;
  margin: 0 auto;
  background: var(--marble);
  color: var(--ink);
  padding: 2.2rem 2.2rem 2rem;
  border-radius: var(--r-xl);
  border: 1px solid rgba(244, 241, 232, 0.1);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(38, 101, 214, 0.10);
  position: relative;
}
@media (max-width: 540px) {
  .quiz { padding: 1.6rem 1.25rem; border-radius: var(--r-lg); }
}

.progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.bar {
  flex: 1;
  height: 4px;
  background: var(--bone);
  border-radius: var(--pill);
  overflow: hidden;
  position: relative;
}
.bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--iris) 0%, var(--hydrangea) 100%);
  border-radius: var(--pill);
  transition: width 0.4s var(--ease-out);
  width: 9%;
}
.step-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.step-of { color: var(--soft-gray); }

.step { display: none; }
.step.active { display: block; animation: stepIn 0.45s var(--ease-out); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.q {
  display: block;
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 1.1rem;
  color: var(--shade);
  letter-spacing: -0.015em;
}
.q-sub {
  color: var(--warm-gray);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: -0.4rem 0 1.25rem;
}
.q-sub em {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}

.quiz input[type="text"],
.quiz input[type="email"],
.quiz input[type="tel"],
.quiz select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.7rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
}
.quiz input::placeholder { color: var(--soft-gray); }
.quiz input:focus-visible, .quiz select:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--hydrangea);
  box-shadow: 0 0 0 4px rgba(38, 101, 214, 0.15);
  background: var(--white);
}

/* 4-col radio grid */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 460px) { .radio-grid { grid-template-columns: 1fr; } }
.radio-grid-4 { grid-template-columns: 1fr 1fr; }

.radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:hover { border-color: var(--warm-gray); transform: translateY(-1px); }
.radio-card:has(input:checked) {
  border-color: var(--iris);
  background: var(--iris-mist);
  box-shadow: 0 0 0 3px rgba(6, 20, 146, 0.12);
}
.rc-title { font-weight: 700; color: var(--shade); font-size: 0.98rem; }
.rc-desc { font-size: 0.82rem; color: var(--warm-gray); }
.radio-card:has(input:checked) .rc-title { color: var(--iris); }

.step-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.step-actions .btn-primary, .step-actions .btn-secondary {
  padding: 0.78rem 1.5rem;
  font-size: 0.95rem;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-note {
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-top: 1.1rem;
  text-align: center;
}
.form-error {
  color: var(--iris);
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--iris-mist);
  padding: 0.7rem;
  border-radius: var(--r-sm);
}

/* Multi-select pain pills */
.check-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}
.check-pill {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.check-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-pill span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.05rem;
  border: 1px solid var(--bone);
  border-radius: var(--pill);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s var(--ease-out);
  line-height: 1.2;
}
.check-pill:hover span {
  border-color: var(--warm-gray);
  transform: translateY(-1px);
}
.check-pill:has(input:checked) span {
  background: var(--iris);
  border-color: var(--iris);
  color: var(--white);
  padding-left: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.check-pill:has(input:checked) span::before {
  content: "✓";
  font-size: 0.8rem;
  font-weight: 800;
}
.check-pill.is-disabled span {
  opacity: 0.4;
  cursor: not-allowed;
}
.check-hint {
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-top: 0.65rem;
  font-variant-numeric: tabular-nums;
}
.check-hint #pain-count {
  font-weight: 700;
  color: var(--iris);
}

/* ============================================
   VOICE INPUT
   ============================================ */
.voice-input {
  position: relative;
  margin-bottom: 0.5rem;
}
.voice-input input { padding-right: 3.4rem !important; margin-bottom: 0 !important; }
.voice-btn {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--marble);
  border: 1px solid var(--bone);
  color: var(--warm-gray);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s var(--ease-out);
  padding: 0;
}
.voice-btn:hover {
  background: var(--hydrangea-mist);
  border-color: var(--hydrangea);
  color: var(--hydrangea);
}
.voice-btn.is-listening {
  background: var(--iris);
  border-color: var(--iris);
  color: var(--white);
  animation: voicePulse 1.4s var(--ease-in-out) infinite;
}
@keyframes voicePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 20, 146, 0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(6, 20, 146, 0); }
}
.voice-status {
  font-size: 0.85rem;
  color: var(--iris);
  margin: 0.3rem 0 0.5rem;
  padding-left: 0.25rem;
  font-weight: 500;
}

/* ============================================
   SUGGESTION PILLS — autocomplete chips
   ============================================ */
.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0.4rem 0 0.6rem;
  padding: 0.65rem 0.85rem;
  background: var(--hydrangea-mist);
  border: 1px dashed var(--hydrangea-soft);
  border-radius: var(--r-md);
}
.suggestions[hidden] { display: none; }
.sug-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-right: 0.15rem;
}
.sug-pill {
  padding: 0.4rem 0.9rem;
  border-radius: var(--pill);
  background: var(--white);
  border: 1px solid var(--bone);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s var(--ease-out);
}
.sug-pill:hover {
  background: var(--hydrangea);
  border-color: var(--hydrangea);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================
   CITY COMBOBOX
   ============================================ */
.combo { position: relative; margin-bottom: 0.5rem; }
.combo-input { width: 100%; }
.combo-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.3rem;
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  max-height: 280px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
}
.combo-list[hidden] { display: none; }
.combo-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.12s var(--ease-out);
}
.combo-item:hover,
.combo-item.is-active { background: var(--hydrangea-mist); }
.combo-city {
  color: var(--shade);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.combo-region {
  color: var(--warm-gray);
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   SKIP — for skippable steps
   ============================================ */
.btn-ghost.skip {
  color: var(--warm-gray);
  background: transparent;
  border: 1px dashed var(--bone);
  padding: 0.78rem 1.4rem;
  font-weight: 500;
}
.btn-ghost.skip:hover {
  color: var(--ink);
  border-color: var(--warm-gray);
  border-style: solid;
  background: var(--white);
}

/* ============================================
   FIELD GROUP — two-field step (role + team size)
   ============================================ */
.field-group { margin-bottom: 1rem; }
.field-group:last-of-type { margin-bottom: 0.5rem; }
.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.005em;
}

/* ============================================
   REVEAL SCREEN
   ============================================ */
.step-reveal { animation: revealIn 0.6s var(--ease-out); }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.rev-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iris);
  background: var(--iris-mist);
  border: 1px solid var(--iris-soft);
  padding: 0.42rem 0.9rem;
  border-radius: var(--pill);
  margin-bottom: 1.1rem;
}
.rev-eyebrow .eyebrow-dot {
  background: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-soft);
}
.rev-headline {
  font-size: clamp(1.85rem, 4.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--shade);
  margin-bottom: 0.4rem;
}
.rev-headline [data-rec-name] {
  background: linear-gradient(110deg, var(--iris) 0%, var(--hydrangea) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--iris);
}
.rev-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--warm-gray);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.rev-block {
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  margin-bottom: 0.85rem;
}
.rev-block-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 0.55rem;
}
.rev-why, .rev-evidence, .rev-alt, .rev-team-note {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink);
}
.rev-why strong, .rev-evidence strong { color: var(--iris); }
.rev-block-alt {
  background: var(--hydrangea-mist);
  border-color: var(--hydrangea-soft);
}
.rev-block-note {
  background: var(--shade);
  border-color: var(--shade);
}
.rev-block-note .rev-block-label { color: var(--hydrangea); }
.rev-block-note .rev-team-note { color: var(--marble); }

/* Tier 3 link at the bottom of the reveal step */
.rev-tier3-link {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--bone);
  font-size: 0.92rem;
  color: var(--warm-gray);
  text-align: center;
  line-height: 1.5;
}
.rev-tier3-link a {
  color: var(--iris);
  font-weight: 600;
  white-space: nowrap;
}

/* Upsell list inside the reveal — Task 9 (max 3) */
.rev-block-upsells {
  background: var(--off-white);
  border-color: var(--bone);
  border-style: dashed;
}
.rev-upsells {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rev-upsell-item {
  padding: 0.75rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
}
.rev-upsell-item strong {
  color: var(--iris);
  margin-right: 0.35rem;
  font-weight: 700;
}
.rev-upsells-hint {
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-style: italic;
}

/* ============================================
   BY THE NUMBERS — bento grid
   ============================================ */
.numbers { background: var(--marble); }

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 780px) {
  .bento {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "lead a b"
      "lead wide wide";
    gap: 1rem;
  }
}

.stat {
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--iris);
}

.stat-lead {
  grid-area: lead;
  background: linear-gradient(165deg, var(--iris) 0%, var(--iris-deep) 100%);
  color: var(--marble);
  border-color: var(--iris);
  padding: 2.25rem 2rem;
}
.stat-lead .stat-tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-lead .stat-big { color: var(--white); font-size: clamp(3rem, 7vw, 4.6rem); }
.stat-lead .stat-claim { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; }
.stat-lead .stat-source { color: rgba(255, 255, 255, 0.5); border-top-color: rgba(255, 255, 255, 0.15); }

.bento .stat:nth-child(2) { grid-area: a; }
.bento .stat:nth-child(3) { grid-area: b; }
.stat-wide { grid-area: wide; }

.stat-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hydrangea);
  background: var(--hydrangea-mist);
  border: 1px solid var(--hydrangea-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--pill);
  align-self: flex-start;
  margin-bottom: 1rem;
}

.stat-big {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--iris);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 0.85rem;
}
.stat-unit { font-size: 0.55em; font-weight: 700; }
.stat-claim {
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.stat-claim em { font-style: italic; color: inherit; font-weight: 600; }
.stat-source {
  font-size: 0.76rem;
  color: var(--warm-gray);
  line-height: 1.4;
  border-top: 1px solid var(--bone);
  padding-top: 0.85rem;
  margin-top: auto;
}
.stat-twin {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.stat-twin > div { flex: 1; }
.stat-sub-claim {
  font-size: 0.82rem;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  margin-top: -0.4rem;
}

/* ============================================
   PILLARS
   ============================================ */
.pillars { background: var(--off-white); }
.pillar-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}
@media (min-width: 1000px) {
  .pillar-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 760px) {
  .pillar-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Pillar subtitle — Task 4 naming rule. Always appears under the product name. */
.pillar-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--iris);
  margin-top: -0.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}

/* Tier list inside the Press Play card */
.pillar-tiered .timeline { margin-bottom: 1rem; }
.tier-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}
.tier {
  padding: 0.95rem 1.05rem;
  background: var(--off-white);
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  transition: border-color 0.18s var(--ease-out), background 0.18s;
}
.tier:hover { border-color: var(--iris); background: var(--white); }
.tier-featured {
  background: var(--iris-mist);
  border-color: var(--iris-soft);
}
.tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.tier-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--shade);
  letter-spacing: -0.01em;
}
.tier-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--soft-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tier-desc {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

/* Show-more reveal for the 5th pillar */
.pillar-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.pillar-more {
  font-weight: 600;
  border: 1px solid var(--bone);
  background: var(--white);
  color: var(--shade);
  padding: 0.7rem 1.25rem;
  border-radius: var(--pill);
  transition: all 0.2s var(--ease-out);
}
.pillar-more:hover {
  text-decoration: none;
  border-color: var(--iris);
  color: var(--iris);
  background: var(--iris-mist);
}
.pillar-more-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  margin-left: 0.15rem;
}
.pillar-more[aria-expanded="true"] .pillar-more-arrow { transform: rotate(180deg); }

.pillar-extra {
  display: grid;
  margin-top: 1.5rem;
  animation: pillarExtraIn 0.5s var(--ease-out);
}
.pillar-extra[hidden] { display: none; }
@keyframes pillarExtraIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (min-width: 1000px) {
  .pillar-extra .pillar { max-width: 540px; margin: 0 auto; }
}

.pillar {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--iris);
  box-shadow: var(--shadow-lg);
}
.pillar-featured {
  background: linear-gradient(180deg, var(--white) 0%, var(--marble) 100%);
  border-color: var(--iris);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
@media (max-width: 880px) {
  .pillar-featured { transform: none; margin: 1.5rem 0; }
}
.pillar-ribbon {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, var(--iris) 0%, var(--iris-deep) 100%);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: var(--pill);
  box-shadow: var(--shadow-iris);
  white-space: nowrap;
}

.pillar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.pillar-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hydrangea);
  background: var(--hydrangea-mist);
  border: 1px solid var(--hydrangea-soft);
  padding: 0.32rem 0.8rem;
  border-radius: var(--pill);
}
.pillar-step {
  font-size: 0.85rem;
  color: var(--soft-gray);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.pillar h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  color: var(--shade);
}
@media (min-width: 1000px) {
  .pillar-grid-4 .pillar h3 { font-size: 1.45rem; }
}
.price-veiled {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--warm-gray);
  margin-bottom: 0.25rem;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.price-veiled::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hydrangea);
}
.timeline {
  color: var(--warm-gray);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bone);
}
.pillar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
}
.pillar li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.5;
}
.pillar li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--hydrangea);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--hydrangea-mist);
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--hydrangea);
  margin-bottom: 1.25rem;
  align-self: flex-start;
  padding: 0.6rem 1.05rem;
  border: 1px solid var(--bone);
  border-radius: var(--pill);
  background: var(--white);
  transition: all 0.2s var(--ease-out);
}
.pillar-cta:hover {
  text-decoration: none;
  background: var(--hydrangea);
  color: var(--white);
  border-color: var(--hydrangea);
  transform: translateX(3px);
}
.pillar-featured .pillar-cta {
  background: var(--iris);
  color: var(--white);
  border-color: var(--iris);
}
.pillar-featured .pillar-cta:hover { background: var(--iris-deep); border-color: var(--iris-deep); }

.pillar-evidence {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--bone);
  font-size: 0.78rem;
  color: var(--warm-gray);
  line-height: 1.5;
}
.pillar-evidence em { color: var(--ink); }

/* ============================================
   COMMITMENTS
   ============================================ */
.commitments { background: var(--marble); }
.commit-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .commit-grid { grid-template-columns: repeat(3, 1fr); }
}
.commit {
  padding: 2rem 1.75rem 1.85rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-xl);
  background: var(--white);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
}
.commit:hover { transform: translateY(-3px); border-color: var(--iris); }
.commit-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--iris);
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.commit h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.018em;
  color: var(--shade);
}
.commit p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* ============================================
   FOUNDER
   ============================================ */
.founder { background: var(--off-white); }
.founder-row {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) {
  .founder-row { flex-direction: row; text-align: left; }
}
.founder-photo-wrap {
  position: relative;
  width: 130px; height: 130px;
  flex-shrink: 0;
}
.founder-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.founder-photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--iris) 0%, var(--iris-deep) 100%);
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  border-radius: 50%;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.no-photo .founder-photo-fallback { z-index: 3; }
.founder-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--iris-soft);
  border-radius: 50%;
}
.founder-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hydrangea);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.founder-label .eyebrow-dot {
  background: var(--hydrangea);
  box-shadow: 0 0 0 3px var(--hydrangea-mist);
}
.founder h3 {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--shade);
}
.founder-bio { color: var(--warm-gray); margin-bottom: 0.85rem; font-size: 0.98rem; line-height: 1.55; }
.founder-contact { font-size: 0.93rem; }
.founder-contact a { color: var(--shade); font-weight: 500; }
.founder-contact a:hover { color: var(--hydrangea); }
.dot-sep { color: var(--soft-gray); margin: 0 0.4rem; }

/* ============================================
   FINAL CTA — quiet cream close (iris button, not chartreuse)
   ============================================ */
.final-cta {
  background: var(--marble);
  padding: 6rem 0 5.5rem;
}
.final-cta-wrap { text-align: center; max-width: 640px; margin: 0 auto; }
.eyebrow-light {
  background: var(--white);
  color: var(--iris);
  border-color: var(--iris-soft);
}
.eyebrow-light .eyebrow-dot {
  background: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-soft);
}
.final-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0.5rem 0 2rem;
  color: var(--shade);
}
.final-sub {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
}
.final-sub a { color: var(--shade); font-weight: 600; }
.final-sub a:hover { color: var(--hydrangea); }

/* Final-cta button uses standard iris .btn-primary — NOT chartreuse.
   Chartreuse is reserved for the hero CTA (the magician moment). */

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--shade);
  color: rgba(244, 241, 232, 0.7);
  padding: 3rem 0 2.5rem;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}
.footer-commitments {
  list-style: none;
  counter-reset: c;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid rgba(244, 241, 232, 0.12);
}
@media (min-width: 760px) {
  .footer-commitments { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.footer-commitments li {
  counter-increment: c;
  position: relative;
  padding-left: 2.25rem;
  font-size: 0.92rem;
  color: rgba(244, 241, 232, 0.78);
  line-height: 1.55;
}
.footer-commitments li::before {
  content: counter(c, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--chartreuse);
  font-variant-numeric: tabular-nums;
}
.footer-commitments strong { color: var(--marble); font-weight: 700; }

.footer-custom-quote {
  color: rgba(244, 241, 232, 0.5) !important;
  font-size: 0.78rem;
  font-weight: 500;
}
.footer-custom-quote:hover { color: var(--chartreuse) !important; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-brand .brand-mark { width: 38px; height: 38px; font-size: 0.85rem; }
.footer-name { font-weight: 700; color: var(--marble); font-size: 1.02rem; letter-spacing: -0.01em; }
.footer-tagline { font-size: 0.82rem; color: rgba(244, 241, 232, 0.5); margin-top: 0.15rem; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.92rem;
}
@media (min-width: 720px) {
  .footer-contact { text-align: right; }
}
.footer-contact a { color: var(--marble); }
.footer-contact a:hover { color: var(--hydrangea); }
.copy {
  font-size: 0.78rem;
  color: rgba(244, 241, 232, 0.4);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.thanks-page h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: var(--iris);
  font-weight: 800;
}
.thanks-page p {
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.thanks-page .btn-primary { margin-top: 1rem; }
.thanks-sign {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--shade);
  font-style: italic;
  font-weight: 500;
}

/* ============================================
   REVEAL STEP — "Get started now" buttons
   ============================================ */
.reveal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .reveal-actions { flex-direction: row; }
  .reveal-actions .btn-primary, .reveal-actions .btn-secondary { flex: 1; }
}
.reveal-pay {
  background: linear-gradient(145deg, var(--chartreuse) 0%, var(--chartreuse-deep) 100%);
  color: var(--shade);
  box-shadow: var(--shadow-chartreuse), inset 0 -3px 0 rgba(0, 0, 0, 0.06);
  padding: 1.05rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.reveal-pay:hover {
  background: linear-gradient(145deg, var(--chartreuse-deep) 0%, #b3c41c 100%);
  box-shadow: 0 18px 36px rgba(210, 232, 35, 0.45), inset 0 -3px 0 rgba(0, 0, 0, 0.06);
}
.reveal-pay svg { color: var(--shade); }
.reveal-pay-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.5;
  text-align: center;
  padding: 0.7rem 0.9rem;
  background: var(--marble);
  border: 1px dashed var(--bone);
  border-radius: var(--r-sm);
}
.reveal-pay-note strong { color: var(--shade); }
.step-actions-back { margin-top: 1rem; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.page-checkout { background: var(--marble); }
.page-checkout .nav { background: rgba(241, 239, 232, 0.92); }

.checkout-secure-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--warm-gray);
}

.checkout-page { padding: 2rem 0 5rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 920px) {
  .checkout-grid { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
}

.checkout-head { margin-bottom: 1.75rem; }
.checkout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--iris);
  background: var(--iris-mist);
  border: 1px solid var(--iris-soft);
  padding: 0.4rem 0.9rem;
  border-radius: var(--pill);
  margin-bottom: 0.85rem;
}
.checkout-eyebrow .eyebrow-dot { background: var(--iris); box-shadow: 0 0 0 3px var(--iris-soft); }

.checkout-title {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--shade);
  margin-bottom: 0.5rem;
}
.checkout-sub {
  color: var(--warm-gray);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.5;
}

.cart-block {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-xs);
}
.block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 1rem;
}
.block-hint {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin: -0.5rem 0 1rem;
}

.cart-list, .upsell-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0; padding: 0;
}
.cart-empty {
  color: var(--warm-gray);
  font-size: 0.95rem;
  padding: 0.75rem 0;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  background: var(--off-white);
}
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.3rem;
}
.cart-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--shade);
  letter-spacing: -0.015em;
}
.cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--shade);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.cart-item-unit {
  font-size: 0.78em;
  font-weight: 500;
  color: var(--warm-gray);
}
.cart-item-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.45;
}
.cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid var(--bone);
  color: var(--warm-gray);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: var(--pill);
  cursor: pointer;
  transition: all 0.18s var(--ease-out);
  flex-shrink: 0;
}
.cart-remove:hover {
  border-color: var(--iris);
  color: var(--iris);
  background: var(--iris-mist);
}

.upsell-item { margin: 0; padding: 0; }
.upsell-label {
  display: flex;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  background: var(--white);
  cursor: pointer;
  transition: all 0.18s var(--ease-out);
}
.upsell-label:hover { border-color: var(--hydrangea); background: var(--hydrangea-mist); }
.upsell-label:has(input:checked) {
  border-color: var(--iris);
  background: var(--iris-mist);
  box-shadow: 0 0 0 2px var(--iris-soft);
}
.upsell-check {
  width: 18px; height: 18px;
  accent-color: var(--iris);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.upsell-body { flex: 1; min-width: 0; }
.upsell-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.upsell-name { font-weight: 700; color: var(--shade); font-size: 1rem; }
.upsell-price {
  font-weight: 700;
  color: var(--iris);
  font-size: 0.95rem;
  white-space: nowrap;
}
.upsell-desc { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.45; }

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.checkout-fields input[type="text"],
.checkout-fields input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--ink);
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.checkout-fields input:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-soft);
  background: var(--white);
}

.trust-mobile { margin: 1rem 0; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--white);
  border: 1px solid var(--bone);
  color: var(--warm-gray);
  padding: 0.35rem 0.75rem;
  border-radius: var(--pill);
  font-size: 0.78rem;
  font-weight: 600;
}
@media (min-width: 920px) { .trust-mobile { display: none; } }

.btn-press-checkout {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.continue-lock { color: rgba(255, 255, 255, 0.85); margin-right: 0.15rem; }

.checkout-payment-methods {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--warm-gray);
}

/* RIGHT: sticky order summary */
.summary-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 5rem;
}
.summary-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--shade);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.summary-amount {
  font-weight: 800;
  color: var(--shade);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.summary-row-note {
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-weight: 500;
  padding-top: 0;
}
.summary-divider {
  border-top: 1px solid var(--bone);
  margin: 0.85rem 0;
}
.summary-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0; padding: 0;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.4;
}
.summary-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.summary-features svg {
  color: var(--iris);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.founder-mini {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.5rem 0 1rem;
}
.founder-mini-photo-wrap {
  position: relative;
  width: 48px; height: 48px;
  flex-shrink: 0;
}
.founder-mini-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--iris);
  position: relative;
  z-index: 2;
}
.founder-mini-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--iris) 0%, var(--iris-deep) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  z-index: 1;
}
.no-photo .founder-mini-fallback { z-index: 3; }
.founder-mini-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--shade);
}
.founder-mini-quote {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.4;
}

.summary-stripe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}
.summary-stripe svg { color: var(--hydrangea); }

.summary-fine {
  font-size: 0.76rem;
  color: var(--soft-gray);
  line-height: 1.4;
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.page-success { background: var(--marble); }
.success-page { padding: 2.5rem 0 5rem; }

.success-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.success-check {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: linear-gradient(145deg, var(--chartreuse) 0%, var(--chartreuse-deep) 100%);
  color: var(--shade);
  box-shadow: var(--shadow-chartreuse);
}
.eyebrow-success {
  background: var(--white);
  color: var(--iris);
  border-color: var(--iris-soft);
}
.eyebrow-success .eyebrow-dot {
  background: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-soft);
}
.success-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--shade);
  margin-bottom: 0.75rem;
}
.success-title span { color: var(--iris); }
.success-sub {
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto 0.75rem;
}
.success-bought {
  color: var(--shade);
  font-size: 0.95rem;
}
.success-bought strong { color: var(--iris); }

.success-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 920px) {
  .success-grid { grid-template-columns: 1.6fr 1fr; gap: 2.5rem; }
}

.success-main, .success-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.success-block {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

.success-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  counter-reset: step;
  margin: 0; padding: 0;
}
.success-steps li {
  counter-increment: step;
  position: relative;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border-radius: var(--r-sm);
  background: var(--off-white);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.success-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.75rem;
  width: 1.65rem;
  height: 1.65rem;
  background: var(--iris);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
}

/* Schedule form */
.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.schedule-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.schedule-form legend {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--shade);
  margin-bottom: 0.6rem;
  padding: 0;
}
.day-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.day-pill {
  position: relative;
  cursor: pointer;
}
.day-pill input { position: absolute; opacity: 0; pointer-events: none; }
.day-pill span {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--bone);
  border-radius: var(--pill);
  background: var(--off-white);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.18s var(--ease-out);
}
.day-pill:hover span { border-color: var(--warm-gray); }
.day-pill:has(input:checked) span {
  background: var(--iris);
  border-color: var(--iris);
  color: var(--white);
}

.schedule-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--ink);
  resize: vertical;
  min-height: 80px;
}
.schedule-form textarea:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-soft);
  background: var(--white);
}
.schedule-form .field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shade);
  margin-bottom: -0.5rem;
}
.schedule-submit { align-self: flex-start; }
.form-success {
  background: var(--iris-mist);
  border: 1px solid var(--iris-soft);
  color: var(--iris);
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Upsell card */
.success-upsell { background: var(--white); border: 1px dashed var(--iris-soft); }
.upsell-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.upsell-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iris);
  background: var(--iris-mist);
  padding: 0.32rem 0.75rem;
  border-radius: var(--pill);
}
.upsell-card-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--iris);
}
.upsell-card-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--shade);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.upsell-card-pitch {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.upsell-card-evidence {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--bone);
}
.upsell-card-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.upsell-add { flex: 1; min-width: 200px; }
.upsell-skip { padding: 0.95rem 1.4rem; }

/* Success side card */
.success-side-card .summary-features { margin-bottom: 1rem; }
.portal-btn {
  width: 100%;
  margin-top: 0.25rem;
}
.portal-hint {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.4;
}
.portal-error {
  font-size: 0.82rem;
  color: var(--iris);
  margin-top: 0.5rem;
  text-align: center;
}
.success-sign {
  margin-top: 0.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--shade);
}

/* ============================================
   CUSTOM-QUOTE PAGE — tier 3 sales page
   ============================================ */
.page-quote { background: var(--marble); }
.page-quote .nav { background: rgba(241, 239, 232, 0.92); }
.quote-page { padding: 2.5rem 0 5rem; }

.quote-hero {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.quote-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--shade);
  margin: 1rem 0;
}
.quote-sub {
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1.75rem;
}

.quote-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  text-align: left;
  margin: 0 0 1.5rem;
}

/* Six service cards */
.quote-services { margin-bottom: 4rem; }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 720px) { .quote-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }

.quote-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s var(--ease-out), transform 0.18s, box-shadow 0.18s;
}
.quote-card:hover {
  border-color: var(--iris);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.quote-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iris);
  background: var(--iris-mist);
  border: 1px solid var(--iris-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--pill);
  margin-bottom: 0.85rem;
  align-self: flex-start;
}
.quote-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--shade);
  margin-bottom: 0.5rem;
  letter-spacing: -0.018em;
}
.quote-card-desc {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.quote-card-range {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.5;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--bone);
  margin-top: auto;
}

/* Why-by-quote explainer */
.quote-why { margin-bottom: 4rem; }
.quote-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 720px) { .quote-why-grid { grid-template-columns: repeat(2, 1fr); } }
.quote-why-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.6rem;
}
.quote-why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--iris);
  margin-bottom: 0.65rem;
  letter-spacing: -0.018em;
}
.quote-why-card p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
}

/* Contact form */
.quote-form-section { margin-bottom: 2rem; }
.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-xl);
  padding: 2rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) {
  .quote-form-wrap { padding: 1.5rem 1.25rem; border-radius: var(--r-lg); }
}
.quote-form-head { text-align: center; margin-bottom: 1.75rem; }
.quote-form-head .section-title { text-align: center; }
.quote-form-head .quote-sub { margin: 0 auto; }

.quote-form { display: flex; flex-direction: column; gap: 1rem; }
.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 600px) {
  .quote-form-grid { grid-template-columns: 1fr 1fr; }
}
.quote-field { display: flex; flex-direction: column; gap: 0.4rem; }
.quote-field-full { width: 100%; }
.quote-field .field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shade);
}
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--bone);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--ink);
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s, background 0.18s;
}
.quote-form input:focus-visible,
.quote-form textarea:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--iris);
  box-shadow: 0 0 0 3px var(--iris-soft);
  background: var(--white);
}
.quote-form textarea { resize: vertical; min-height: 110px; }

.quote-services-pick { border: none; padding: 0; margin: 0; }
.quote-services-pick legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shade);
  margin-bottom: 0.55rem;
  padding: 0;
}

.quote-submit { align-self: flex-start; min-height: 48px; padding: 1rem 1.6rem; font-size: 1rem; }
.quote-form-fine {
  font-size: 0.82rem;
  color: var(--warm-gray);
  text-align: center;
  margin-top: 0.5rem;
}

/* ============================================
   SCROLL REVEAL — gated by .js so JS-off users see content
   ============================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal-delay { transition-delay: 0.15s; }

/* ============================================
   A11Y / motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 540px) {
  section { padding: 4rem 0; }
  .hero { padding: 3rem 0 4rem; }
}

/* ============================================
   QUIZ INLINE SUCCESS — replaces thanks.html redirect
   Pattern from Calendly / Typeform / Cal.com
   ============================================ */
.quiz-success {
  text-align: center;
  padding: 4rem 1.25rem 4.5rem;
  animation: stepIn 0.5s var(--ease-out);
}
.quiz-success-check {
  width: 88px;
  height: 88px;
  margin: 0 auto 2rem;
  display: block;
  color: var(--iris);
}
.quiz-success-check .qs-ring {
  fill: none;
  stroke: var(--iris);
  stroke-width: 2.5;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: qsRing 0.55s var(--ease-out) 0.1s forwards;
}
.quiz-success-check .qs-tick {
  fill: none;
  stroke: var(--iris);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: qsTick 0.35s var(--ease-out) 0.55s forwards;
}
@keyframes qsRing { to { stroke-dashoffset: 0; } }
@keyframes qsTick { to { stroke-dashoffset: 0; } }

.quiz-success-headline {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--shade);
  margin-bottom: 0.85rem;
}
.quiz-success-sub {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 480px;
  margin: 0 auto 0.5rem;
  line-height: 1.55;
}
.quiz-success-meta {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}
.quiz-success-back {
  display: inline-block;
  color: var(--hydrangea);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: var(--pill);
  transition: background 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.quiz-success-back:hover {
  background: var(--hydrangea-soft);
  color: var(--hydrangea-deep);
}
@media (prefers-reduced-motion: reduce) {
  .quiz-success-check .qs-ring,
  .quiz-success-check .qs-tick { stroke-dashoffset: 0; animation: none; }
}

/* ============================================
   HERO — three-line sub clarifying the offering
   ============================================ */
.hero-sub-three {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-sub-three span {
  display: inline-block;
}
.hero-sub-three strong {
  color: var(--chartreuse);
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero-sub-three { font-size: 1.15rem; }
}

/* ============================================
   OFFERING — what you get (three-card lockup)
   ============================================ */
.offering {
  background: var(--marble);
  padding: 5.5rem 0 5rem;
}
.offering .section-head { margin-bottom: 3rem; }

.offering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .offering-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.offering-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--hydrangea-soft);
}
.offering-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--iris-mist);
  color: var(--iris);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.offering-icon svg { width: 30px; height: 30px; }
.offering-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--shade);
  margin-bottom: 0.65rem;
}
.offering-desc {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.offering-replaces {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px dashed var(--bone);
  padding-top: 0.9rem;
}
.offering-anchor {
  text-align: center;
  font-size: 1rem;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto;
}
.offering-anchor a {
  color: var(--hydrangea);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.offering-anchor a:hover { color: var(--hydrangea-deep); text-decoration: underline; }

/* ============================================
   VERSUS — comparison vs AI & freelancer
   ============================================ */
.versus {
  background: var(--off-white);
  padding: 5.5rem 0 4.5rem;
  border-top: 1px solid var(--bone);
}
.versus .section-head { margin-bottom: 2.75rem; }

.versus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 880px) {
  .versus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.versus-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.versus-card.versus-us {
  background: var(--iris);
  color: var(--white);
  border-color: var(--iris-deep);
  box-shadow: var(--shadow-iris);
  transform: none;
}
@media (min-width: 880px) {
  .versus-card.versus-us {
    transform: scale(1.03);
    z-index: 2;
  }
}
.versus-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--chartreuse);
  color: var(--shade);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--pill);
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
}
.versus-head {
  border-bottom: 1px solid var(--bone);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.versus-us .versus-head { border-bottom-color: rgba(255, 255, 255, 0.18); }
.versus-head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--shade);
  margin-bottom: 0.25rem;
}
.versus-us .versus-head h3 { color: var(--white); }
.versus-sub {
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-bottom: 0.65rem;
}
.versus-us .versus-sub { color: rgba(255, 255, 255, 0.65); }
.versus-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--shade);
  letter-spacing: -0.01em;
}
.versus-us .versus-price { color: var(--chartreuse); }

.versus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.versus-list li {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink);
  padding-left: 1.6rem;
  position: relative;
}
.versus-us .versus-list li { color: rgba(255, 255, 255, 0.94); }
.versus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}
.vs-yes::before { background: rgba(93, 206, 138, 0.18); }
.vs-yes::after {
  content: '✓';
  position: absolute;
  left: 2px;
  top: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #2d9d5b;
  width: 16px;
  text-align: center;
}
.versus-us .vs-yes::before { background: rgba(210, 232, 35, 0.22); }
.versus-us .vs-yes::after { color: var(--chartreuse); }

.vs-no::before { background: rgba(220, 214, 199, 0.7); }
.vs-no::after {
  content: '×';
  position: absolute;
  left: 2px;
  top: -0.05em;
  font-size: 1rem;
  font-weight: 800;
  color: var(--warm-gray);
  width: 16px;
  text-align: center;
}

.vs-maybe::before { background: rgba(255, 182, 39, 0.2); }
.vs-maybe::after {
  content: '~';
  position: absolute;
  left: 2px;
  top: 0.05em;
  font-size: 0.95rem;
  font-weight: 800;
  color: #c97b00;
  width: 16px;
  text-align: center;
}

.versus-footnote {
  font-size: 0.78rem;
  color: var(--warm-gray);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.versus-footnote em { font-style: italic; }

/* ============================================
   HERO CONCEPT DIAGRAM — 3 services → 1 person → your business
   Replaces the old 3-card stack. Visual answer to "what do you do?"
   ============================================ */
.hero-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.concept-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  color: var(--white);
}
.concept-node rect {
  fill: rgba(255, 255, 255, 0.06);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
  transition: all 0.4s var(--ease-out);
}
.concept-label,
.concept-output-label,
.concept-output-sub {
  font-family: 'Geist', sans-serif;
  fill: var(--white);
}
.concept-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.concept-output-label {
  font-size: 16px;
  font-weight: 700;
}
.concept-output-sub {
  font-size: 12px;
  font-weight: 500;
  fill: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* The chartreuse magician moment — center node */
.concept-center rect {
  fill: var(--chartreuse);
  stroke: var(--chartreuse-deep);
  filter: drop-shadow(0 8px 20px rgba(210, 232, 35, 0.35));
}
.concept-center-label {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 800;
  fill: var(--shade);
  letter-spacing: -0.01em;
}
.concept-center-sub {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: var(--shade);
  letter-spacing: 0.03em;
  opacity: 0.8;
}

/* Flow lines — draw in on load */
.concept-flow path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: conceptDraw 1.1s var(--ease-out) 0.4s forwards;
  opacity: 0.55;
}
.concept-flow path:nth-child(2) { animation-delay: 0.55s; }
.concept-flow path:nth-child(3) { animation-delay: 0.7s; }
@keyframes conceptDraw {
  to { stroke-dashoffset: 0; }
}

/* Service node hover — lifts and brightens (desktop) */
@media (hover: hover) {
  .concept-service:hover rect {
    fill: rgba(255, 255, 255, 0.12);
    stroke: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-flow path { stroke-dashoffset: 0; animation: none; }
}

/* Mobile — diagram below hero text */
@media (max-width: 900px) {
  .concept-svg { max-width: 380px; }
}

/* ============================================
   PLANS — 4-card pricing grid, open prices
   Replaces pillars section. Stripe/Linear-style transparency.
   ============================================ */
.plans { padding: 5rem 0; background: var(--marble); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: stretch;
}
@media (max-width: 1100px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .plans-grid { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--hydrangea-soft);
  box-shadow: var(--shadow-md);
}

.plan-featured {
  border: 2px solid var(--iris);
  box-shadow: 0 12px 32px rgba(6, 20, 146, 0.12);
}
.plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--iris);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--pill);
}

.plan-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.6rem;
}
.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--shade);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
  color: var(--shade);
}
.plan-currency { font-size: 1.2rem; font-weight: 600; margin-right: 0.1rem; }
.plan-amount   { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.plan-unit     { font-size: 0.9rem; font-weight: 600; color: var(--warm-gray); margin-left: 0.4rem; }

.plan-pitch {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 3.6em;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.plan-list li {
  font-size: 0.88rem;
  color: var(--ink);
  padding: 0.45rem 0 0.45rem 1.25rem;
  border-top: 1px dashed var(--bone);
  position: relative;
  line-height: 1.45;
}
.plan-list li:first-child { border-top: none; }
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--hydrangea);
}
.plan-featured .plan-list li::before { background: var(--iris); }

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--shade);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.plan-cta:hover { background: var(--iris); transform: translateY(-1px); }
.plan-featured .plan-cta { background: var(--iris); }
.plan-featured .plan-cta:hover { background: var(--iris-deep); }

.plans-footnote {
  text-align: center;
  font-size: 0.92rem;
  color: var(--warm-gray);
  margin-top: 2.5rem;
}
.plans-footnote a { color: var(--hydrangea); font-weight: 600; }
.plans-footnote strong { color: var(--shade); }

/* ============================================
   COMMITMENTS — thin strip near footer, replaces full section
   ============================================ */
.commit-strip {
  background: var(--marble-deep);
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  padding: 1.5rem 0;
}
.commit-strip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 800px) {
  .commit-strip-row { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
}
.commit-strip-item {
  font-size: 0.88rem;
  color: var(--shade);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}
.commit-strip-item strong { font-weight: 700; }
.commit-strip-item svg { color: var(--iris); flex-shrink: 0; }

/* ============================================
   HERO — re-tune for new diagram + simpler text
   ============================================ */
.hero-promise {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  border-left: 2px solid rgba(210, 232, 35, 0.55);
  padding-left: 0.75rem;
  line-height: 1.5;
  max-width: 420px;
}
