@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Chillax";
  src: url("assets/fonts/Chillax-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Chillax";
  src: url("assets/fonts/Chillax-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Chillax";
  src: url("assets/fonts/Chillax-Semibold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Chillax";
  src: url("assets/fonts/Chillax-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/nunito-semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --peach: #fbf1eb;
  --peach-deep: #f9eae2;
  --surface: #fffdfa;
  --surface-alt: #fdf6f1;
  --ink: #33241d;
  --ink-2: #7a665c;
  --line: #ead9cf;
  --coral: #e85744;
  --coral-dark: #c23a28;
  --coral-soft: #f2937f;
  --brand: #f75f47;
  --peri: #7c8cc9;
  --peri-deep: #4e5c96;
  --peri-pale: #edeff8;
  --sage: #a8bfa5;
  --sage-deep: #3e6c4f;
  --sage-pale: #e4f0e8;
  --honey: #e2ad5d;
  --honey-pale: #f7e9d3;
  --ember: #2e130b;
  --ember-track: #492215;
  --cream: #fff8f3;
  --display: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --body: "Chillax", ui-sans-serif, system-ui, sans-serif;
  --numbers: "Nunito", ui-rounded, system-ui, sans-serif;
  --shadow: 0 18px 48px rgba(130, 55, 35, 0.12);
  --shadow-small: 0 10px 28px rgba(130, 55, 35, 0.1);
  --radius: 18px;
  --header-h: 78px;
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-gentle: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-quick: 180ms;
  --motion-standard: 520ms;
  --motion-slow: 900ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--peach);
  color: var(--ink);
  font-family: var(--body);
  font-synthesis: none;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* A one-time title sequence: the pair meets, then the shared mark appears. */
.film-prelude {
  display: none;
  position: fixed;
  z-index: 2400;
  inset: 0;
  place-content: center;
  gap: 25px;
  overflow: hidden;
  background: var(--ember);
  color: var(--cream);
  pointer-events: none;
  text-align: center;
  transform-origin: top center;
}

.play-prelude .film-prelude {
  display: grid;
  animation: prelude-curtain 1800ms var(--ease-cinema) forwards;
}

.film-prelude__pair {
  position: relative;
  display: grid;
  width: 108px;
  height: 64px;
  margin-inline: auto;
  place-items: center;
}

.film-prelude__dot {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0 0 26px currentColor;
}

.film-prelude__dot--coral {
  left: 0;
  background: var(--coral);
  color: var(--coral);
  animation: prelude-pair-coral 820ms var(--ease-cinema) 100ms both;
}

.film-prelude__dot--peri {
  right: 0;
  background: var(--peri);
  color: var(--peri);
  animation: prelude-pair-peri 820ms var(--ease-cinema) 100ms both;
}

.film-prelude__mark {
  width: 58px;
  height: 58px;
  background: var(--cream);
  opacity: 0;
  transform: scale(0.72) rotate(-10deg);
  -webkit-mask: url("assets/brand/alignlife-mark-ink.svg") center / contain no-repeat;
  mask: url("assets/brand/alignlife-mark-ink.svg") center / contain no-repeat;
  animation: prelude-mark-bloom 500ms var(--ease-cinema) 690ms both;
}

.film-prelude p {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(12px);
  animation: prelude-caption 450ms var(--ease-cinema) 820ms both;
}

@keyframes prelude-pair-coral {
  0% { transform: translate(0, 9px) scale(0.72); }
  70% { transform: translate(46px, -2px) scale(1); }
  100% { opacity: 0; transform: translate(46px, -2px) scale(0.25); }
}

@keyframes prelude-pair-peri {
  0% { transform: translate(0, -9px) scale(0.72); }
  70% { transform: translate(-46px, 2px) scale(1); }
  100% { opacity: 0; transform: translate(-46px, 2px) scale(0.25); }
}

@keyframes prelude-mark-bloom {
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes prelude-caption {
  to { opacity: 0.82; transform: translateY(0); }
}

@keyframes prelude-curtain {
  0%, 76% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

img {
  display: block;
  max-width: 100%;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

::selection {
  background: var(--coral);
  color: white;
}

:focus-visible {
  outline: 3px solid var(--peri);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--peach);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
}

.shell {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(96px, 11vw, 176px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: lowercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.display-xl {
  margin: 0;
  font-size: clamp(3.75rem, 7vw, 7.5rem);
  line-height: 0.91;
}

.display-xl span,
h2 span,
h1 em {
  color: var(--coral);
  font-style: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease-cinema), transform 800ms var(--ease-cinema);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal > h1,
.reveal > h2 {
  clip-path: inset(0 0 100% 0);
  transform: translateY(22px);
  transition: clip-path var(--motion-slow) var(--ease-cinema), transform var(--motion-slow) var(--ease-cinema);
}

.reveal.is-visible > h1,
.reveal.is-visible > h2 {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.play-prelude .hero__copy,
.play-prelude .hero__world {
  transition-delay: 1180ms !important;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  transition: height 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  border-color: rgba(51, 36, 29, 0.08);
  background: rgba(251, 241, 235, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: block;
  width: 31px;
  height: 31px;
  background: var(--brand);
  -webkit-mask: url("assets/brand/alignlife-mark-ink.svg") center / contain no-repeat;
  mask: url("assets/brand/alignlife-mark-ink.svg") center / contain no-repeat;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: color 200ms ease, background-color 200ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--peach);
}

.menu-button,
.mobile-menu {
  display: none;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--primary {
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(232, 87, 68, 0.18);
  color: white;
}

.button--primary:hover {
  background: #d94b39;
}

.button--ghost {
  border: 1px solid rgba(51, 36, 29, 0.55);
  background: rgba(255, 253, 250, 0.48);
}

.button--ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.button--cream {
  background: var(--cream);
  color: var(--ember);
}

.button--full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--peach);
}

.hero::after {
  position: absolute;
  bottom: -130px;
  left: 38%;
  width: 660px;
  height: 260px;
  border: 48px solid rgba(232, 87, 68, 0.13);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.84fr);
  padding-block: 70px 92px;
}

.hero__copy {
  max-width: 720px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 7.2vw, 7.4rem);
  line-height: 0.88;
}

.hero__lede {
  max-width: 610px;
  margin: 32px 0 28px;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 0.88rem;
}

.two-dot {
  position: relative;
  width: 22px;
  height: 10px;
}

.two-dot::before,
.two-dot::after {
  position: absolute;
  top: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.two-dot::before { left: 1px; }
.two-dot::after { right: 1px; background: var(--peri); }

.hero__world {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.hero__world > img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  filter: drop-shadow(0 22px 26px rgba(130, 55, 35, 0.09));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(51, 36, 29, 0.12);
  border-radius: 50%;
}

.orbit--one {
  width: 500px;
  height: 500px;
}

.orbit--two {
  width: 390px;
  height: 390px;
  border-color: rgba(232, 87, 68, 0.2);
}

.signal-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 218px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(51, 36, 29, 0.13);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
  will-change: translate;
}

.signal-card[data-float] { animation: signal-drift 5.8s var(--ease-gentle) infinite alternate; }
.signal-card--plan[data-float] { animation-delay: -2.7s; animation-duration: 6.7s; }

@keyframes signal-drift {
  from { translate: 0 -4px; }
  to { translate: 0 7px; }
}

.signal-card span:nth-child(2) {
  display: grid;
}

.signal-card small {
  color: var(--ink-2);
  font-size: 0.68rem;
}

.signal-card strong {
  font-size: 0.84rem;
  white-space: nowrap;
}

.signal-card--expense {
  top: 23%;
  right: -2%;
}

.signal-card--plan {
  bottom: 14%;
  left: -5%;
  transform: rotate(-3deg);
}

.signal-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--honey-pale);
  color: #7a5017;
  font-weight: 700;
}

.signal-icon--peri {
  background: var(--peri-pale);
  color: var(--peri-deep);
}

.presence-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--peri);
  box-shadow: 0 0 0 5px rgba(124, 140, 201, 0.14);
}

.hero__doodle {
  position: absolute;
  border-radius: 50%;
}

.hero__doodle--sun {
  top: 15%;
  right: 9%;
  width: 64px;
  height: 64px;
  border: 16px solid rgba(226, 173, 93, 0.14);
  background: rgba(226, 173, 93, 0.32);
}

.hero__doodle--loop {
  bottom: 19%;
  left: 3%;
  width: 170px;
  height: 90px;
  border: 2px dashed rgba(232, 87, 68, 0.2);
  transform: rotate(15deg);
}

.hero__baseline {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(51, 36, 29, 0.08);
  color: var(--ink-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__baseline i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

/* Thesis */
.thesis {
  position: relative;
  overflow: hidden;
  background: var(--surface-alt);
}

.thesis::before {
  position: absolute;
  top: 12%;
  right: -9vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.thesis__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: 22px 56px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.thesis__grid > .eyebrow {
  grid-column: 1 / -1;
}

.thesis__aside {
  padding-bottom: 4px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
}

.thesis__aside p:last-child {
  margin-bottom: 0;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: clamp(72px, 9vw, 124px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip > div {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 3px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child { border-right: 0; }

.proof-strip strong {
  font-family: var(--body);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.proof-strip strong > span {
  font-family: var(--numbers);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.proof-strip strong > em {
  font-family: var(--body);
  font-size: 0.58em;
  font-style: normal;
  font-weight: 600;
}

.proof-strip > div > span {
  color: var(--ink-2);
  font-size: 0.78rem;
}

/* Day story */
.day-story {
  background: var(--peach);
}

.day-story__layout {
  display: grid;
  align-items: start;
  gap: clamp(64px, 8vw, 120px);
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
}

.day-story__intro {
  position: sticky;
  top: calc(var(--header-h) + 64px);
  padding-bottom: 70px;
}

.day-story__intro h2 {
  margin: 0 0 24px;
  font-size: clamp(3.5rem, 5.8vw, 6.2rem);
  line-height: 0.9;
}

.day-story__intro > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
}

.day-progress {
  width: 2px;
  height: 120px;
  margin-top: 38px;
  overflow: hidden;
  background: var(--line);
}

.day-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: top;
}

.day-beats {
  position: relative;
  display: grid;
  gap: clamp(110px, 13vw, 190px);
}

.day-beats::before {
  position: absolute;
  z-index: 0;
  top: 4%;
  bottom: 4%;
  left: 38px;
  width: 4px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
  opacity: 0.22;
}

.day-beat {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  grid-template-columns: 76px minmax(0, 1fr);
}

.day-beat__number {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 5px solid var(--peach);
  border-radius: 50%;
  background: var(--ink);
  color: var(--peach);
  font-size: 0.78rem;
  font-family: var(--numbers);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.day-beat__art {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.day-beat__art::after {
  content: none;
}

.day-beat__art img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(51, 36, 29, 0.09);
  border-radius: 24px;
  object-fit: contain;
  transform: none;
  will-change: auto;
}

.day-beat:hover .day-beat__art img {
  filter: saturate(1.04);
}

.day-beat.reveal .day-beat__art {
  clip-path: none;
}

.day-beat.reveal.is-visible .day-beat__art {
  clip-path: none;
}

.paper-note {
  position: relative;
  display: grid;
  min-height: 72px;
  align-content: center;
  margin: 14px 18px 0;
  padding: 12px 56px 12px 17px;
  border: 1px solid rgba(51, 36, 29, 0.12);
  border-radius: 15px;
  background: rgba(255, 253, 250, 0.95);
  box-shadow: var(--shadow-small);
}

.paper-note small {
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.paper-note strong {
  font-size: 0.88rem;
}

.paper-note--peri small { color: var(--peri-deep); }
.paper-note--sage small { color: var(--sage-deep); }

.reaction {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-deep);
  color: var(--coral);
  font-size: 0.72rem;
  font-style: normal;
  transform: translateY(-50%);
}

.day-beat__copy {
  grid-column: 2;
  max-width: 590px;
}

.day-beat__copy h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.day-beat__copy > p:last-child {
  color: var(--ink-2);
  line-height: 1.7;
}

/* Bridge */
.bridge {
  position: relative;
  display: grid;
  min-height: 72vh;
  place-items: center;
  overflow: hidden;
  padding: 80px 24px;
  background: var(--coral);
  color: white;
}

.bridge p {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8.5vw, 9rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-align: center;
}

.bridge__line {
  --bridge-turn: -7deg;
  position: absolute;
  width: 130vw;
  height: 42vh;
  border: 3px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  transform: rotate(var(--bridge-turn)) scale(var(--bridge-scale, 1));
  will-change: transform;
}

/* Ritual */
.ritual {
  position: relative;
  overflow: hidden;
  background: var(--ember);
  color: var(--peach);
}

.ritual__glow {
  position: absolute;
  top: 4%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(242, 147, 127, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(73, 34, 21, 0.4), 0 0 0 160px rgba(73, 34, 21, 0.2);
}

.ritual__layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(56px, 8vw, 130px);
  grid-template-columns: minmax(330px, 0.78fr) minmax(500px, 1fr);
}

.ritual__copy h2 {
  margin: 0 0 24px;
  font-size: clamp(3.6rem, 6.3vw, 6.8rem);
  line-height: 0.91;
}

.ritual__copy h2 span {
  color: var(--coral-soft);
}

.ritual__copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(251, 241, 235, 0.7);
  font-size: 1.06rem;
  line-height: 1.75;
}

.ritual .eyebrow { color: var(--coral-soft); }

.ritual__proofs {
  display: grid;
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.ritual__proofs li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block: 15px;
  border-bottom: 1px solid rgba(251, 241, 235, 0.12);
  color: rgba(251, 241, 235, 0.72);
  font-size: 0.88rem;
}

.ritual__proofs i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ember-track);
  color: var(--coral-soft);
  font-style: normal;
}

.ritual__proofs strong { color: var(--peach); }

.ritual__stage {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
}

.ritual-petal {
  position: absolute;
  z-index: 6;
  top: 48%;
  left: 50%;
  width: var(--petal-size, 9px);
  height: calc(var(--petal-size, 9px) * 1.7);
  border-radius: 90% 10% 90% 10%;
  background: var(--petal-color, var(--coral-soft));
  opacity: 0;
  pointer-events: none;
  animation: ritual-petal-flight 980ms var(--ease-cinema) var(--petal-delay, 0ms) both;
}

@keyframes ritual-petal-flight {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(0) scale(0.25); }
  18% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--petal-x)), calc(-50% + var(--petal-y))) rotate(var(--petal-rotation)) scale(0.9); }
}

.ritual__art {
  position: absolute;
  top: -5%;
  right: -8%;
  width: 420px;
  border-radius: 0;
  opacity: 0.2;
  mix-blend-mode: screen;
}

.waitlist-form > label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.ritual-letter {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 620px);
  min-height: 600px;
  align-content: center;
  place-items: center;
  color: var(--peach);
  text-align: center;
}

.ritual-letter__question {
  position: relative;
  z-index: 3;
  width: min(100%, 540px);
  margin-inline: auto;
}

.ritual-letter__question > p {
  margin: 0 0 10px;
  color: var(--coral-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.ritual-letter__question h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
}

.ritual-letter__scene {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 360px;
  place-items: center;
  perspective: 1300px;
}

.closed-letter {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(82%, 420px);
  aspect-ratio: 1.64;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(51, 36, 29, 0.32);
  border-radius: 13px;
  background: var(--cream);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(-1.5deg);
  transform-style: preserve-3d;
  transition: box-shadow 350ms var(--ease-cinema), transform 350ms var(--ease-cinema);
  will-change: transform;
}

.closed-letter:hover {
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, calc(-50% - 5px)) rotate(-0.5deg);
}

.closed-letter:active { transform: translate(-50%, -49%) rotate(-0.5deg) scale(0.985); }

.closed-letter::before,
.closed-letter::after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 54%;
  height: 71%;
  background: #f5e4db;
  content: "";
}

.closed-letter::before {
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.closed-letter::after {
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.closed-letter__flap {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 62%;
  background: #eed7cb;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  transform-style: preserve-3d;
}

.closed-letter__face {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 4px;
  padding-bottom: 34px;
}

.closed-letter__seal {
  position: absolute;
  top: 43%;
  left: 50%;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 6px double rgba(117, 42, 27, 0.38);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 9px 20px rgba(73, 34, 21, 0.22);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.45rem;
  transform: translate(-50%, -50%);
}

.closed-letter__face strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
}

.closed-letter__face small {
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ritual-letter.is-opening .closed-letter {
  pointer-events: none;
  animation: closed-letter-turn 720ms var(--ease-gentle) both;
}

.ritual-letter.is-opening .closed-letter__flap {
  animation: closed-letter-flap 520ms var(--ease-cinema) 70ms both;
}

@keyframes closed-letter-turn {
  0% { opacity: 1; transform: translate(-50%, -50%) rotateY(0) rotateZ(-1.5deg) scale(1); }
  16% { transform: translate(-50%, -48%) rotateY(0) rotateZ(0) scale(0.975); }
  56% { opacity: 1; transform: translate(-50%, -52%) rotateY(92deg) rotateZ(0) scale(0.94); }
  100% { opacity: 0; transform: translate(-50%, -52%) rotateY(180deg) rotateZ(1.5deg) scale(0.96); }
}

@keyframes closed-letter-flap {
  0%, 24% { transform: rotateX(0); }
  100% { transform: rotateX(178deg); }
}

.response-reveal {
  position: relative;
  width: min(100%, 590px);
  min-height: 435px;
  align-content: center;
  justify-items: center;
}

.response-reveal[hidden] { display: none; }

.response-reveal.is-visible {
  display: grid;
  animation: response-stage-in 450ms var(--ease-cinema) both;
}

.response-reveal__papers {
  position: relative;
  width: 100%;
  min-height: 312px;
}

.response-letter {
  position: absolute;
  width: min(88%, 500px);
  min-height: 170px;
  padding: 28px 30px;
  border: 1px solid rgba(51, 36, 29, 0.16);
  border-radius: 8px 8px 22px 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  text-align: left;
  transform-origin: center;
}

.response-letter--you {
  z-index: 2;
  top: 4px;
  left: 0;
  background: var(--honey-pale);
}

.response-letter--partner {
  z-index: 3;
  right: 0;
  bottom: 4px;
  background: var(--peri-pale);
}

.response-reveal.is-visible .response-letter--you {
  animation: response-letter-you 680ms var(--ease-cinema) 80ms both;
}

.response-reveal.is-visible .response-letter--partner {
  animation: response-letter-partner 680ms var(--ease-cinema) 150ms both;
}

.response-letter small {
  color: var(--ink-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.response-letter p {
  margin: 10px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.22;
}

.response-reveal__close {
  margin: 12px 0 16px;
  color: rgba(251, 241, 235, 0.7);
  font-size: 0.78rem;
}

.response-reveal .button--ghost {
  border-color: rgba(251, 241, 235, 0.5);
  color: var(--peach);
}

.response-reveal .button--ghost:hover {
  background: var(--peach);
  color: var(--ink);
}

.ritual-letter__note {
  margin: 0;
  color: rgba(251, 241, 235, 0.55);
  font-size: 0.75rem;
}

@keyframes response-stage-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes response-letter-you {
  from { opacity: 0; transform: translate(13%, 84px) rotate(0) scale(0.9); }
  to { opacity: 1; transform: translate(-2%, 0) rotate(-2.2deg) scale(1); }
}

@keyframes response-letter-partner {
  from { opacity: 0; transform: translate(-13%, -70px) rotate(0) scale(0.9); }
  to { opacity: 1; transform: translate(2%, 0) rotate(2deg) scale(1); }
}

/* Product world */
.world {
  background: var(--surface-alt);
}

.world__header {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 370px;
}

.world__header h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.7rem, 6.6vw, 7rem);
  line-height: 0.91;
}

.world__header > p {
  margin-bottom: 6px;
  color: var(--ink-2);
  line-height: 1.7;
}

.feature-explorer {
  display: grid;
  min-height: 650px;
  margin-top: clamp(64px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 300px 1fr;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.feature-tabs button {
  position: relative;
  display: grid;
  flex: 1;
  min-height: 105px;
  align-content: center;
  padding: 18px 34px 18px 58px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: left;
  transition: background-color 240ms ease, padding-left 240ms ease;
}

.feature-tabs button:last-child { border-bottom: 0; }

.feature-tabs button > span {
  position: absolute;
  left: 16px;
  color: var(--ink-2);
  font-family: var(--numbers);
  font-size: 0.66rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.feature-tabs button small {
  margin-top: 3px;
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0;
}

.feature-tabs button[aria-selected="true"] {
  padding-left: 68px;
  background: var(--peach-deep);
  color: var(--coral-dark);
}

.feature-tabs button[aria-selected="true"]::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--coral);
  content: "";
}

.feature-panels {
  position: relative;
  overflow: hidden;
}

.feature-panel {
  display: grid;
  min-height: 650px;
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  grid-template-columns: minmax(360px, 1.05fr) minmax(280px, 0.75fr);
  padding: clamp(32px, 5vw, 70px);
}

.feature-panel[hidden] { display: none; }

.feature-panel.is-active { animation: panel-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both; }

@keyframes panel-in {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

.feature-panel.is-active .feature-panel__art {
  animation: panel-art-in 720ms var(--ease-cinema) both;
}

.feature-panel.is-active .feature-panel__copy {
  animation: panel-copy-in 620ms var(--ease-cinema) 90ms both;
}

@keyframes panel-art-in {
  from { opacity: 0; transform: translateX(-20px) scale(0.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes panel-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-panel__art {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(51, 36, 29, 0.08);
  border-radius: 24px;
  background: var(--peach);
}

.feature-panel__art::after {
  content: none;
}

.feature-panel__art img {
  width: 100%;
  height: 100%;
  max-height: 470px;
  border-radius: 20px;
  object-fit: contain;
  padding: 18px;
}

.feature-panel__copy h3 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 0.95;
}

.feature-panel__copy > p:not(.eyebrow) {
  color: var(--ink-2);
  line-height: 1.7;
}

.feature-panel__copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.feature-panel__copy li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
}

.feature-panel__copy li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

/* Handoff */
.handoff {
  padding-block: clamp(88px, 8vw, 128px);
  background: var(--peach);
}

.handoff__header {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(46px, 5vw, 72px);
}

.handoff__header h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6.4vw, 7rem);
  line-height: 0.92;
}

.handoff__scenes {
  display: grid;
  align-items: start;
  gap: clamp(18px, 2vw, 26px);
  grid-template-columns: 1fr 1fr;
}

.handoff-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.handoff-card:nth-child(2) { margin-top: 52px; }

.handoff-card img {
  width: 100%;
  height: clamp(270px, 25vw, 320px);
  object-fit: contain;
  padding: 18px;
  background: var(--peach-deep);
}

.handoff-card > div {
  padding: 26px 30px 30px;
}

.handoff-card span {
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.handoff-card h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1;
}

.handoff-card p {
  margin: 0;
  color: var(--ink-2);
}

/* Privacy */
.privacy {
  position: relative;
  overflow: hidden;
  background: var(--ember);
  color: var(--peach);
}

.privacy__ribbon {
  position: absolute;
  right: -15%;
  bottom: -12%;
  width: 70vw;
  height: 38vw;
  border: 46px solid rgba(232, 87, 68, 0.2);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.privacy__layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(64px, 9vw, 140px);
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.75fr);
}

.privacy .eyebrow { color: var(--coral-soft); }

.privacy__copy h2 {
  margin: 0 0 28px;
  font-size: clamp(3.65rem, 6.3vw, 6.8rem);
  line-height: 0.91;
}

.privacy__copy > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(251, 241, 235, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.trust-list {
  display: grid;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(251, 241, 235, 0.15);
}

.trust-list > li > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--coral-dark);
  font-weight: 700;
}

.trust-list div {
  display: grid;
}

.trust-list strong { font-size: 0.92rem; }
.trust-list small { color: rgba(251, 241, 235, 0.58); }

.privacy__portrait {
  position: relative;
  padding-bottom: 0;
}

.privacy__frame {
  display: grid;
  min-height: 0;
  aspect-ratio: 1;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(251, 241, 235, 0.22);
  border-radius: 28px;
  background: var(--peach);
}

.privacy__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: inherit;
  object-fit: contain;
  padding: 18px;
}

.privacy blockquote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 0;
  padding: 25px 32px;
  border: 1px solid var(--coral);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
  color: var(--ink);
}

.privacy blockquote p {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.65rem);
}

.privacy blockquote footer {
  padding-left: 24px;
  border-left: 1px solid var(--coral);
  color: var(--coral-dark);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Join and FAQ */
.join {
  position: relative;
  overflow: hidden;
  background: var(--peach);
}

.join__cinema {
  position: absolute;
  z-index: 0;
  top: 6%;
  left: 27%;
  width: 50vw;
  height: 88%;
  min-height: 650px;
  pointer-events: none;
}

.join__sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(31vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(226, 173, 93, 0.11);
  box-shadow: 0 0 0 22px rgba(226, 173, 93, 0.055), 0 0 0 78px rgba(232, 87, 68, 0.025);
  transform: translate(-50%, -48%);
}

.join-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(50vw, 720px);
  height: min(25vw, 360px);
  border: 1.5px solid;
  border-radius: 50%;
  transform-origin: center;
  will-change: transform;
}

.join-orbit i {
  position: absolute;
  top: 50%;
  right: -7px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--peach);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 7px color-mix(in srgb, currentColor 11%, transparent);
  transform: translateY(-50%);
}

.join-orbit--coral {
  border-color: rgba(232, 87, 68, 0.35);
  color: var(--coral);
  transform: translate(-50%, -50%) rotate(20deg);
  animation: join-orbit-coral 13s var(--ease-gentle) infinite alternate;
}

.join-orbit--peri {
  width: min(42vw, 620px);
  height: min(29vw, 390px);
  border-color: rgba(78, 92, 150, 0.28);
  color: var(--peri);
  transform: translate(-50%, -50%) rotate(-24deg);
  animation: join-orbit-peri 15s var(--ease-gentle) -5s infinite alternate;
}

@keyframes join-orbit-coral {
  from { transform: translate(-50%, -50%) rotate(17deg); }
  to { transform: translate(-50%, -50%) rotate(25deg); }
}

@keyframes join-orbit-peri {
  from { transform: translate(-50%, -50%) rotate(-28deg); }
  to { transform: translate(-50%, -50%) rotate(-19deg); }
}

.join-spark {
  position: absolute;
  color: var(--honey);
  font-size: 1.15rem;
  line-height: 1;
  animation: join-spark-breathe 3.4s var(--ease-gentle) infinite alternate;
}

.join-spark--one { top: 18%; left: 22%; }
.join-spark--two { top: 31%; right: 15%; color: var(--peri); animation-delay: -1.6s; font-size: 0.72rem; }
.join-spark--three { right: 24%; bottom: 19%; color: var(--coral); animation-delay: -2.4s; font-size: 0.85rem; }

@keyframes join-spark-breathe {
  from { opacity: 0.35; transform: rotate(0) scale(0.74); }
  to { opacity: 0.9; transform: rotate(24deg) scale(1.12); }
}

.join__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 60px 84px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.64fr) minmax(320px, 0.72fr);
}

.join__copy h2 {
  margin: 0;
  font-size: clamp(4.5rem, 7vw, 7.6rem);
  line-height: 0.86;
}

.join__copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.waitlist-form {
  margin-top: 32px;
}

.waitlist-form__row {
  display: grid;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(51, 36, 29, 0.55);
  border-radius: 14px;
  background: var(--surface);
}

.waitlist-form .button { min-height: 56px; }

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--ink-2);
  font-size: 0.76rem;
}

.form-status.is-error { color: #b3301f; }
.form-status.is-success { color: #2f6b4c; }

.join__art {
  display: grid;
  place-items: center;
  text-align: center;
}

.join__art img {
  width: min(100%, 420px);
  filter: drop-shadow(0 20px 24px rgba(130, 55, 35, 0.08));
}

.join__art.is-visible img {
  animation: join-art-breathe 6s var(--ease-gentle) 700ms infinite alternate;
}

@keyframes join-art-breathe {
  from { transform: translateY(0); }
  to { transform: translateY(-7px); }
}

.join__art span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: -24px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  font-size: 0.75rem;
}

.faq h3 {
  margin: 0 0 28px;
  font-size: clamp(2.3rem, 3.7vw, 4rem);
  line-height: 1;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.faq summary span {
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 220ms ease;
}

.faq details[open] summary span { transform: rotate(45deg); }

.faq details p {
  padding: 0 34px 22px 0;
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background: var(--peach-deep);
}

.site-footer__word {
  margin-left: -0.03em;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(7rem, 18.5vw, 20rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.68;
  white-space: nowrap;
}

.site-footer__bottom {
  display: grid;
  min-height: 150px;
  align-items: center;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  padding-block: 46px 34px;
}

.site-footer__bottom > p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--ink-2);
  font-size: 0.75rem;
}

.site-footer nav a:hover { color: var(--coral-dark); }

/* Responsive */
@media (max-width: 1120px) {
  .hero__content { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); }
  .hero__world { min-height: 500px; }
  .signal-card--expense { right: -5%; }
  .signal-card--plan { left: -7%; }
  .ritual__layout { grid-template-columns: minmax(300px, 0.72fr) minmax(460px, 1fr); gap: 50px; }
  .join__grid { grid-template-columns: 1fr 0.8fr; }
  .join__cinema { left: 36%; width: 60vw; height: 62%; }
  .faq { grid-column: 1 / -1; max-width: 760px; margin-inline: auto; width: 100%; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .shell { width: min(100% - 36px, 760px); }
  .desktop-nav { display: none; }
  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(51, 36, 29, 0.14);
    border-radius: 50%;
    background: var(--peach);
    cursor: pointer;
  }
  .menu-button span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform 220ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: 58px;
    right: 18px;
    display: grid;
    min-width: 220px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
  .mobile-menu a { padding: 12px 14px; border-radius: 10px; font-weight: 600; }
  .mobile-menu a:hover { background: var(--peach-deep); }

  .hero { min-height: auto; }
  .hero__content { grid-template-columns: 1fr; padding-top: 84px; }
  .hero__copy { max-width: 650px; }
  .hero__world { min-height: 590px; }
  .hero__world > img { width: min(100%, 520px); }
  .hero__baseline { display: none; }
  .hero::after { display: none; }

  .thesis__grid,
  .world__header,
  .privacy__layout { grid-template-columns: 1fr; }
  .thesis__aside { max-width: 620px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .day-story__layout { grid-template-columns: 1fr; }
  .day-story__intro { position: static; padding-bottom: 0; }
  .day-progress { display: none; }

  .ritual__layout { grid-template-columns: 1fr; }
  .ritual__stage { min-height: 650px; }

  .feature-explorer { grid-template-columns: 1fr; }
  .feature-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-tabs button { min-width: 185px; min-height: 94px; border-right: 1px solid var(--line); border-bottom: 0; }
  .feature-tabs button:last-child { border-right: 0; }
  .feature-tabs button[aria-selected="true"]::before { top: auto; right: 14px; bottom: 0; left: 14px; width: auto; height: 4px; border-radius: 999px 999px 0 0; }
  .feature-panel { min-height: 0; grid-template-columns: 1fr; }
  .feature-panel__art { min-height: 440px; }

  .privacy__portrait { max-width: 600px; margin-inline: auto; }
  .privacy blockquote { left: -5%; }

  .join__grid { grid-template-columns: 1fr 1fr; }
  .join__copy { align-self: start; }
  .join__cinema { top: 5%; left: 35%; width: 65vw; height: 58%; min-height: 520px; }
  .faq { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 560px); }
  .section-pad { padding-block: 94px; }
  .site-header { padding-inline: 14px; }
  .brand__name { font-size: 1.33rem; }
  .brand__mark { width: 28px; height: 28px; }
  .eyebrow { font-size: 0.68rem; }
  .hero__content { padding-block: 82px 70px; }
  .hero h1 { font-size: clamp(3.55rem, 17vw, 5.1rem); }
  .hero__lede { margin-top: 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__world { min-height: 480px; margin-top: -15px; }
  .orbit--one { width: 380px; height: 380px; }
  .orbit--two { width: 300px; height: 300px; }
  .signal-card { min-width: 178px; padding: 10px 12px; }
  .signal-card strong { font-size: 0.72rem; }
  .signal-card--expense { top: 16%; right: 0; }
  .signal-card--plan { bottom: 8%; left: 0; }

  .display-xl { font-size: clamp(3.45rem, 17vw, 5.4rem); }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }

  .day-beats { gap: 100px; }
  .day-beats::before { left: 24px; }
  .day-beat { grid-template-columns: 50px 1fr; gap: 14px; }
  .day-beat__number { width: 50px; height: 50px; border-width: 4px; font-size: 0.64rem; }
  .day-beat__art,
  .day-beat__art img { min-height: 0; }
  .day-beat__copy { grid-column: 1 / -1; padding-left: 64px; }
  .paper-note { min-height: 64px; margin: 10px 0 0; }
  .bridge { min-height: 64vh; }

  .ritual__copy h2,
  .privacy__copy h2,
  .world__header h2,
  .handoff__header h2 { font-size: clamp(3.25rem, 15vw, 4.8rem); }
  .handoff__header { margin-bottom: 36px; }
  .handoff__header h2 { font-size: clamp(2.95rem, 13.5vw, 3.8rem); line-height: 0.94; }
  .ritual__stage { min-height: 610px; }
  .ritual__proofs { display: none; }
  .ritual-letter { min-height: 610px; }
  .ritual-letter__question h3 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .ritual-letter__scene { min-height: 420px; }
  .closed-letter { width: 96%; }
  .closed-letter__face { padding-bottom: 24px; }
  .closed-letter__face strong { font-size: 1.18rem; }
  .closed-letter__seal { width: 52px; height: 52px; }
  .response-reveal { min-height: 420px; }
  .response-reveal__papers { min-height: 330px; }
  .response-letter { width: 96%; min-height: 174px; padding: 24px 22px; }
  .response-letter p { font-size: 1.28rem; }

  .feature-explorer { margin-inline: -14px; }
  .feature-panel { padding: 28px 18px 38px; }
  .feature-panel__art { min-height: 340px; }
  .feature-panel__art img { max-height: 340px; }

  .handoff__scenes { grid-template-columns: 1fr; gap: 18px; }
  .handoff-card { min-height: 0; }
  .handoff-card:nth-child(2) { margin-top: 0; }
  .handoff-card img { height: 260px; }
  .handoff-card > div { padding: 24px 22px 27px; }

  .privacy__layout { gap: 90px; }
  .privacy__frame { min-height: 0; }
  .privacy blockquote { left: auto; display: grid; }
  .privacy blockquote footer { padding: 0; border-left: 0; }

  .join__grid { grid-template-columns: 1fr; }
  .join__copy h2 { font-size: clamp(4.2rem, 20vw, 6rem); }
  .join__art { grid-row: 2; }
  .join__cinema { top: 23%; left: -20%; width: 140vw; height: 510px; min-height: 0; }
  .join__sun { width: 72vw; }
  .join-orbit { width: 114vw; height: 56vw; }
  .join-orbit--peri { width: 96vw; height: 68vw; }
  .join-spark--one { left: 16%; }
  .join-spark--two { right: 11%; }
  .faq { grid-column: auto; }
  .site-footer__word { font-size: 26vw; }
  .site-footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .site-footer__bottom > p { text-align: center; }
  .site-footer nav { justify-content: center; }
  .brand--footer { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal > h1,
  .reveal > h2,
  .day-beat.reveal .day-beat__art { clip-path: none; transform: none; }
  .day-beat__art img { transform: none; }
  .film-prelude { display: none !important; }
}
