/* ============================================================
   Nava Care Pitch Microsite — v2
   Patient-first, single-track, cinematic, less PowerPoint
   ============================================================ */

:root {
  --berry: #AA336A;
  --berry-dark: #8E2756;
  --berry-soft: #FDF2F8;
  --navy: #1C2E4A;
  --navy-deep: #0F1A2D;
  --steel: #5D7290;
  --cool-slate: #94A3B8;
  --teal: #156082;
  --warm-clay: #F9F7F5;
  --warm-clay-2: #FBF8F4;
  --text: #334155;
  --text-soft: #64748B;
  --surface: #FFFFFF;
  --grid: #E5E7EB;

  --font-display: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "DejaVu Sans", sans-serif;
  --font-body: Arial, Helvetica, "Liberation Sans", sans-serif;

  --container-w: 1180px;
  --container-pad: clamp(1.25rem, 3vw, 2.5rem);
  --section-pad-y: clamp(4.5rem, 8vw, 9rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 200ms;
  --t-med: 420ms;
  --t-slow: 800ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--warm-clay);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--navy); text-decoration: none; }
img, svg { display: block; max-width: 100%; }
strong { color: var(--navy); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 0.75rem 1rem; z-index: 1000; }
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* ---------------- Topbar ---------------- */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--container-pad);
  transition: background var(--t-fast), backdrop-filter var(--t-fast);
}
.topbar.is-scrolled {
  background: rgba(249, 247, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(28, 46, 74, 0.06);
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand__logo { height: 72px; width: auto; display: block; }
.brand__logo--dark { display: none; }
.topbar.is-scrolled .brand__logo--light { display: none; }
.topbar.is-scrolled .brand__logo--dark { display: block; }
.topbar__pill { margin: 0; }

/* ---------------- Pills + eyebrows ---------------- */

.pill {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(28, 46, 74, 0.08);
  color: var(--steel);
}
.pill--berry { background: rgba(170, 51, 106, 0.12); color: var(--berry); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
  display: inline-block;
}
.eyebrow--berry { color: var(--berry); }
.eyebrow--slate { color: var(--cool-slate); }

.big-title {
  font-size: clamp(2rem, 1.4rem + 3.2vw, 3.75rem);
  max-width: 22ch;
  margin-bottom: 1rem;
}
.big-lead {
  font-size: clamp(1.1rem, 1rem + 0.8vw, 1.45rem);
  color: var(--text-soft);
  max-width: 44rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* ---------------- Image placeholders ---------------- */

.placeholder, .stop__placeholder, .portrait__placeholder, .hero__placeholder {
  position: relative;
  background: repeating-linear-gradient(45deg, #F0EDE8, #F0EDE8 8px, #E8E4DD 8px, #E8E4DD 16px);
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--steel);
  font-family: var(--font-body);
  text-align: center;
  padding: 1rem;
  overflow: hidden;
  isolation: isolate;
}
.placeholder svg, .stop__placeholder svg, .portrait__placeholder svg, .hero__placeholder svg {
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.placeholder__label, .stop__placeholder span, .placeholder__init {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.placeholder__hint {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.35rem;
  max-width: 22ch;
  line-height: 1.4;
}
.placeholder__hint code {
  background: rgba(28, 46, 74, 0.06);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.72rem;
}

/* When real image is provided via inline style="background-image: url(...)", show it. */
[data-img-slot] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-img-slot][style*='background-image'] > * { display: none; }

/* ===========================================================
   1. HERO
   =========================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Fallback gradient if image is missing or still loading */
  background: radial-gradient(120% 80% at 60% 30%, #2A3F5D 0%, var(--navy) 50%, var(--navy-deep) 100%);
  /* Anchor right so Arthur stays visible across viewport widths */
  background-position: right center;
}
.hero__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: radial-gradient(120% 80% at 60% 30%, #2A3F5D 0%, var(--navy) 50%, var(--navy-deep) 100%);
  place-items: end stretch;
  padding: 0;
}
.hero__placeholder svg,
.hero__placeholder .placeholder__label,
.hero__placeholder .placeholder__hint { display: none; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,26,45,0.65) 0%, rgba(15,26,45,0.35) 30%, rgba(15,26,45,0.35) 55%, rgba(15,26,45,0.85) 100%),
    linear-gradient(90deg, rgba(15,26,45,0.45) 0%, rgba(15,26,45,0.15) 45%, rgba(15,26,45,0) 100%);
  z-index: 2;
}

.hero__ekg {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 70px;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.45;
}
.hero__ekg-path {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: ekgDraw 6s var(--ease-in-out) 0.6s infinite;
  filter: drop-shadow(0 0 4px rgba(170, 51, 106, 0.4));
}
@keyframes ekgDraw {
  0% { stroke-dashoffset: 3000; }
  35% { stroke-dashoffset: 0; }
  85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -3000; opacity: 0.2; }
}

.hero__content {
  position: relative;
  z-index: 4;
  color: #fff;
  padding-block: 8rem 6rem;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__title {
  font-size: clamp(2.5rem, 1.5rem + 5vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  max-width: 18ch;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__title-em { color: var(--berry); }
.hero__sub {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.55rem);
  color: rgba(255,255,255,0.85);
  max-width: 36rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 2.5s forwards;
}
.hero__cue {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  padding: 0.95rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--t-fast), transform var(--t-fast);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 2.8s forwards;
}
.hero__cue:hover { background: var(--berry); transform: translateY(-2px); }
.hero__cue svg { width: 1.1rem; height: 1.1rem; animation: bob 2s var(--ease-in-out) infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Word-by-word reveal in hero title */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: wordIn 0.7s var(--ease-out) forwards;
}
/* No extra margin-left — the natural HTML whitespace between inline-block spans
   already provides word spacing. */
.hero__title .reveal-word:nth-child(1) { animation-delay: 0.5s; }
.hero__title .reveal-word:nth-child(2) { animation-delay: 0.6s; }
.hero__title .reveal-word:nth-child(3) { animation-delay: 0.7s; }
.hero__title .reveal-word:nth-child(4) { animation-delay: 0.8s; }
.hero__title .reveal-word:nth-child(5) { animation-delay: 0.9s; }
.hero__title .reveal-word:nth-child(6) { animation-delay: 1.0s; }
.hero__title-em .reveal-word:nth-child(1) { animation-delay: 1.4s; }
.hero__title-em .reveal-word:nth-child(2) { animation-delay: 1.55s; }
.hero__title-em .reveal-word:nth-child(3) { animation-delay: 1.7s; }
.hero__title-em .reveal-word:nth-child(4) { animation-delay: 1.85s; }
.hero__title-em .reveal-word:nth-child(5) { animation-delay: 2s; }
.hero__title-em .reveal-word:nth-child(6) { animation-delay: 2.15s; }
@keyframes wordIn {
  to { opacity: 1; transform: none; }
}

/* ===========================================================
   2. ARTHUR — large portrait, emotional
   =========================================================== */

.arthur {
  background: var(--warm-clay);
  padding-block: var(--section-pad-y);
}
.arthur__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.arthur__portrait {
  margin: 0;
  position: relative;
}
.arthur__portrait-img {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(28, 46, 74, 0.25);
  position: relative;
}
.portrait__placeholder { width: 100%; height: 100%; }
.portrait__placeholder svg { width: 80%; max-width: 200px; height: auto; }
.portrait__caption {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.85rem;
  font-style: italic;
}
.arthur__name {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.arthur__quote {
  margin: 0 0 2rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--berry);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem);
  color: var(--navy);
  font-style: italic;
  line-height: 1.4;
}
.arthur__quote .reveal-line { display: block; }
.arthur__facts {
  display: grid;
  gap: 0.65rem;
}
.arthur__facts li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--text);
}
.arthur__facts li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--berry);
}

/* Reveal line for blockquote */
.reveal-line {
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.reveal-line.is-in { opacity: 1; transform: none; }
.reveal-line.is-in:nth-child(2) { transition-delay: 0.15s; }
.reveal-line.is-in:nth-child(3) { transition-delay: 0.3s; }

/* ===========================================================
   3. CURE — Fantastic Four + dramatic stat
   =========================================================== */

.cure {
  background: var(--warm-clay-2);
  padding-block: var(--section-pad-y);
}
.cure__meds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 4rem;
}
.med {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.med__pill {
  --c: var(--berry);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: var(--c);
  padding: 1.25rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 12px 32px -10px color-mix(in srgb, var(--c) 60%, transparent);
  min-width: 110px;
  text-align: center;
  transition: transform var(--t-fast);
}
.med:hover .med__pill { transform: translateY(-4px) rotate(-2deg); }
.med p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
  max-width: 18ch;
}

.cure__moment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin: 3rem 0;
}
.cure__card {
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  box-shadow: 0 30px 80px -30px rgba(28, 46, 74, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cure__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--berry);
}
.cure__card--gap::before { background: var(--cool-slate); }
.cure__tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--berry);
  background: rgba(170, 51, 106, 0.10);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.cure__tag--gap {
  color: var(--cool-slate);
  background: rgba(148, 163, 184, 0.15);
}

.huge-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 3rem + 5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.huge-stat--berry { color: var(--berry); }
.huge-stat--slate { color: var(--cool-slate); }
.huge-stat__label {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
  color: var(--text);
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.5;
}
.src { font-size: 0.72rem; color: var(--text-soft); margin-top: 0.85rem; }

.callout {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.85rem);
  color: var(--navy);
  text-align: center;
  max-width: 38rem;
  margin: 3rem auto 0;
  line-height: 1.35;
}
.callout--berry { color: var(--berry); }

/* ===========================================================
   4. VOID — timeline with image placeholders
   =========================================================== */

.void {
  background: var(--warm-clay);
  padding-block: var(--section-pad-y);
}

.path-timeline {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 0;
}
.path-timeline__line {
  position: absolute;
  top: 50%;
  left: 5%; right: 5%;
  width: 90%;
  height: 4px;
  transform: translateY(-50%);
  z-index: 0;
}
.path-timeline__line path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s var(--ease-in-out);
}
.path-timeline.is-in .path-timeline__line path {
  stroke-dashoffset: 0;
}
.path-timeline__stops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.stop {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(28,46,74,0.04), 0 12px 32px -10px rgba(28,46,74,0.12);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.stop.is-in { opacity: 1; transform: none; }
.stop__media {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.stop__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.stop__placeholder--berry {
  background: repeating-linear-gradient(45deg, #FDF2F8, #FDF2F8 8px, #FCE7F3 8px, #FCE7F3 16px);
}
.stop__placeholder svg { width: 60%; max-width: 60px; }
.stop__node {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cool-slate);
  box-shadow: 0 0 0 4px var(--warm-clay), 0 0 0 6px var(--cool-slate);
  z-index: 2;
  display: none; /* shown via top line, removed for now */
}
.stop__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cool-slate);
  margin-bottom: 0.3rem;
}
.stop__day--berry { color: var(--berry); }
.stop h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.stop p { font-size: 0.92rem; color: var(--text); margin: 0; line-height: 1.5; }

.void__weight {
  text-align: center;
  margin: 4rem auto 0;
  max-width: 42rem;
}
.void__weight .huge-stat { margin-bottom: 1rem; }
.void__weight .hero-quote { margin-top: 3rem; }

.ratio-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 4rem + 6vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cool-slate);
  margin-bottom: 1rem;
}
.ratio-stat__sep {
  font-size: 0.4em;
  font-style: italic;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0;
  transform: translateY(-0.2em);
}

/* ---------------- Monologue (first-person beats) ---------------- */

.monologue {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 3rem 0;
}
.beat {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 18px 50px -22px rgba(28, 46, 74, 0.18);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.beat.is-in { opacity: 1; transform: none; }
.beat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--cool-slate);
}
.beat--berry::before { background: var(--berry); }

/* Alternate the photo side for visual rhythm */
.beat:nth-child(even) {
  grid-template-columns: 7fr 5fr;
}
.beat:nth-child(even) .beat__media { order: 2; }

.beat__media {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
}
.beat__media .stop__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}
.beat__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.beat__chapter {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cool-slate);
}
.beat__chapter--berry { color: var(--berry); }
.beat__quote {
  margin: 0;
  position: relative;
  padding-left: 2.25rem;
}
.beat__quote::before {
  content: '\201C';
  position: absolute;
  left: -0.25rem;
  top: -0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--cool-slate);
  opacity: 0.5;
  font-weight: 700;
}
.beat--berry .beat__quote::before { color: var(--berry); }
.beat__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.7vw, 1.4rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 0.85rem;
}
.beat__quote p:last-child { margin-bottom: 0; }
.beat__quote p strong {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(170,51,106,0.18) 60%);
  padding: 0 0.15em;
}

/* Hero quote — Arthur's takeaway line */
.hero-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.7vw, 2.2rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.35;
  margin: 3rem auto 0.5rem;
  max-width: 42rem;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.hero-quote--berry { color: var(--berry); }
.hero-quote__attr {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cool-slate);
  text-align: center;
  margin-bottom: 1rem;
}

/* ===========================================================
   5. DELIVERS — Berry timeline
   =========================================================== */

.delivers {
  background: var(--warm-clay-2);
  padding-block: var(--section-pad-y);
}
.path-timeline--berry .path-timeline__line path { stroke-dasharray: 1000; }

/* ===========================================================
   6. POCKET — four pillars
   =========================================================== */

.pocket {
  background: var(--warm-clay);
  padding-block: var(--section-pad-y);
}
.pocket__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.7vw, 1.45rem);
  color: var(--berry);
  margin: -0.5rem 0 0;
  max-width: 30rem;
  line-height: 1.4;
}

.pocket__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.pocket__feature {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 16px 40px -16px rgba(28,46,74,0.12);
  transition: transform var(--t-med) var(--ease-out);
}
.pocket__feature:hover { transform: translateY(-6px); }
.pocket__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--warm-clay-2);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.pocket__icon svg { width: 28px; height: 28px; }
.pocket__feature h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.pocket__feature p { color: var(--text); margin: 0; font-size: 0.95rem; line-height: 1.55; }

/* ===========================================================
   7. PROOF — stat strip + PMPM stack
   =========================================================== */

.proof {
  background: var(--navy);
  color: #fff;
  padding-block: var(--section-pad-y);
}
.proof .big-title { color: #fff; }
.proof .eyebrow--berry { color: #F0A4C7; }

.proof__sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
  max-width: 42rem;
  line-height: 1.55;
  margin: 0 0 2.5rem;
}

.proof__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 4rem;
}
.proof__strip--2 { grid-template-columns: repeat(2, 1fr); }
.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.proof__stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 2.4rem + 3.5vw, 5rem);
  color: var(--berry);
  line-height: 1;
  letter-spacing: -0.03em;
}
.proof__stat .label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.65rem;
  max-width: 16ch;
}

.proof__econ h3 {
  color: #fff;
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  margin-bottom: 0.65rem;
}
.proof__econ-lead {
  color: rgba(255,255,255,0.75);
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.pmpm {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
}
.pmpm__head {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--grid);
}
.pmpm__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(170, 51, 106, 0.18);
}
.pmpm__row:last-of-type,
.pmpm__row:has(+ .pmpm__total) { border-bottom: 0; }
.pmpm__lbl {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.pmpm__bar {
  position: relative;
  background: var(--c);
  width: var(--w);
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: 0.9rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  min-width: 70px;
  transform-origin: left center;
  animation: barGrow 1s var(--ease-out) 0.2s both;
}
@keyframes barGrow {
  from { transform: scaleX(0.05); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
.pmpm__total {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(170, 51, 106, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--berry);
  gap: 1rem;
}
.pmpm__total strong { color: var(--berry); font-size: 1.35rem; font-weight: 700; }
.pmpm__pct { color: var(--berry); font-size: 1.1rem; }

/* ===========================================================
   8. TRACTION
   =========================================================== */

.traction {
  background: var(--warm-clay);
  padding-block: var(--section-pad-y);
}
.traction__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.traction__cards--2x2 {
  grid-template-columns: repeat(2, 1fr);
  /* Equal-height rows; cards stretch via default align-items: stretch */
  grid-auto-rows: 1fr;
}
.traction__cards--2x2 .traction__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Content top-aligned within each card */
.traction__cards--2x2 .traction__card > * { flex: 0 0 auto; }
.traction__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.9rem, 0.82rem + 0.5vw, 1.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cool-slate);
  text-align: center;
  max-width: 38rem;
  margin: 2.5rem auto 0;
}
.traction__card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px -20px rgba(28,46,74,0.15);
}
.traction__media {
  margin-bottom: 1.25rem;
}
.placeholder--small { aspect-ratio: 16 / 6; border-radius: 8px; }
.big-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.65rem;
}
.big-num.berry { color: var(--berry); }
.big-num.navy { color: var(--navy); }
.traction__sub { color: var(--text-soft); margin-bottom: 1rem; }
.traction__second {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--berry);
  background: rgba(170, 51, 106, 0.08);
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  margin: 0 0 1.25rem;
}
.traction__second strong { color: var(--berry); font-weight: 700; }
.traction__card ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--grid);
  font-size: 0.92rem;
}
.traction__card ul li:last-child { border-bottom: 0; }
.why li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.why strong { font-family: var(--font-display); color: var(--navy); }
.why span { color: var(--text-soft); font-size: 0.85rem; }

/* ===========================================================
   9. TEAM
   =========================================================== */

.team {
  background: var(--warm-clay-2);
  padding-block: var(--section-pad-y);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.team__member {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px -20px rgba(28,46,74,0.15);
}
.team__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.team__photo {
  flex: 0 0 64px;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  aspect-ratio: 1 / 1;
  align-self: center;
}
.team__photo img {
  width: 100%;
  height: 100%;
  display: block;
}
.placeholder--portrait {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.65rem;
}
.placeholder__init {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--berry);
  line-height: 1;
}
.team__heading { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.team__member h3 { font-size: 1.05rem; margin: 0; line-height: 1.2; }
.team__role { color: var(--berry); font-family: var(--font-display); font-weight: 700; margin: 0; font-size: 0.85rem; }
.team__member ul li {
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--grid);
  color: var(--text);
}
.team__member ul li:last-child { border-bottom: 0; }

.team__advisors { margin-top: 3rem; }
.team__advisors-title { font-size: 1.1rem; margin-bottom: 1rem; }
.team__advisors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.advisor {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 12px 30px -16px rgba(28,46,74,0.12);
}
.advisor strong {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.2rem;
}
.advisor span { color: var(--text-soft); font-size: 0.88rem; }

/* ===========================================================
   10. ASK
   =========================================================== */

.ask {
  background: linear-gradient(180deg, var(--warm-clay-2) 0%, var(--warm-clay) 100%);
  padding-block: var(--section-pad-y);
}
.ask__hero {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.ask__amount {
  font-family: var(--font-display);
  font-size: clamp(5rem, 4rem + 6vw, 9rem);
  color: var(--berry);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.ask__currency { font-size: 0.6em; vertical-align: top; margin-right: 0.05em; }
.ask__unit { font-size: 0.6em; }
.ask__sub {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.ask__sub-2 {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.75rem;
  background: var(--berry);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 14px 30px -10px rgba(170, 51, 106, 0.5);
}
.btn:hover { background: var(--berry-dark); transform: translateY(-2px); }
.btn svg { width: 1.1rem; height: 1.1rem; }

/* ===========================================================
   11. CLOSING
   =========================================================== */

.closing {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(5rem, 9vw, 9rem);
  text-align: center;
}
.closing__line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.75rem);
  color: #fff;
  line-height: 1.35;
  max-width: 24ch;
  margin: 0 auto 1.5rem;
  font-weight: 700;
}
.closing__line .reveal-line { display: block; }
.closing__meta { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin: 0; }

.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.5);
  padding: 1.25rem 0;
  font-size: 0.82rem;
  text-align: center;
}
.footer p { margin: 0; }

/* ===========================================================
   Progress bar
   =========================================================== */

.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  pointer-events: none;
  z-index: 100;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--navy), var(--berry));
  transition: width 80ms linear;
}

/* ===========================================================
   Section reveal helpers
   =========================================================== */

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.section-reveal.is-in { opacity: 1; transform: none; }

/* ===========================================================
   Responsive
   =========================================================== */

@media (max-width: 960px) {
  .arthur__grid { grid-template-columns: 1fr; }
  .cure__meds { grid-template-columns: repeat(2, 1fr); }
  .cure__moment { grid-template-columns: 1fr; gap: 1.25rem; }
  .path-timeline__stops { grid-template-columns: repeat(2, 1fr); }
  .path-timeline__line { display: none; }
  .beat, .beat:nth-child(even) { grid-template-columns: 1fr; }
  .beat:nth-child(even) .beat__media { order: 0; }
  .pocket__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__strip { grid-template-columns: 1fr; gap: 2.5rem; }
  .traction__cards { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .team__advisors-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar { padding: 0.65rem var(--container-pad); }
  .brand__logo { height: 60px; }
  .topbar__pill { font-size: 0.65rem; padding: 0.35rem 0.6rem; }
  .hero__content { padding-block: 7rem 5rem; }
  .hero__title { font-size: clamp(2.1rem, 1.5rem + 5vw, 3rem); }
  .path-timeline__stops { grid-template-columns: 1fr; gap: 1rem; }
  .pocket__grid { grid-template-columns: 1fr; }
  .pmpm__row { grid-template-columns: 1fr; gap: 0.5rem; }
  .arthur__quote { padding-left: 1rem; }
  .cure__meds { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
}

/* ===========================================================
   Reduced motion
   =========================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-word, .reveal-line, .stop, .section-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__ekg-path { stroke-dashoffset: 0; }
}

/* ===========================================================
   Print
   =========================================================== */

@media print {
  .topbar, .progress, .footer, .hero__cue, .btn { display: none; }
  .hero { min-height: auto; }
  .hero__scrim, .hero__ekg { display: none; }
  body { background: #fff; }
  .reveal-word, .reveal-line, .stop, .section-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
