/* ============================================================
   YET TO LIVE — COMPONENTS
   Mobile-first. Touch-friendly. Reused everywhere.
   ============================================================ */

/* ============================================================
   SITE HEADER + MOBILE NAV
   ============================================================ */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
header.site .bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--s-5);
  max-width: var(--container);
  margin-inline: auto;
}
@media (min-width: 720px) {
  header.site .bar { padding-inline: var(--s-8); }
}

.brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.brand .dot { color: var(--accent); }
.brand:hover { color: var(--ink); }

/* Desktop nav — hidden on mobile */
nav.desktop { display: none; }
@media (min-width: 900px) {
  nav.desktop {
    display: flex;
    align-items: center;
    gap: var(--s-1);
  }
  nav.desktop a {
    color: var(--ink-soft);
    text-decoration: none;
    padding: 10px 16px;
    font-size: var(--fs-small);
    font-weight: 500;
    border-radius: var(--r-pill);
    transition: background var(--t-fast), color var(--t-fast);
  }
  nav.desktop a:hover { background: var(--accent-mute); color: var(--ink); }
  nav.desktop a.active { color: var(--ink); background: var(--accent-mute); }
}

/* Theme toggle — visible on all sizes */
.theme-toggle {
  background: var(--card);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .theme-toggle {
    width: auto;
    padding: 9px 16px;
    margin-left: var(--s-3);
    gap: 8px;
  }
  .theme-toggle .label { display: inline; }
}
.theme-toggle .label { display: none; }
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile hamburger */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: var(--s-2);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--accent); }
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger .bars { display: flex; flex-direction: column; gap: 4px; }
.hamburger .bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: var(--s-5);
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-10);
  flex: 1;
}
.mobile-nav-list a {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--rule-soft);
  letter-spacing: -0.01em;
}
.mobile-nav-list a:hover { color: var(--accent); }
.mobile-nav-cta {
  padding-top: var(--s-6);
  border-top: 1px solid var(--rule);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site {
  margin-top: var(--s-20);
  padding: var(--s-12) 0 var(--s-8);
  border-top: 1px solid var(--rule);
}
footer.site .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-10);
}
@media (min-width: 720px) {
  footer.site .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
footer.site .footer-brand-block .brand { font-size: 26px; margin-bottom: var(--s-3); display: inline-block; }
footer.site .footer-brand-block p { color: var(--ink-soft); max-width: 320px; font-size: var(--fs-small); margin: 0; }
footer.site h5 {
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--s-4);
}
footer.site ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
footer.site ul a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: var(--fs-small);
}
footer.site ul a:hover { color: var(--accent); }
footer.site .footer-bottom {
  border-top: 1px solid var(--rule-soft);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: var(--fs-tiny);
  color: var(--ink-mute);
}

/* ============================================================
   BUTTONS — min 48px tall for touch
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 16px 28px;
  min-height: var(--tap-min);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}
.btn-block { width: 100%; }
@media (min-width: 720px) {
  .btn-block-mobile { width: auto; }
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }

.btn-ghost { color: var(--ink); }
.btn-ghost:hover { background: var(--accent-mute); }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--ink); }

.btn-sm { padding: 11px 18px; font-size: var(--fs-small); min-height: 44px; }
.btn-lg { padding: 20px 32px; font-size: var(--fs-lead); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* ============================================================
   FORMS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field label {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink);
}
.field .help { font-size: var(--fs-tiny); color: var(--ink-soft); }
.field .err { font-size: var(--fs-tiny); color: var(--error); }

.input, .textarea, .select {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 16px; /* prevents iOS zoom-on-focus */
  color: var(--ink);
  font-family: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  min-height: var(--tap-min);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-mute); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-mute);
}
.textarea { resize: vertical; min-height: 120px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b5d4b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.radio-row, .check-row { display: flex; flex-direction: column; gap: var(--s-3); }
.radio, .check {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  cursor: pointer;
  padding: 12px;
  font-size: var(--fs-body);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--card);
  transition: border-color var(--t-fast), background var(--t-fast);
  min-height: var(--tap-min);
}
.radio:hover, .check:hover { border-color: var(--accent-soft); }
.radio:has(input:checked), .check:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-mute);
}
.radio input, .check input {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--rule);
  background: var(--card);
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--t-fast), background var(--t-fast);
  margin-top: 2px;
}
.radio input { border-radius: 50%; }
.check input { border-radius: 6px; }
.radio input:checked, .check input:checked { border-color: var(--accent); background: var(--accent); }
.radio input:checked { background-image: radial-gradient(circle, #fff 35%, var(--accent) 38%); }
.check input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M1 5l4 4 8-8'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 30px;
  cursor: pointer;
  flex-shrink: 0;
}
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.switch .slider {
  position: absolute; inset: 0;
  background: var(--rule);
  border-radius: 15px;
  transition: background var(--t-base);
}
.switch .slider::before {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  top: 3px; left: 3px;
  background: var(--card);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base);
}
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(22px); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
  .card { padding: var(--s-8); }
}
.card-flat { box-shadow: none; }
.card-soft { background: var(--bg-soft); }
.card-accent { background: var(--accent-mute); border-color: var(--accent-soft); }
.card-dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.card-dark h2, .card-dark h3, .card-dark h4 { color: var(--bg); }
.card-dark p { color: rgba(255, 255, 255, 0.7); }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}
@media (min-width: 960px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Pillar card */
.pillar h3 {
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--s-3);
}
.pillar p { margin: 0; color: var(--ink-soft); font-size: var(--fs-small); line-height: 1.55; }

/* Quote card */
.quote-card {
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  padding: var(--s-10) var(--s-6);
  position: relative;
}
@media (min-width: 720px) { .quote-card { padding: var(--s-12) var(--s-10); } }
.quote-card::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 8px;
  left: 16px;
}
.quote-card blockquote {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 var(--s-5);
  color: var(--ink);
  line-height: 1.45;
  padding-left: var(--s-6);
}
@media (min-width: 720px) { .quote-card blockquote { font-size: 26px; padding-left: var(--s-8); } }
.quote-card cite {
  font-style: normal;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  padding-left: var(--s-6);
  display: block;
}
@media (min-width: 720px) { .quote-card cite { padding-left: var(--s-8); } }

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pill-accent { background: var(--accent-mute); color: var(--accent); }
.pill-neutral { background: var(--card); color: var(--ink-soft); border: 1px solid var(--rule); }
.pill-success { background: rgba(74, 124, 78, 0.12); color: var(--success); }
.pill-warn { background: rgba(192, 138, 46, 0.14); color: var(--warn); }
.pill-error { background: rgba(162, 59, 43, 0.12); color: var(--error); }

/* ============================================================
   STATS — actually big this time
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: var(--s-8); }
}
.stat .num {
  font-family: var(--font-head);
  font-size: var(--fs-stat);
  font-weight: 500;
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: var(--s-3);
  display: block;
}
.stat .label {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: var(--s-12) 0 var(--s-10); }
@media (min-width: 720px) { .hero { padding: var(--s-20) 0 var(--s-16); } }
.hero .eyebrow {
  display: inline-block;
  background: var(--accent-mute);
  color: var(--accent);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  max-width: 820px;
}
.hero p.sub {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 0 var(--s-8);
}
.hero .ctas { display: flex; flex-direction: column; gap: var(--s-3); }
@media (min-width: 540px) { .hero .ctas { flex-direction: row; flex-wrap: wrap; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: var(--s-10) var(--s-6);
  text-align: center;
  margin-inline: var(--s-5);
}
@media (min-width: 720px) {
  .cta-band { padding: var(--s-16) var(--s-12); margin-inline: var(--s-8); }
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-5);
}
.cta-band p {
  font-size: var(--fs-lead);
  margin: 0 auto var(--s-8);
  max-width: 540px;
  opacity: 0.85;
}
.cta-band .btn-primary { background: var(--bg); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--accent); color: #fff; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: var(--s-2); }
.faq details {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq details[open] { border-color: var(--accent-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  font-weight: 500;
  font-size: var(--fs-body);
  min-height: var(--tap-min);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--accent);
  width: 28px;
  text-align: center;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .answer {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--ink-soft);
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* ============================================================
   FEATURE LIST (numbered)
   ============================================================ */
.features { display: flex; flex-direction: column; gap: var(--s-5); }
.features .feat {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
@media (min-width: 720px) {
  .features .feat { grid-template-columns: 80px 1fr; gap: var(--s-6); padding: var(--s-6) 0; }
}
.features .feat:last-child { border-bottom: 0; }
.features .feat .num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
}
.features .feat h4 { margin: 0 0 6px; font-family: var(--font-head); font-size: var(--fs-h4); }
.features .feat p { margin: 0; color: var(--ink-soft); font-size: var(--fs-small); line-height: 1.55; }

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-6);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
}
@media (min-width: 720px) { .price-card { padding: var(--s-12) var(--s-10); } }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.price-card .pill { align-self: flex-start; }
.price-card .price-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}
.price-card .price {
  font-family: var(--font-head);
  font-size: clamp(48px, 12vw, 72px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-card .price .currency { font-size: 0.5em; color: var(--ink-soft); vertical-align: top; margin-right: 4px; }
.price-card .price-was { font-size: var(--fs-h4); color: var(--ink-mute); text-decoration: line-through; }
.price-card .price-note { font-size: var(--fs-small); color: var(--ink-soft); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-small);
  color: var(--ink);
  line-height: 1.5;
}
.price-card li::before {
  content: "\2192";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   VOICE PROMPT — idle, recording, done
   ============================================================ */
.voice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-8);
  border-radius: var(--r-xl);
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
}
.voice-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  flex-shrink: 0;
}
.voice-btn:hover { transform: scale(1.04); }
.voice-btn:active { transform: scale(0.97); }
.voice-btn svg { width: 36px; height: 36px; }
.voice-btn.recording {
  background: var(--error);
  animation: pulse-ring 1.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(162, 59, 43, 0.5); }
  100% { box-shadow: 0 0 0 28px rgba(162, 59, 43, 0); }
}
.voice-btn.done { background: var(--success); }

.voice-label {
  font-size: var(--fs-lead);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.voice-meta {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin: 0;
}
.voice-wave {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 32px;
}
.voice-wave span {
  display: block;
  width: 4px;
  background: var(--accent);
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
}
.voice-wave span:nth-child(2) { animation-delay: 0.1s; }
.voice-wave span:nth-child(3) { animation-delay: 0.2s; }
.voice-wave span:nth-child(4) { animation-delay: 0.3s; }
.voice-wave span:nth-child(5) { animation-delay: 0.4s; }
.voice-wave span:nth-child(6) { animation-delay: 0.5s; }
.voice-wave span:nth-child(7) { animation-delay: 0.6s; }
@keyframes wave {
  0%, 100% { height: 8px; }
  50% { height: 28px; }
}

.voice-actions { display: flex; gap: var(--s-2); justify-content: center; }

/* ============================================================
   THINKING / TRANSITION (between onboarding steps)
   ============================================================ */
.thinking-screen {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-10) var(--s-5);
  text-align: center;
}
.thinking-dots {
  display: inline-flex;
  gap: 8px;
  margin-bottom: var(--s-6);
}
.thinking-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-fade 1.4s ease-in-out infinite;
}
.thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.thinking-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-fade {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}
.thinking-title {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  max-width: 600px;
}
.thinking-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0;
}

/* ============================================================
   PROGRESS — onboarding progress bar
   ============================================================ */
.progress {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
}
.progress-track {
  flex: 1;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--t-slow);
}
.progress-label {
  font-size: var(--fs-tiny);
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ============================================================
   IMAGE PICKER TILE
   ============================================================ */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (min-width: 540px) { .image-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .image-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); } }
.image-tile {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 3px solid transparent;
  background: var(--bg-soft) center/cover no-repeat;
  position: relative;
  cursor: pointer;
  transition: transform var(--t-fast), border-color var(--t-fast);
  overflow: hidden;
}
.image-tile:hover { transform: translateY(-2px); border-color: var(--accent-soft); }
.image-tile.selected { border-color: var(--accent); }
.image-tile.selected::after {
  content: "\2713";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.image-tile .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-3);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 500;
}

/* ============================================================
   CARD SORT (binary choice)
   ============================================================ */
.card-binary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 720px) { .card-binary { grid-template-columns: 1fr 1fr; gap: var(--s-4); } }
.card-binary .choice {
  background: var(--card);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-6);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--t-fast), background var(--t-fast);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-binary .choice:hover { border-color: var(--accent-soft); background: var(--bg-soft); }
.card-binary .choice.selected { border-color: var(--accent); background: var(--accent-mute); }
.card-binary .choice .label {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

/* ============================================================
   ONBOARDING LAYOUT
   ============================================================ */
.onboard {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
}
.onboard-progress {
  padding: 0 var(--s-5);
  border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 720px) { .onboard-progress { padding: 0 var(--s-8); } }
.onboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-8) var(--s-5);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 720px) { .onboard-main { padding: var(--s-16) var(--s-8); } }
.onboard-question {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  line-height: 1.2;
}
.onboard-helper {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin: 0 0 var(--s-8);
  line-height: 1.5;
}
.onboard-footer {
  border-top: 1px solid var(--rule-soft);
  padding: var(--s-4) var(--s-5);
  background: var(--bg);
  position: sticky;
  bottom: 0;
  z-index: 10;
}
@media (min-width: 720px) { .onboard-footer { padding: var(--s-5) var(--s-8); } }
.onboard-footer .bar {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  align-items: center;
}
.btn-skip {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: var(--fs-small);
  text-decoration: underline;
  cursor: pointer;
  min-height: var(--tap-min);
  padding: 0 var(--s-3);
}

/* ============================================================
   GENERATING (Direction being written — long wait)
   ============================================================ */
.generating {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-10) var(--s-5);
  text-align: center;
  background: var(--bg);
}
.generating .glyph {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--s-10);
  border-radius: 50%;
  background: var(--accent-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.generating .glyph::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
  animation: ring-grow 3s ease-out infinite;
}
.generating .glyph::after {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
  animation: ring-grow 3s ease-out infinite;
  animation-delay: 1.5s;
}
@keyframes ring-grow {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}
.generating .glyph svg { width: 56px; height: 56px; color: var(--accent); }
.generating h1 {
  font-family: var(--font-head);
  font-size: var(--fs-h1);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  max-width: 680px;
  line-height: 1.1;
}
.generating p {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto var(--s-3);
  line-height: 1.5;
}
.generating .status {
  font-size: var(--fs-small);
  color: var(--ink-mute);
  margin-top: var(--s-8);
  font-family: ui-monospace, "Cascadia Code", monospace;
}

/* ============================================================
   SECTION FRAMING (doc / utility)
   ============================================================ */
.section { padding: var(--s-12) 0; }
@media (min-width: 720px) { .section { padding: var(--s-16) 0; } }
.section-eyebrow {
  display: block;
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.section-title {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  font-weight: 500;
  margin: 0 0 var(--s-5);
  letter-spacing: -0.015em;
  max-width: 820px;
}
.section-desc {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 var(--s-10);
  line-height: 1.5;
}

/* ============================================================
   PROSE PAGE LAYOUT (terms, privacy, refund — long static pages)
   ============================================================ */
.policy {
  padding: var(--s-12) 0 var(--s-16);
}
.policy h1 {
  font-family: var(--font-head);
  font-size: var(--fs-h1);
  font-weight: 500;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.02em;
}
.policy .updated { color: var(--ink-soft); font-size: var(--fs-small); margin: 0 0 var(--s-12); }
.policy h2 {
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin: var(--s-10) 0 var(--s-3);
}
.policy p, .policy li { color: var(--ink); line-height: 1.7; font-size: var(--fs-body); margin: 0 0 var(--s-4); }
.policy ul, .policy ol { padding-left: var(--s-6); }

/* ============================================================
   THANK YOU / CONFIRMATION
   ============================================================ */
.thank-you {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-10) var(--s-5);
  max-width: 640px;
  margin: 0 auto;
}
.thank-you .mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: var(--s-8);
}
.thank-you h1 {
  font-family: var(--font-head);
  font-size: var(--fs-h1);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-4);
  line-height: 1.1;
}
.thank-you .lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin: 0 0 var(--s-8);
  line-height: 1.5;
}
.thank-you .next { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-8); }

/* ============================================================
   DIRECTION READER LAYOUT
   ============================================================ */
.direction-reader {
  padding: var(--s-12) 0 var(--s-20);
}
.direction-reader .meta {
  text-align: center;
  margin-bottom: var(--s-12);
}
.direction-reader .meta .name {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-2);
}
.direction-reader .meta .date {
  color: var(--ink-soft);
  font-size: var(--fs-small);
  margin: 0;
}
.direction-reader .toc {
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin-bottom: var(--s-10);
}
.direction-reader .toc h4 {
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--s-4);
}
.direction-reader .toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.direction-reader .toc li {
  counter-increment: toc;
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.direction-reader .toc li:last-child { border-bottom: 0; }
.direction-reader .toc li::before {
  content: counter(toc, decimal-leading-zero) " — ";
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 500;
}
.direction-reader .toc a { color: var(--ink); text-decoration: none; font-size: var(--fs-body); }
.direction-reader .toc a:hover { color: var(--accent); }

/* ============================================================
   DASHBOARD (Memory home)
   ============================================================ */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .dash-grid { grid-template-columns: 2fr 1fr; } }

.dash-tile {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.dash-tile h4 {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0;
}
.dash-tile .meta { font-size: var(--fs-small); color: var(--ink-soft); margin: 0; }

/* ============================================================
   UTILITY
   ============================================================ */
.divider { height: 1px; background: var(--rule-soft); border: 0; margin: var(--s-10) 0; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.gap-3 { gap: var(--s-3); }
.gap-5 { gap: var(--s-5); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s-3); }
.mt-5 { margin-top: var(--s-5); }
.mt-8 { margin-top: var(--s-8); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-8 { margin-bottom: var(--s-8); }

/* ============================================================
   TEASER SCREEN (Pattern Signal / Pattern Preview)
   ============================================================ */
.teaser-screen {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-10) var(--s-5);
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) { .teaser-screen { padding: var(--s-16) var(--s-8); } }

.teaser-eyebrow {
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-5);
}
.teaser-card {
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-6);
  position: relative;
  margin-bottom: var(--s-8);
}
@media (min-width: 720px) { .teaser-card { padding: var(--s-12) var(--s-10); } }
.teaser-card::before {
  content: "";
  position: absolute;
  top: 0; left: var(--s-8);
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}
@media (min-width: 720px) { .teaser-card::before { left: var(--s-10); } }
.teaser-prose {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
@media (min-width: 720px) { .teaser-prose { font-size: 26px; line-height: 1.45; } }
.teaser-prose p + p { margin-top: var(--s-5); }
.teaser-prose em { font-style: italic; color: var(--accent); font-weight: 500; }

.teaser-next {
  text-align: center;
}
.teaser-next-label {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin: 0 0 var(--s-4);
}

/* ============================================================
   EMAIL GATE — intimate single-field
   ============================================================ */
.gate-screen {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-10) var(--s-5);
  max-width: 520px;
  margin: 0 auto;
}
.gate-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  line-height: 1.15;
}
.gate-helper {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin: 0 0 var(--s-8);
  line-height: 1.5;
}
.gate-form { display: flex; flex-direction: column; gap: var(--s-3); }

/* ============================================================
   PRICE GATE — two doors side by side
   ============================================================ */
.price-gate {
  padding: var(--s-10) 0 var(--s-16);
}
.price-gate-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s-10);
  padding: 0 var(--s-5);
}
.price-gate-eyebrow {
  display: inline-block;
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.price-gate-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  line-height: 1.15;
}
.price-gate-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.price-doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 760px) { .price-doors { grid-template-columns: 1fr 1fr; gap: var(--s-6); padding: 0 var(--s-8); } }

.door {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  box-shadow: var(--shadow-md);
  position: relative;
}
@media (min-width: 760px) { .door { padding: var(--s-10) var(--s-8); } }
.door.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
}
.door .door-tag {
  align-self: flex-start;
}
.door .door-name {
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin: 0;
}
.door .door-price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.door .door-amount {
  font-family: var(--font-head);
  font-size: clamp(44px, 9vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.door .door-amount .cur { font-size: 0.5em; color: var(--ink-soft); margin-right: 4px; vertical-align: top; }
.door .door-period {
  font-size: var(--fs-h4);
  color: var(--ink-soft);
}
.door .door-blurb {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.door ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.door li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--fs-small);
  color: var(--ink);
  line-height: 1.5;
}
.door li::before {
  content: "\2192";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.door .scarcity {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--accent-mute);
  border-radius: var(--r-md);
  font-size: var(--fs-tiny);
}
.door .scarcity-bar {
  flex: 1;
  height: 6px;
  background: var(--accent-soft);
  border-radius: 3px;
  overflow: hidden;
}
.door .scarcity-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.door .scarcity-text {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.price-gate-trust {
  text-align: center;
  margin-top: var(--s-10);
  padding: 0 var(--s-5);
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.price-gate-trust strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   CONFIRMATION (post-checkout "tomorrow morning")
   ============================================================ */
.confirm-screen {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-10) var(--s-5);
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.confirm-glyph {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--s-8);
  border-radius: 50%;
  background: var(--accent-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.confirm-glyph::before, .confirm-glyph::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
  animation: confirm-ring 3s ease-out infinite;
}
.confirm-glyph::after { inset: -32px; animation-delay: 1.5s; }
@keyframes confirm-ring {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}
.confirm-glyph svg { width: 48px; height: 48px; color: var(--accent); }
.confirm-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  line-height: 1.1;
}
.confirm-time {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 18px;
  background: var(--accent-mute);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--s-6);
}
.confirm-body {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin: 0 0 var(--s-8);
  line-height: 1.55;
}
.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: center;
}

/* ============================================================
   DIRECTION READER — live interactive page
   ============================================================ */
.dr-page {
  padding: var(--s-12) 0 var(--s-20);
}
.dr-header {
  text-align: center;
  margin-bottom: var(--s-12);
  padding: 0 var(--s-5);
}
.dr-header .pill { margin-bottom: var(--s-4); }
.dr-name {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
  line-height: 1.1;
}
.dr-meta {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin: 0;
}

.dr-section {
  max-width: 760px;
  margin: var(--s-16) auto 0;
  padding: 0 var(--s-5);
}
@media (min-width: 720px) { .dr-section { padding: 0 var(--s-8); } }
.dr-section:first-of-type { margin-top: 0; }
.dr-section-eyebrow {
  display: block;
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.dr-section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-6);
  line-height: 1.15;
}
.dr-prose {
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink);
}
@media (min-width: 720px) { .dr-prose { font-size: 19px; } }
.dr-prose p { margin: 0 0 var(--s-5); }
.dr-prose p.lead {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
@media (min-width: 720px) { .dr-prose p.lead { font-size: 26px; } }
.dr-prose blockquote {
  margin: var(--s-8) 0;
  padding-left: var(--s-5);
  border-left: 3px solid var(--accent);
  font-family: var(--font-head);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
}
@media (min-width: 720px) { .dr-prose blockquote { font-size: 22px; padding-left: var(--s-6); } }
.dr-prose em { font-style: italic; }

/* The big animated cost stats inside the prose */
.dr-cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin: var(--s-8) 0;
  padding: var(--s-6);
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule-soft);
}
@media (min-width: 720px) { .dr-cost-grid { grid-template-columns: repeat(4, 1fr); padding: var(--s-8); } }
.dr-cost {
  text-align: center;
}
.dr-cost .num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 500;
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
}
.dr-cost .label {
  font-size: var(--fs-tiny);
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Life map / relationship graph placeholder */
.dr-viz {
  margin: var(--s-8) 0;
  padding: var(--s-6);
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule-soft);
}
.dr-viz-title {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--s-3);
}
.dr-viz-canvas {
  min-height: 240px;
  background:
    radial-gradient(circle at 30% 40%, var(--accent-mute) 0, transparent 50px),
    radial-gradient(circle at 65% 30%, var(--accent-soft) 0, transparent 40px),
    radial-gradient(circle at 50% 70%, var(--accent-mute) 0, transparent 60px),
    radial-gradient(circle at 80% 65%, var(--accent-soft) 0, transparent 35px),
    radial-gradient(circle at 20% 75%, var(--accent-mute) 0, transparent 45px),
    var(--card);
  border-radius: var(--r-md);
  border: 1px dashed var(--rule);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  font-size: var(--fs-tiny);
  font-style: italic;
}
.dr-viz-canvas::after { content: "Life map visualization renders here from working map data"; padding: 0 var(--s-5); text-align: center; }
.dr-viz-caption {
  margin: var(--s-3) 0 0;
  font-size: var(--fs-tiny);
  color: var(--ink-soft);
  text-align: center;
}

/* Interactive move card */
.dr-moves { display: flex; flex-direction: column; gap: var(--s-4); margin: var(--s-6) 0; }
.dr-move {
  background: var(--card);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color var(--t-fast), background var(--t-fast);
}
@media (min-width: 720px) { .dr-move { padding: var(--s-6); } }
.dr-move.done { border-color: var(--success); background: rgba(74, 124, 78, 0.06); }
.dr-move-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.dr-move-when {
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.dr-move.done .dr-move-when { color: var(--success); }
.dr-move-status {
  font-size: var(--fs-tiny);
  color: var(--ink-mute);
}
.dr-move-prose {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.dr-move-actions {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.dr-move-actions .btn-sm { min-height: 40px; padding: 9px 14px; }
.dr-move-update {
  background: var(--bg-soft);
  border: 1px dashed var(--rule);
  border-radius: var(--r-md);
  padding: var(--s-3);
  font-size: var(--fs-small);
  color: var(--ink-soft);
  font-style: italic;
  margin: var(--s-2) 0 0;
}

/* ============================================================
   DASHBOARD — ad-hoc updates + Memory home
   ============================================================ */
.dash-hero {
  padding: var(--s-10) 0 var(--s-6);
}
.dash-hello {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  line-height: 1.15;
}
.dash-status-row {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}

.dash-update-card {
  background: var(--accent-mute);
  border: 1px solid var(--accent-soft);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.dash-update-card h4 {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--s-3);
  color: var(--accent);
}
.dash-update-card p { font-size: var(--fs-small); color: var(--ink); margin: 0 0 var(--s-4); }

.dash-memory-tile {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.dash-memory-tile .when {
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.dash-memory-tile .what {
  font-size: var(--fs-small);
  color: var(--ink);
  line-height: 1.5;
}
.dash-memory-tile .what em { color: var(--accent); font-style: normal; font-weight: 600; }

.dash-membership {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.dash-membership h4 { color: var(--bg); margin: 0 0 var(--s-3); font-family: var(--font-head); font-size: var(--fs-h4); }
.dash-membership .meta { color: rgba(255,255,255,0.7); font-size: var(--fs-small); margin: 0 0 var(--s-4); }
.dash-membership a { color: var(--bg); text-decoration-color: rgba(255,255,255,0.4); }
