/* =============================================================================
   Hairdaze — landing page styles
   Plain CSS. No build step, no preprocessor.

   ── Palette options considered ────────────────────────────────────────────────
   A. "Warm clay"  (CHOSEN)  cream #FCF5EF · deep plum-ink #241A1E · clay #C0553F
      · apricot #E8A06A · soft lilac #B7A2CE.  Warm, grown-up, a bit editorial;
      the clay reads as confident rather than sugary, and the lilac keeps the
      forecast/insight bits from feeling like a food brand.
   B. "Dusk orchid"  lilac #F3EDF7 ground · ink #221729 · violet #7B4BD6 accent
      · peach #FFB59B.  Prettier and more obviously "beauty app", but closer to
      what the category already looks like.
   C. "Sea glass"  off-white #F6F8F6 · ink #17211E · deep teal #1F6F63 accent
      · sand #E8D5B7.  Calm and clinical — good for a science story, but it
      undersells the warmth and reads a little medical, which is the opposite
      of the positioning.
   ---------------------------------------------------------------------------- */

/* ── Tokens ────────────────────────────────────────────────────────────────── */
:root {
  --cream:      #FCF5EF;
  --shell:      #F5E7DB;
  --shell-deep: #EEDACB;
  --ink:        #241A1E;
  --ink-soft:   #5E4C51;
  --ink-faint:  #8C7A7E;
  --clay:       #C0553F;
  --clay-deep:  #9E4130;
  --apricot:    #E8A06A;
  --lilac:      #B7A2CE;
  --line:       rgba(36, 26, 30, 0.12);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(36, 26, 30, 0.06), 0 4px 14px rgba(36, 26, 30, 0.05);
  --shadow-md: 0 2px 6px rgba(36, 26, 30, 0.07), 0 18px 40px rgba(36, 26, 30, 0.09);
  --shadow-lg: 0 30px 70px rgba(36, 26, 30, 0.18);

  --gap: clamp(1.5rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 11vw, 8.5rem);
  --measure: 62ch;
}

/* ── Reset-ish ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; }
em { font-style: italic; }

a { color: inherit; }

button, input {
  font: inherit;
  color: inherit;
}

/* ── A11y helpers ──────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transition: top 160ms ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--ink :focus-visible { outline-color: var(--apricot); }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: min(100% - 2.5rem, 1120px);
  margin-inline: auto;
}

@media (min-width: 480px) {
  .container { width: min(100% - 3.5rem, 1120px); }
}

.section { padding-block: var(--section-y); }

.section--shell {
  background: var(--shell);
  background-image:
    radial-gradient(70% 90% at 8% 0%, rgba(232, 160, 106, 0.35), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(183, 162, 206, 0.32), transparent 62%);
}

.section--ink {
  background: var(--ink);
  color: var(--cream);
  background-image: radial-gradient(80% 60% at 85% 0%, rgba(192, 85, 63, 0.4), transparent 65%);
}

.section--cta {
  background: linear-gradient(180deg, var(--cream) 0%, var(--shell) 100%);
}

/* ── Typography blocks ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.section--ink .eyebrow { color: var(--apricot); }
.eyebrow--center { justify-content: center; }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(192, 85, 63, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
.section--ink .dot,
.section--cta .dot { box-shadow: 0 0 0 4px rgba(232, 160, 106, 0.22); }

@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(0.8); opacity: 0.65; }
}

.section__title {
  font-size: clamp(1.9rem, 1.35rem + 2.6vw, 3.1rem);
  max-width: 20ch;
}
.section--cta .section__title { max-width: 24ch; }

.section__lede {
  margin-top: 1.25rem;
  max-width: var(--measure);
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.2rem);
  color: var(--ink-soft);
}
.section--ink .section__lede { color: rgba(252, 245, 239, 0.78); }

.section__after {
  margin-top: 2.5rem;
  max-width: 46ch;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  line-height: 1.35;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 245, 239, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header:has(.nav-toggle[aria-expanded="true"]) { border-bottom-color: var(--line); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__mark rect { fill: var(--clay); }
.brand__mark path { stroke: var(--cream); }
.brand__word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 16px; height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 160ms ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after  { top:  5px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-5px) rotate(-45deg); }

/* Nav: collapsed on small screens, always visible from 800px */
.site-nav {
  flex-basis: 100%;
  display: none;
  padding-bottom: 1rem;
}
.site-nav.is-open { display: block; }

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}
.site-nav__list a {
  display: inline-block;
  padding: 0.55rem 0;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
}
.site-nav__list a:hover { color: var(--clay); }
.site-nav__list .btn { margin-top: 0.5rem; color: var(--cream); }

@media (min-width: 800px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    flex-basis: auto;
    padding-bottom: 0;
  }
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.9rem;
    border-top: 0;
    padding-top: 0;
  }
  .site-nav__list a { padding: 0; }
  .site-nav__list .btn { margin-top: 0; padding: 0.55rem 1.1rem; }
}

/* ── Buttons & form ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--clay);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 0 var(--clay-deep), var(--shadow-sm);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.btn:hover { background: var(--clay-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); box-shadow: 0 0 0 var(--clay-deep), var(--shadow-sm); }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }

.waitlist { margin-top: 2rem; max-width: 34rem; }
.waitlist--center { margin-inline: auto; }

.waitlist__row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.field { flex: 1 1 auto; }

.field__input {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field__input::placeholder { color: var(--ink-faint); }
.field__input:hover { border-color: rgba(36, 26, 30, 0.22); }
.field__input[aria-invalid="true"] { border-color: var(--clay); }

@media (min-width: 560px) {
  .waitlist__row { flex-direction: row; align-items: center; }
}

.waitlist__note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.waitlist--center .waitlist__note { text-align: center; }

.waitlist__status {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 0;
}
.waitlist__status:empty { display: none; }
.waitlist__status[data-state="error"] { color: var(--clay-deep); }
.waitlist__status[data-state="success"] { color: #2F6B4F; }
.waitlist--center .waitlist__status { text-align: center; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(4rem, 10vw, 7rem);
  background-image:
    radial-gradient(58% 55% at 78% 8%, rgba(232, 160, 106, 0.42), transparent 62%),
    radial-gradient(48% 48% at 4% 34%, rgba(183, 162, 206, 0.34), transparent 60%);
}

.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 7vw, 4.5rem);
}

.hero__title {
  font-size: clamp(2.5rem, 1.6rem + 4.4vw, 4.5rem);
  max-width: 15ch;
}

.hero__tagline {
  margin-top: 0.9rem;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.15rem + 1.6vw, 2.3rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

.hero__lede {
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.25rem);
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }
}

/* Phone mock-up (placeholder for a real screenshot) */
.hero__art {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: min(280px, 74vw);
  aspect-ratio: 9 / 19.5;
  padding: 10px;
  border-radius: 42px;
  background: linear-gradient(160deg, #3B2B30, #1B1215);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2.5deg);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }

.phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  translate: -50% 0;
  width: 76px; height: 20px;
  border-radius: 999px;
  background: #120C0E;
  z-index: 2;
}

.phone__screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.6rem 1.15rem 1.15rem;
  border-radius: 33px;
  background: linear-gradient(175deg, #FFFDFB 0%, var(--shell) 100%);
  overflow: hidden;
}

.phone__placeholder {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-faint);
}

.mock__label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}
.mock__headline {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.mock__days {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 108px;
  margin-top: 1.4rem;
}
.mock__days li {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
}
.mock__days i {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--lilac), rgba(183, 162, 206, 0.45));
  transform-origin: bottom;
  animation: grow 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.mock__days li:nth-child(2) i { animation-delay: 70ms; }
.mock__days li:nth-child(3) i { animation-delay: 140ms; }
.mock__days li:nth-child(4) i { animation-delay: 210ms; }
.mock__days li:nth-child(5) i { animation-delay: 280ms; }
.mock__days .is-peak i { background: linear-gradient(180deg, var(--clay), var(--apricot)); }
.mock__days span {
  font-size: 0.6rem;
  color: var(--ink-faint);
}
.mock__days .is-peak span { color: var(--ink); font-weight: 600; }

@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.mock__tip {
  margin-top: 1.1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.mock__tip strong { color: var(--ink); }

/* ── Problem quotes ────────────────────────────────────────────────────────── */
.quotes {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}
@media (min-width: 760px) {
  .quotes { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.quote {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
  line-height: 1.32;
  text-wrap: balance;
}
.quote:nth-child(2) { rotate: -0.6deg; }
.quote:nth-child(3) { rotate: 0.5deg; }

/* ── Steps ─────────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  counter-reset: step;
}
@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.step {
  padding: 1.9rem 1.6rem 2.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.06em;
}
.step__title {
  margin-top: 0.9rem;
  font-size: clamp(1.3rem, 1.15rem + 0.55vw, 1.6rem);
}
.step__body {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ── Split (insights engine) ───────────────────────────────────────────────── */
.split {
  display: grid;
  gap: clamp(2.75rem, 7vw, 4.5rem);
}
@media (min-width: 940px) {
  .split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.ticks {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  max-width: 48ch;
}
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: rgba(252, 245, 239, 0.86);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--apricot);
  border-bottom: 2px solid var(--apricot);
  rotate: -45deg;
}

.disclaimer {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(252, 245, 239, 0.16);
  max-width: 52ch;
  font-size: 0.88rem;
  color: rgba(252, 245, 239, 0.6);
}

.card-stack { display: grid; gap: 1rem; }

.insight {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  rotate: -1deg;
}
.insight--alt {
  rotate: 1.2deg;
  background: rgba(252, 245, 239, 0.1);
  color: var(--cream);
  border: 1px solid rgba(252, 245, 239, 0.22);
  box-shadow: none;
}

.insight__date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
}
.insight--alt .insight__date { color: var(--apricot); }

.insight__verdict {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.meter {
  margin-top: 0.9rem;
  height: 8px;
  border-radius: 999px;
  background: var(--shell-deep);
  overflow: hidden;
}
.meter span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--apricot), var(--clay));
}

.insight__why {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.insight--alt .insight__why { color: rgba(252, 245, 239, 0.82); }
.insight--alt .insight__why strong { color: var(--cream); }

.art-note {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 245, 239, 0.45);
  text-align: center;
}

/* ── Chips ─────────────────────────────────────────────────────────────────── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
}
.chips li {
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease;
}
.chips li:hover { transform: translateY(-2px); border-color: var(--apricot); }

/* ── CTA ───────────────────────────────────────────────────────────────────── */
.cta { text-align: center; }
.cta .section__title,
.cta .section__lede { margin-inline: auto; }

/* ── Legal pages (privacy / terms) ─────────────────────────────────────────── */
.legal { min-height: 60vh; }
.legal__inner { max-width: 68ch; }

.legal__title {
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
}
.legal__meta {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.legal__body {
  margin-top: 1.5rem;
  color: var(--ink-soft);
}
.legal__body a { color: var(--clay); }

.legal h2 {
  margin-top: 2.75rem;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
}
.legal h3 {
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}
.legal p {
  margin-top: 1rem;
  color: var(--ink-soft);
}
.legal ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}
.legal li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}
.legal li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.72em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--apricot);
}
.legal a { color: var(--clay); }
.legal strong { color: var(--ink); }

.legal__callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: var(--shell);
  border: 1px solid var(--shell-deep);
}
.legal__callout p { margin-top: 0; color: var(--ink); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  padding-block: 3rem 2.5rem;
  background: var(--shell);
  border-top: 1px solid var(--shell-deep);
}
.site-footer__inner {
  display: grid;
  gap: 1.75rem;
}
.site-footer__tag {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 30ch;
}
.site-footer__links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
}
.site-footer__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-footer__links a:hover { color: var(--clay); border-bottom-color: currentColor; }

.site-footer__legal {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

@media (min-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .site-footer__legal { grid-column: 1 / -1; }
}

/* ── Motion ────────────────────────────────────────────────────────────────── */
/* Entrance for the hero, then scroll-linked reveals where the browser supports
   them (progressive enhancement — everything is fully visible without it). */
.hero__copy > *,
.hero__art {
  animation: rise 700ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.hero__copy > *:nth-child(2) { animation-delay: 60ms; }
.hero__copy > *:nth-child(3) { animation-delay: 120ms; }
.hero__copy > *:nth-child(4) { animation-delay: 180ms; }
.hero__copy > *:nth-child(5) { animation-delay: 240ms; }
.hero__art { animation-delay: 160ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .quote, .step, .insight, .chips li, .section__title, .section__lede, .waitlist {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 22%;
    }
    .hero__copy > *, .hero__art { animation-timeline: auto; }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
