@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f6efe6;
  --surface: rgba(255, 250, 245, 0.78);
  --surface-strong: #fff9f4;
  --ink: #1d1714;
  --ink-soft: #2c2520;
  --muted: #5a5048;
  --muted-soft: #8a7c70;
  --line: rgba(31, 26, 23, 0.10);
  --line-strong: rgba(31, 26, 23, 0.16);
  --accent: #d5653a;
  --accent-deep: #8f2f14;
  --accent-soft: rgba(213, 101, 58, 0.14);
  --sage: #8ba492;
  --sage-deep: #5d7a68;
  --sage-soft: rgba(139, 164, 146, 0.18);
  --plum: #6c3a55;
  --plum-soft: rgba(108, 58, 85, 0.12);
  --gold: #c89762;
  --shadow-sm: 0 4px 12px rgba(63, 36, 22, 0.06);
  --shadow: 0 20px 60px rgba(63, 36, 22, 0.10);
  --shadow-lg: 0 30px 90px rgba(63, 36, 22, 0.14);
  --radius: 24px;
  --radius-lg: 32px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(213, 101, 58, 0.13), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 35%, rgba(139, 164, 146, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(108, 58, 85, 0.08), transparent 55%),
    linear-gradient(180deg, #fef8f1 0%, var(--bg) 50%, #f0e3d4 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.025em;
  font-weight: 500;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 0;
}

/* ----- Topbar / Logo ----- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  filter: drop-shadow(0 4px 14px rgba(143, 47, 20, 0.22));
}

.logo-word {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.logo-word em {
  font-style: normal;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding: 4px 0;
  transition: color 0.18s ease;
}

.nav a:hover {
  color: var(--accent-deep);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 0.22s ease;
}

.nav a:hover::after {
  right: 0;
}

/* ----- Buttons ----- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff9f4;
  box-shadow: 0 14px 32px -10px rgba(143, 47, 20, 0.55);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -10px rgba(143, 47, 20, 0.65);
}

.button.secondary {
  background: rgba(255, 250, 245, 0.7);
  color: var(--ink);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  background: var(--surface-strong);
  border-color: var(--accent);
  color: var(--accent-deep);
}

.button.full {
  width: 100%;
  justify-content: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.lede {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 56ch;
}

.microcopy {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 14px 0 0;
}

/* ----- Hero ----- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 32px 0 64px;
}

.hero-copy h1 span.shine {
  background: linear-gradient(120deg, var(--accent) 30%, var(--plum) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}

.hero-illustration {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-left: auto;
}

.hero-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-illustration::before {
  content: "";
  position: absolute;
  inset: -6%;
  background: radial-gradient(circle at 50% 50%, rgba(213, 101, 58, 0.18), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

/* ----- Stats strip ----- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 64px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-soft), var(--sage-soft));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent-deep);
}

.stat-icon svg {
  width: 18px;
  height: 18px;
}

.stat-text strong {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.stat-text span {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
}

/* ----- Section ----- */
.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p.lede {
  margin: 14px auto 0;
}

/* ----- Symptom Universe ----- */
.universe {
  position: relative;
  padding: 56px 0 32px;
  overflow: visible;
}

.universe-canvas {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  aspect-ratio: 16 / 10;
}

.universe-canvas svg {
  width: 100%;
  height: 100%;
}

.universe-legend {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--muted);
}

.universe-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot.accent { background: var(--accent); }
.dot.sage { background: var(--sage-deep); }
.dot.plum { background: var(--plum); }

/* ----- How it works (3 steps) ----- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.step-card {
  position: relative;
  padding: 30px 26px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 26px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff9f4;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 16px -4px rgba(143, 47, 20, 0.4);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-soft), var(--sage-soft));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--accent-deep);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.6;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.96rem;
  color: var(--muted);
  margin: 0;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 33%;
  right: 33%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  z-index: -1;
}

/* ----- Report preview ----- */
.report-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.report-mock {
  position: relative;
  padding: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  transition: transform 0.3s ease;
}

.report-mock:hover {
  transform: rotate(0);
}

.report-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 90%, rgba(0,0,0,0.02) 100%);
}

.report-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-strong);
  margin-bottom: 18px;
}

.report-mock-header strong {
  font-family: "Fraunces", serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.report-mock-header span {
  font-size: 0.78rem;
  color: var(--muted);
}

.report-mock-section {
  margin-bottom: 18px;
}

.report-mock-section h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin: 0 0 8px;
}

.report-mock-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.report-mock-bar {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.report-mock-bar .track {
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.report-mock-bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--accent), var(--plum));
  border-radius: 999px;
}

.report-mock-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.report-mock-tag {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 500;
}

.report-mock-tag.sage {
  background: var(--sage-soft);
  color: var(--sage-deep);
}

.report-mock-checklist li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 6px 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.report-mock-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.report-mock-checklist li::before {
  content: "✓";
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.4;
}

.report-cta-card {
  background: linear-gradient(135deg, var(--surface-strong), rgba(255, 250, 245, 0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 24px;
}

.price-tag .num {
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.price-tag .unit {
  font-size: 0.92rem;
  color: var(--muted);
}

.price-tag .strike {
  font-size: 0.92rem;
  color: var(--muted-soft);
  text-decoration: line-through;
}

/* ----- Trust & Audience grid ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
}

.feature-icon.warm { background: var(--accent-soft); color: var(--accent-deep); }
.feature-icon.sage { background: var(--sage-soft); color: var(--sage-deep); }
.feature-icon.plum { background: var(--plum-soft); color: var(--plum); }

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fit-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.fit-card.yes {
  border-color: rgba(139, 164, 146, 0.4);
  background: linear-gradient(140deg, var(--sage-soft), var(--surface));
}

.fit-card.no {
  border-color: rgba(108, 58, 85, 0.22);
  background: linear-gradient(140deg, var(--plum-soft), var(--surface));
}

.fit-card .fit-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fit-card.yes .fit-label { color: var(--sage-deep); }
.fit-card.no .fit-label { color: var(--plum); }

.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.fit-card li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.fit-card.yes li svg { color: var(--sage-deep); }
.fit-card.no li svg { color: var(--plum); }

/* ----- FAQ ----- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 4px 22px;
  transition: border-color 0.18s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 18px 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f2f14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / 18px no-repeat;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ----- Waitlist + Final CTA ----- */
.waitlist-card {
  position: relative;
  padding: 56px 40px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(213, 101, 58, 0.16), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(108, 58, 85, 0.14), transparent 55%),
    var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.waitlist-card::before,
.waitlist-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.waitlist-card::before {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -40px;
  background: rgba(213, 101, 58, 0.18);
}

.waitlist-card::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -30px;
  background: rgba(139, 164, 146, 0.20);
}

.waitlist-card > * {
  position: relative;
  z-index: 1;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 22px auto 0;
}

.waitlist-form input[type="email"] {
  flex: 1;
  border: 1px solid var(--line-strong);
  background: rgba(255, 250, 245, 0.9);
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(213, 101, 58, 0.16);
}

#waitlist-status {
  min-height: 1.2em;
  margin-top: 14px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ----- Footer ----- */
.site-footer {
  margin-top: 80px;
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
}

.footer-links a {
  position: relative;
  padding: 2px 0;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--accent-deep);
}

.footer-fineprint {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted-soft);
  margin: 12px 0 0;
  max-width: 720px;
}

/* ----- Article (blog) pages ----- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0 16px;
}

.article > .eyebrow a {
  color: var(--accent-deep);
  letter-spacing: 0.06em;
}

.article h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 22px;
  letter-spacing: -0.022em;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin: 6px 0; }

.article-cta {
  margin-top: 40px;
  padding: 30px 32px;
  background:
    linear-gradient(120deg, rgba(213, 101, 58, 0.10), rgba(139, 164, 146, 0.08)),
    var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-cta h3 { margin: 0 0 8px; }
.article-cta p { margin: 0 0 16px; color: var(--muted); }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
}

.article-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.article-card .text-link {
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ----- Legal pages ----- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0 56px;
}

.legal h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 8px;
}

.legal .updated {
  color: var(--muted);
  font-style: italic;
  margin: 0 0 28px;
  font-size: 0.94rem;
}

.legal h2 {
  font-size: 1.22rem;
  margin: 28px 0 8px;
}

.legal p, .legal li { line-height: 1.72; color: var(--ink-soft); }

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0 48px;
  }

  .hero-illustration {
    max-width: 380px;
    margin: 0 auto;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }

  .stat:nth-child(3), .stat:nth-child(4) {
    padding-top: 18px;
  }

  .steps-grid,
  .feature-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before { display: none; }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .report-preview {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .report-mock {
    transform: none;
  }

  .section { padding: 56px 0; }
}

@media (max-width: 640px) {
  .topbar {
    padding-top: 18px;
    flex-direction: row;
  }

  .nav { display: none; }

  .hero-copy h1 { font-size: 2rem; }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-card {
    padding: 44px 26px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
