/* ============================================
   VINCERA HEALTH — DESIGN SYSTEM
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600&display=swap');

/* Tokens */
:root {
  --color-bg: #FAFAF7;
  --color-bg-white: #FFFFFF;
  --color-ink: #0A1628;
  --color-ink-mid: #1E3A5F;
  --color-ink-soft: #3D4E5C;
  --color-ink-muted: #5A6B7B;
  --color-accent: #6B8FB5;
  --color-accent-light: #A8C5DC;
  --color-border: #E5E7EB;
  --color-border-strong: #0A1628;

  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;

  --max-width: 1200px;
  --max-width-narrow: 900px;
  --side-padding: 48px;

  --transition: 0.15s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Typography utilities */
.serif { font-family: var(--font-serif); font-weight: 400; }
.sans { font-family: var(--font-sans); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}
.eyebrow-accent { color: var(--color-accent); }

/* Headings — the signature mixed serif/sans treatment */
.headline {
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--color-ink);
  text-wrap: balance;
}
.headline .sans-line { font-family: var(--font-sans); font-weight: 500; }
.headline .serif-line { font-family: var(--font-serif); font-style: italic; }

p, .program-card-desc, .pricing-card-desc, .faq-answer-inner, .footer-tagline {
  text-wrap: pretty;
}

.headline-xl { font-size: 76px; }
.headline-xl .serif-line { font-size: 84px; }
.headline-lg { font-size: 56px; }
.headline-lg .serif-line { font-size: 62px; }
.headline-md { font-size: 44px; line-height: 1.0; letter-spacing: -0.025em; }
.headline-md .serif-line { font-size: 48px; }
.headline-sm { font-size: 32px; line-height: 1.05; letter-spacing: -0.02em; }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}
.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}
.section { padding: 100px 0; }
.section-lg { padding: 120px 0; }
.section-dark {
  background: var(--color-ink);
  color: var(--color-bg);
}
.section-dark .headline { color: var(--color-bg); }
.section-dark .eyebrow { color: var(--color-accent); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-ink);
  color: var(--color-bg);
  border: 1px solid var(--color-ink);
}
.btn-primary:hover { background: var(--color-ink-mid); border-color: var(--color-ink-mid); }
.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}
.btn-outline:hover { background: var(--color-ink); color: var(--color-bg); }
.btn-light {
  background: var(--color-bg);
  color: var(--color-ink);
  border: 1px solid var(--color-bg);
}
.btn-light:hover { background: transparent; color: var(--color-bg); border-color: var(--color-bg); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--side-padding);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--color-ink);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--color-ink-mid); }
.nav-link.active { color: var(--color-ink-mid); }
.nav-toggle { display: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-white);
  padding: 56px var(--side-padding);
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--color-ink-muted);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col-list {
  font-size: 13px;
  line-height: 2;
  color: var(--color-ink);
  list-style: none;
}
.footer-col-list a:hover { color: var(--color-ink-mid); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 11px;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

/* ============================================
   VALUES BAR (replaces trust bar)
   ============================================ */
.values-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px var(--side-padding);
  background: var(--color-bg-white);
}
.values-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.value-pillar {
  text-align: center;
}
.value-pillar-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.value-pillar-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-ink-muted);
  font-weight: 400;
}
.value-pillar-divider {
  width: 1px;
  height: 32px;
  background: var(--color-border);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.count-up {
  display: inline-block;
}

/* Soft hover lift on cards */
.program-card { transition: border-color var(--transition), transform 0.3s ease; }
.program-card:hover {
  border-color: var(--color-ink);
  transform: translateY(-2px);
}
.pricing-card { transition: border-color var(--transition), transform 0.3s ease; }
.pricing-card:hover { transform: translateY(-2px); }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .program-card:hover, .pricing-card:hover { transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   EDUCATIONAL DIAGRAMS
   ============================================ */
.diagram-section {
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 80px var(--side-padding);
}
.diagram-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.diagram-svg {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: block;
}

/* GLP-1 diagram animations */
@keyframes glp1-pulse-hormone {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}
@keyframes glp1-signal-flow {
  0%, 90%, 100% { opacity: 0; }
  10%, 60% { opacity: 1; }
}
@keyframes glp1-receptor-glow-brain {
  0%, 30%, 100% { fill: #0A1628; r: 10; }
  45%, 75% { fill: #6B8FB5; r: 13; }
}
@keyframes glp1-receptor-glow-stomach {
  0%, 30%, 100% { fill: #A8645A; r: 10; }
  45%, 75% { fill: #6B8FB5; r: 13; }
}
@keyframes glp1-outcome-pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
@keyframes glp1-converge-flow {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.3; }
  50% { stroke-dashoffset: -20; opacity: 0.7; }
}
.dx-glp1 .hormone { animation: glp1-pulse-hormone 3s ease-in-out infinite; transform-origin: 340px 150px; transform-box: fill-box; }
.dx-glp1 .signal-line-brain { stroke-dasharray: 4 6; animation: glp1-signal-flow 4s ease-in-out infinite; }
.dx-glp1 .signal-line-stomach { stroke-dasharray: 4 6; animation: glp1-signal-flow 4s ease-in-out infinite 0.2s; }
.dx-glp1 .receptor-brain { animation: glp1-receptor-glow-brain 4s ease-in-out infinite 1s; }
.dx-glp1 .receptor-stomach { animation: glp1-receptor-glow-stomach 4s ease-in-out infinite 1.2s; }
.dx-glp1 .converge-1 { animation: glp1-converge-flow 4s ease-in-out infinite 2s; }
.dx-glp1 .converge-2 { animation: glp1-converge-flow 4s ease-in-out infinite 2.1s; }
.dx-glp1 .outcome-card { animation: glp1-outcome-pulse 4s ease-in-out infinite 2.5s; }

/* Hormone diagram animations */
@keyframes horm-line-draw {
  0% { stroke-dashoffset: 600; opacity: 0; }
  10% { opacity: 1; }
  47%, 100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes horm-dot-1 {
  0%, 27% { opacity: 0; transform: scale(0.5); }
  33%, 100% { opacity: 1; transform: scale(1); }
}
@keyframes horm-dot-2 {
  0%, 47% { opacity: 0; transform: scale(0.5); }
  53%, 100% { opacity: 1; transform: scale(1); }
}
@keyframes horm-dot-3 {
  0%, 67% { opacity: 0; transform: scale(0.5); }
  73%, 100% { opacity: 1; transform: scale(1); }
}
@keyframes horm-zone-fade {
  0%, 13% { opacity: 0; }
  20%, 100% { opacity: 0.18; }
}
@keyframes horm-readout-fade {
  0%, 73% { opacity: 0; transform: translateY(8px); }
  80%, 95% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes horm-loop {
  0%, 95%, 100% { opacity: 1; }
  98% { opacity: 0; }
}
.dx-hormone { animation: horm-loop 15s ease-in-out infinite; }
.dx-hormone .opt-zone { animation: horm-zone-fade 15s ease-out infinite; }
.dx-hormone .level-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: horm-line-draw 15s ease-in-out infinite; }
.dx-hormone .point-1 { animation: horm-dot-1 15s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.dx-hormone .point-2 { animation: horm-dot-2 15s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.dx-hormone .point-3 { animation: horm-dot-3 15s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.dx-hormone .readout { animation: horm-readout-fade 15s ease-out infinite; }

/* Wellness biomarker panel */
@keyframes bm-col-fade {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes bm-counter-pulse {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 1; }
}
@keyframes bm-marker-scan {
  0%, 100% { color: var(--color-ink); background: transparent; }
  50% { color: var(--color-ink-mid); background: rgba(107, 143, 181, 0.06); }
}
.bm-wrap { font-family: var(--font-sans); max-width: 800px; margin: 0 auto; color: var(--color-ink); }
.bm-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-ink-muted); margin-bottom: 16px; }
.bm-title { font-family: var(--font-serif); font-style: italic; font-size: 32px; color: var(--color-ink); margin-bottom: 12px; line-height: 1.1; font-weight: 400; }
.bm-sub { font-size: 15px; color: var(--color-ink-soft); line-height: 1.6; max-width: 520px; margin-bottom: 36px; }
.bm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bm-col { opacity: 0; animation: bm-col-fade 0.7s ease-out forwards; }
.bm-col:nth-child(1) { animation-delay: 0.1s; }
.bm-col:nth-child(2) { animation-delay: 0.3s; }
.bm-col:nth-child(3) { animation-delay: 0.5s; }
.bm-col:nth-child(4) { animation-delay: 0.7s; }
.bm-cat { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-ink-mid); padding-bottom: 10px; border-bottom: 1px solid var(--color-ink); margin-bottom: 12px; }
.bm-marker { font-size: 13px; color: var(--color-ink); padding: 7px 10px; border-bottom: 0.5px solid var(--color-border); font-weight: 400; transition: color 0.3s, background 0.3s; margin: 0 -10px; }
.bm-marker:last-child { border-bottom: none; }
/* Each marker animates with a stagger so a "scan wave" sweeps through the column */
.bm-col .bm-marker { animation: bm-marker-scan 12s ease-in-out infinite; }
.bm-col .bm-marker:nth-child(2)  { animation-delay: 1.5s; }
.bm-col .bm-marker:nth-child(3)  { animation-delay: 2.5s; }
.bm-col .bm-marker:nth-child(4)  { animation-delay: 3.5s; }
.bm-col .bm-marker:nth-child(5)  { animation-delay: 4.5s; }
.bm-col .bm-marker:nth-child(6)  { animation-delay: 5.5s; }
.bm-col .bm-marker:nth-child(7)  { animation-delay: 6.5s; }
.bm-col .bm-marker:nth-child(8)  { animation-delay: 7.5s; }
.bm-col .bm-marker:nth-child(9)  { animation-delay: 8.5s; }
.bm-col .bm-marker:nth-child(10) { animation-delay: 9.5s; }
.bm-col .bm-marker:nth-child(11) { animation-delay: 10.5s; }
/* Stagger across columns too — scan moves left to right */
.bm-col:nth-child(2) .bm-marker { animation-duration: 12s; animation-delay: 0.4s; }
.bm-col:nth-child(2) .bm-marker:nth-child(2)  { animation-delay: 1.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(3)  { animation-delay: 2.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(4)  { animation-delay: 3.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(5)  { animation-delay: 4.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(6)  { animation-delay: 5.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(7)  { animation-delay: 6.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(8)  { animation-delay: 7.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(9)  { animation-delay: 8.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(10) { animation-delay: 9.9s; }
.bm-col:nth-child(2) .bm-marker:nth-child(11) { animation-delay: 10.9s; }
.bm-col:nth-child(3) .bm-marker { animation-delay: 0.8s; }
.bm-col:nth-child(3) .bm-marker:nth-child(2)  { animation-delay: 2.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(3)  { animation-delay: 3.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(4)  { animation-delay: 4.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(5)  { animation-delay: 5.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(6)  { animation-delay: 6.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(7)  { animation-delay: 7.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(8)  { animation-delay: 8.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(9)  { animation-delay: 9.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(10) { animation-delay: 10.3s; }
.bm-col:nth-child(3) .bm-marker:nth-child(11) { animation-delay: 11.3s; }
.bm-col:nth-child(4) .bm-marker { animation-delay: 1.2s; }
.bm-col:nth-child(4) .bm-marker:nth-child(2)  { animation-delay: 2.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(3)  { animation-delay: 3.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(4)  { animation-delay: 4.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(5)  { animation-delay: 5.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(6)  { animation-delay: 6.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(7)  { animation-delay: 7.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(8)  { animation-delay: 8.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(9)  { animation-delay: 9.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(10) { animation-delay: 10.7s; }
.bm-col:nth-child(4) .bm-marker:nth-child(11) { animation-delay: 11.7s; }
.bm-counter-row { margin-top: 36px; padding: 24px 28px; background: var(--color-ink); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: space-between; gap: 24px; animation: bm-counter-pulse 4s ease-in-out infinite 1.5s; }
.bm-counter-num { font-family: var(--font-serif); font-style: italic; font-size: 42px; color: var(--color-bg); line-height: 1; }
.bm-counter-text { font-size: 13px; color: var(--color-accent-light); letter-spacing: 0.03em; text-align: right; line-height: 1.5; }
.bm-counter-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px; }

@media (prefers-reduced-motion: reduce) {
  .dx-glp1 *, .dx-hormone, .dx-hormone *, .bm-col, .bm-marker, .bm-counter-row {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media (max-width: 640px) {
  .bm-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .bm-counter-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .bm-counter-text { text-align: left; }
  .diagram-section { padding: 56px var(--side-padding); }
}

/* ============================================
   PROGRAM CARDS
   ============================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.program-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover { border-color: var(--color-ink); }
.program-card-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  margin: 16px 0 12px;
  color: var(--color-ink);
}
.program-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin-bottom: 32px;
  flex: 1;
}
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 24px 0;
}
.program-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-price-label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--color-ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.program-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-ink);
}
.program-price-suffix {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-ink-muted);
  font-weight: 400;
}
.program-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink-mid);
  transition: color var(--transition);
}
.program-link:hover { color: var(--color-accent); }

/* ============================================
   HERO + DASHBOARD CARD
   ============================================ */
.hero {
  padding: 100px var(--side-padding) 120px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-prose { max-width: 540px; }
.hero p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-ink-soft);
  margin: 32px 0 40px;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  font-size: 12px;
  color: var(--color-ink-muted);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

.dashboard-card {
  background: var(--color-ink);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/5;
  padding: 36px;
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
.dashboard-section {
  padding: 24px 0;
  border-bottom: 1px solid rgba(250,250,247,0.15);
}
.dashboard-section:last-child { border-bottom: none; }
.dashboard-section:first-of-type { padding-top: 32px; }
.dashboard-label {
  font-size: 13px;
  color: rgba(168,197,220,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.dashboard-sublabel {
  font-size: 16px;
  color: rgba(250,250,247,0.95);
  margin-top: 10px;
  font-weight: 400;
}
.dashboard-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.dashboard-value-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--color-bg);
  line-height: 1;
}
.dashboard-value-unit {
  font-size: 14px;
  color: rgba(250,250,247,0.7);
}
.dashboard-value-trend {
  font-size: 13px;
  color: var(--color-accent-light);
  margin-left: 8px;
  font-weight: 500;
}
.dashboard-card .eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px var(--side-padding);
  background: var(--color-bg-white);
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trust-logos {
  display: flex;
  gap: 56px;
  opacity: 0.45;
  align-items: center;
}
.trust-logo {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--color-ink);
}

/* ============================================
   TWO-COLUMN HEADER (label + paragraph)
   ============================================ */
.two-col-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.two-col-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}
.section-dark .two-col-head p { color: rgba(250,250,247,0.7); }

/* ============================================
   PROCESS / STEPS (4-column)
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(250,250,247,0.15);
}
.step {
  background: var(--color-ink);
  padding: 32px 24px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--color-accent);
  line-height: 1;
  font-style: italic;
}
.step-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  margin: 24px 0 10px;
  color: var(--color-bg);
}
.step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,250,247,0.6);
}
.step-day {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--color-accent-light);
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section {
  padding: 120px var(--side-padding);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  text-align: center;
}
.cta-section h2 { margin-bottom: 28px; }
.cta-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin: 0 auto 36px;
  max-width: 480px;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  padding: 80px var(--side-padding) 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border);
}
.page-header-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
}
.page-header h1 {
  font-size: 64px;
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}
.page-header h1 .sans-line { font-family: var(--font-sans); font-weight: 500; }
.page-header h1 .serif-line { font-family: var(--font-serif); font-style: italic; font-size: 70px; }
.page-header p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-ink-soft);
}

/* ============================================
   PROSE CONTENT (about, legal, faq answers)
   ============================================ */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  margin-bottom: 1.5em;
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  margin: 2em 0 0.6em;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}
.prose h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  margin: 1.6em 0 0.6em;
  color: var(--color-ink);
}
.prose ul, .prose ol {
  margin: 0 0 1.5em 1.5em;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-ink-soft);
}
.prose strong { font-weight: 500; color: var(--color-ink); }
.prose a { color: var(--color-ink-mid); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--color-ink);
  border-width: 2px;
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--color-ink);
  color: var(--color-bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.pricing-card-desc {
  font-size: 13px;
  color: var(--color-ink-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.pricing-amount-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-style: italic;
  color: var(--color-ink);
  line-height: 1;
}
.pricing-amount-suffix {
  font-size: 14px;
  color: var(--color-ink-muted);
}
.pricing-amount-note {
  font-size: 12px;
  color: var(--color-ink-muted);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--color-ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
}
.pricing-features li::before {
  content: '→';
  color: var(--color-ink-mid);
  flex-shrink: 0;
}
.pricing-features li:last-child { border-bottom: none; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-ink-mid); }
.faq-toggle {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--color-ink-mid);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  max-width: 720px;
}

/* ============================================
   CONTACT / GET STARTED
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.contact-path {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
.contact-path h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  margin: 16px 0 12px;
}
.contact-path p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin-bottom: 32px;
  flex: 1;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-ink);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 6px;
  display: block;
}
.form-note {
  font-size: 12px;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

/* ============================================
   ANIMATIONS — subtle, used sparingly
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.8s ease-out both;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE — mobile + tablet
   ============================================ */
@media (max-width: 980px) {
  :root { --side-padding: 32px; }
  .headline-xl { font-size: 56px; }
  .headline-xl .serif-line { font-size: 60px; }
  .headline-lg { font-size: 44px; }
  .headline-lg .serif-line { font-size: 48px; }
  .page-header h1 { font-size: 48px; }
  .page-header h1 .serif-line { font-size: 52px; }

  .hero-grid, .two-col-head, .page-header-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .program-grid, .pricing-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .values-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .value-pillar-divider { display: none; }
}

@media (max-width: 640px) {
  :root { --side-padding: 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 24px var(--side-padding);
    border-bottom: 1px solid var(--color-border);
    gap: 20px;
    align-items: flex-start;
  }
  .nav-toggle {
    display: block;
    font-size: 22px;
    color: var(--color-ink);
  }
  .headline-xl { font-size: 44px; }
  .headline-xl .serif-line { font-size: 48px; }
  .headline-lg { font-size: 36px; }
  .headline-lg .serif-line { font-size: 40px; }
  .page-header h1 { font-size: 38px; }
  .page-header h1 .serif-line { font-size: 42px; }
  .section, .section-lg { padding: 64px 0; }
  .hero { padding: 56px var(--side-padding) 64px; }
  .cta-section { padding: 64px var(--side-padding); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .trust-logos { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-trust span:nth-child(even):nth-child(-n+5) { display: none; }
  .values-bar-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
