/* ============================================================
   Aurora — design tokens
   ============================================================ */
:root {
  /* Base palette */
  --terracotta: #C08A6D;
  --terracotta-deep: #B5764F;
  --teal: #37817B;
  --amber: #E1993F;
  --cream: #F6E7DA;
  --ink: #1F1B18;

  --terracotta-050: #FAF1EB;
  --terracotta-100: #F0DDD1;
  --terracotta-200: #E2C2AE;
  --terracotta-300: #D2A68B;
  --terracotta-400: #C08A6D;
  --terracotta-500: #B5764F;
  --terracotta-600: #9A6140;
  --terracotta-700: #7C4D33;

  --teal-050: #EDF4F3;
  --teal-100: #D2E4E2;
  --teal-200: #A3C8C5;
  --teal-300: #6BA5A0;
  --teal-400: #37817B;
  --teal-500: #2E6D68;
  --teal-600: #255853;
  --teal-700: #1C433F;

  --amber-050: #FCF3E4;
  --amber-100: #F7E1BE;
  --amber-200: #EFC585;
  --amber-300: #E8AC5C;
  --amber-400: #E1993F;
  --amber-500: #C98230;
  --amber-600: #A96A25;
  --amber-700: #86521C;

  --cream-050: #FBF4EC;
  --cream-100: #F6E7DA;
  --cream-200: #EEDAC8;
  --cream-300: #E3C9B2;

  --ink-900: #1F1B18;
  --ink-700: #453E37;
  --ink-500: #6E645A;
  --ink-400: #8C8177;
  --ink-300: #B3A99E;
  --ink-200: #D5CCC2;
  --ink-100: #E9E1D8;

  --white: #FFFDFB;

  /* Semantic aliases */
  --surface-page: var(--cream-050);
  --surface-card: var(--white);
  --surface-raised: var(--cream-100);
  --surface-inverse: var(--ink-900);

  --text-body: var(--ink-900);
  --text-secondary: var(--ink-500);
  --text-muted: var(--ink-400);
  --text-inverse: var(--cream-050);
  --text-on-accent: #FFFDFB;
  --text-link: var(--teal-500);

  --accent-primary: var(--terracotta-500);
  --accent-primary-hover: var(--terracotta-600);
  --accent-secondary: var(--teal-400);
  --accent-secondary-hover: var(--teal-500);
  --accent-highlight: var(--amber-400);

  --border-subtle: var(--ink-100);
  --border-default: var(--ink-200);
  --border-strong: var(--ink-300);
  --border-focus: var(--teal-400);

  --status-danger: #A6412E;
  --status-danger-bg: #F7E6E1;

  /* Typography */
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows — warm-tinted, low contrast */
  --shadow-sm: 0 1px 2px rgba(31, 27, 24, 0.06);
  --shadow-md: 0 2px 8px rgba(31, 27, 24, 0.08), 0 1px 2px rgba(31, 27, 24, 0.05);
  --shadow-lg: 0 8px 28px rgba(31, 27, 24, 0.12), 0 2px 6px rgba(31, 27, 24, 0.06);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 120ms;
  --duration-base: 200ms;

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(55, 129, 123, 0.35);
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--text-link); }
a:hover { color: var(--teal-600); }

img { max-width: 100%; }

@keyframes aurora-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes aurora-float {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50% { transform: translateY(-7px) rotate(var(--tilt, 0deg)); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pill-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes circle-in {
  from { opacity: 0; transform: translateX(-50%) scale(0.85); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes success-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* Reveal on scroll (main.js adds .reveal-ready to <body>, .reveal-in per element,
   then strips data-reveal once done so hover transitions take over) */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-ready [data-reveal].reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none !important; }
  .float-pill { animation: none !important; opacity: 1 !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__copy > *, .hero__circle, .hero__visual > img { animation: none !important; opacity: 1 !important; }
}

/* ============================================================
   Primitives
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--radius-md);
  background: var(--accent-primary);
  color: var(--text-on-accent);
  border: 1px solid transparent;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.btn:hover { background: var(--accent-primary-hover); color: var(--text-on-accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn:disabled { opacity: 0.45; cursor: default; }
.btn--md { height: 40px; padding: 0 16px; font-size: 14px; }
.btn--lg { height: 48px; padding: 0 22px; font-size: 15px; }

.input {
  height: 48px;
  width: 280px;
  max-width: 100%;
  padding: 0 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-body);
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  outline: none;
  transition: box-shadow var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}
.input::placeholder { color: var(--text-muted); }
.input:focus { border-color: var(--border-focus); box-shadow: var(--focus-ring); }
.input--error { border-color: var(--status-danger); }

.field { display: flex; flex-direction: column; gap: 6px; }
.field__error { font-size: 12px; color: var(--status-danger); }

.card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 5px 10px;
  border-radius: var(--radius-full);
}
.badge--amber { background: var(--amber-050); color: var(--amber-700); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-500);
}
.eyebrow--terracotta { color: var(--terracotta-500); }
.eyebrow--light { color: var(--terracotta-300); }

.icon { color: var(--teal-500); display: inline-flex; }

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-circle--terracotta { background: var(--terracotta-050); color: var(--terracotta-500); }
.icon-circle--amber { background: var(--amber-050); color: var(--amber-600); }
.icon-circle--teal { background: var(--teal-050); color: var(--teal-500); }

/* Floating pills */
.float-pill {
  position: absolute;
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: aurora-float 6s ease-in-out infinite;
}
.float-pill--amber { background: var(--amber-050); border: 1px solid var(--amber-200); color: var(--amber-700); }
.float-pill--teal { background: var(--teal-050); border: 1px solid var(--teal-200); color: var(--teal-600); }
.float-pill--terracotta { background: var(--surface-card); border: 1px solid var(--border-subtle); color: var(--terracotta-600); }
.float-pill--card { background: var(--surface-card); border: 1px solid var(--border-subtle); color: var(--teal-600); box-shadow: var(--shadow-md); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-body);
  text-decoration: none;
}
.logo-mark { display: block; flex: none; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  color: var(--ink-700);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
.nav__links a:hover { color: var(--ink-900); }
.nav__cta { text-decoration: none; }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  color: var(--ink-700);
  cursor: pointer;
}
.nav__toggle:hover { color: var(--ink-900); background: var(--cream-100); }
.nav__toggle-close { display: none; }
.nav--open .nav__toggle-open { display: none; }
.nav--open .nav__toggle-close { display: block; }

/* ============================================================
   Sections — shared
   ============================================================ */
.section { border-top: 1px solid var(--border-subtle); }
.section__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 40px;
}
.section__intro {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}
.section__intro--wide { max-width: 680px; margin-bottom: 64px; }
.section__intro h2, .h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text-body);
  text-wrap: pretty;
}
.section__intro > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 40px 72px;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(400px, 0.95fr);
  gap: 48px;
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero__copy > * { opacity: 0; animation: rise 640ms var(--ease-out) forwards; }
.hero__copy > :nth-child(1) { animation-delay: 60ms; }
.hero__copy > :nth-child(2) { animation-delay: 140ms; }
.hero__copy > :nth-child(3) { animation-delay: 220ms; }
.hero__copy > :nth-child(4) { animation-delay: 300ms; }
.hero__eyebrow { display: flex; align-items: center; gap: 10px; }
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--terracotta-400);
  display: inline-block;
  flex: none;
}
.hero__copy h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--text-body);
  text-wrap: pretty;
}
.hero__copy > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 470px;
}
.hero__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }

.waitlist-form { display: flex; gap: 12px; align-items: flex-start; }
.waitlist-note { font-size: 13px; color: var(--text-muted); }
.waitlist-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--teal-500);
  font-weight: 500;
}
.waitlist--joined .waitlist-form { display: none; }
.waitlist--joined .waitlist-success { display: flex; animation: success-in 360ms var(--ease-out); }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 460px;
}
.hero__circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 430px;
  border-radius: var(--radius-full);
  background: var(--terracotta-100);
  transform-origin: bottom center;
  animation: circle-in 720ms var(--ease-out) 120ms both;
}
.hero__visual > img {
  position: relative;
  width: 480px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(31, 27, 24, 0.16));
  animation: rise 700ms var(--ease-out) 240ms both;
}
.hero__pill-1 { --tilt: -4deg; top: 34px; left: -6px; animation: pill-in 480ms var(--ease-out) 600ms both, aurora-float 5.5s ease-in-out 600ms infinite; }
.hero__pill-2 { --tilt: 3deg; top: 118px; right: -10px; animation: pill-in 480ms var(--ease-out) 800ms both, aurora-float 6.5s ease-in-out 1.6s infinite; }
.hero__pill-3 { --tilt: -2deg; bottom: 46px; right: 6px; animation: pill-in 480ms var(--ease-out) 1000ms both, aurora-float 6s ease-in-out 2.6s infinite; }

/* ============================================================
   Questions marquee
   ============================================================ */
.marquee {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--cream-100);
  overflow: hidden;
  padding: 26px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: aurora-marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  white-space: nowrap;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--terracotta-600);
}
.marquee__star { color: var(--ink-300); font-size: 14px; }

/* ============================================================
   Why / You are here
   ============================================================ */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  align-items: flex-start;
}
.why-card {
  flex: 1 1 280px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: rotate 280ms var(--ease-out),
              transform 280ms var(--ease-out),
              box-shadow 280ms var(--ease-out);
}
.why-card:hover { rotate: 0deg; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card--cream { background: var(--cream-100); border: 1px solid var(--border-subtle); rotate: -1.3deg; }
.why-card--amber { background: var(--amber-050); border: 1px solid var(--amber-100); rotate: 1.1deg; margin-top: 22px; }
.why-card--teal { background: var(--teal-050); border: 1px solid var(--teal-100); rotate: -0.8deg; }
.why-card__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.why-card__label--terracotta { color: var(--terracotta-500); }
.why-card__label--amber { color: var(--amber-600); }
.why-card__label--teal { color: var(--teal-600); }
.why-card__title { font-size: 18px; font-weight: 500; }
.why-card > p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
.why-stat { margin: 36px 0 0; font-size: 13px; color: var(--text-muted); }

/* ============================================================
   Features
   ============================================================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.feature-card {
  flex: 1 1 320px;
  max-width: 528px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .icon-circle { transition: transform 280ms var(--ease-out); }
.feature-card:hover .icon-circle { transform: scale(1.08) rotate(-4deg); }
.feature-card__title { font-size: 19px; font-weight: 500; }
.feature-card > p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-secondary); }

/* ============================================================
   How it works
   ============================================================ */
.how-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.how-step { flex: 1 1 260px; max-width: 500px; display: flex; flex-direction: column; gap: 14px; }
.how-step__num { font-size: 13px; font-weight: 500; color: var(--terracotta-500); letter-spacing: 0.08em; }
.how-step__rule { height: 1px; background: var(--border-default); }
.how-step__title { font-size: 19px; font-weight: 500; }
.how-step > p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-secondary); }

/* ============================================================
   Voices
   ============================================================ */
.voices {
  background: var(--cream-100);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.voices .section__intro { margin-bottom: 64px; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.voices-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 200px 200px 16px 16px;
  display: block;
}
.voices-photo--offset { margin-top: 40px; }
.voice-card {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.voice-card--left { rotate: -1deg; }
.voice-card--right { rotate: 1.2deg; }
.voice-card {
  transition: rotate 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.voice-card:hover { rotate: 0deg; box-shadow: var(--shadow-md); }
.voices-photo { overflow: hidden; border-radius: 200px 200px 16px 16px; }
.voices-photo img { transition: transform 480ms var(--ease-out); }
.voices-photo:hover img { transform: scale(1.03); }
.voice-card__mark { font-size: 26px; line-height: 1; font-weight: 500; }
.voice-card__mark--terracotta { color: var(--terracotta-300); }
.voice-card__mark--teal { color: var(--teal-300); }
.voice-card > p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text-body); }
.voice-card__source { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   Community
   ============================================================ */
.community__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.community__copy { display: flex; flex-direction: column; gap: 18px; }
.community__eyebrow { display: flex; align-items: center; gap: 12px; }
.community__copy h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text-body);
  text-wrap: pretty;
}
.community__copy > p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-secondary); }
.community-list { display: flex; flex-direction: column; margin-top: 8px; }
.community-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--duration-base) var(--ease-out);
}
.community-row:hover { background: var(--cream-100); }
.community-row--last { border-bottom: none; }
.community-row__icon {
  color: var(--terracotta-500);
  display: inline-flex;
  flex: none;
  transition: transform 280ms var(--ease-out);
}
.community-row:hover .community-row__icon { transform: scale(1.15) rotate(-5deg); }
.community-row__body { flex: 1; }
.community-row__title { font-size: 16px; font-weight: 500; }
.community-row__text { font-size: 14px; color: var(--text-secondary); }

.community__visual { position: relative; display: flex; justify-content: center; }
.community__visual > img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 999px 999px 24px 24px;
  display: block;
  box-shadow: var(--shadow-md);
}
.community__pill { --tilt: -2deg; bottom: 28px; left: 8px; padding: 10px 20px; }

/* ============================================================
   Founder note
   ============================================================ */
.founder { background: var(--surface-inverse); }
.founder__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 104px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.founder__quote {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text-inverse);
  text-wrap: pretty;
}
.founder__byline { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.founder__name { font-size: 15px; font-weight: 500; color: var(--text-inverse); }
.founder__role { font-size: 13px; color: var(--ink-300); }

/* ============================================================
   Trust
   ============================================================ */
.trust { border-bottom: 1px solid var(--border-subtle); }
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.trust-item { flex: 1 1 240px; max-width: 480px; display: flex; flex-direction: column; gap: 12px; }
.trust-item .icon { transition: transform 280ms var(--ease-out); }
.trust-item:hover .icon { transform: translateY(-3px) scale(1.1); }
.trust-item__title { font-size: 16px; font-weight: 500; }
.trust-item > p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 40px;
}
.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}
.faq-item__q > span:first-child {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-body);
}
.faq-item__chevron {
  color: var(--ink-400);
  display: inline-flex;
  transition: transform var(--duration-base) var(--ease-out);
}
.faq-item[data-open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a {
  display: none;
  margin: 0;
  padding: 0 44px 24px 4px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.faq-item[data-open] .faq-item__a { display: block; animation: faq-in 280ms var(--ease-out); }

/* ============================================================
   Footer / waitlist
   ============================================================ */
.footer { background: var(--surface-inverse); }
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 40px 48px;
}
.footer__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin-bottom: 80px;
}
.float-pill--footer {
  background: rgba(251, 244, 236, 0.05);
  border: 1px solid rgba(251, 244, 236, 0.18);
  color: var(--cream-200);
  box-shadow: none;
}
.footer__pill-1 { --tilt: -3deg; top: 6px; left: 3%; animation-duration: 6.5s; }
.footer__pill-2 { --tilt: 2deg; bottom: 18px; right: 4%; animation-duration: 7s; animation-delay: 1.2s; }
.footer__cta h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-inverse);
  text-wrap: pretty;
}
.footer__cta > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-300);
  max-width: 480px;
}
.footer__cta .waitlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.footer__cta .field { text-align: left; }
.footer__cta .waitlist-success { color: var(--teal-300); }
.footer__bar {
  border-top: 1px solid rgba(251, 244, 236, 0.15);
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
}
.footer__links { display: flex; gap: 24px; margin-left: auto; flex-wrap: wrap; }
.footer__links a {
  font-size: 13px;
  color: var(--ink-300);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__links a:hover { color: var(--cream-050); }
.footer__copyright { padding-top: 20px; font-size: 12px; color: var(--ink-400); }

/* ============================================================
   Honeypot — visually gone, still fillable by bots
   ============================================================ */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav__inner { padding: 0 24px; }
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface-page);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 24px 16px;
  }
  .nav__links a { padding: 12px 0; font-size: 16px; width: 100%; }
  .nav--open .nav__links { display: flex; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { margin-left: auto; }

  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
    gap: 64px;
  }
  .hero__copy h1 { font-size: 44px; }
  .hero__visual { min-height: 0; }
  .hero__circle { width: 320px; height: 320px; }
  .hero__visual > img { width: 380px; }
  .hero__pill-1 { left: 0; top: 12px; }
  .hero__pill-2 { right: 0; top: 84px; }
  .hero__pill-3 { right: 0; bottom: 24px; }

  .marquee__group { font-size: 24px; }

  .section__inner, .faq__inner { padding: 72px 24px; }
  .section__intro h2, .h2, .community__copy h2 { font-size: 34px; }

  .why-card--amber { margin-top: 0; }

  .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-photo--offset { margin-top: 0; }

  .community__inner {
    grid-template-columns: 1fr;
    padding: 72px 24px;
    gap: 56px;
  }

  .founder__inner { padding: 80px 24px; }
  .founder__quote { font-size: 22px; }

  .footer__inner { padding: 72px 24px 40px; }
  .footer__cta h2 { font-size: 38px; }
  .float-pill--footer { display: none; }
}

@media (max-width: 560px) {
  .hero__copy h1 { font-size: 38px; }
  .hero__visual > img { width: 300px; }
  .hero__circle { width: 260px; height: 260px; }
  .float-pill { font-size: 12px; padding: 7px 13px; }

  .marquee__group { font-size: 19px; gap: 24px; padding-right: 24px; }

  .waitlist { width: 100%; }
  .waitlist-form { flex-direction: column; width: 100%; }
  .waitlist-form .field, .waitlist-form .input, .waitlist-form .btn { width: 100%; }
  .footer__cta .waitlist-form { align-items: stretch; }

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

  .footer__bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__links { margin-left: 0; }
}
