/* Self-hosted fonts. SIL Open Font License 1.1.
   Files under assets/fonts/. License texts alongside each family. */
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Variable.ttf') format('truetype-variations'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Italic-Variable.ttf') format('truetype-variations'); font-weight: 100 900; font-style: italic; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('fonts/Fraunces-Variable.ttf') format('truetype-variations'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('fonts/Fraunces-Italic-Variable.ttf') format('truetype-variations'); font-weight: 100 900; font-style: italic; font-display: swap; }

/* Day 1 Practical Landing — cream primary, forest-green ink, ad-style */

:root {
  /* Palette (matches ad references) */
  --cream: #F5EFE4;
  --cream-soft: #FBF7EE;
  --cream-warm: #EFE7D6;
  --ink: #1F2E23;           /* forest green — headings, phone frame, chips */
  --ink-soft: #384A3E;
  --body: #46554A;          /* body copy */
  --muted: #7D8A80;
  --line: #DCD2BE;
  --line-soft: #E9E1D0;

  --terracotta: #C46A4E;
  --terracotta-dark: #A8553B;
  --terracotta-tint: #F5D9CE;

  /* Pastel phase tints (from the ads) */
  --pink: #F1D9D6;          /* menstrual */
  --sage: #DDE4CE;          /* follicular */
  --gold: #EAE0C1;          /* ovulatory */
  --mauve: #E4D3DE;         /* luteal */
  --pink-ink: #8A3A47;
  --sage-ink: #3E5232;
  --gold-ink: #7C6626;
  --mauve-ink: #5E3D5B;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* Type */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(40px, 6.5vw, 68px); line-height: 1.05; }
h1 em { font-style: italic; color: var(--terracotta); font-weight: 500; }
h2 { font-size: clamp(30px, 4.4vw, 44px); line-height: 1.12; margin-bottom: 18px; }
h2 em { font-style: italic; color: var(--terracotta); font-weight: 500; }
h3 { font-size: 20px; line-height: 1.3; }
p { margin: 0 0 14px; color: var(--body); }
p.lead { font-size: 19px; color: var(--ink-soft); line-height: 1.55; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 18px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  margin: 18px 0;
  position: relative;
}
.divider::after {
  content: "";
  position: absolute;
  right: -14px;
  top: -4px;
  width: 8px; height: 8px;
  background: var(--terracotta);
  transform: rotate(45deg);
}

/* Nav */
.nav {
  padding: 20px 0 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav .links { font-size: 14px; }
.nav .links a { color: var(--ink-soft); margin-left: 20px; }
.nav .links a:hover { color: var(--ink); }
@media (max-width: 520px) {
  .nav .links a { margin-left: 12px; font-size: 13px; }
}
@media (max-width: 400px) {
  .nav .links { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  box-shadow: 0 4px 14px rgba(196, 106, 78, 0.28);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(196, 106, 78, 0.34);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--cream-soft); }
.btn-block { width: 100%; }

/* Sections */
section { padding: 76px 0; }
section.alt { background: var(--cream-warm); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
@media (max-width: 640px) {
  section { padding: 56px 0; }
}

/* Hero — split layout */
.hero { padding: 40px 0 72px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
}
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 540px; margin-bottom: 8px; }

/* Signup card */
.signup-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 6px 24px rgba(31, 46, 35, 0.05);
  max-width: 460px;
  margin-top: 26px;
}
.above-form {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 16px;
}
.signup-form .field { margin-bottom: 14px; }
.signup-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.signup-form input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.signup-form input:focus {
  border-color: var(--terracotta);
  background: #fff;
}
.signup-form .hint {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
}
.signup-form button {
  margin-top: 6px;
  width: 100%;
}
.form-message {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}
.form-message.success { color: var(--sage-ink); }
.form-message.error { color: var(--terracotta-dark); }
.legal {
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* iPhone-style device frame */
.device {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  border-radius: 46px;
  background:
    linear-gradient(155deg, #2A3A2E 0%, #1B2921 50%, #0F1814 100%);
  padding: 10px;
  box-shadow:
    0 40px 80px -24px rgba(15, 24, 20, 0.55),
    0 18px 36px -14px rgba(15, 24, 20, 0.35),
    inset 0 0 0 1.5px rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.05),
    inset 0 1.5px 0 rgba(255,255,255,0.14);
}
/* Metallic side rails (bezel edges) */
.device::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 43px;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0) 8%,
      rgba(255,255,255,0) 92%,
      rgba(255,255,255,0.10) 100%);
  z-index: 1;
}
.device::before {
  /* Dynamic island */
  content: "";
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #05100b;
  border-radius: 999px;
  z-index: 3;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 1px 2px rgba(0,0,0,0.4);
}
.device .screen {
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 9 / 19.5;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.device .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Physical side buttons */
.device .btn-left, .device .btn-right {
  position: absolute;
  background: linear-gradient(180deg, #1E2C24 0%, #131E17 100%);
  border-radius: 2px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    -1px 0 2px rgba(0,0,0,0.3);
  z-index: 0;
}
.device .btn-left {
  left: -3px;
  width: 3px;
}
.device .btn-left.mute { top: 88px; height: 26px; }
.device .btn-left.vol-up { top: 128px; height: 46px; }
.device .btn-left.vol-down { top: 184px; height: 46px; }
.device .btn-right {
  right: -3px;
  width: 3px;
}
.device .btn-right.power { top: 130px; height: 78px; }
.device-lg { max-width: 340px; }
@media (min-width: 900px) {
  .device-lg { max-width: 360px; }
}
/* Standalone cream plan-calendar card that sits under the Section 2 text */
.plan-calendar-card {
  margin: 28px 0 0;
  padding: 18px 20px 22px;
  background: var(--cream, #F5EFE4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(31, 46, 35, 0.08), 0 1px 3px rgba(31, 46, 35, 0.05);
  border: 1px solid rgba(31, 46, 35, 0.08);
  max-width: 460px;
}
.plan-calendar-card img {
  display: block;
  width: 100%;
  height: auto;
}
.plan-calendar-card figcaption {
  padding: 12px 4px 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* Hero right column: device + floating SMS */
.hero-visual {
  position: relative;
  display: flex; justify-content: center;
  padding: 20px 0;
}
.hero-visual .sms-float {
  position: absolute;
  right: -24px;
  top: 42%;
  transform: translateY(-30%);
  max-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px 20px 4px 20px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(31, 46, 35, 0.18), 0 4px 10px rgba(31,46,35,0.08);
  z-index: 4;
}
@media (max-width: 900px) {
  .hero-visual .sms-float { right: -8px; }
}
/* Partner variant: bubble on the LEFT of the phone */
.hero-visual .sms-float.sms-partner {
  right: auto;
  left: -24px;
  border-radius: 20px 20px 20px 4px;
}
@media (max-width: 900px) {
  .hero-visual .sms-float.sms-partner { left: -8px; right: auto; }
}
.hero-visual .sms-float .from {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 6px;
}
.hero-visual .sms-float p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.hero-visual .sms-float p + p { margin-top: 8px; }
@media (max-width: 640px) {
  .hero-visual { flex-direction: column; align-items: center; gap: 16px; }
  .hero-visual .sms-float,
  .hero-visual .sms-float.sms-partner {
    position: static;
    left: auto; right: auto;
    transform: none;
    margin: -12px auto 0;
    max-width: 92%;
    border-radius: 20px 20px 20px 20px;
  }
}

/* SMS bubble (used in sections) */
.sms-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px 22px 4px 22px;
  padding: 20px 22px;
  max-width: 480px;
  margin: 20px auto;
  box-shadow: 0 6px 20px rgba(31, 46, 35, 0.06);
}
.sms-bubble .from {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 8px;
}
.sms-bubble p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}
.sms-bubble p:last-child { margin-bottom: 0; }

/* Two-col text-and-device layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 60px; }
  .split.reverse .split-copy { order: 2; }
  .split.reverse .split-visual { order: 1; }
}
.split-copy .divider { margin: 22px 0; }

/* Four-card grid (what the morning text can include) */
.cards-4 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .cards-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.card4 {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 24px;
}
.card4 .chip {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--terracotta-tint);
  color: var(--terracotta);
  margin-bottom: 16px;
}
.card4 .chip svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* Each morning-text category gets its own tint, echoing the app's category colors */
.card4 .chip-food { background: #F5DACB; color: #B7532F; }        /* warm terracotta */
.card4 .chip-movement { background: #E4E4CE; color: #5F6B32; }    /* sage-olive */
.card4 .chip-energy { background: #EAE0C1; color: #7C6626; }      /* gold */
.card4 .chip-connection { background: #F1D6D0; color: #A44A55; }  /* warm rose */
.card4 h3 { margin-bottom: 6px; }
.card4 p { margin: 0; font-size: 15px; color: var(--body); }

/* Comparison grid */
.compare {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; } }
.cmp {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px;
}
.cmp .h {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cmp.old .h { color: var(--muted); }
.cmp.new .h { color: var(--terracotta); }
.cmp ul { list-style: none; margin: 0; padding: 0; }
.cmp li {
  font-size: 15px;
  color: var(--body);
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.cmp li:last-child { border-bottom: 0; }
.cmp.old li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 2px;
  background: var(--muted);
  border-radius: 2px;
}
.cmp.new li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}
.cmp.new li {
  color: var(--ink);
  font-weight: 500;
}

/* Phase rows (from ad reference) */
.phase-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.phase-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--phase-bg, var(--cream-soft));
  border-radius: 18px;
  padding: 18px 22px;
}
.phase-row .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--phase-icon-bg, var(--ink));
  display: flex; align-items: center; justify-content: center;
  color: var(--phase-icon-fg, #fff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}
.phase-row .icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.phase-row .label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--phase-ink, var(--ink));
  margin: 0 0 4px;
  font-weight: 500;
}
.phase-row p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
/* Icon backgrounds are a deeper shade of the row tint, not black */
.phase-menstrual {
  --phase-bg: var(--pink);
  --phase-ink: var(--pink-ink);
  --phase-icon-bg: #C88B92;
  --phase-icon-fg: #FBECEB;
}
.phase-follicular {
  --phase-bg: var(--sage);
  --phase-ink: var(--sage-ink);
  --phase-icon-bg: #94A47A;
  --phase-icon-fg: #F1F3E6;
}
.phase-ovulatory {
  --phase-bg: var(--gold);
  --phase-ink: var(--gold-ink);
  --phase-icon-bg: #B69A55;
  --phase-icon-fg: #FBF3DD;
}
.phase-luteal {
  --phase-bg: var(--mauve);
  --phase-ink: var(--mauve-ink);
  --phase-icon-bg: #A481A5;
  --phase-icon-fg: #F4E8F0;
}

.pill-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
}
.pill-note::before {
  content: "";
  width: 14px; height: 14px;
  background: var(--terracotta);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

/* Recipes stats row */
.stats-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
}
.stat .n {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
}
.stat .l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Scenarios (real-life flexibility) */
.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chip-plain {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Check list with green checkmark bullets */
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 24px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23437A22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Partner card */
.partner-card {
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px;
}
.partner-card .micro {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 12px;
}
.partner-card ul { margin: 14px 0 0; padding-left: 20px; }
.partner-card li { font-size: 15px; color: var(--body); margin-bottom: 6px; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0;
}
.faq details[open] { padding-bottom: 22px; }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: var(--terracotta);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--body);
}

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--cream-soft);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
}
.final-cta::before {
  width: 220px; height: 220px;
  background: var(--sage);
  top: -80px; left: -60px;
}
.final-cta::after {
  width: 180px; height: 180px;
  background: var(--terracotta-tint);
  bottom: -60px; right: -50px;
}
.final-cta h2 { color: var(--cream-soft); position: relative; z-index: 1; margin-bottom: 12px; }
.final-cta p {
  color: rgba(245, 239, 228, 0.85);
  max-width: 480px;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.final-cta .signup-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: var(--cream-soft);
  max-width: 440px;
  margin: 0 auto;
  position: relative; z-index: 1;
  backdrop-filter: blur(4px);
}
.final-cta .signup-card label { color: var(--cream-warm); }
.final-cta .signup-card input {
  background: rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.14);
  color: var(--cream-soft);
}
.final-cta .signup-card input::placeholder { color: rgba(245, 239, 228, 0.4); }
.final-cta .signup-card input:focus {
  background: rgba(0,0,0,0.28);
  border-color: var(--terracotta);
}
.final-cta .signup-card .hint,
.final-cta .signup-card .legal { color: rgba(245, 239, 228, 0.55); }
.final-cta .above-form { color: var(--terracotta-tint); }

/* Footer */
footer {
  padding: 34px 0 54px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}
footer .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: var(--muted); margin-left: 18px; }
footer a:hover { color: var(--ink); }
footer .analytics-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
