:root {
  --bg: #FDFAF6;
  --bg-alt: #F4EFE7;
  --fg: #1A1A1A;
  --fg-muted: #5C5856;
  --sage: #4A7C59;
  --amber: #E8A838;
  --border: #DDD8D0;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}

/* HERO */
.hero {
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 1rem;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 28ch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--fg);
  font-weight: 700;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 44ch;
}

/* Hero CTA */
.hero-demo-cta {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.15s;
  margin-top: 0.25rem;
  align-self: flex-start;
}
.hero-demo-cta:hover { background: #3a6347; }

/* PROBLEM */
.problem {
  padding: 5rem 2.5rem;
  background: var(--bg-alt);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  font-family: 'DM Sans', sans-serif;
}
.problem-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--fg);
  line-height: 1.4;
  max-width: 52ch;
  margin-bottom: 3.5rem;
  font-weight: 500;
}
.problem-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fact-number {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.fact-text {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* HOW IT WORKS */
.how {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-top: 0;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
}
.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
}
.step-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* FEATURES */
.features {
  padding: 5rem 2.5rem;
  background: var(--bg-alt);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
}
.feature-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 2.5rem;
  font-style: italic;
  max-width: 55ch;
  border-left: 3px solid var(--sage);
  padding-left: 1.75rem;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 52ch;
}

/* CLOSING */
.closing {
  padding: 5rem 2.5rem;
  background: var(--fg);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--bg);
  line-height: 1.25;
  text-align: center;
  max-width: 20ch;
}

/* FOOTER */
.footer {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stat-label { max-width: none; }
  .problem-facts {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .problem, .how, .features, .manifesto, .closing { padding: 3.5rem 1.5rem; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .nav { padding: 1rem 1.25rem; }
}

/* ── DEMO SECTION ────────────────────────────────────────────────────── */
.demo-section {
  padding: 5rem 2.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.demo-inner {
  max-width: 640px;
  margin: 0 auto;
}
.demo-header {
  margin-bottom: 2.5rem;
}
.demo-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.demo-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.demo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem;
}
.demo-step.hidden { display: none; }

/* Mood slider */
.mood-slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.mood-emoji-display {
  font-size: 3rem;
  line-height: 1;
  transition: all 0.15s;
}
.mood-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #dc2626 0%, #ea580c 25%, #d97706 50%, #65a30d 75%, var(--sage) 100%);
  outline: none;
  cursor: pointer;
}
.mood-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sage);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.mood-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sage);
  cursor: pointer;
}
.mood-slider-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.mood-slider-labels span:nth-child(2) {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage);
}

/* Demo buttons */
.demo-btn {
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.demo-btn:hover { background: #3a6347; }
.demo-btn:disabled { opacity: 0.6; cursor: default; }
.demo-btn-ghost {
  background: none;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}
.demo-btn-ghost:hover { border-color: var(--sage); color: var(--fg); }
.demo-btn-row {
  display: flex;
  gap: 0.75rem;
}
.demo-btn-row .demo-btn { flex: 1; width: auto; }
.demo-restart {
  display: block;
  margin: 1.25rem auto 0;
  width: auto;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Typing dots animation */
.typing-dots {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  height: 1.5rem;
}
.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: typingBounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Demo CTA cards */
.demo-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.demo-cta-card {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--bg);
}
.demo-cta-card:hover { border-color: var(--sage); background: #f0f4f1; }
.demo-cta-card .cta-icon { font-size: 1.5rem; }
.demo-cta-card strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.demo-cta-card p { margin: 0; font-size: 0.8rem; color: var(--fg-muted); }
.demo-cta-card .cta-arrow { margin-left: auto; color: var(--fg-muted); font-size: 1.1rem; }
.demo-cta-clinician { border-color: #c7d9cc; }
.demo-cta-recovery { border-color: #e8d9b8; }

/* Waitlist form */
.waitlist-form { margin-top: 1rem; padding: 1rem; background: var(--bg-alt); border-radius: 10px; }
.waitlist-label { font-size: 0.88rem; color: var(--fg-muted); margin-bottom: 0.65rem; }
.waitlist-input-row { display: flex; gap: 0.5rem; }
.waitlist-email-input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--fg);
}
.waitlist-email-input:focus { outline: none; border-color: var(--sage); }
.waitlist-submit-btn { width: auto; padding: 0.65rem 1.25rem; font-size: 0.9rem; }
.waitlist-msg { font-size: 0.85rem; margin-top: 0.5rem; }
.waitlist-msg-success { color: var(--sage); }
.waitlist-msg-error { color: #dc2626; }

/* Disclaimer */
.demo-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

/* Demo responsive */
@media (max-width: 600px) {
  .demo-section { padding: 3.5rem 1.25rem; }
  .demo-card { padding: 1.5rem; }
  .demo-cta-row { flex-direction: column; }
  .demo-cta-card { min-width: unset; }
  .waitlist-input-row { flex-direction: column; }
  .waitlist-submit-btn { width: 100%; }
}

/* ── AUTH PAGES ─────────────────────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.auth-logo {
  width: 48px;
  height: 48px;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.auth-title {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}
.auth-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}
.form-group .optional {
  font-weight: 400;
  color: var(--fg-muted);
  font-size: 0.8rem;
}
.form-group input {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--fg);
}
.form-group input:focus {
  outline: none;
  border-color: var(--sage);
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.25rem;
}
.btn-primary:hover { background: #3a6347; }
.auth-switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 1.5rem;
}
.auth-switch a { color: var(--sage); font-weight: 500; text-decoration: none; }

/* ── CHECK-IN FLOW ──────────────────────────────────────────────────── */
.checkin-page {
  min-height: calc(100vh - 80px);
  padding: 3rem 1.5rem 5rem;
}
.checkin-container {
  max-width: 560px;
  margin: 0 auto;
}
.checkin-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
}
.checkin-greeting {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
}
.checkin-date {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.checkin-step-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.step-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.step-dot {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.step-dot.active { background: var(--sage); }
.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.step-question {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
  line-height: 1.3;
}
.mood-scale {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.mood-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.mood-btn:hover { border-color: var(--sage); color: var(--sage); }
.mood-btn.selected { background: var(--sage); border-color: var(--sage); color: var(--white); }
.mood-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
}
.flag-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.flag-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg);
  transition: all 0.15s;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--fg);
  width: 100%;
  text-align: left;
}
.flag-toggle:hover { border-color: var(--sage); }
.flag-toggle.active { background: #f0f4f1; border-color: var(--sage); color: var(--sage); }
.flag-toggle input { display: none; }
.flag-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.flag-toggle.active .flag-icon { background: var(--sage); color: var(--white); }
.free-text-area {
  width: 100%;
  min-height: 120px;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.6;
  resize: vertical;
  background: var(--bg);
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.free-text-area:focus { outline: none; border-color: var(--sage); }
.text-hint {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.voice-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.voice-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.voice-btn:hover { border-color: var(--sage); color: var(--sage); }
.voice-btn.recording { background: #fef2f2; border-color: #dc2626; color: #dc2626; }
.voice-status { font-size: 0.78rem; color: var(--fg-muted); }
.coaching-response {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
  border-left: 3px solid var(--sage);
}
.coaching-response .response-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.risk-badge.none { background: #f0f4f1; color: var(--sage); }
.risk-badge.watch { background: #fef9ec; color: #b45309; }
.risk-badge.elevated { background: #fff7ed; color: #ea580c; }
.risk-badge.urgent { background: #fef2f2; color: #dc2626; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--fg); background: var(--bg-alt); }
.nav-links a.active { color: var(--sage); font-weight: 500; }

/* ── DASHBOARD ──────────────────────────────────────────────────────── */
.dashboard-page { min-height: calc(100vh - 80px); padding: 2.5rem 1.5rem; }
.dashboard-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.dashboard-greeting { display: flex; align-items: center; justify-content: space-between; }
.dashboard-greeting h1 { font-size: 1.8rem; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dash-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.dash-card-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.dash-card-sub { font-size: 0.82rem; color: var(--fg-muted); }
.dash-card.wide { grid-column: span 2; }
.history-table { width: 100%; border-collapse: collapse; }
.history-table th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.history-table td {
  padding: 0.85rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f0ece6;
  vertical-align: middle;
}
.mood-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 700;
}
.cta-card {
  background: var(--sage);
  border-radius: 14px;
  padding: 2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--white); }
.cta-card p { font-size: 0.875rem; opacity: 0.85; }
.btn-cta {
  background: var(--white);
  color: var(--sage);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-label { max-width: none; }
  .problem-facts { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .problem, .how, .features, .manifesto, .closing { padding: 3.5rem 1.5rem; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dash-card.wide { grid-column: span 1; }
  .cta-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .nav { padding: 1rem 1.25rem; }
  .auth-card { padding: 1.75rem; }
  .mood-btn { width: 40px; height: 40px; font-size: 0.95rem; }
  .checkin-step-container { padding: 1.5rem; }
}