/* =============================================================
   Build a Brand - Lisa Lord / LiLo Brand Studio
   Official 2026 palette: Rust, Driftwood, Greige, Linen, Ink. 60/30/10.
   Token names are kept (cream, ink, terracotta, gold) so existing
   selectors keep working. The values are the official brand colors.
     Headlines: Times New Roman (the LiLo typography rule)
     Body:      Lato
     Voice:     gutsy, direct
   ============================================================= */

:root {
  /* Light surfaces: Linen dominant, Greige for lines and quiet panels */
  --cream:        #F2EFEA;   /* Linen */
  --cream-deep:   #E1DBD4;   /* Greige tint */
  --cream-line:   #C8BEB2;   /* Greige hairlines */
  /* Ink anchors text; tints of Ink for secondary text */
  --ink:          #161616;   /* Ink */
  --ink-soft:     #6B6660;   /* Ink tint, warm */
  --ink-mute:     rgba(22, 22, 22, 0.45);
  /* Rust: accent and CTA only, spend like punctuation */
  --terracotta:   #AF493B;
  --terracotta-d: #9D4134;
  --terracotta-l: rgba(175, 73, 59, 0.08);
  /* Driftwood: warm secondary (legacy token name kept) */
  --gold:         #A8957E;   /* Driftwood */
  --gold-d:       #8A7660;
  --gold-l:       rgba(168, 149, 126, 0.14);
  --white:        #FFFFFF;

  --serif: 'Times New Roman', Times, serif;
  --sans:  'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 0;
  --radius:    0;
  --radius-lg: 0;

  --shadow-sm: none;
  --shadow:    none;
  --shadow-lg: none;

  --container: 1120px;
  --container-narrow: 720px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--cream); }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--terracotta-d); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; margin: 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin: 0 0 var(--space-4);
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--small { font-size: 10px; letter-spacing: 0.22em; }
.eyebrow__num { font-weight: 600; opacity: 0.6; margin-right: 0.4em; }

.section-title { font-size: clamp(28px, 4vw, 40px); margin: 0 0 var(--space-5); }
.section-title--inverse { color: var(--white); text-align: center; }

.link-quiet { color: var(--ink-soft); font-size: 13px; }
.link-quiet:hover { color: var(--terracotta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--terracotta); color: var(--white); }
.btn--primary:hover { background: var(--terracotta-d); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--ink); font-weight: 600; }
.btn--gold:hover { background: var(--gold-d); color: var(--ink); }
.btn--gold-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--gold-ghost:hover { background: var(--gold); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(43,43,43,0.2); }
.btn--ghost:hover { border-color: rgba(43,43,43,0.5); color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.10); color: var(--white); }
.btn--white { background: var(--white); color: var(--terracotta); font-weight: 600; }
.btn--white:hover { background: var(--cream); color: var(--terracotta); }
.btn--text { background: transparent; color: var(--ink-soft); border: 0; padding: 8px 0; letter-spacing: 0; }
.btn--text:hover { color: var(--terracotta); }
.btn--full { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 14px; }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---------- Layout primitives ---------- */
.main { min-height: calc(100vh - 60px); }

.nav {
  background: var(--cream);
  position: sticky; top: 0; z-index: 50;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}
.brandmark__icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brandmark__icon img { display: block; height: 30px; width: auto; }
.brandmark__text {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.nav__right { display: flex; gap: 24px; align-items: center; }
.nav-link { color: var(--ink); font-size: 13px; }
.nav-link:hover { color: var(--terracotta); }

/* In-app nav */
.appnav { background: var(--ink); color: var(--white); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #3a3a3a; }
.appnav__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.appnav__home { display: flex; align-items: center; gap: 12px; color: var(--white); font-family: var(--sans); }
.appnav__brand-icon { display: inline-flex; align-items: center; color: var(--white); flex-shrink: 0; }
.appnav__brand-icon img { display: block; height: 30px; width: auto; }
/* Legacy classes kept in case any other page still references them */
.appnav__brand { color: var(--gold); font-size: 11px; letter-spacing: 0.32em; font-weight: 500; }
.appnav__sep { color: rgba(255,255,255,0.3); }
.appnav__title { color: rgba(255,255,255,0.7); font-size: 13px; }
.appnav__steps { display: flex; gap: 4px; }
.appnav__step { display: inline-flex; gap: 8px; align-items: center; padding: 6px 12px; border-radius: var(--radius-sm); font-size: 12px; color: rgba(255,255,255,0.5); transition: all .15s ease; }
.appnav__step:hover { color: rgba(255,255,255,0.9); }
.appnav__step.is-active { background: rgba(168,149,126,0.20); color: var(--gold); }
.appnav__num { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
.appnav__step.is-active .appnav__num { border-color: var(--gold); color: var(--gold); }
.appnav__right { display: flex; gap: 18px; align-items: center; }
.appnav__guide { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.04em; }
.appnav__guide:hover { color: var(--gold); }
.appnav__signout { margin: 0; }
.appnav__signout-btn { background: transparent; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.7); font-size: 11px; padding: 6px 12px; border-radius: var(--radius-sm); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 6px; transition: all .15s ease; }
.appnav__signout-btn:hover { color: var(--gold); border-color: var(--gold); }
.appnav__name { font-weight: 500; }
.appnav__signout-label { display: none; color: rgba(255,255,255,0.5); }
.appnav__signout-btn:hover .appnav__signout-label { display: inline; }
.appnav__signout-btn:hover .appnav__name { display: none; }
.appnav__chev { transition: transform .2s ease; opacity: 0.6; }
.appnav__signout-btn:hover .appnav__chev { transform: rotate(180deg); opacity: 1; }

@media (max-width: 720px) {
  /* Two-row nav: brand + guide/account on top, the 5 V's as a scrollable
     strip below. Keeps section orientation and switching on phones, where
     the inline pills would otherwise be hidden. */
  .appnav__inner { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 10px; }
  .appnav__title { display: none; }
  .appnav__steps {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 4px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .appnav__steps::-webkit-scrollbar { display: none; }
  .appnav__step { flex-shrink: 0; }
  .appnav__right { gap: 12px; }
}

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 64px 24px 24px; }
.footer__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer__brand { font-family: var(--serif); font-size: 22px; color: var(--white); margin: 0 0 8px; }
.footer__tag { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; max-width: 360px; margin: 0; }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__heading { font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; font-weight: 500; }
.footer__col a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { max-width: var(--container); margin: 0 auto; padding-top: 20px; text-align: center; }
.footer__bottom p { margin: 0; color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: 0.06em; }
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   LANDING
   ============================================================= */
.page-landing { background: var(--cream); }

.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px 120px;
  text-align: center;
}
.hero__title {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.1;
  margin: 0 0 28px;
}
.hero__title em { color: var(--terracotta); font-style: italic; }
.hero__lede { max-width: 600px; margin: 0 auto 40px; font-size: 18px; color: var(--ink-soft); line-height: 1.6; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin: 40px auto 0; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }

.framework { background: var(--ink); color: var(--white); padding: 96px 24px; }
.framework > .eyebrow { display: block; text-align: center; }
.framework__grid {
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.v-card { display: flex; flex-direction: column; gap: 12px; }
.v-card__num { color: var(--gold); font-size: 11px; letter-spacing: 0.22em; }
.v-card__title { font-size: 22px; }
.v-card__desc { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }
@media (max-width: 900px) { .framework__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .framework__grid { grid-template-columns: 1fr; } }

/* Meet Lisa block */
.meet-lisa { background: var(--cream-deep); padding: 96px 24px; }
.meet-lisa__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.meet-lisa__photo { aspect-ratio: 4 / 5; border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.meet-lisa__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.meet-lisa__title { font-size: clamp(32px, 5vw, 48px); margin: 8px 0 24px; }
.meet-lisa__lede { font-size: 19px; color: var(--ink); line-height: 1.6; margin: 0 0 20px; max-width: 540px; font-weight: 500; }
.meet-lisa__copy { color: var(--ink-soft); line-height: 1.7; margin: 0 0 16px; max-width: 540px; }
.meet-lisa__sign { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--terracotta); margin: 24px 0 0; }
@media (max-width: 880px) {
  .meet-lisa__inner { grid-template-columns: 1fr; gap: 40px; }
  .meet-lisa__photo { max-width: 280px; margin: 0 auto; }
}

/* Testimonials */
.testimonials { background: var(--cream); padding: 96px 24px; text-align: center; }
.testimonials__grid { max-width: var(--container); margin: 56px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: left; }
.testimonial { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius); padding: 32px 28px; margin: 0; position: relative; }
.testimonial::before { content: '\201C'; position: absolute; top: 8px; left: 16px; font-family: var(--serif); font-size: 64px; color: var(--gold); line-height: 1; opacity: 0.5; }
.testimonial blockquote { margin: 0 0 20px; padding: 0; font-size: 15px; color: var(--ink); line-height: 1.7; font-style: italic; position: relative; z-index: 1; }
.testimonial figcaption { font-size: 13px; color: var(--terracotta); font-weight: 500; }
.testimonial figcaption span { color: var(--ink-mute); font-weight: 400; font-style: italic; }
.testimonials__todo { max-width: 720px; margin: 32px auto 0; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-mute); font-style: italic; opacity: 0.6; }
@media (max-width: 880px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; padding: 96px 24px; }
.faq > .eyebrow { display: block; text-align: center; }
.faq > .section-title { text-align: center; }
.faq__list { margin-top: 56px; display: flex; flex-direction: column; gap: 4px; }
.faq__item { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius); padding: 0; transition: all .15s ease; }
.faq__item[open] { box-shadow: var(--shadow); border-color: rgba(175,73,59,0.20); }
.faq__item summary { padding: 22px 28px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 500; color: var(--ink); font-size: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-family: var(--serif); font-size: 24px; color: var(--terracotta); transition: transform .2s ease; line-height: 1; }
.faq__item[open] summary::after { content: '\2013'; }
.faq__item p { padding: 0 28px 24px; margin: 0; color: var(--ink-soft); line-height: 1.7; }
.how { max-width: 880px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.how > .section-title { text-align: center; }
.how__lede { color: var(--ink-soft); margin: 0 auto 64px; max-width: 520px; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: left; }
.how__step { display: flex; flex-direction: column; gap: 10px; }
.how__step h3 { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); }
.how__step p { color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.how__num { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--terracotta); color: var(--terracotta); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
@media (max-width: 720px) { .how__steps { grid-template-columns: 1fr; } }

.pricing { background: var(--ink); color: var(--white); padding: 96px 24px; }
.pricing > .eyebrow { display: block; text-align: center; }
.pricing__lede { color: rgba(255,255,255,0.5); text-align: center; max-width: 420px; margin: 0 auto 64px; }
.pricing__grid { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.price-card--featured {
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.40);
}
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  padding: 5px 16px; font-size: 10px; letter-spacing: 0.16em; border-radius: 0; font-weight: 600;
}
.price-card__tier { font-size: 11px; letter-spacing: 0.22em; color: var(--gold); margin: 0 0 8px; text-transform: uppercase; }
.price-card__amount { display: flex; align-items: baseline; gap: 8px; margin: 0 0 12px; }
.price-card__num { font-family: var(--serif); font-size: 44px; color: var(--white); }
.price-card__when { color: rgba(255,255,255,0.4); font-size: 13px; }
.price-card__desc { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; margin: 0; }
.price-card__list { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: 6px; color: rgba(255,255,255,0.7); font-size: 13px; }
.price-card__list li::before { content: '✓'; color: var(--gold); margin-right: 10px; }
@media (max-width: 720px) { .pricing__grid { grid-template-columns: 1fr; } }

.cta { background: var(--terracotta); padding: 80px 24px; text-align: center; color: var(--white); }
.cta__title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; color: var(--white); }
.cta__lede { color: rgba(255,255,255,0.8); margin: 0 auto 36px; max-width: 380px; }

/* =============================================================
   AUTH PAGES (sign-in, sign-up, post-Stripe welcome)
   ============================================================= */
.page-auth { background: var(--cream); min-height: 100vh; }
.auth { max-width: 480px; margin: 0 auto; padding: 80px 24px; }
.auth__panel { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius); padding: 48px 36px; box-shadow: var(--shadow); }
.auth__title { font-size: 32px; margin: 8px 0 12px; }
.auth__lede { color: var(--ink-soft); margin: 0 0 28px; font-size: 14px; }
.auth__error { background: var(--terracotta-l); border: 1px solid rgba(175,73,59,0.30); color: var(--terracotta-d); padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; margin: 0 0 20px; }
.auth__form { display: flex; flex-direction: column; gap: 16px; }
.auth__form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }
.auth__form input { padding: 12px 14px; border: 1px solid var(--cream-line); border-radius: var(--radius-sm); font: inherit; background: var(--cream); transition: border-color .15s ease; }
.auth__form input:focus { outline: none; border-color: var(--terracotta); background: var(--white); }
.auth__alt { margin: 24px 0 0; font-size: 13px; color: var(--ink-soft); text-align: center; }
.auth__success-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--terracotta-l); border: 1px solid rgba(175,73,59,0.30); color: var(--terracotta); padding: 5px 14px; border-radius: 0; font-size: 11px; letter-spacing: 0.10em; margin: 0 0 18px; font-weight: 500; }
.auth__form [data-step] { display: flex; flex-direction: column; gap: 16px; }
.auth__hint { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.auth__hint strong { color: var(--ink); font-weight: 600; }
.auth__linkbtn { background: none; border: none; padding: 0; color: var(--ink-soft); font: inherit; font-size: 13px; text-decoration: underline; cursor: pointer; align-self: center; }
.auth__linkbtn:hover { color: var(--terracotta); }

/* =============================================================
   LISA LETTER
   ============================================================= */
.page-letter { background: var(--cream); }
.lisa-letter { max-width: 760px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: start; }
.lisa-letter__photo { aspect-ratio: 1 / 1.2; border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.lisa-letter__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.lisa-letter__title { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin: 14px 0 28px; }
.lisa-letter__copy p { margin: 0 0 16px; color: var(--ink); font-size: 16px; line-height: 1.7; }
.lisa-letter__sign { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--terracotta); margin: 32px 0 36px; }
.lisa-letter__cta { margin: 0; }
@media (max-width: 720px) {
  .lisa-letter { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .lisa-letter__photo { aspect-ratio: auto; height: 240px; max-width: 240px; margin: 0 auto; }
}

/* =============================================================
   ONBOARDING
   ============================================================= */
.page-onboarding { background: var(--cream); }
.onboarding { max-width: 560px; margin: 0 auto; padding: 80px 24px; }
.onboarding__title { font-size: clamp(28px, 4vw, 40px); margin: 8px 0 16px; }
.onboarding__lede { color: var(--ink-soft); margin: 0 0 36px; line-height: 1.6; }
.onboarding__form { display: flex; flex-direction: column; gap: 24px; background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow); }
.onboarding__form label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--ink); font-weight: 500; }
.onboarding__form input { padding: 12px 14px; border: 1px solid var(--cream-line); border-radius: var(--radius-sm); font: inherit; background: var(--cream); }
.onboarding__form input:focus { outline: none; border-color: var(--terracotta); background: var(--white); }
.onboarding__optional { color: var(--ink-mute); font-weight: 400; font-style: italic; font-size: 11px; }
.onboarding__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px; }

/* =============================================================
   DASHBOARD
   ============================================================= */
.page-dashboard { background: var(--cream); }
.dash { max-width: var(--container); margin: 0 auto; padding: 56px 24px 96px; }

.dash__header { margin-bottom: 40px; }
.dash__title { font-size: clamp(32px, 5vw, 48px); margin: 4px 0 12px; }
.dash__subline { color: var(--ink-soft); margin: 0; }

.progress { display: flex; align-items: center; gap: 16px; margin-top: 20px; max-width: 480px; }
.progress--inline { margin-top: 16px; max-width: 100%; }
.progress__bar { flex: 1; height: 4px; background: var(--cream-line); border-radius: 0; overflow: hidden; }
.progress__bar span { display: block; height: 100%; background: var(--gold); transition: width .6s ease; }
.progress__meta { font-size: 12px; color: var(--ink-soft); margin: 0; white-space: nowrap; }
.progress__meta strong { color: var(--ink); }

.dash__hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; margin-bottom: 64px; }
@media (max-width: 880px) { .dash__hero { grid-template-columns: 1fr; } }

.hero-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow); }
.hero-card__eyebrow { font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--terracotta); margin: 0 0 14px; font-weight: 500; }
.hero-card__title { font-size: clamp(28px, 3.6vw, 36px); margin: 0 0 12px; }
.hero-card__desc { color: var(--ink-soft); margin: 0 0 28px; line-height: 1.6; }

.rail-card { background: var(--cream-deep); border: 1px solid var(--cream-line); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; }
.rail-card--gold { background: var(--gold-l); border-color: rgba(201,169,110,0.40); }
.rail-card--gold.is-unlocked { background: rgba(201,169,110,0.16); }
.rail-card--terracotta { background: var(--terracotta-l); border-color: rgba(175,73,59,0.30); }
.rail-card__eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); margin: 0 0 6px; }
.rail-card--gold .rail-card__eyebrow { color: var(--gold-d); }
.rail-card__title { font-size: 22px; margin: 0 0 6px; }
.rail-card__desc { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.rail-card__lock { font-size: 11px; letter-spacing: 0.10em; color: var(--ink-mute); margin: 0; }

.path { margin-top: 64px; }
.path__title { font-size: 24px; margin: 4px 0 28px; }
.path__stations { display: flex; flex-direction: column; gap: 16px; position: relative; }
.path__stations::before {
  /* Subtle vertical "trail" line */
  content: '';
  position: absolute;
  left: 27px; top: 30px; bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, var(--cream-line), var(--cream-line) 70%, transparent);
  z-index: 0;
}
.station { position: relative; z-index: 1; display: grid; grid-template-columns: 56px 1fr auto; gap: 20px; align-items: center; padding: 24px 28px; background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius); transition: all .2s ease; }
.station.is-done { background: var(--gold-l); border-color: rgba(201,169,110,0.30); }
.station.is-active { box-shadow: 0 0 0 1px rgba(175,73,59,0.20), var(--shadow); }
.station.is-locked { opacity: 0.55; }
.station.is-progress { border-color: rgba(175,73,59,0.40); }
.station__marker { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--cream-line); display: flex; align-items: center; justify-content: center; font-family: var(--serif); color: var(--ink-soft); background: var(--white); }
.station.is-done .station__marker { border-color: var(--gold); background: var(--gold); color: var(--white); }
.station.is-done .station__marker svg { width: 22px; height: 22px; }
.station.is-active .station__marker { border-color: var(--terracotta); color: var(--terracotta); }
.station__title { font-size: 22px; margin: 0; }
.station.is-done .station__title { color: var(--ink-soft); }
.station__tag { color: var(--ink-soft); font-size: 13px; margin: 4px 0 0; }
.station__preview { color: var(--ink-soft); font-size: 13px; margin: 8px 0 0; line-height: 1.5; max-width: 540px; }
.station__action { padding: 10px 18px; background: var(--terracotta); color: var(--white); border-radius: var(--radius-sm); font-size: 12px; letter-spacing: 0.06em; }
.station__action:hover { background: var(--terracotta-d); color: var(--white); }
.station__action--ghost { background: transparent; color: var(--gold-d); border: 1px solid var(--gold-d); }
.station__action--ghost:hover { background: var(--gold-d); color: var(--white); }
.station__lock { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.06em; }
@media (max-width: 720px) {
  .station { grid-template-columns: 48px 1fr; gap: 14px; padding: 18px 20px; }
  .station__action-wrap { grid-column: 1 / -1; margin-top: 8px; justify-self: end; }
}

/* =============================================================
   BRAND BUILDER (chat)
   ============================================================= */
.page-builder { background: var(--cream); }
.builder { max-width: 880px; margin: 0 auto; padding: 32px 24px 0; display: flex; flex-direction: column; height: calc(100vh - 56px); }
.builder__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 16px; }
.builder__title { font-size: 24px; color: var(--ink-soft); font-style: italic; margin: 4px 0 0; }
.builder__nav { display: flex; gap: 16px; flex-shrink: 0; }
.builder__shell { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius-lg); flex: 1; display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px; }
.chat { display: flex; flex-direction: column; height: 100%; }
.chat__transcript { flex: 1; overflow-y: auto; padding: 28px 28px 16px; display: flex; flex-direction: column; gap: 18px; }
.msg { display: flex; gap: 14px; max-width: 100%; }
.msg--user { flex-direction: row-reverse; }
.msg__avatar { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.msg--asst .msg__avatar { background: var(--ink); color: var(--gold); font-family: var(--serif); }
.msg--user .msg__avatar { background: var(--terracotta); color: var(--white); }
.msg__bubble { max-width: 75%; padding: 14px 18px; border-radius: var(--radius); font-size: 14px; line-height: 1.65; white-space: pre-wrap; word-wrap: break-word; }
.msg--asst .msg__bubble { background: var(--cream); border: 1px solid var(--cream-line); color: var(--ink); }
.msg--user .msg__bubble { background: var(--terracotta); color: var(--white); }
.chat__typing { display: inline-flex; gap: 6px; align-items: center; }
.chat__typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: bounce 1s infinite ease-in-out; }
.chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.chat__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce { 0%,100% { opacity:.4; transform: translateY(0);} 50% { opacity: 1; transform: translateY(-3px);} }
.chat__input { display: flex; gap: 12px; align-items: flex-end; padding: 16px 20px; border-top: 1px solid var(--cream-line); }
.chat__input textarea { flex: 1; resize: none; padding: 12px 14px; border: 1px solid var(--cream-line); border-radius: var(--radius-sm); font: inherit; background: var(--cream); }
.chat__input textarea:focus { outline: none; border-color: var(--terracotta); background: var(--white); }
.chat__input .btn { height: 70px; padding: 0 24px; }
.chat__footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px 14px; font-size: 12px; color: var(--ink-mute); gap: 16px; }
.chat__autosave { font-style: italic; }
.chat__complete-link { background: transparent; border: 0; color: var(--terracotta); font-size: 12px; padding: 4px 0; cursor: pointer; letter-spacing: 0.02em; font-weight: 500; transition: color .15s ease; }
.chat__complete-link:hover { color: var(--terracotta-d); text-decoration: underline; }

/* Ready banner - appears when the AI signals the section is wrapped up. */
.chat__ready-banner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 0 20px; padding: 16px 20px; background: var(--gold-l); border: 1px solid rgba(201,169,110,0.40); border-radius: var(--radius); animation: ready-glow 1.4s ease-in-out 1; }
.chat__ready-banner[hidden] { display: none; }
.chat__ready-text { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.5; flex: 1; min-width: 220px; }
@keyframes ready-glow {
  0% { box-shadow: 0 0 0 0 rgba(168,149,126,0); }
  50% { box-shadow: 0 0 0 8px rgba(168,149,126,0.22); }
  100% { box-shadow: 0 0 0 0 rgba(168,149,126,0); }
}

/* =============================================================
   BRAND GUIDE (compiled)
   ============================================================= */
.page-brand-guide { background: var(--cream); }
.brand-guide { max-width: 880px; margin: 0 auto; padding: 56px 24px 96px; }
.brand-guide__title { font-size: clamp(32px, 5vw, 48px); margin: 8px 0 16px; }
.brand-guide__lede { color: var(--ink-soft); max-width: 520px; margin: 0 0 24px; }
.brand-guide__cta { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius-lg); padding: 36px 32px; margin: 32px 0 48px; }
.brand-guide__cta.is-ready { background: var(--gold-l); border-color: rgba(201,169,110,0.40); }
.brand-guide__cta-title { font-size: 24px; margin: 0 0 12px; }
.brand-guide__cta-desc { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0 0 20px; }
.brand-guide__cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.bg-section { border: 1px solid var(--cream-line); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; background: var(--white); }
.bg-section.is-pending { opacity: 0.6; }
.bg-section__header { display: grid; grid-template-columns: 32px 1fr auto; gap: 14px; padding: 16px 20px; background: var(--ink); color: var(--white); align-items: center; }
.bg-section__num { color: var(--gold); font-size: 11px; letter-spacing: 0.18em; }
.bg-section__title { color: var(--white); font-size: 18px; margin: 0; }
.bg-section__tag { color: rgba(255,255,255,0.45); font-size: 11px; margin: 2px 0 0; }
.bg-section__state { color: var(--gold); font-size: 11px; letter-spacing: 0.10em; }
.bg-section__body { padding: 20px 24px; }
.bg-section__summary { color: var(--ink); font-size: 14px; line-height: 1.7; white-space: pre-wrap; margin: 0 0 12px; }
.bg-section__pending { color: var(--ink-mute); font-style: italic; font-size: 14px; margin: 0; }

/* =============================================================
   COACHING
   ============================================================= */
.page-coaching { background: var(--cream); }
.coaching { max-width: 720px; margin: 0 auto; padding: 80px 24px; }
.coaching__title { font-size: clamp(28px, 4.4vw, 44px); margin: 8px 0 20px; }
.coaching__lede { color: var(--ink-soft); font-size: 17px; line-height: 1.6; margin: 0 0 36px; max-width: 560px; }
.coaching__panel { background: var(--white); border: 1px solid var(--cream-line); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow); }
.coaching__panel--terracotta { background: var(--terracotta); color: var(--white); border: 0; }
.coaching__panel--terracotta h1, .coaching__panel--terracotta h2, .coaching__panel--terracotta h3, .coaching__panel--terracotta p, .coaching__panel--terracotta li { color: var(--white); }
.coaching__panel--terracotta .coaching__panel-tier { color: var(--gold); }
.coaching__panel--terracotta .coaching__list li::before { color: var(--gold); }
.coaching__panel-title { font-size: 22px; margin: 0 0 16px; }
.coaching__panel-tier { font-size: 11px; letter-spacing: 0.20em; color: var(--gold); text-transform: uppercase; margin: 0 0 18px; }
.coaching__panel p { color: var(--ink-soft); margin: 0 0 16px; line-height: 1.6; }
.coaching__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 8px; }
.coaching__list li::before { content: '✓'; color: var(--gold); margin-right: 10px; }
.coaching__note { font-size: 13px; color: var(--ink-mute); font-style: italic; margin: 16px 0 24px; }

/* =============================================================
   V-COMPLETE celebration
   (Don't make body a flexbox here - sticky nav doesn't survive that.
    Instead let the page flow naturally with generous top padding.)
   ============================================================= */
.page-vcomplete { background: var(--cream); }
.vcomplete { max-width: 720px; margin: 0 auto; padding: 96px 24px 96px; text-align: center; }
.vcomplete__title { font-size: clamp(36px, 6vw, 56px); margin: 12px 0 32px; }
.vcomplete__summary { background: var(--white); border: 1px solid var(--gold); border-radius: var(--radius-lg); padding: 32px 36px; text-align: left; margin: 0 auto 36px; box-shadow: var(--shadow); }
.vcomplete__summary-label { font-size: 10px; letter-spacing: 0.22em; color: var(--gold-d); margin: 0 0 16px; font-weight: 600; }
.vcomplete__summary-body { color: var(--ink); font-size: 15px; line-height: 1.7; white-space: pre-wrap; }
.vcomplete__line { color: var(--ink-soft); font-style: italic; margin: 0 auto 36px; max-width: 480px; font-size: 17px; }
.vcomplete__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   V Page (the unified V journey) - Phase 2 of the UX overhaul.
   Composed sections: Hero · Watch · Workbook · Build · Lock-in
   Vertically stacked, editorial luxury feel, brand tokens already
   defined in :root above.
   ============================================================= */

.v-stepnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--cream-line);
}
.v-stepnav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--space-5);
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scrollbar-width: none;
}
.v-stepnav__inner::-webkit-scrollbar { display: none; }
.v-stepnav__step {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 14px;
  border-radius: 0;
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.v-stepnav__step:hover { color: var(--ink); background: var(--cream-deep); }
.v-stepnav__step.is-current {
  color: var(--terracotta);
  background: var(--terracotta-l);
  border-color: rgba(175, 73, 59, 0.18);
}
.v-stepnav__num {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center; justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.v-page {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-7) var(--space-5) var(--space-9);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.v-page__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--cream-line);
}

.v-hero {
  text-align: center;
  padding-bottom: var(--space-3);
}
.v-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-4);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.v-hero__lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.v-section__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--cream-line);
}
.v-section__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}
.v-section__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.v-section__lede {
  margin: 0 0 0 auto;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 360px;
  text-align: right;
}
@media (max-width: 600px) {
  .v-section__lede { margin-left: 0; text-align: left; max-width: none; }
}

/* Watch */
.v-watch__player { margin-bottom: var(--space-5); }
.v-watch__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.v-watch__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.v-watch__caption {
  margin: var(--space-4) 0 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  text-align: center;
}
.v-chip-rail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.v-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 16px;
  border-radius: 0;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  transition: all .15s ease;
}
.v-chip:hover { border-color: var(--gold); color: var(--ink); }
.v-chip.is-current {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.v-chip__num { font-family: var(--serif); font-size: 12px; opacity: 0.7; }
.v-chip__title { font-weight: 500; }
.v-chip__check {
  display: none;
  color: var(--gold);
  font-weight: 700;
}
.v-chip.is-watched .v-chip__check { display: inline; }

/* Workbook */
.v-workbook__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  text-decoration: none;
  color: inherit;
  transition: all .15s ease;
}
.v-workbook__card:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.v-workbook__icon { font-size: 32px; }
.v-workbook__title {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 4px;
  color: var(--ink);
}
.v-workbook__desc {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.v-workbook__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 18px;
  border-radius: 0;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.v-workbook__card.is-done .v-workbook__cta {
  background: var(--gold);
  color: var(--ink);
}
@media (max-width: 600px) {
  .v-workbook__card { grid-template-columns: 1fr; text-align: center; }
  .v-workbook__cta { justify-content: center; }
}

/* Build (chat) - let the existing .chat styles drive layout, just give the
   section a little chrome so it sits well with Watch/Workbook. */
.v-build__shell {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

/* Lock-in */
.v-lock-in {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  text-align: center;
}
.v-lock-in .v-section__head { border-bottom-color: rgba(250, 247, 242, 0.15); justify-content: center; }
.v-lock-in .v-section__num { color: var(--gold); }
.v-lock-in .v-section__title { color: var(--cream); }
.v-lock-in .v-section__lede { color: rgba(250, 247, 242, 0.7); margin: 0 auto; }
.v-lock-in__summary {
  background: rgba(250, 247, 242, 0.06);
  border-left: 3px solid var(--gold);
  padding: var(--space-5);
  margin: var(--space-5) auto;
  text-align: left;
  border-radius: var(--radius);
  max-width: 560px;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.92);
}
.v-lock-in__summary p { margin: 0 0 var(--space-3); }
.v-lock-in__summary p:last-child { margin-bottom: 0; }
.v-lock-in__next {
  margin-top: var(--space-3);
}

/* =============================================================
   Dashboard - Welcome video block, multi-step progress chips,
   and the 6th Brand Guide station. Phase 3.
   ============================================================= */

.welcome-video {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-6);
  align-items: center;
  margin: var(--space-6) 0 var(--space-7);
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.welcome-video__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--space-2) 0 var(--space-3);
  line-height: 1.2;
}
.welcome-video__lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.welcome-video__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.welcome-video__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.welcome-video--inline {
  margin: var(--space-5) 0;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.welcome-video--inline .welcome-video__frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 760px) {
  .welcome-video { grid-template-columns: 1fr; }
}

/* Step chips on V stations */
.step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: var(--space-3);
}
.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 0;
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  font-family: var(--sans);
}
.step-chip__dot { font-size: 10px; opacity: 0.7; }
.step-chip.is-progress {
  color: var(--terracotta);
  background: var(--terracotta-l);
  border-color: rgba(175, 73, 59, 0.18);
}
.step-chip.is-done {
  color: var(--ink);
  background: var(--gold-l);
  border-color: rgba(201, 169, 110, 0.3);
}
.step-chip.is-done .step-chip__dot { color: var(--gold-d); opacity: 1; }

/* Brand Guide station - distinct gold accent */
.station--guide.is-active {
  background: linear-gradient(180deg, var(--cream) 0%, var(--gold-l) 100%);
  border-color: var(--gold);
}
.station--guide.is-active .station__marker {
  background: var(--gold);
  color: var(--ink);
}
.station--guide.is-locked .station__marker {
  background: var(--cream-deep);
  color: var(--ink-mute);
}

/* Brand Guide bonus section - Module 6 aggregate */
.bg-bonus {
  margin-top: var(--space-8);
  padding-top: var(--space-7);
  border-top: 1px dashed var(--cream-line);
}
.bg-bonus__header { text-align: center; margin-bottom: var(--space-6); }
.bg-bonus__title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--space-2) 0 var(--space-3);
}
.bg-bonus__lede {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.bg-bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}
.bg-bonus__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: all .15s ease;
}
.bg-bonus__card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.bg-bonus__icon { font-size: 24px; }
.bg-bonus__name { display: block; font-family: var(--serif); font-size: 16px; }
.bg-bonus__desc { display: block; font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.bg-bonus__cta { font-size: 12px; color: var(--gold-d); font-weight: 600; white-space: nowrap; }

/* Admin shortcut in footer - only rendered server-side for is_admin users. */
.footer__admin {
  margin-left: var(--space-3);
  padding: 4px 12px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  display: inline-block;
}
.footer__admin:hover { background: var(--terracotta); }

/* ============================================================
   Welcome Back Dashboard (Big Ship 1)
   Replaces the welcome-video + stations grid layout. Single hero
   card, clear Resume CTA, tight section list, kept right rail.
   ============================================================ */
.dash--welcome {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-7) var(--space-5) var(--space-9);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 900px) {
  .dash--welcome {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    grid-template-areas:
      "welcome rail"
      "sections sections";
    align-items: start;
  }
  .dash__welcome { grid-area: welcome; }
  .dash__rail { grid-area: rail; }
  .dash__sections { grid-area: sections; }
}
.dash__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 var(--space-3);
  font-weight: 500;
}
.dash__headline {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 var(--space-4);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.dash__sub {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 var(--space-5);
  max-width: 60ch;
}
.dash__progress {
  height: 4px;
  background: var(--cream-line);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: var(--space-5);
}
.dash__progress-bar { height: 100%; background: var(--cream-line); position: relative; }
.dash__progress-bar > span {
  display: block;
  height: 100%;
  background: var(--terracotta);
  border-radius: 0;
  transition: width .6s ease;
}
.dash__cta-row { display: flex; gap: var(--space-4); align-items: center; flex-wrap: wrap; }
.btn--quiet {
  font-size: 13px;
  color: var(--ink-soft);
  border: none;
  background: none;
  text-decoration: none;
}
.btn--quiet:hover { color: var(--ink); }

.dash__sections-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 var(--space-4);
  font-weight: 500;
}
.dash-sections {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .dash-sections { grid-template-columns: 1fr 1fr; }
}
.dash-section { margin: 0; }
.dash-section__link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s ease, transform .15s ease;
}
.dash-section__link:hover {
  border-color: var(--terracotta);
  transform: translateY(-1px);
}
.dash-section.is-done .dash-section__link { border-color: rgba(175, 73, 59, 0.2); background: var(--terracotta-l); }
.dash-section.is-progress .dash-section__link { border-color: var(--terracotta); }
.dash-section--guide .dash-section__link { border-style: dashed; }
.dash-section--guide.is-pending .dash-section__link { color: var(--ink-soft); cursor: default; }
.dash-section--guide.is-pending .dash-section__link:hover { transform: none; border-color: var(--cream-line); }
.dash-section__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.dash-section.is-done .dash-section__num { background: var(--terracotta); color: var(--white); }
.dash-section__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.dash-section__label { font-size: 14px; font-weight: 600; color: var(--ink); }
.dash-section__state { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.dash-section__chev { font-size: 18px; color: var(--terracotta); flex-shrink: 0; }

/* ============================================================
   Journey shell (Big Ship 1)
   ============================================================ */
.journey {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-5) var(--space-9);
}
.journey__header { margin-bottom: var(--space-6); }
.journey__crumbs { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-3); }
.journey__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
  font-weight: 500;
}
.journey__progress-text { font-size: 12px; color: var(--ink-soft); margin: 0; }
.journey__progress {
  height: 4px;
  background: var(--cream-line);
  border-radius: 0;
  overflow: hidden;
}
.journey__progress-fill {
  height: 100%;
  background: var(--terracotta);
  border-radius: 0;
  transition: width .6s ease;
}
.journey__step { margin-bottom: var(--space-7); }
.journey__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.journey__subtitle {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 var(--space-6);
  max-width: 56ch;
}
.journey__body { min-height: 120px; }
.journey__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-line);
  padding-top: var(--space-5);
}
.journey__back {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
}
.journey__back:hover { color: var(--ink); }
.journey__exit-hint {
  margin-top: var(--space-5);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}
.journey__exit-hint a { color: var(--ink-soft); }
.journey__exit-hint a:hover { color: var(--terracotta); }

.step-body__hint {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0 0 var(--space-4);
}
.step-body__count {
  color: var(--terracotta);
  font-weight: 600;
  margin-left: 4px;
}

/* ---- Wordcloud ---- */
.word-group { margin-bottom: var(--space-5); }
.word-group__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 var(--space-3);
  font-weight: 500;
}
.word-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.word-chip {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--cream-line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 0;
  cursor: pointer;
  transition: all .15s ease;
}
.word-chip:hover { border-color: var(--ink-soft); }
.word-chip.is-selected {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* ---- Pick-3 ---- */
.pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 600px) {
  .pick-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .pick-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.pick-card {
  appearance: none;
  position: relative;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink);
  transition: all .15s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pick-card:hover { border-color: var(--ink-soft); }
.pick-card.is-selected {
  border-color: var(--terracotta);
  }
.pick-card__label { font-size: 14px; font-weight: 500; line-height: 1.4; }
.pick-card__desc { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
.pick-card__check {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.pick-card.is-selected .pick-card__check { display: flex; }

/* ---- Rank ---- */
.rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.rank-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  cursor: grab;
  transition: border-color .15s ease;
}
.rank-item:hover { border-color: var(--ink-soft); }
.rank-item.is-dragging { opacity: 0.5; cursor: grabbing; border-color: var(--terracotta); }
.rank-item__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  min-width: 22px;
}
.rank-item__body { flex: 1; min-width: 0; }
.rank-item__label { font-size: 14px; font-weight: 500; color: var(--ink); margin: 0; }
.rank-item__desc { font-size: 12px; color: var(--ink-soft); margin: 2px 0 0; line-height: 1.4; }
.rank-item__arrows { display: flex; flex-direction: column; gap: 2px; }
@media (min-width: 700px) {
  .rank-item__arrows { display: none; }
}
.rank-item__arrow {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--cream-line);
  width: 28px; height: 22px;
  border-radius: 0;
  font-size: 12px;
  color: var(--ink);
  cursor: pointer;
}
.rank-item__arrow:hover { background: var(--cream-deep); }

/* ---- Fillblank ---- */
.step-body--fillblank { display: flex; flex-direction: column; gap: var(--space-5); }
.fill-field { display: flex; flex-direction: column; }
.fill-field__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.fill-field__help {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 var(--space-2);
  line-height: 1.5;
}
.fill-field__input {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  resize: vertical;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease;
}
.fill-field__input:focus {
  outline: none;
  border-color: var(--terracotta);
}

/* ---- Summary ---- */
.summary-card {
  border: 1px solid rgba(175, 73, 59, 0.2);
  background: var(--terracotta-l);
  padding: var(--space-5) var(--space-5);
  border-radius: var(--radius);
}
.summary-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 var(--space-2);
  font-weight: 500;
}
.summary-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ---- Mirror (read-back checkpoints between processes) ---- */
.journey__eyebrow-sub {
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-left: 4px;
}
.mirror-card {
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--terracotta);
  padding: var(--space-5) var(--space-5);
  border-radius: var(--radius);
}
.mirror-row {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--cream-line);
}
.mirror-row:last-child { border-bottom: none; }
.mirror-row__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
  font-weight: 500;
}
.mirror-row__value {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.mirror-row__value--muted { color: var(--ink-soft); font-style: italic; font-family: var(--sans); font-size: 14px; }

.mirror-section {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--cream-line);
}
.mirror-section:last-child { border-bottom: none; }
.mirror-section__label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 var(--space-2);
  font-weight: 500;
}
.mirror-section__value {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

.mirror-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.mirror-chip {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 0;
  color: var(--ink);
}

/* ---- Inspiration aside (Lisa's example below a fillblank) ---- */
.step-inspiration {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px dashed var(--cream-line);
  border-radius: var(--radius-sm);
}
.step-inspiration__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 var(--space-2);
  font-weight: 500;
}
.step-inspiration__text {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  margin: 0;
}

/* ---- Dashboard: "Your brand so far" panel ---- */
.dash-deliverables {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-5);
  margin-top: var(--space-6);
}
.dash-deliverables__label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 var(--space-4);
  font-weight: 500;
}
.dash-deliverable {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--cream-line);
}
.dash-deliverable:last-child { border-bottom: none; }
.dash-deliverable__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 4px;
  font-weight: 500;
}
.dash-deliverable__value {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.dash-deliverable__value--pending {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
}
.dash-deliverable__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-deliverable__list li {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}
.dash-deliverable__more {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---- ai-craft step kind: source preview + Generate button + crafted options ---- */
.step-body--ai-craft {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.ai-craft__sources {
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
}
.ai-craft__sources-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 var(--space-2);
  font-weight: 500;
}
.ai-craft__details summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 500;
  padding: 4px 0;
  list-style: none;
}
.ai-craft__details summary::before {
  content: '▸ ';
  display: inline-block;
  transition: transform .15s ease;
}
.ai-craft__details[open] summary::before {
  content: '▾ ';
}
.ai-craft-source {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--cream-line);
}
.ai-craft-source__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 4px;
  font-weight: 500;
}
.ai-craft-source__value {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  white-space: pre-wrap;
}

.ai-craft__action {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.ai-craft__generate {
  align-self: flex-start;
}
.ai-craft__regen {
  align-self: flex-start;
  margin-top: var(--space-3);
}
.ai-craft__hint {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.ai-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.ai-option {
  appearance: none;
  position: relative;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  padding-right: 48px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  transition: all .15s ease;
}
.ai-option:hover {
  border-color: var(--ink-soft);
}
.ai-option.is-selected {
  border-color: var(--terracotta);
  background: var(--terracotta-l);
  }
.ai-option__text {
  display: block;
}
.ai-option__check {
  position: absolute;
  top: 50%;
  right: var(--space-4);
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.ai-option.is-selected .ai-option__check { display: flex; }

/* ---- ai-mirror: AI-polished reflection card with loading state ---- */
.mirror-card--ai {
  position: relative;
}
.mirror-card__text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  white-space: pre-wrap;
}
.mirror-card__loading {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
  font-style: italic;
}
.mirror-card__loading--error { color: var(--terracotta); font-style: normal; }
.ai-mirror__retry {
  appearance: none;
  background: none;
  border: none;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
}
.mirror-card__spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--cream-line);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: mirror-spin 0.8s linear infinite;
}
@keyframes mirror-spin {
  to { transform: rotate(360deg); }
}
.ai-mirror__regen {
  margin-top: var(--space-4);
  align-self: flex-start;
}

/* ---- Mirror list (brag bank in value-summary) ---- */
.mirror-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mirror-list__item {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: var(--space-4);
  border-left: 2px solid var(--terracotta);
}

/* ---- Brand Guide structured entries (journey deliverables) ---- */
.bg-entry { margin: 0 0 var(--space-6); }
.bg-entry:last-of-type { margin-bottom: var(--space-4); }
.bg-entry__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin: 0 0 var(--space-3);
}
.bg-entry__statement {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  max-width: 58ch;
}
.bg-entry__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.bg-entry__list li {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: var(--space-4);
  border-left: 2px solid var(--terracotta);
}
.bg-entry__def {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--cream-line);
}
.bg-entry__def:last-child { border-bottom: none; }
.bg-entry__def-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  margin: 0 0 4px;
}
.bg-entry__def-text {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ---- Slider step kind (voice tone dials, color compass) ---- */
.step-body--slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.slider-row__labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}
.slider-row__left,
.slider-row__right {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}
.slider-row__input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--cream-line);
  outline: none;
  cursor: pointer;
}
.slider-row__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--terracotta);
  border: none;
  border-radius: 50%;
  cursor: grab;
}
.slider-row__input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--terracotta);
  border: none;
  border-radius: 50%;
  cursor: grab;
}

/* ---- Single-price pricing grid + office hours schedule ---- */
.pricing__grid--single {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}
.coaching__schedule {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 var(--space-4);
}
