/* =========================================================================
   AURELIA — Light Atelier
   Reference register: biograph.com — premium, restrained, airy.
   Light warm-white page · near-black text · ONLY the hero is dark.
   Type: Newsreader (editorial serif display) · Inter (clean grotesque text)
   ========================================================================= */

:root {
  /* light ground */
  --bg:      #FBF4E9;   /* warm cream page (Shinkei register) */
  --bg-soft: #F4E9D7;   /* deeper cream band */
  --white:   #FFFFFF;   /* cards */

  /* ink (warm near-black) */
  --ink:    #17130D;
  --text:   rgba(23,19,13,.66);
  --muted:  rgba(23,19,13,.56);
  --faint:  rgba(23,19,13,.42);
  --dim:    rgba(23,19,13,.22);

  /* hairlines */
  --line:   rgba(23,19,13,.12);
  --line-2: rgba(23,19,13,.07);

  /* dark hero */
  --hero-bg: #0d0d0f;
  --chalk:   #F8F5EF;                 /* bright hero text */
  --chalk-t: rgba(248,245,239,.84);
  --chalk-m: rgba(248,245,239,.70);

  --maxw: 1160px;
  --gut:  clamp(1.35rem, 5vw, 4rem);
  --radius: 4px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* one vertical rhythm for every section — keeps the spacing between
     bands consistent instead of each section inventing its own padding */
  --section-y:    clamp(4.25rem, 8vw, 7rem);   /* standard band */
  --section-y-sm: clamp(2.75rem, 5vw, 4rem);   /* thin strip (creds) */

  --display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;   /* mono everywhere except display */
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(.86rem, .82rem + .18vw, .94rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--ink); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.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; }

.section { padding-block: var(--section-y); position: relative; }
section { scroll-margin-top: 90px; }

/* ---------------------------------------------------------------- atmosphere */
/* a whisper of grain so flats have tooth — never interactive */
.fx { position: fixed; inset: 0; pointer-events: none; z-index: 9000; }
.fx--grain {
  opacity: .02; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------- type */
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint);
}

/* micro-labels share the mono "measurement" voice */
.creds__label, .plan__name, .plan__badge, .process__n, .signup__note {
  font-family: var(--mono);
}

.head { max-width: 56rem; margin-inline: auto; text-align: center; }
.head--center { margin-inline: auto; text-align: center; }
.head__title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-top: 1.4rem;
}
.head__title em { font-style: italic; font-weight: 400; color: var(--ink); }
.head__lede {
  font-size: clamp(.9rem, .86rem + .2vw, 1rem);
  line-height: 1.7; font-weight: 400;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 1.6rem;
  margin-inline: auto;
  text-wrap: balance;
}
.head--center .head__lede { margin-inline: auto; }
.head__lede--wide { max-width: 64ch; }

/* ---------------------------------------------------------------- buttons */
.btn {
  --bg: transparent; --fg: var(--ink); --bd: var(--line);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--mono); font-weight: 500;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1;
  padding: 1.15em 1.7em; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  cursor: pointer; white-space: nowrap;
  transition: transform .4s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .4s var(--ease);
}
.btn svg { transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; }

/* primary — ink fill on light */
.btn--chalk { --bg: var(--ink); --fg: #fff; --bd: var(--ink); box-shadow: 0 16px 36px -22px rgba(23,21,15,.5); }
.btn--chalk:hover { --bg: #000; transform: translateY(-2px); box-shadow: 0 20px 42px -22px rgba(23,21,15,.55); }

/* ghost — ink hairline on light */
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line); }
.btn--ghost:hover { --bd: var(--ink); transform: translateY(-2px); }

.btn--sm { padding: .85em 1.3em; font-size: .64rem; }

/* hero (dark) button overrides — chalk fill / light ghost */
.hero .btn--chalk { --bg: var(--chalk); --fg: #0d0d0f; --bd: var(--chalk); box-shadow: 0 18px 40px -22px rgba(0,0,0,.6); }
.hero .btn--chalk:hover { --bg: #fff; }
.hero .btn--ghost { --bg: transparent; --fg: var(--chalk); --bd: rgba(248,245,239,.32); }
.hero .btn--ghost:hover { --bd: var(--chalk); --fg: #fff; }

/* ---------------------------------------------------------------- nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: clamp(.6rem, 1.2vw, 1.1rem) var(--gut); transition: background .5s ease, border-color .5s ease; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(250,249,246,.78); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); border-bottom-color: var(--line); }
.nav__bar {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: .4rem;
}

/* default nav sits over the dark hero → light text */
.brand {
  font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.7rem;
  letter-spacing: 0; color: var(--chalk); transition: color .4s ease;
}
.nav.is-scrolled .brand { color: var(--ink); }

/* centered mono pill nav — Shinkei register */
.nav__links {
  display: flex; align-items: center; gap: 1.7rem;
  padding: .6rem 1.3rem; border-radius: 999px;
  border: 1px solid rgba(248,245,239,.16);
  background: rgba(248,245,239,.05);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: border-color .45s ease, background .45s ease;
}
.nav.is-scrolled .nav__links { border-color: var(--line); background: rgba(23,19,13,.025); }
.nav__links a {
  font-family: var(--mono); font-size: .66rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--chalk-m); transition: color .3s;
}
.nav.is-scrolled .nav__links a { color: var(--muted); }
.nav__links a:hover { color: var(--chalk); }
.nav.is-scrolled .nav__links a:hover { color: var(--ink); }
.nav__end { display: flex; align-items: center; gap: .7rem; }

/* nav CTA: light over hero, ink once scrolled onto white */
.nav:not(.is-scrolled) .btn--chalk { --bg: var(--chalk); --fg: #0d0d0f; --bd: var(--chalk); box-shadow: none; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 22px; height: 1px; background: var(--chalk); transition: transform .35s var(--ease), opacity .3s, background .4s; }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  margin-top: .7rem; padding: 1.1rem 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -26px rgba(23,21,15,.3);
  display: flex; flex-direction: column;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: .85rem 0; font-size: 1rem; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.mobile-menu__cta { margin-top: 1rem; }

/* =========================================================================
   1. HERO  (the only dark zone)
   ========================================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--hero-bg); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  /* warm gradient — a little dark on the left for text contrast + drama,
     but warm-toned so the terracotta + florals stay vivid (no black wash) */
  background:
    linear-gradient(100deg, rgba(34,17,11,.74) 0%, rgba(44,22,15,.46) 28%, rgba(58,28,18,.12) 54%, rgba(58,28,18,0) 74%),
    linear-gradient(0deg, rgba(26,14,9,.46) 0%, rgba(26,14,9,0) 38%);
}
.hero__inner { position: relative; z-index: 4; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.hero__copy { max-width: 37rem; }
.hero .eyebrow { margin-bottom: 1.7rem; color: var(--chalk-m); }

.hero__title {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(2.6rem, 1.5rem + 3.4vw, 4.2rem);
  line-height: 1.08; letter-spacing: -.005em; color: var(--chalk);
  text-wrap: balance;
}
.hero__title em { font-style: italic; font-weight: 400; color: #fff; }
.hero__sub {
  margin-top: 1.9rem; max-width: 34rem;
  font-family: var(--mono);
  font-size: clamp(.84rem, .8rem + .2vw, .95rem); line-height: 1.7; font-weight: 400;
  letter-spacing: .01em; color: var(--chalk-t);
}
.hero__sub strong { color: var(--chalk); font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.4rem; }

.hero__facts {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.6rem;
  margin-top: 2.8rem; font-size: .88rem; color: var(--chalk-m);
}
.hero__facts li { display: inline-flex; align-items: center; gap: 1.6rem; }
.hero__facts li::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: rgba(248,245,239,.4); }
.hero__facts li:first-child::before { display: none; }
.hero__facts strong { color: #fff; font-weight: 500; font-variant-numeric: tabular-nums; }

/* =========================================================================
   CREDIBILITY STRIP
   ========================================================================= */
.creds { background: var(--bg); padding-block: var(--section-y-sm); border-bottom: 1px solid var(--line-2); }
.creds__inner { display: flex; flex-direction: column; align-items: center; gap: clamp(1.6rem, 3.5vw, 2.4rem); text-align: center; }
.creds__statement {
  font-family: var(--mono); font-weight: 400;
  font-size: clamp(.82rem, .78rem + .2vw, .95rem); line-height: 1.65; letter-spacing: 0;
  color: var(--muted); max-width: 46rem;
  text-wrap: balance;
}
.creds__statement em { font-style: normal; font-weight: 500; color: var(--ink); }
/* rolling affiliations marquee — full-bleed band, edges faded, pauses on hover */
.creds__marquee {
  margin-top: clamp(1.9rem, 3.6vw, 2.7rem);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.creds__track {
  display: flex; align-items: center; width: max-content;
  animation: creds-roll 52s linear infinite;
  will-change: transform;
}
.creds__marquee:hover .creds__track { animation-play-state: paused; }
.creds__logo {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  padding-inline: clamp(1.6rem, 4vw, 3.4rem);
}
.creds__logo img {
  height: clamp(19px, 2.2vw, 27px); width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .5; transition: opacity .35s;
}
/* the one stacked mark (Stanford) reads small at the wordmark height — give it ~1.4x */
.creds__logo--tall img { height: clamp(27px, 3.1vw, 38px); }
.creds__logo:hover img { opacity: .82; }

@keyframes creds-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* duplicated set → seamless */
}
@media (prefers-reduced-motion: reduce) {
  .creds__track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .creds__marquee { -webkit-mask-image: none; mask-image: none; }
}

/* hero selling points — Personalized · All-in-one · Proven (replaces the stats row) */
.hero__pillars {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
  margin-top: clamp(4rem, 9vw, 8rem); max-width: 38rem;
}
.hpillar { border-top: 1px solid rgba(248,245,239,.22); padding-top: .85rem; display: flex; flex-direction: column; gap: .5rem; }
.hpillar__k { font-family: var(--mono); text-transform: uppercase; font-size: .62rem; letter-spacing: .14em; color: var(--chalk-m); }
.hpillar__n { color: rgba(248,245,239,.4); margin-right: .35em; }
.hpillar__t { font-size: .88rem; line-height: 1.3; color: var(--chalk); }
@media (max-width: 560px) {
  .hero__pillars { gap: 1rem; }
  .hpillar__t { font-size: .82rem; }
}

/* =========================================================================
   MEMBERSHIP
   ========================================================================= */
.membership {
  background: var(--bg);
}
.membership__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.4rem, 5vw, 3.5rem);
  justify-items: center;
}
.membership__promise {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.4rem;
  max-width: 34rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.05rem + 1vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -.005em;
  color: var(--ink);
}
.plan {
  max-width: 42rem; margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.45rem, 3vw, 2.15rem);
  box-shadow: 0 50px 100px -55px rgba(23,21,15,.4);
}
.membership__grid .plan { margin: 0 auto; width: 100%; }
.plan__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding-bottom: 1.3rem; border-bottom: 1px solid var(--line);
}
.plan__name { font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.plan__price { font-family: var(--display); font-weight: 400; letter-spacing: -.01em; color: var(--ink); margin-top: .6rem; font-size: 1.1rem; }
.plan__price span { font-size: clamp(2.8rem, 2rem + 3vw, 3.9rem); line-height: 1; font-weight: 400; }
.plan__badge {
  flex: none; align-self: center;
  font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: .6em 1em; border-radius: 999px;
}

.plan__quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem .8rem;
  margin-top: 1.25rem;
}
.plan__quick li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: .55rem;
  min-width: 0;
  color: var(--ink);
  font-size: .78rem;
  line-height: 1.35;
}
.plan__quick-wide { grid-column: 1 / -1; }
.plan__quick .ic-check {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}
.plan__list { display: grid; gap: 0; margin-top: .4rem; }
.plan__list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--line-2);
}
.ic-check {
  width: 19px; height: 19px; margin-top: 5px; flex: none;
  fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.plan__list h3 { font-family: var(--display); font-weight: 400; font-size: 1.35rem; letter-spacing: -.005em; color: var(--ink); }
.plan__list p { font-size: .94rem; font-weight: 400; color: var(--muted); margin-top: .25rem; }

.plan__cta { width: 100%; margin-top: 1.5rem; }
.plan__safety { margin-top: 1rem; font-size: .74rem; line-height: 1.5; font-weight: 400; color: var(--faint); text-align: center; }

/* =========================================================================
   BUILT FROM DATA
   ========================================================================= */
.how { background: var(--bg-soft); border-block: 1px solid var(--line-2); }
.process {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(2.2rem, 4vw, 3.3rem);
}
.process li {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.52);
}
.process__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--hero-bg);
  border-bottom: 1px solid var(--line);
}
.process__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(13,13,15,.42) 0%, rgba(13,13,15,0) 54%),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}
.process__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.process__media--dashboard {
  background: #fbf8f1;
}
.process__media--dashboard::after {
  background:
    linear-gradient(0deg, rgba(13,13,15,.08) 0%, rgba(13,13,15,0) 46%),
    linear-gradient(90deg, rgba(23,19,13,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23,19,13,.035) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}
.process__media--dashboard img {
  object-fit: contain;
  object-position: center;
  padding: clamp(.3rem, .8vw, .48rem);
  filter: saturate(.98) drop-shadow(0 16px 28px rgba(23, 19, 13, .12));
}
.process__body { padding: clamp(1.2rem, 2.4vw, 1.6rem); }
.process__n {
  display: block;
  font-size: .7rem; font-weight: 500; letter-spacing: .12em;
  color: var(--faint); font-variant-numeric: tabular-nums;
}
.process h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.45rem, 1.12rem + .8vw, 1.85rem);
  line-height: 1.2; letter-spacing: -.005em;
  color: var(--ink);
  margin-top: .8rem;
}
.process p {
  margin-top: .85rem;
  font-size: .88rem; line-height: 1.62; color: var(--muted);
}

/* =========================================================================
   WAITLIST  (light closing moment)
   ========================================================================= */
.waitlist { background: var(--bg); padding-block: calc(var(--section-y) + 1rem); text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--line-2); }
.waitlist__inner { position: relative; max-width: 46rem; margin-inline: auto; }
.waitlist .eyebrow { margin-bottom: 1.5rem; color: var(--faint); }
.waitlist__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.4rem, 1.4rem + 3.4vw, 3.9rem); line-height: 1.1; letter-spacing: -.015em; color: var(--ink);
}
.waitlist__title em { font-style: italic; font-weight: 400; color: var(--ink); }
.waitlist__lede { margin: 1.6rem auto 0; max-width: 48ch; color: var(--muted); font-weight: 400; font-size: 1.1rem; line-height: 1.75; }

.signup {
  margin: 2.8rem auto 0; max-width: 32rem;
  display: flex; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: .45rem .45rem .45rem 1.5rem;
  box-shadow: 0 30px 60px -44px rgba(23,21,15,.4);
  transition: border-color .35s, box-shadow .35s;
}
.signup:focus-within { border-color: var(--ink); box-shadow: 0 30px 60px -40px rgba(23,21,15,.5); }
.signup__input {
  flex: 1; min-width: 0; background: transparent; border: 0; outline: 0;
  color: var(--ink); font-family: var(--sans); font-weight: 400; font-size: 1rem; letter-spacing: .01em;
}
.signup__input::placeholder { color: var(--faint); }
.signup__btn { flex: none; position: relative; }
.signup__spinner { position: absolute; width: 15px; height: 15px; border: 1.5px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; opacity: 0; }
.signup.is-loading .signup__label { opacity: 0; }
.signup.is-loading .signup__spinner { opacity: 1; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.signup__note { margin-top: 1.4rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.signup__status {
  margin-top: 1.1rem; min-height: 1.4em; font-size: .96rem; color: var(--muted);
  opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s;
}
.signup__status.is-shown { opacity: 1; transform: none; }
.signup__status.is-error { color: #a8442b; }
.waitlist.is-done .signup, .waitlist.is-done .signup__note { display: none; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--bg); border-top: 1px solid var(--line); color: var(--muted); padding-block: clamp(3.4rem, 6vw, 4.5rem) 2.4rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 2rem 3rem; justify-content: space-between; align-items: flex-start; padding-bottom: 2.6rem; border-bottom: 1px solid var(--line-2); }
.brand--footer { color: var(--ink); font-size: 1.75rem; }
.footer__tag { margin-top: 1rem; max-width: 26rem; font-size: .9rem; font-weight: 400; color: var(--muted); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer__nav a { font-size: .85rem; color: var(--muted); transition: color .3s; }
.footer__nav a:hover { color: var(--ink); }
.footer__fine { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: flex-end; }
.footer__fine p { font-size: .74rem; line-height: 1.7; font-weight: 400; color: var(--faint); max-width: 66ch; }
.footer__copy { white-space: nowrap; }

/* =========================================================================
   REVEALS
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 920px) {
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__end .btn--sm { display: none; }
  .nav__toggle { display: flex; }

  .hero { align-items: flex-end; }
  .hero__copy { padding-bottom: 5rem; }
  .hero__scrim { background: linear-gradient(0deg, rgba(8,8,10,.95) 6%, rgba(8,8,10,.45) 52%, rgba(8,8,10,.12) 100%); }
  .hero__media { object-position: 64% center; }

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

  .signup { flex-direction: column; background: transparent; border: 0; padding: 0; gap: .7rem; box-shadow: none; }
  .signup__input { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 1.05rem 1.4rem; text-align: center; }
  .signup__btn { width: 100%; }
  .footer__fine { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
