/* ==========================================================================
   Sentidental — Editorial design system
   Reference for restraint & composition: Mercury.com (not a template)
   See docs/PRODUCT.md
   ========================================================================== */

:root {
  /* Surfaces — warm ivory / stone */
  --bg: #f5f1e9;
  --bg-deep: #efe9dd;
  --paper: #fbf9f4;
  --surface: #ffffff;

  /* Ink */
  --ink: #1b1815;
  --ink-soft: #4a453d;
  --ink-muted: #726c60;
  --ink-faint: #9a9184;

  /* Brand — deep oxblood / wine */
  --wine: #5e1f2b;
  --wine-deep: #4a1622;
  --wine-soft: #f0e3e1;
  --wine-line: #d9c4c1;

  /* Luminous accent — starlight champagne */
  --star: #c7a24e;
  --star-soft: #efe6cf;
  --star-glow: rgba(199, 162, 78, 0.22);

  /* Lines & shadows — thin, low contrast */
  --line: #e4ddce;
  --line-strong: #d6cdb9;
  --shadow-sm: 0 1px 2px rgba(27, 24, 21, 0.04);
  --shadow: 0 6px 24px rgba(27, 24, 21, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(27, 24, 21, 0.18);

  /* States (with icon/label support, never color-only) */
  --pos: #3f6b4f;
  --pos-bg: #eaf1eb;
  --warn: #9a6a28;
  --warn-bg: #f6ecd9;
  --risk: #8f3529;
  --risk-bg: #f6e6e1;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;
  --wrap: 1160px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Vertical rhythm — marketing copy & sections */
  --space-prose: 1.1rem;   /* consecutive paragraphs */
  --space-kicker: 1rem;    /* kicker → heading */
  --space-lede: 1rem;      /* heading → supporting copy */
  --space-stack: 1.5rem;   /* copy → list / CTA */
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body.sentidental {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "cv05", "ss01";
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 480;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 460;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.08rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0; }
a { color: var(--wine); text-decoration: none; }
a.text-link { text-decoration: underline; text-underline-offset: 3px; }
a.text-link:hover { color: var(--ink); }

/* Vertical rhythm: paragraphs never sit flush against each other */
p + p { margin-top: var(--space-prose); }

/* Section heads outside gap-based grids */
.kicker + :is(h1, h2, h3, .display, .statement__text) {
  margin-top: var(--space-kicker);
}
:is(h1, h2, h3, .display, .story__title, .statement__text) + :is(p, .lede) {
  margin-top: var(--space-lede);
}
:is(p, .lede, .muted) + :is(.btn-row, .story__list, ul, ol) {
  margin-top: var(--space-stack);
}
:is(h2, h3) + :is(.btn-row, .story__list, ul, ol, .flow, .founding-membership, .consult-benefits, .founding-roadmap, .faq) {
  margin-top: var(--space-stack);
}

.kicker {
  font-family: var(--sans);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--wine);
  opacity: 0.5;
}
.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 40ch;
}
.muted { color: var(--ink-muted); }

.prose { max-width: 44rem; }
.prose p {
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.prose .btn-row { margin-top: 2rem; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--flush { padding-top: 0; }
.section--paper { background: var(--paper); border-block: 1px solid var(--line); }
.section--deep { background: var(--bg-deep); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; top: -120px; left: 1rem; z-index: 300;
  background: var(--ink); color: var(--paper); padding: 0.6rem 1rem;
  border-radius: var(--r-sm); font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  padding: 0.7rem 1.25rem; border-radius: var(--r-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }
.btn--primary { background: var(--wine); color: #fbf3ef; }
.btn--primary:hover { background: var(--wine-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--link { padding: 0; color: var(--wine); font-weight: 500; background: none; }
.btn--link::after { content: "→"; transition: transform 0.18s ease; }
.btn--link:hover::after { transform: translateX(3px); }
.btn--onwine { background: var(--star); color: #241109; }
.btn--onwine:hover { background: #d8b464; }
.btn--onwine-ghost { background: transparent; border-color: rgba(251,243,239,0.35); color: #fbf3ef; }
.btn--onwine-ghost:hover { border-color: #fbf3ef; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0.9rem var(--gutter);
  display: flex; align-items: center; gap: 2rem;
}
.wordmark {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink); display: inline-flex; align-items: baseline; gap: 0.12em;
}
.wordmark__dot { color: var(--wine); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; margin-left: 1rem; }
.nav__links a { font-size: 0.925rem; color: var(--ink-soft); font-weight: 450; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 1.1rem; margin-left: auto; }
.nav__signin { font-size: 0.925rem; color: var(--ink-soft); font-weight: 450; }
.nav__signin:hover { color: var(--ink); }
.nav__toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  padding: 0.4rem; color: var(--ink);
}
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; margin: 5px 0; }

@media (max-width: 900px) {
  .nav__inner { flex-wrap: wrap; }
  .nav__toggle { display: block; }
  .nav__links, .nav__actions {
    flex-basis: 100%; flex-direction: column; align-items: flex-start;
    gap: 0.25rem; margin: 0; display: none;
  }
  .nav__actions { align-items: stretch; }
  .nav.is-open .nav__links, .nav.is-open .nav__actions { display: flex; padding-top: 0.75rem; }
  .nav__links a, .nav__signin { padding: 0.5rem 0; }
  .nav__actions .btn { justify-content: center; }
}

/* ---------- Flash ---------- */
.flash { max-width: var(--wrap); margin: 1rem auto 0; padding: 0.75rem 1.1rem; border-radius: var(--r-sm); font-size: 0.95rem; }
.flash--success { background: var(--pos-bg); color: var(--pos); }
.flash--error { background: var(--risk-bg); color: var(--risk); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__copy { max-width: 32rem; }
.hero__title { margin: 1.4rem 0 1.3rem; }
.hero__copy .kicker + .display { margin-top: 1.4rem; }
.hero__title em { font-style: italic; color: var(--wine); }
.hero__cta { margin-top: 2rem; }
.hero__note { margin-top: 1.6rem; font-size: 0.9rem; color: var(--ink-muted); display: flex; gap: 1.4rem; flex-wrap: wrap; }
.hero__note span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__note span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--star); }
.hero__stage { position: relative; }
.hero__field {
  position: absolute; inset: -18% -12% -18% -8%; z-index: 0;
  pointer-events: none;
}
.hero__stage .product { position: relative; z-index: 1; }

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__copy { max-width: none; }
  .hero__field { inset: -10% -20%; }
}

/* ---------- Product UI mock (light, editorial, realistic) ---------- */
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.product__chrome {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); background: var(--paper);
}
.product__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.product__tab {
  margin-left: auto; font-size: 0.78rem; color: var(--ink-muted); font-weight: 500;
  letter-spacing: 0.02em;
}
.product__body { padding: 1.25rem 1.35rem 1.45rem; }
.product__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.1rem; }
.product__head h4 { font-size: 1.05rem; }
.product__head .muted { font-size: 0.82rem; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-bottom: 1.3rem; }
.metric { border: 1px solid var(--line); border-radius: var(--r); padding: 0.85rem 0.9rem; background: var(--paper); }
.metric__val { font-family: var(--serif); font-size: 1.75rem; line-height: 1; color: var(--ink); }
.metric__label { font-size: 0.72rem; color: var(--ink-muted); margin-top: 0.4rem; letter-spacing: 0.02em; }
.metric__delta { font-size: 0.72rem; font-weight: 600; margin-left: 0.35rem; }
.metric__delta--up { color: var(--pos); }

.spark { display: block; width: 100%; height: 46px; margin: 0.2rem 0 1.2rem; }

.plist { display: flex; flex-direction: column; gap: 0.55rem; }
.pitem {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.75rem; align-items: center;
  padding: 0.7rem 0.8rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
}
.pitem__avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--wine-soft); color: var(--wine);
  display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600;
}
.pitem__name { font-size: 0.9rem; font-weight: 550; color: var(--ink); }
.pitem__meta { font-size: 0.78rem; color: var(--ink-muted); }
.pill {
  font-size: 0.72rem; font-weight: 600; padding: 0.18rem 0.55rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.3rem; white-space: nowrap;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill--pos { color: var(--pos); background: var(--pos-bg); }
.pill--warn { color: var(--warn); background: var(--warn-bg); }
.pill--risk { color: var(--risk); background: var(--risk-bg); }

.summary-card {
  border: 1px solid var(--line); border-left: 2px solid var(--star);
  border-radius: var(--r); padding: 0.95rem 1.05rem; background: var(--paper);
  margin-top: 1.1rem;
}
.summary-card__label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.5rem; }
.summary-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; margin-top: 0; }

.theme-bar { display: grid; grid-template-columns: 8.5rem 1fr auto; gap: 0.75rem; align-items: center; padding: 0.4rem 0; }
.theme-bar__label { font-size: 0.85rem; color: var(--ink-soft); }
.theme-bar__track { height: 7px; border-radius: 999px; background: var(--bg-deep); overflow: hidden; }
.theme-bar__fill { height: 100%; border-radius: 999px; background: var(--wine); opacity: 0.85; }
.theme-bar__fill--star { background: var(--star); }
.theme-bar__n { font-size: 0.8rem; color: var(--ink-muted); font-variant-numeric: tabular-nums; }

/* ---------- Editorial trust statement ---------- */
.statement { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.statement__text {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.18; letter-spacing: -0.015em;
  max-width: 22ch; color: var(--ink);
}
.statement__text em { font-style: italic; color: var(--wine); }
.statement__grid .kicker + .statement__text { margin-top: 1.2rem; }
.statement__grid { display: grid; grid-template-columns: 1fr minmax(0, 30rem); gap: clamp(1.5rem,4vw,4rem); align-items: end; }
.statement__aside { font-size: 0.98rem; color: var(--ink-muted); line-height: 1.6; padding-bottom: 0.4rem; }
.statement__aside p + p { margin-top: var(--space-prose); }
@media (max-width: 820px) { .statement__grid { grid-template-columns: 1fr; } }

/* ---------- How it works: connected journey ---------- */
.journey__head { max-width: 46rem; margin-bottom: 3rem; }
.journey__head .kicker + :is(h1, h2, h3) { margin-top: var(--space-kicker); }
.journey__head :is(h1, h2, h3) + :is(p, .lede, .muted) {
  margin-top: 0.85rem;
  max-width: 48ch;
}
.journey__track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface);
}
.journey__node { position: relative; padding: 1.5rem 1.25rem; border-right: 1px solid var(--line); }
.journey__node:last-child { border-right: 0; }
.journey__stage { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.journey__word { font-family: var(--serif); font-size: 1.2rem; margin-top: 0.5rem; color: var(--ink); }
.journey__arrow { position: absolute; right: -8px; top: 50%; transform: translateY(-50%); z-index: 2; color: var(--star); font-size: 0.9rem; background: var(--surface); padding: 2px; }
.journey__stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3rem; }
.journey__cta { margin-top: 2.5rem; }
.stage__num { font-family: var(--serif); font-size: 0.95rem; color: var(--wine); border: 1px solid var(--wine-line); width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; }
.stage h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.stage p { font-size: 0.95rem; color: var(--ink-muted); }

@media (max-width: 820px) {
  .journey__track { grid-template-columns: 1fr; }
  .journey__node { border-right: 0; border-bottom: 1px solid var(--line); }
  .journey__node:last-child { border-bottom: 0; }
  .journey__arrow { right: 50%; top: auto; bottom: -8px; transform: translateX(50%) rotate(90deg); }
  .journey__stages { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .journey__stages { grid-template-columns: 1fr; } }

/* ---------- Product story (alternating editorial) ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story + .story { margin-top: clamp(3.5rem, 7vw, 6rem); }
.story--flip .story__media { order: -1; }
.story__copy { max-width: 30rem; }
.story__title { margin: 1rem 0 1.1rem; font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.story__copy p { color: var(--ink-soft); }
.story__copy p + p { margin-top: var(--space-prose); }
.story__list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-direction: column; gap: 0.7rem; }
.story__list li { display: flex; gap: 0.65rem; font-size: 0.95rem; color: var(--ink-soft); }
.story__list li::before { content: ""; margin-top: 0.55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--star); flex: none; }
.story__aside-link { margin-top: 1.4rem !important; }
.story__list + .story__aside-link { margin-top: 1.4rem; }
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; gap: 2rem; }
  .story--flip .story__media { order: 0; }
  .story__copy { max-width: none; }
}

/* ---------- Patient orbit visual ---------- */
.orbit-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.orbit-block__copy { max-width: 30rem; }
.orbit-block__copy .kicker + :is(h1, h2, h3) { margin-top: var(--space-kicker); }
.orbit-block__copy :is(h1, h2, h3) + :is(p, .lede, .muted) { margin-top: var(--space-lede); }
.orbit-block__copy :is(p, .lede, .muted) + .btn-row { margin-top: var(--space-stack); }
.orbit-legend { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.2rem; }
.orbit-legend li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.orbit-legend .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.orbit-figure { position: relative; }
.orbit-figure svg { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .orbit-block { grid-template-columns: 1fr; } .orbit-legend { grid-template-columns: 1fr 1fr; } }

/* orbit motion */
.orbit-rot { transform-origin: 300px 300px; }
@media (prefers-reduced-motion: no-preference) {
  .orbit-rot--a { animation: spin 90s linear infinite; }
  .orbit-rot--b { animation: spin 140s linear infinite reverse; }
  .orbit-pt { animation: twinkle 6s ease-in-out infinite; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes twinkle { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ---------- Outcomes (editorial metrics) ---------- */
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); }
.outcomes__head { max-width: 34rem; }
.outcomes__head .kicker + :is(h1, h2, h3) { margin-top: var(--space-kicker); }
.outcomes__head :is(h1, h2, h3) + :is(p, .lede, .muted) {
  margin-top: 0.85rem;
  max-width: 48ch;
}
.outcomes__list { border-top: 1px solid var(--line); }
.outcome { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.outcome__idx { font-family: var(--serif); font-size: 1rem; color: var(--star); }
.outcome h3 { font-family: var(--sans); font-size: 1.08rem; font-weight: 600; margin-bottom: 0.3rem; }
.outcome p { font-size: 0.95rem; color: var(--ink-muted); }
@media (max-width: 860px) { .outcomes { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ---------- Workflow ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.flow__step { background: var(--surface); padding: 1.5rem 1.25rem; }
.flow__n { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--star); font-weight: 600; }
.flow__step h4 { margin: 0.7rem 0 0.4rem; font-size: 0.98rem; }
.flow__step p { font-size: 0.88rem; color: var(--ink-muted); }
@media (max-width: 900px) { .flow { grid-template-columns: 1fr; } }
.flow--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .flow--4 { grid-template-columns: 1fr; } }

/* ---------- Consultant / partner page ---------- */
.phero--consult { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.consult-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.consult-hero__copy { max-width: 36rem; }
.consult-hero__copy .display { margin: 1.3rem 0 1.15rem; font-size: clamp(2.1rem, 4.2vw, 3.15rem); }
.consult-hero__copy .btn-row { margin-top: 1.6rem; }
.consult-hero__note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: 42ch;
}
@media (max-width: 940px) {
  .consult-hero { grid-template-columns: 1fr; }
}

.consult-status {
  display: inline-flex;
  align-items: center;
  margin: 0.65rem 0 0;
  padding: 0.28rem 0.65rem;
  border-radius: var(--r-sm);
  background: var(--wine-soft);
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.consult-status--chrome {
  margin: 0 0 0 auto;
  background: var(--star-soft);
  color: var(--ink-soft);
}
.product__chrome .consult-status--chrome { font-size: 0.68rem; }

.portfolio-list { display: flex; flex-direction: column; gap: 0.75rem; }
.portfolio-list--compact { gap: 0.55rem; }
.portfolio-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
}
.portfolio-row__main { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.portfolio-row__main strong { font-size: 0.95rem; font-weight: 600; }
.portfolio-row__meta { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.4; }
.portfolio-chip {
  flex: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
  background: var(--risk-bg);
  color: var(--risk);
}
.portfolio-chip--pos { background: var(--pos-bg); color: var(--pos); }
.portfolio-chip--warn { background: var(--warn-bg); color: var(--warn); }

.consult-chain {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}
.consult-chain li {
  position: relative;
  padding: 1.05rem 1.25rem 1.05rem 2.75rem;
  border-bottom: 1px solid var(--line);
}
.consult-chain li:last-child { border-bottom: 0; }
.consult-chain li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 3px var(--wine-soft);
}
.consult-chain li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 1.9rem;
  bottom: -0.05rem;
  width: 1px;
  background: var(--wine-line);
}
.consult-chain__label {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.consult-improve {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.consult-improve__item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.consult-improve__item:nth-child(odd) { padding-right: 1.5rem; }
.consult-improve__item:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.consult-improve__n { font-family: var(--serif); color: var(--star); font-size: 0.95rem; }
.consult-improve__item h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; margin: 0 0 0.25rem; }
.consult-improve__item p { margin: 0; font-size: 0.92rem; color: var(--ink-muted); }
@media (max-width: 760px) {
  .consult-improve { grid-template-columns: 1fr; }
  .consult-improve__item:nth-child(odd),
  .consult-improve__item:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
}

.consult-benefits { border-top: 1px solid var(--line); }
.consult-benefit {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.consult-benefit__n { font-family: var(--serif); color: var(--star); font-size: 1.05rem; padding-top: 0.2rem; }
.consult-benefit h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); margin: 0 0 0.7rem; max-width: 28ch; }
.consult-benefit p { color: var(--ink-soft); max-width: 58ch; margin: 0 0 0.75rem; }
.consult-benefit__head { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; align-items: baseline; margin-bottom: 0.15rem; }
.consult-benefit__head h3 { margin-bottom: 0.55rem; }
.consult-benefit__head .consult-status { margin-top: 0; }
.consult-benefit__tags {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
}
.consult-benefit__tags li {
  font-size: 0.82rem;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.consult-benefit__tags li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--star);
}
.consult-benefit__pull {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine) !important;
  margin-top: 0.35rem !important;
}

.consult-trust { max-width: 46rem; }
.consult-trust .lede { color: var(--ink-soft); max-width: 48ch; margin-top: var(--space-lede); }
.consult-trust__list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
}
.consult-trust__list li {
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding-left: 1rem;
  border-left: 2px solid var(--wine-line);
}
@media (max-width: 560px) { .consult-trust__list { grid-template-columns: 1fr; } }

.consult-early { max-width: 42rem; }
.consult-early .kicker + h2 { margin-top: var(--space-kicker); }
.consult-early h2 + :is(p, .muted) { margin-top: 0.9rem; max-width: 48ch; }
.consult-early .btn-row { margin-top: 1.75rem; }

/* ---------- Founding Fifty ---------- */
.founding-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
}
.founding-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.founding-hero__copy { max-width: 38rem; }
.founding-hero__copy .display {
  margin: 1.3rem 0 1.25rem;
  font-size: clamp(2.25rem, 4.5vw, 3.45rem);
}
.founding-hero__actions { margin-top: 1.8rem; }
.founding-hero__note {
  margin-top: 1.15rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.founding-hero__status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.founding-hero__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--star);
  box-shadow: 0 0 0 4px var(--star-soft);
}
@media (max-width: 940px) {
  .founding-hero__grid { grid-template-columns: 1fr; }
  .founding-hero__copy { max-width: none; }
}

.founding-product__signal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--wine);
  border-radius: var(--r);
  background: var(--paper);
}
.founding-product__signal > div {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.founding-product__signal strong { font-size: 0.95rem; }
.founding-product__signal p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-muted);
}
.founding-product__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.founding-product__split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
  margin: 0.75rem 0;
}
.founding-product__voice,
.founding-product__referral {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.founding-product__voice p {
  margin: 0.45rem 0 0;
  font-family: var(--serif);
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.founding-product__referral {
  display: flex;
  flex-direction: column;
}
.founding-product__referral strong {
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: 1.45rem;
}
.founding-product__referral > span:last-child {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
@media (max-width: 520px) {
  .founding-product__split { grid-template-columns: 1fr; }
  .founding-product__signal { flex-direction: column; }
}

.founding-why {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.founding-why__copy {
  max-width: 42rem;
  color: var(--ink-soft);
}
.founding-why__copy p + p { margin-top: 1.1rem; }
.founding-why__closing {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-strong);
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--wine);
}
@media (max-width: 760px) { .founding-why { grid-template-columns: 1fr; } }

.founding-membership { border-top: 1px solid var(--line); }
.founding-member {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.8rem, 4vw, 2.7rem) 0;
  border-bottom: 1px solid var(--line);
}
.founding-member__n {
  font-family: var(--serif);
  color: var(--star);
  font-size: 1.05rem;
}
.founding-member h3 {
  max-width: 31ch;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.founding-member p {
  max-width: 62ch;
  margin-top: 0.75rem;
  color: var(--ink-soft);
}
.founding-member strong {
  display: block;
  max-width: 58ch;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--wine);
}

.founding-promise {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.founding-promise__intro > :is(h2, .display) + p {
  margin-top: var(--space-lede);
  color: var(--ink-soft);
}
.founding-promise__intro p + p { margin-top: var(--space-prose); }
.founding-promise__intro .muted { font-size: 0.9rem; }
.founding-promise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.founding-promise__list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.founding-promise__list span {
  font-family: var(--serif);
  color: var(--star);
}
@media (max-width: 820px) { .founding-promise { grid-template-columns: 1fr; } }

.founding-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.founding-fit__section > p {
  margin-top: 1rem;
  color: var(--ink-soft);
}
.founding-fit__section--muted {
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--line-strong);
}
.founding-checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.founding-checklist li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.founding-checklist li::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--star);
}
.founding-checklist--neutral li::before {
  background: transparent;
  border: 1px solid var(--ink-faint);
}
@media (max-width: 820px) {
  .founding-fit { grid-template-columns: 1fr; }
  .founding-fit__section--muted { padding: 2.5rem 0 0; border-left: 0; border-top: 1px solid var(--line-strong); }
}

.founding-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-strong);
}
.founding-roadmap__group {
  padding: 1.75rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--line-strong);
}
.founding-roadmap__group:first-child { padding-left: 0; }
.founding-roadmap__group:last-child { padding-right: 0; border-right: 0; }
.founding-roadmap__status {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--pos);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--pos);
}
.founding-roadmap__status--active {
  border-color: var(--star);
  color: var(--warn);
}
.founding-roadmap__status--future {
  border-color: var(--wine-line);
  color: var(--ink-muted);
}
.founding-roadmap h3 { margin-top: 0.9rem; font-size: 1.2rem; }
.founding-roadmap ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.founding-roadmap li {
  padding: 0.48rem 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
@media (max-width: 780px) {
  .founding-roadmap { grid-template-columns: 1fr; }
  .founding-roadmap__group,
  .founding-roadmap__group:first-child,
  .founding-roadmap__group:last-child {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }
  .founding-roadmap__group:last-child { border-bottom: 0; }
}

.flow--6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1050px) { .flow--6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .flow--6 { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.closing { background: var(--wine); color: #f3e4e0; position: relative; overflow: hidden; }
.closing__inner { position: relative; z-index: 1; padding-block: clamp(4rem, 9vw, 7rem); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.closing h2 { color: #fdf6f2; max-width: 16ch; }
.closing p { color: #e2c9c4; margin: 1.2rem 0 2rem; max-width: 42ch; }
.closing__field { position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none; }
.closing__aside { justify-self: end; }
@media (max-width: 820px) { .closing__inner { grid-template-columns: 1fr; } .closing__aside { justify-self: start; } }

/* ---------- Page hero (inner pages) ---------- */
.phero { padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem,4vw,3rem); }
.phero__grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; max-width: 52rem; }
.phero .lede { max-width: 46ch; }
/* Grid gap owns the rhythm — neutralize additive sibling margins */
.phero__grid > .kicker + :is(h1, .display),
.phero__grid > :is(h1, .display) + :is(p, .lede),
.phero__grid > :is(p, .lede) + .btn-row {
  margin-top: 0;
}

/* Pricing / panel stacks */
.panel .kicker + h2 {
  margin-top: var(--space-kicker);
  margin-bottom: 0.6rem;
  font-size: 1.9rem;
}
.panel h2 + p { margin-top: 0; margin-bottom: 1.4rem; }
.panel .story__list { margin-top: 0; }
.panel .panel__cta { margin-top: 1.8rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink); padding: 1.3rem 2rem 1.3rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q::after { content: "+"; font-family: var(--sans); color: var(--wine); font-size: 1.3rem; flex: none; }
.faq__item.is-open .faq__q::after { content: "–"; }
.faq__a { display: none; padding: 0 0 1.4rem; color: var(--ink-muted); max-width: 60ch; }
.faq__item.is-open .faq__a { display: block; }

/* ---------- Cards (used sparingly) ---------- */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); }
.panel--paper { background: var(--paper); }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 720px) { .panel-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form { max-width: 34rem; }
.form--founding { max-width: 46rem; }
.form__split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__split { grid-template-columns: 1fr; gap: 0; } }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.88rem; font-weight: 550; margin-bottom: 0.4rem; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.72rem 0.85rem; font-family: var(--sans); font-size: 1rem;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-sm); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--wine); outline-offset: 1px; border-color: var(--wine); }
.field textarea { min-height: 130px; resize: vertical; }
.form-errors { background: var(--risk-bg); color: var(--risk); border-radius: var(--r-sm); padding: 0.85rem 1rem; margin-bottom: 1.25rem; font-size: 0.92rem; }
.form-errors ul { margin: 0; padding-left: 1.2rem; }

.referral-banner {
  max-width: 38rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--muted);
}
.referral-banner strong { color: var(--ink); }

/* ---------- Demo wizard ---------- */
.wizard { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; box-shadow: var(--shadow); }
.wizard__tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); background: var(--paper); }
.wizard__tab { flex: 1; min-width: 8rem; padding: 0.95rem 0.75rem; border: 0; background: none; cursor: pointer; font-family: var(--sans); font-size: 0.82rem; font-weight: 500; color: var(--ink-muted); border-bottom: 2px solid transparent; }
.wizard__tab.is-active { color: var(--wine); background: var(--surface); border-bottom-color: var(--wine); }
.wizard__panel { display: none; padding: clamp(1.5rem, 4vw, 2.5rem); }
.wizard__panel.is-active { display: block; }
.wizard__split { display: grid; grid-template-columns: minmax(0,320px) 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 780px) { .wizard__split { grid-template-columns: 1fr; } }

.phone { max-width: 320px; border: 1px solid var(--line-strong); border-radius: 20px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
.phone__bar { background: var(--wine); color: #fbf3ef; padding: 0.85rem 1rem; font-size: 0.9rem; font-weight: 500; }
.phone__body { padding: 1.15rem; }
.phone__body label { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.3rem; }
.phone__body input, .phone__body textarea { width: 100%; padding: 0.55rem; border: 1px solid var(--line-strong); border-radius: var(--r-sm); margin-bottom: 0.8rem; font-family: var(--sans); }
.pfeel { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 0.25rem 0 0.4rem; }
.pfeel::before { content: ""; position: absolute; left: 12%; right: 12%; top: 13px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--line-strong), #d9c4c1, var(--star)); }
.pfeel__opt { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 0.2rem 0; border: 0; background: none; cursor: pointer; font-family: var(--sans); }
.pfeel__dot { width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line-strong); transition: all 0.2s ease; }
.pfeel__word { font-size: 0.72rem; color: var(--ink-muted); font-weight: 500; transition: color 0.2s; }
.pfeel__opt:hover .pfeel__dot { border-color: var(--wine); }
.pfeel__opt.is-selected .pfeel__dot { background: var(--wine); border-color: var(--wine); box-shadow: 0 0 0 4px var(--wine-soft); transform: scale(1.08); }
.pfeel__opt.is-selected .pfeel__word { color: var(--wine); font-weight: 600; }
.pfeel__opt:focus-visible .pfeel__dot { outline: 2px solid var(--wine); outline-offset: 2px; }
.pfeel__caption { min-height: 1.3rem; margin: 0 0 0.8rem; text-align: center; font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--wine); }
.wave { height: 44px; display: flex; align-items: center; justify-content: center; gap: 3px; background: var(--bg-deep); border-radius: var(--r-sm); margin: 0.8rem 0; }
.wave span { width: 3px; background: var(--wine); border-radius: 2px; animation: wv 0.9s ease-in-out infinite; }
.wave span:nth-child(1){height:10px} .wave span:nth-child(2){height:20px;animation-delay:.1s} .wave span:nth-child(3){height:28px;animation-delay:.2s} .wave span:nth-child(4){height:16px;animation-delay:.15s} .wave span:nth-child(5){height:22px;animation-delay:.25s}
@keyframes wv { 0%,100%{transform:scaleY(.5)} 50%{transform:scaleY(1)} }
.analysis { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.analysis__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.analysis__row:last-child { border-bottom: 0; }
.analysis__row .muted { color: var(--ink-muted); }
.tag { font-size: 0.75rem; padding: 0.15rem 0.5rem; border-radius: var(--r-sm); margin-left: 0.25rem; }
.tag--pos { background: var(--pos-bg); color: var(--pos); }
.tag--warn { background: var(--warn-bg); color: var(--warn); }
.tag--risk { background: var(--risk-bg); color: var(--risk); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfc7b8; padding-block: clamp(3rem,6vw,4.5rem); }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand .wordmark { color: #f5f1e9; }
.footer__brand p { margin-top: 0.9rem; font-size: 0.9rem; color: #9c9382; max-width: 26ch; }
.footer__col h5 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8271; margin: 0 0 0.9rem; font-weight: 600; }
.footer__col a { display: block; color: #cfc7b8; font-size: 0.92rem; padding: 0.28rem 0; }
.footer__col a:hover { color: #fff; }
.footer__base { max-width: var(--wrap); margin: 2.5rem auto 0; padding: 1.5rem var(--gutter) 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; color: #8a8271; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__base a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer__base a:hover { color: #cfc7b8; }
@media (max-width: 780px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }

/* ---------- Legal ---------- */
.legal { max-width: 44rem; margin: 0 auto; padding-block: clamp(3rem,6vw,4.5rem); }
.legal .kicker + h1 { margin: 1rem 0 0.5rem; }
.legal h1 + p { margin-top: 0; }
.legal h2 { font-size: 1.35rem; margin-top: 2.25rem; }
.legal p { color: var(--ink-muted); margin-top: 0.8rem; }
.legal h2 + p { margin-top: 0.8rem; }

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ==========================================================================
   AADOM campaign landing (/aadom)
   ========================================================================== */

body.sentidental--campaign { padding-bottom: 0; }

.nav--campaign .nav__links { margin-left: auto; }
.nav--campaign .nav__actions { margin-left: 1rem; }
@media (max-width: 820px) {
  .nav--campaign .nav__links { margin-left: 0; }
  .nav--campaign .nav__actions { margin-left: 0; }
}

.footer--campaign { padding-block: 1.5rem; }
.footer__base--campaign {
  margin: 0 auto;
  border-top: 0;
  padding-top: 0;
  max-width: var(--wrap);
  padding-inline: var(--gutter);
}

.aadom-hero {
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
}
.aadom-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.aadom-hero__copy { max-width: 36rem; }
.aadom-hero__copy .display {
  margin-top: var(--space-kicker);
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  line-height: 1.06;
}
.aadom-hero__copy .lede {
  margin-top: var(--space-lede);
  max-width: 42ch;
}
.aadom-hero__ops {
  margin-top: var(--space-prose);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  max-width: 40ch;
}
.aadom-hero__actions { margin-top: 1.6rem; }
.aadom-hero__note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
@media (max-width: 900px) {
  .aadom-hero__grid { grid-template-columns: 1fr; }
  .aadom-hero__visual { order: 2; }
}

/* Patient journey visual */
.aadom-journey {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.aadom-journey__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.aadom-journey__step {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.35rem;
  border-left: 1px solid var(--line-strong);
  margin-left: 0.35rem;
}
.aadom-journey__step::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 3px var(--wine-soft);
}
.aadom-journey__step:last-child { border-left-color: transparent; }
.aadom-journey__label {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.aadom-journey__aside {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.aadom-journey__step--signal .aadom-journey__label { color: var(--wine); }
.aadom-journey__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding-top: 0.35rem;
}
.aadom-journey__path {
  padding: 1rem 1.05rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
}
.aadom-journey__path--happy { border-color: color-mix(in srgb, var(--pos) 28%, var(--line)); }
.aadom-journey__path--attention { border-color: color-mix(in srgb, var(--risk) 28%, var(--line)); }
.aadom-journey__path-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}
.aadom-journey__path strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.aadom-journey__path p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
}
.aadom-journey__outcome {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--pos);
  font-weight: 550;
}
.aadom-journey__actions {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.aadom-journey__actions li {
  padding: 0.2rem 0 0.2rem 0.9rem;
  position: relative;
}
.aadom-journey__actions li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--wine);
}
.aadom-journey__point {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (prefers-reduced-motion: no-preference) {
  .aadom-journey__step,
  .aadom-journey__split {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .aadom-journey__step.is-in,
  .aadom-journey__split.is-in {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 640px) {
  .aadom-journey__split { grid-template-columns: 1fr; }
}

.aadom-prose { max-width: 40rem; }
.aadom-prose h2 { max-width: 22ch; }
.aadom-prose > p,
.aadom-prose > ul { color: var(--ink-soft); font-size: 1.08rem; }
.aadom-prose__pull {
  margin-top: var(--space-stack) !important;
  color: var(--ink) !important;
  font-weight: 500;
  max-width: 42ch;
}

.aadom-list {
  list-style: none;
  margin: var(--space-stack) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.aadom-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.aadom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wine);
}

.aadom-steps {
  list-style: none;
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 44rem;
}
.aadom-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.aadom-steps__n {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--star);
  line-height: 1.2;
  min-width: 1.5rem;
}
.aadom-steps h3 {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.aadom-steps p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  max-width: 48ch;
}

.aadom-callout {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  max-width: 40rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line-strong);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}

.aadom-managers {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.aadom-managers__copy { max-width: 36rem; }
.aadom-managers__copy p { color: var(--ink-soft); }
.aadom-managers__outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.aadom-managers__outcomes li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--ink);
  padding-left: 1.15rem;
  position: relative;
}
.aadom-managers__outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 8px;
  height: 1px;
  background: var(--wine);
}
@media (max-width: 820px) {
  .aadom-managers { grid-template-columns: 1fr; }
}

.aadom-walkout {
  background: var(--ink);
  color: #f3ebe3;
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.aadom-walkout__inner {
  display: grid;
  gap: 2rem;
  max-width: 48rem;
}
.aadom-walkout__lead {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.12;
  color: #fdf6f2;
  max-width: 16ch;
  margin: 0;
}
.aadom-walkout__follow {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #d8c7be;
  max-width: 32ch;
  margin: 0;
}
.aadom-walkout__visual {
  position: relative;
  height: 72px;
  max-width: 28rem;
}
.aadom-walkout__door {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 36px;
  margin-top: -18px;
  border: 1.5px solid rgba(251, 243, 239, 0.45);
  border-radius: 2px 4px 4px 2px;
}
.aadom-walkout__path {
  position: absolute;
  left: 28px;
  right: 48px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(251,243,239,0.55), rgba(199,162,78,0.2));
}
.aadom-walkout__signal {
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: var(--star);
  box-shadow: 0 0 0 0 rgba(199, 162, 78, 0.45);
}
@media (prefers-reduced-motion: no-preference) {
  .aadom-walkout__signal {
    animation: aadom-pulse 2.8s ease-in-out infinite;
  }
  .aadom-walkout.is-in .aadom-walkout__path,
  .reveal.is-in .aadom-walkout__path {
    animation: aadom-draw 1.2s ease forwards;
  }
}
@keyframes aadom-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 162, 78, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(199, 162, 78, 0); }
}
@keyframes aadom-draw {
  from { transform: scaleX(0.2); transform-origin: left; opacity: 0.4; }
  to { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

.aadom-ease { max-width: 40rem; }
.aadom-ease > p { color: var(--ink-soft); }
.aadom-tags {
  list-style: none;
  margin: var(--space-stack) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
}
.aadom-tags li {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
  padding-left: 0.9rem;
  position: relative;
}
.aadom-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--star);
}
.aadom-ease__voice {
  margin-top: var(--space-stack) !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}

.aadom-view {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.aadom-view__copy { max-width: 32rem; }
.aadom-view__copy p { color: var(--ink-soft); }
.aadom-feed {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.aadom-feed__head {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--paper);
}
.aadom-feed__item {
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.aadom-feed__item:last-child { border-bottom: 0; }
.aadom-feed__stars {
  color: var(--star);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.aadom-feed__item p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.4;
  max-width: 36ch;
}
.aadom-feed__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  align-items: center;
  margin-top: 0.75rem;
}
.aadom-feed__tag {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.aadom-feed__row .aadom-feed__tag { margin-top: 0; }
.aadom-feed__tag--pos { color: var(--pos); }
.aadom-feed__tag--warn { color: var(--warn); }
.aadom-feed__tag--risk { color: var(--risk); }
.aadom-feed__action {
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--wine);
}
@media (max-width: 820px) {
  .aadom-view { grid-template-columns: 1fr; }
}

.aadom-offer { max-width: 40rem; }
.aadom-offer > p { color: var(--ink-soft); }
.aadom-offer__benefits {
  list-style: none;
  margin: var(--space-stack) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.aadom-offer__benefits li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  padding-left: 1.2rem;
  position: relative;
}
.aadom-offer__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wine);
  font-size: 0.9rem;
}
.aadom-offer .btn-row { margin-top: 1.75rem; }
.aadom-offer__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.aadom-demo { max-width: 52rem; }
.aadom-demo__copy { max-width: 40rem; margin-bottom: 1.75rem; }
.aadom-demo__copy p { color: var(--ink-soft); }
.aadom-demo__cta { margin-top: 1.5rem; }

.aadom-video__frame {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.aadom-video__frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #1b1815;
}
.aadom-video__placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(94, 31, 43, 0.18), transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(199, 162, 78, 0.12), transparent 50%),
    var(--bg-deep);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.aadom-video__placeholder p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.aadom-video__play {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--wine);
  color: #fbf3ef;
  border: 0;
  border-radius: var(--r-sm);
  padding: 0.85rem 1.35rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  min-height: 48px;
}
.aadom-video__play:hover { background: var(--wine-deep); }
.aadom-video__play:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
.aadom-video__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent currentColor;
}

.aadom-closing-note {
  margin-top: 1.1rem !important;
  color: #e2c9c4 !important;
  font-size: 0.9rem !important;
}

.aadom-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  gap: 0.65rem;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.aadom-sticky .btn { flex: 1; min-height: 48px; }
.aadom-sticky[hidden] { display: none !important; }
@media (min-width: 721px) {
  .aadom-sticky { display: none !important; }
}
body.sentidental--campaign:has(.aadom-sticky:not([hidden])) {
  padding-bottom: 5.5rem;
}

:is(h2, h3) + :is(.aadom-steps, .aadom-list, .aadom-managers__outcomes, .aadom-offer__benefits, .aadom-tags, .aadom-feed) {
  margin-top: var(--space-stack);
}

