:root {
  --paper: #f7f3ed;
  --paper-deep: #eee6dc;
  --porcelain: #fffdf9;
  --ink: #2b1b15;
  --ink-soft: #5e4b41;
  --cocoa: #3b2118;
  --cocoa-deep: #23120e;
  --nude: #b98a5e;
  --nude-light: #e4cfb8;
  --plum: #6d3851;
  --purple: #6c58d9;
  --green: #2f6e54;
  --line: rgba(59, 33, 24, 0.14);
  --shadow: 0 26px 70px rgba(55, 30, 21, 0.15);
  --shadow-soft: 0 12px 34px rgba(55, 30, 21, 0.08);
  --radius-sm: 0.9rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.4rem;
  --shell: min(90rem, calc(100vw - 3rem));
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

::selection {
  background: var(--plum);
  color: var(--porcelain);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--cocoa-deep);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--nude-light);
}

.eyebrow--purple {
  color: var(--purple);
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0.9rem 0.75rem 1.35rem;
  border: 1px solid var(--cocoa);
  border-radius: 999px;
  background: var(--cocoa);
  color: var(--porcelain);
  font-size: 0.88rem;
  font-weight: 680;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(44, 21, 14, 0.16);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 0.95rem;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--cocoa-deep);
  box-shadow: 0 14px 30px rgba(44, 21, 14, 0.22);
}

.button--ghost {
  border-color: rgba(59, 33, 24, 0.48);
  background: rgba(255, 253, 249, 0.32);
  color: var(--cocoa);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button--ghost span {
  border-color: rgba(59, 33, 24, 0.28);
}

.button--ghost:hover {
  background: rgba(255, 253, 249, 0.76);
}

.button--small {
  min-height: 2.75rem;
  gap: 0.85rem;
  padding: 0.55rem 0.62rem 0.55rem 1rem;
  font-size: 0.76rem;
}

.button--small span {
  width: 1.65rem;
  height: 1.65rem;
}

.button--cream {
  border-color: var(--porcelain);
  background: var(--porcelain);
  color: var(--cocoa);
}

.button--cream span {
  border-color: rgba(59, 33, 24, 0.22);
}

.button--cream:hover {
  background: var(--paper-deep);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(59, 33, 24, 0.38);
  padding-bottom: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 0.95rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 5rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem max(1.5rem, calc((100vw - 90rem) / 2));
  border-bottom: 1px solid rgba(59, 33, 24, 0.08);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.35rem;
  box-shadow: 0 10px 32px rgba(55, 30, 21, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 0.9;
}

.brand__logo {
  width: clamp(8rem, 10vw, 10rem);
  height: auto;
  object-fit: contain;
}

.brand--footer .brand__logo {
  width: clamp(10rem, 13vw, 13rem);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.7vw, 1.8rem);
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 630;
}

.primary-nav a::after {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cocoa);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(47rem, 100svh);
  place-items: center start;
  overflow: hidden;
  padding-top: 5rem;
  background: #d9c4a8;
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
  animation: hero-arrive 1.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 243, 237, 0.97) 0%, rgba(247, 243, 237, 0.88) 28%, rgba(247, 243, 237, 0.18) 57%, rgba(35, 18, 14, 0.08) 100%),
    linear-gradient(0deg, rgba(35, 18, 14, 0.22), transparent 40%);
}

.hero__content {
  padding-bottom: 3.5rem;
}

.hero__eyebrow {
  animation: hero-copy 800ms 220ms ease both;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7.2vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.89;
  animation: hero-copy 850ms 300ms ease both;
}

.hero__lede {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: #49372e;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  animation: hero-copy 850ms 380ms ease both;
}

.hero .button-row {
  animation: hero-copy 850ms 460ms ease both;
}

.hero__rail {
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 4vw, 5rem);
  padding: 1.4rem 1.35rem;
  transform: translateY(-45%);
  border: 1px solid rgba(255, 253, 249, 0.34);
  border-radius: 1.25rem;
  background: rgba(255, 253, 249, 0.18);
  color: #fffdf9;
  box-shadow: 0 18px 48px rgba(35, 18, 14, 0.12);
  backdrop-filter: blur(14px);
}

.hero__rail > p {
  margin-bottom: 0.8rem;
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__rail ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__rail li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.68rem;
  opacity: 0.74;
}

.hero__rail li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.hero__rail li.is-current {
  font-weight: 720;
  opacity: 1;
}

.hero__rail li.is-current::before {
  background: currentColor;
}

.scroll-cue {
  position: absolute;
  right: clamp(1.5rem, 4vw, 5rem);
  bottom: 2.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--porcelain);
  font-size: 0.66rem;
  font-weight: 650;
}

.scroll-cue__mouse {
  position: relative;
  width: 1.1rem;
  height: 1.75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.scroll-cue__mouse::after {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  width: 2px;
  height: 0.35rem;
  transform: translateX(-50%);
  border-radius: 2px;
  background: currentColor;
  content: "";
  animation: scroll-dot 1.6s ease infinite;
}

/* Journey */
.journey {
  background:
    radial-gradient(circle at 10% 18%, rgba(185, 138, 94, 0.1), transparent 25rem),
    var(--porcelain);
}

.section-heading {
  max-width: 46rem;
}

.section-heading--centred {
  margin: 0 auto clamp(4rem, 7vw, 6.5rem);
  text-align: center;
}

.section-heading h2,
.club-heading h2,
.day-intro h2,
.app-intro h2,
.proof-intro h2,
.trust-heading h2,
.faq-intro h2,
.membership h2,
.manifesto h2 {
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 35rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-grid::before {
  position: absolute;
  top: 3rem;
  right: 8.2%;
  left: 8.2%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 3px, transparent 3px 8px);
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  padding-inline: 0.7rem;
  text-align: center;
}

.journey-step__number {
  position: absolute;
  top: -0.8rem;
  left: calc(50% + 2.35rem);
  color: rgba(59, 33, 24, 0.4);
  font-size: 0.58rem;
  font-weight: 780;
}

.journey-step__icon {
  display: grid;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.35rem;
  place-items: center;
  border: 0.65rem solid var(--porcelain);
  border-radius: 50%;
  background: #f3e9dd;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 1.6rem;
  box-shadow: inset 0 0 0 1px rgba(59, 33, 24, 0.06);
}

.journey-step__icon--train {
  background: #ece5f8;
  color: #6b4f97;
}

.journey-step__icon--fuel {
  background: #f5e1d9;
  color: #9e5642;
}

.journey-step__icon--recover {
  background: #e3eee5;
  color: var(--green);
}

.journey-step__icon--progress {
  background: #e7f0e9;
  color: #2f6f55;
}

.journey-step__icon--belong {
  background: #eee1dc;
  color: var(--plum);
}

.journey-step h3 {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.journey-step p {
  max-width: 10.5rem;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

/* Brand family */
.brand-world {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(108, 88, 217, 0.09), transparent 24rem),
    radial-gradient(circle at 88% 78%, rgba(185, 138, 94, 0.13), transparent 26rem),
    #f4eee8;
}

.brand-constellation {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.brand-tile {
  display: grid;
  min-height: 12rem;
  grid-column: span 2;
  place-items: center;
  margin: 0;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(59, 33, 24, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow-soft);
}

.brand-tile--halo {
  background: linear-gradient(145deg, #3e2117, #684531);
}

.brand-tile--fuel {
  background: linear-gradient(145deg, #f7e9e4, #efdcd8);
}

.brand-tile--wide {
  grid-column: span 4;
}

.brand-tile img {
  width: 100%;
  max-height: 8.5rem;
  object-fit: contain;
  transition: transform 350ms ease;
}

.brand-tile:hover img {
  transform: scale(1.035);
}

/* Manifesto */
.section--cocoa {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(185, 138, 94, 0.2), transparent 28rem),
    var(--cocoa-deep);
  color: var(--porcelain);
}

.section--cocoa::before {
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.025),
    0 0 0 10rem rgba(255, 255, 255, 0.018);
  content: "";
}

.manifesto__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(20rem, 2fr) minmax(10rem, 0.7fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}

.manifesto h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
}

.manifesto__copy > p {
  max-width: 43rem;
  margin: 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 1rem;
}

.manifesto__copy .manifesto__story {
  max-width: 39rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 249, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.4;
}

.manifesto__note {
  margin-top: 7rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 253, 249, 0.82);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
}

/* App */
.app-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(108, 88, 217, 0.12), transparent 24rem),
    linear-gradient(180deg, #f9f6f1, #f3ece5);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(20rem, 1.25fr) minmax(16rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.app-intro > p:not(.eyebrow) {
  max-width: 28rem;
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.store-badge {
  display: inline-flex;
  min-width: 10.6rem;
  min-height: 3.55rem;
  align-items: center;
  gap: 0.72rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  background: #171515;
  color: white;
  opacity: 1;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 24px rgba(43, 27, 21, 0.13);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(43, 27, 21, 0.2);
}

.store-badge svg {
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-badge > span:not(.store-badge__play) {
  display: grid;
  line-height: 1.05;
}

.store-badge small {
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.56rem;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.store-badge strong {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.store-badge__play {
  width: 0;
  height: 0;
  border-top: 0.85rem solid transparent;
  border-bottom: 0.85rem solid transparent;
  border-left: 1.45rem solid #8fddcf;
  filter: drop-shadow(0.25rem 0 0 #f6d459) drop-shadow(0.12rem 0.18rem 0 #ef6d62);
}

.store-note {
  margin: 0.75rem 0 0;
  color: rgba(59, 33, 24, 0.52) !important;
  font-size: 0.68rem;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 45rem;
  place-items: center;
}

.phone-halo {
  position: absolute;
  border: 1px solid rgba(108, 88, 217, 0.18);
  border-radius: 50%;
}

.phone-halo--one {
  width: 34rem;
  height: 34rem;
}

.phone-halo--two {
  width: 25rem;
  height: 25rem;
  box-shadow:
    0 0 80px rgba(108, 88, 217, 0.08),
    inset 0 0 80px rgba(185, 138, 94, 0.08);
}

.app-preview {
  position: relative;
  z-index: 2;
  width: min(20rem, 74vw);
  margin: 0;
  animation: panel-in 340ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.app-preview img {
  width: 100%;
  height: auto;
  max-height: 41.5rem;
  object-fit: contain;
  filter: drop-shadow(0 2.2rem 2.4rem rgba(43, 27, 21, 0.22));
}

.feature-tabs {
  display: grid;
  gap: 0.2rem;
}

.feature-tab {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0 0.8rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.feature-tab::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--purple);
  content: "";
  transition: transform 250ms ease;
}

.feature-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-tab > span {
  grid-row: 1 / span 2;
  color: rgba(59, 33, 24, 0.42);
  font-size: 0.65rem;
  font-weight: 750;
}

.feature-tab strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.feature-tab small {
  overflow: hidden;
  max-height: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 220ms ease;
}

.feature-tab.is-active small {
  max-height: 3rem;
  margin-top: 0.2rem;
  opacity: 1;
}

/* Club */
.club-section {
  background: var(--porcelain);
}

.club-heading {
  display: grid;
  grid-template-columns: minmax(22rem, 1.3fr) minmax(16rem, 0.7fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.club-heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.club-heading > p {
  max-width: 32rem;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
}

.media-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: -3rem 0 1.5rem;
  color: rgba(59, 33, 24, 0.58);
  font-size: 0.7rem;
}

.media-disclosure::before {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--nude);
  content: "";
}

.club-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr;
  grid-template-rows: repeat(2, minmax(22rem, 1fr));
  gap: 1rem;
}

.experience-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.experience-card--movement {
  grid-row: 1 / span 2;
}

.experience-card picture,
.experience-card img,
.experience-card__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-card img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.experience-card:hover img {
  transform: scale(1.035);
}

.experience-card__scrim {
  background: linear-gradient(0deg, rgba(30, 15, 10, 0.76) 0%, rgba(30, 15, 10, 0.05) 62%);
}

.experience-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.3rem, 3vw, 2.5rem);
  color: white;
}

.experience-card__content p {
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card__content h3 {
  max-width: 20ch;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.experience-card--belong .experience-card__content h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
}

.round-arrow {
  position: absolute;
  right: clamp(1.3rem, 3vw, 2.5rem);
  bottom: clamp(1.3rem, 3vw, 2.5rem);
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.recovery-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(155deg, #dce8dc, #9db8a0 55%, #526d59);
}

.recovery-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 45, 31, 0.42), transparent 65%);
  content: "";
}

.recovery-art__sun {
  position: absolute;
  top: 14%;
  right: 14%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(251, 238, 199, 0.95);
  box-shadow: 0 0 70px rgba(251, 238, 199, 0.7);
}

.recovery-art__arch {
  position: absolute;
  bottom: -25%;
  width: 48%;
  height: 95%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px 999px 0 0;
  background: rgba(33, 79, 56, 0.13);
  backdrop-filter: blur(4px);
}

.recovery-art__arch--one {
  left: -8%;
}

.recovery-art__arch--two {
  left: 26%;
  height: 78%;
}

.recovery-art__arch--three {
  right: -12%;
  height: 107%;
}

/* Day */
.day-section {
  background:
    linear-gradient(90deg, rgba(108, 88, 217, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 10vw 100%;
}

.day-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(40rem, 1.55fr);
  gap: clamp(3rem, 7vw, 8rem);
}

.day-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.day-intro h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
}

.day-intro > p:last-child {
  max-width: 26rem;
  color: var(--ink-soft);
}

.day-timeline {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6.25rem;
  width: 1px;
  background: var(--line);
  content: "";
}

.day-timeline li {
  position: relative;
  display: grid;
  min-height: 9.5rem;
  grid-template-columns: 5rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 3.3rem;
  align-content: start;
  padding: 0.3rem 0 2.8rem;
}

.day-timeline time {
  grid-row: 1 / span 2;
  padding-top: 0.2rem;
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.day-timeline__dot {
  position: absolute;
  top: 0.45rem;
  left: 5.88rem;
  width: 0.78rem;
  height: 0.78rem;
  border: 0.2rem solid var(--paper);
  border-radius: 50%;
  background: var(--plum);
  box-shadow: 0 0 0 1px var(--plum);
}

.day-timeline h3 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.day-timeline p {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Story and product proof */
.proof-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(108, 88, 217, 0.09), transparent 25rem),
    var(--porcelain);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(28rem, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.proof-intro,
.faq-intro {
  position: sticky;
  top: 7rem;
}

.proof-intro h2 {
  max-width: 12ch;
}

.proof-intro > p:last-child,
.faq-intro > p:last-child {
  max-width: 34rem;
  color: var(--ink-soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-grid article {
  min-height: 17rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f4ede6;
}

.proof-grid article:nth-child(2),
.proof-grid article:nth-child(3) {
  background: #eee9f5;
}

.proof-grid article > span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  font-size: 0.66rem;
  font-weight: 760;
}

.proof-grid h3,
.trust-grid h3,
.opening-grid h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.proof-grid h3 {
  font-size: 1.55rem;
}

.proof-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

/* Trust */
.trust-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% -10%, rgba(185, 138, 94, 0.25), transparent 27rem),
    #243d34;
  color: var(--porcelain);
}

.trust-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.trust-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.trust-heading > p {
  max-width: 33rem;
  margin: 0;
  color: rgba(255, 253, 249, 0.7);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid article {
  padding: 2.4rem clamp(1.25rem, 3vw, 3rem) 2.7rem 0;
}

.trust-grid article + article {
  padding-left: clamp(1.25rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid article > span {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--nude-light);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.trust-grid h3 {
  font-size: 1.65rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 253, 249, 0.65);
  font-size: 0.82rem;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.text-link--light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--porcelain);
}

/* Launch information */
.opening-section {
  background: #efe5db;
}

.opening-section .section-heading {
  max-width: 60rem;
  margin-bottom: 3rem;
}

.opening-section .section-heading h2 {
  max-width: 16ch;
}

.opening-section .section-heading > p:last-child {
  max-width: 40rem;
  margin-inline: 0;
}

.opening-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.opening-grid article {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid rgba(59, 33, 24, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.68);
}

.opening-grid article > p {
  margin-bottom: auto;
  color: var(--plum);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening-grid h3 {
  font-size: 2rem;
}

.opening-grid strong {
  margin-bottom: 1rem;
  color: var(--plum);
  font-size: 0.82rem;
}

.opening-grid article > span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

/* FAQ */
.faq-section {
  background: var(--porcelain);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(28rem, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.faq-intro h2 {
  max-width: 11ch;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.6rem 3.5rem 1.6rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.55rem;
  right: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 45rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
}

/* Membership and footer */
.membership {
  padding-top: 2rem;
  background: var(--paper);
}

.membership-card {
  position: relative;
  display: grid;
  min-height: 43rem;
  overflow: hidden;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  padding: clamp(2.3rem, 7vw, 7rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 50%, rgba(185, 138, 94, 0.4), transparent 24rem),
    linear-gradient(125deg, #29140f, #4a281d 62%, #704932);
  color: var(--porcelain);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.membership-card__content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
}

.membership h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.membership-card__content > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: rgba(255, 253, 249, 0.72);
}

.waitlist-form {
  display: grid;
  max-width: 47rem;
  gap: 1rem;
}

.waitlist-form__row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
}

.waitlist-form label:not(.waitlist-form__consent) {
  display: grid;
  gap: 0.45rem;
}

.waitlist-form label > span:first-child {
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.68rem;
  font-weight: 680;
}

.waitlist-form label small {
  font-size: inherit;
  font-weight: 450;
}

.waitlist-form input:not([type="checkbox"]),
.waitlist-form select {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--porcelain);
  font: inherit;
  font-size: 0.88rem;
  outline: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.waitlist-form select option {
  background: var(--cocoa-deep);
  color: var(--porcelain);
}

.waitlist-form input:not([type="checkbox"]):focus,
.waitlist-form select:focus {
  border-color: var(--nude-light);
  background: rgba(255, 255, 255, 0.13);
}

.waitlist-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  max-width: 44rem;
  cursor: pointer;
}

.waitlist-form__consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.2rem 0 0;
  accent-color: var(--nude-light);
}

.waitlist-form__consent > span {
  color: rgba(255, 253, 249, 0.67);
  font-size: 0.7rem;
  line-height: 1.5;
}

.waitlist-form__consent a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--porcelain);
}

.waitlist-form__trap {
  position: absolute;
  left: -10000px;
}

.waitlist-form .button {
  justify-self: start;
  margin-top: 0.25rem;
  cursor: pointer;
}

.waitlist-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.membership-card__content .waitlist-form__status {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.75rem;
}

.waitlist-form__status.is-success {
  color: #d5f2df;
}

.waitlist-form__status.is-error {
  color: #ffd6cf;
}

.membership-card__mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.membership-card__mark img {
  width: min(15rem, 28vw);
  height: min(15rem, 28vw);
  opacity: 0.4;
}

.membership-card__orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.membership-card__orb--one {
  top: -12rem;
  right: -6rem;
  width: 38rem;
  height: 38rem;
}

.membership-card__orb--two {
  right: 3rem;
  bottom: -14rem;
  width: 30rem;
  height: 30rem;
}

.site-footer {
  padding: 5rem 0 2rem;
  background: var(--paper);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
}

.site-footer__top > p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.75rem;
  font-weight: 650;
}

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

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  color: rgba(59, 33, 24, 0.55);
  font-size: 0.68rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* About page */
.about-page {
  background: var(--porcelain);
}

.about-hero {
  position: relative;
  display: grid;
  min-height: 49rem;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(circle at 84% 45%, rgba(108, 88, 217, 0.14), transparent 25rem),
    radial-gradient(circle at 10% 95%, rgba(185, 138, 94, 0.2), transparent 28rem),
    linear-gradient(145deg, #f9f4ed, #f2e8e4);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(24rem, 1.1fr) minmax(22rem, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.about-hero h1,
.about-belief h2,
.about-pillars h2,
.about-connected h2,
.about-space h2,
.about-promise h2,
.about-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7vw, 7rem);
}

.about-hero__copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.about-hero__symbol {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.about-hero__symbol img {
  position: relative;
  z-index: 2;
  width: 46%;
  filter: drop-shadow(0 2rem 2rem rgba(55, 30, 21, 0.2));
}

.about-hero__orbit {
  position: absolute;
  border: 1px solid rgba(59, 33, 24, 0.14);
  border-radius: 50%;
}

.about-hero__orbit--one {
  width: 72%;
  height: 72%;
}

.about-hero__orbit--two {
  width: 100%;
  height: 100%;
  border-color: rgba(108, 88, 217, 0.15);
  box-shadow: inset 0 0 6rem rgba(108, 88, 217, 0.05);
}

.about-belief {
  background: var(--cocoa-deep);
  color: var(--porcelain);
}

.about-belief__grid {
  display: grid;
  grid-template-columns: minmax(8rem, 0.55fr) minmax(25rem, 1.7fr) minmax(13rem, 0.75fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}

.about-belief h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.about-belief__lead {
  max-width: 45rem;
  margin: 0;
  color: rgba(255, 253, 249, 0.7);
}

.about-belief__aside {
  margin-top: 8rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 253, 249, 0.8);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
}

.about-pillars {
  background:
    radial-gradient(circle at 90% 0%, rgba(185, 138, 94, 0.12), transparent 26rem),
    var(--porcelain);
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-pillar-grid article {
  display: grid;
  min-height: 28rem;
  grid-template-rows: auto 1fr auto auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f4ede6;
}

.about-pillar-grid article:nth-child(2),
.about-pillar-grid article:nth-child(3) {
  background: #efebf6;
}

.about-pillar-grid article > span {
  color: var(--plum);
  font-size: 0.65rem;
  font-weight: 760;
}

.about-pillar-grid img {
  width: min(19rem, 72%);
  max-height: 9rem;
  align-self: center;
  justify-self: center;
  object-fit: contain;
}

.about-pillar-grid h3 {
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.about-pillar-grid p {
  max-width: 31rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.about-connected {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(108, 88, 217, 0.12), transparent 25rem),
    #f3ecf2;
}

.about-connected__grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(25rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.about-connected__phone {
  position: relative;
  display: grid;
  min-height: 42rem;
  place-items: center;
}

.about-connected__phone > img {
  position: relative;
  z-index: 2;
  width: min(20rem, 82%);
  filter: drop-shadow(0 2.2rem 2.4rem rgba(43, 27, 21, 0.22));
}

.about-connected__halo {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(108, 88, 217, 0.2);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5rem rgba(108, 88, 217, 0.025),
    inset 0 0 0 10rem rgba(108, 88, 217, 0.018);
}

.about-connected h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.about-connected__copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--ink-soft);
}

.about-connected__road {
  width: min(28rem, 100%);
  margin-top: 2.5rem;
}

.about-space {
  background:
    radial-gradient(circle at 88% 20%, rgba(185, 138, 94, 0.22), transparent 28rem),
    #263c34;
  color: var(--porcelain);
}

.about-space__grid {
  display: grid;
  grid-template-columns: minmax(24rem, 1.05fr) minmax(26rem, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.about-space h2 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.about-space__copy > p:not(.eyebrow) {
  max-width: 39rem;
  color: rgba(255, 253, 249, 0.68);
}

.about-space__principles {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-space__principles article {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-space__principles article > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  grid-row: 1 / span 2;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--nude-light);
}

.about-space__principles h3 {
  margin-bottom: 0.3rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.about-space__principles p {
  margin: 0;
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.8rem;
}

.about-promise {
  background: #efe5db;
}

.about-promise__inner {
  max-width: 68rem;
  text-align: center;
}

.about-promise h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.about-promise__inner > p:not(.eyebrow) {
  max-width: 47rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.about-promise__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.about-cta {
  padding-top: 2rem;
  background: var(--paper);
}

.about-cta__card {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
  padding: clamp(2.4rem, 7vw, 7rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 50%, rgba(185, 138, 94, 0.4), transparent 24rem),
    linear-gradient(125deg, #29140f, #4a281d 62%, #704932);
  color: var(--porcelain);
  box-shadow: var(--shadow);
}

.about-cta__card > img {
  position: absolute;
  right: 4%;
  bottom: 3%;
  width: min(30rem, 42vw);
  opacity: 0.12;
}

.about-cta h2 {
  position: relative;
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.about-cta__card > p:not(.eyebrow) {
  position: relative;
  max-width: 32rem;
  color: rgba(255, 253, 249, 0.72);
}

.about-cta .button {
  position: relative;
}

/* Legal pages */
.legal-page {
  background: var(--porcelain);
}

.legal-main {
  padding-top: 5rem;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5.5rem, 10vw, 9rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(108, 88, 217, 0.13), transparent 26rem),
    radial-gradient(circle at 10% 90%, rgba(185, 138, 94, 0.17), transparent 24rem),
    linear-gradient(145deg, #f7f0e8, #f3ecf3);
}

.legal-hero--terms {
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 110, 84, 0.13), transparent 26rem),
    radial-gradient(circle at 10% 90%, rgba(185, 138, 94, 0.2), transparent 24rem),
    linear-gradient(145deg, #f7f0e8, #eef3eb);
}

.legal-hero::after {
  position: absolute;
  top: -18rem;
  right: -7rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(59, 33, 24, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.16),
    0 0 0 10rem rgba(255, 255, 255, 0.1);
  content: "";
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.legal-hero__inner > p:not(.eyebrow) {
  max-width: 43rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.legal-meta span {
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(59, 33, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 2fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.legal-aside {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.legal-aside > p {
  margin-bottom: 1rem;
  color: var(--plum);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-aside nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-aside a {
  padding: 0.66rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.74rem;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.legal-aside a:hover {
  padding-left: 0.3rem;
  color: var(--plum);
}

.legal-content {
  min-width: 0;
}

.legal-content > section {
  max-width: 52rem;
  padding-block: clamp(2.8rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 6.5rem;
}

.legal-content > section:first-child {
  padding-top: 0;
}

.legal-content h2 {
  max-width: 18ch;
  margin-bottom: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.75;
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.25rem;
}

.legal-content li::marker {
  color: var(--plum);
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--plum);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: rgba(109, 56, 81, 0.35);
  text-underline-offset: 0.18em;
}

.legal-section-number {
  margin-bottom: 0.65rem;
  color: var(--plum) !important;
  font-size: 0.65rem !important;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.legal-callout {
  max-width: 52rem !important;
  margin-bottom: 1rem;
  padding: clamp(1.6rem, 4vw, 2.5rem) !important;
  border: 1px solid rgba(109, 56, 81, 0.22) !important;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(109, 56, 81, 0.07), rgba(185, 138, 94, 0.08));
}

.legal-callout__label {
  margin-bottom: 0.65rem;
  color: var(--plum) !important;
  font-size: 0.63rem !important;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-callout h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
}

.legal-feature {
  display: grid;
  max-width: 56rem !important;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-block: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem) !important;
  border: 0 !important;
  border-radius: var(--radius-md);
  background: var(--cocoa-deep);
  color: var(--porcelain);
  box-shadow: var(--shadow-soft);
}

.legal-feature__mark {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--nude-light);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.legal-feature h2,
.legal-feature strong {
  color: var(--porcelain);
}

.legal-feature p:not(.legal-section-number) {
  color: rgba(255, 253, 249, 0.72);
}

.legal-feature .legal-section-number {
  color: var(--nude-light) !important;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1.6rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fbf8f4;
}

.legal-content th,
.legal-content td {
  min-width: 14rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: #f2e9df;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

.legal-footer {
  background: var(--paper);
}

.unsubscribe-main {
  display: grid;
  min-height: calc(100svh - 7rem);
  place-items: center;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(108, 88, 217, 0.12), transparent 24rem),
    #f4ede6;
}

.unsubscribe-card {
  max-width: 45rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.unsubscribe-card > img {
  width: 5rem;
  margin-bottom: 2rem;
}

.unsubscribe-card h1 {
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.unsubscribe-card > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--ink-soft);
}

.unsubscribe-card form {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  margin: 2rem 0;
}

.unsubscribe-card button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.unsubscribe-card__status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.unsubscribe-card__status.is-success {
  color: var(--green);
}

.unsubscribe-card__status.is-error {
  color: #9f3f35;
}

/* Motion */
.has-js [data-reveal] {
  transform: translateY(1.25rem);
  opacity: 1;
  transition:
    transform 700ms cubic-bezier(0.2, 0.65, 0.2, 1),
    opacity 700ms ease;
}

.has-js [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

.journey-step:nth-child(2),
.day-timeline li:nth-child(2) {
  transition-delay: 70ms;
}

.journey-step:nth-child(3),
.day-timeline li:nth-child(3) {
  transition-delay: 140ms;
}

.journey-step:nth-child(4),
.day-timeline li:nth-child(4) {
  transition-delay: 210ms;
}

.journey-step:nth-child(5),
.day-timeline li:nth-child(5) {
  transition-delay: 280ms;
}

.journey-step:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes hero-arrive {
  from {
    transform: scale(1.035);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes hero-copy {
  from {
    transform: translateY(1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.35;
  }
  50% {
    transform: translate(-50%, 0.55rem);
    opacity: 1;
  }
}

@keyframes panel-in {
  from {
    transform: translateY(0.45rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 72rem) {
  :root {
    --shell: min(100% - 2.5rem, 70rem);
  }

  .site-header {
    padding-inline: 1.25rem;
  }

  .hero__rail {
    display: none;
  }

  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3.5rem;
  }

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

  .brand-tile {
    min-height: 10rem;
  }

  .app-layout {
    grid-template-columns: minmax(14rem, 0.8fr) minmax(19rem, 1.2fr);
  }

  .feature-tabs {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 1rem;
  }

  .feature-tab {
    grid-template-columns: 1.5rem 1fr;
    padding-inline: 0.6rem;
    border-right: 1px solid var(--line);
  }

  .feature-tab:last-child {
    border-right: 0;
  }

  .phone-stage {
    min-height: 43rem;
  }
}

@media (max-width: 52rem) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem 0.9rem;
  }

  .primary-nav a {
    font-size: 0.66rem;
  }

  .has-js .menu-toggle {
    z-index: 3;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    grid-column: 3;
    place-content: center;
    gap: 0.38rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--porcelain);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 1rem;
    height: 1px;
    background: var(--cocoa);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.22rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.22rem) rotate(-45deg);
  }

  .has-js .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: 6rem 2.5rem;
    transform: translateX(100%);
    background:
      radial-gradient(circle at 80% 10%, rgba(185, 138, 94, 0.24), transparent 20rem),
      var(--porcelain);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1),
      opacity 220ms ease;
  }

  .has-js .primary-nav::after {
    margin-top: 1rem;
    color: var(--plum);
    content: "Movement · nourishment · recovery · belonging";
    font-family: var(--serif);
    font-size: 1rem;
  }

  .has-js .primary-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .has-js .primary-nav a {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 9vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.045em;
  }

  .hero {
    min-height: max(44rem, 100svh);
    align-items: end;
  }

  .hero__content {
    padding-bottom: 7rem;
  }

  .hero__wash {
    background:
      linear-gradient(0deg, rgba(247, 243, 237, 0.98) 0%, rgba(247, 243, 237, 0.85) 45%, rgba(247, 243, 237, 0.02) 77%),
      linear-gradient(90deg, rgba(247, 243, 237, 0.52), transparent 70%);
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 13vw, 5.6rem);
  }

  .hero__lede {
    max-width: 31rem;
  }

  .scroll-cue {
    right: auto;
    bottom: 1.4rem;
    left: 1.25rem;
    color: var(--cocoa);
  }

  .manifesto__grid,
  .app-layout,
  .club-heading,
  .day-layout,
  .proof-layout,
  .faq-layout,
  .trust-heading,
  .about-hero__grid,
  .about-belief__grid,
  .about-connected__grid,
  .about-space__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    max-width: 46rem;
  }

  .about-hero__symbol {
    width: min(28rem, 70vw);
    margin-inline: auto;
  }

  .about-belief__aside {
    margin-top: 0;
  }

  .about-connected__copy {
    order: -1;
  }

  .about-pillar-grid {
    grid-template-columns: 1fr;
  }

  .proof-intro,
  .faq-intro {
    position: static;
    max-width: 42rem;
  }

  .manifesto__note {
    margin-top: 0;
  }

  .app-intro {
    max-width: 36rem;
  }

  .phone-stage {
    min-height: 44rem;
  }

  .feature-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-tab:nth-child(2) {
    border-right: 0;
  }

  .club-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(32rem, 1.3fr) minmax(22rem, 1fr);
  }

  .experience-card--movement {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .day-intro {
    position: static;
    max-width: 40rem;
  }

  .day-timeline {
    max-width: 42rem;
  }

  .trust-grid,
  .opening-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article + article {
    padding: 2rem 0;
    border-left: 0;
  }

  .trust-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .trust-grid article > span {
    margin-bottom: 1.4rem;
  }

  .opening-grid article {
    min-height: 15rem;
  }

  .membership-card {
    min-height: 31rem;
    grid-template-columns: 1fr;
  }

  .membership-card__mark {
    position: absolute;
    right: 3rem;
    bottom: 2rem;
  }

  .membership-card__mark img {
    width: 10rem;
    height: 10rem;
  }

  .site-footer__top {
    grid-template-columns: auto 1fr;
  }

  .site-footer__top > p {
    text-align: right;
  }

  .site-footer nav {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }
}

@media (max-width: 38rem) {
  :root {
    --shell: min(100% - 1.5rem, 36rem);
  }

  .section {
    padding-block: 5.25rem;
  }

  .site-header {
    min-height: 4.6rem;
    padding-inline: 0.75rem;
  }

  .brand__logo {
    width: 8.25rem;
  }

  .hero {
    min-height: 51rem;
    padding-top: 4.6rem;
  }

  .about-hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }

  .about-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
  }

  .about-hero__symbol {
    width: min(20rem, 82vw);
  }

  .about-pillar-grid article {
    min-height: 23rem;
  }

  .about-connected__phone {
    min-height: 38rem;
  }

  .about-connected__halo {
    width: 27rem;
    height: 27rem;
  }

  .about-promise__links {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }

  .about-cta__card {
    min-height: 35rem;
    padding: 2.3rem 1.5rem;
  }

  .hero__content {
    padding-bottom: 6rem;
  }

  .hero__lede {
    font-size: 0.95rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .store-badges {
    display: grid;
  }

  .store-badge {
    width: 100%;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }

  .journey-step {
    padding-inline: 0.35rem;
  }

  .journey-step__icon {
    width: 5.5rem;
    height: 5.5rem;
  }

  .brand-constellation {
    grid-template-columns: 1fr;
  }

  .brand-tile,
  .brand-tile--wide {
    min-height: 10rem;
    grid-column: auto;
  }

  .brand-tile img {
    max-height: 7rem;
  }

  .manifesto__grid {
    gap: 1.5rem;
  }

  .phone-stage {
    min-height: 41rem;
  }

  .phone-halo--one {
    width: 27rem;
    height: 27rem;
  }

  .phone-halo--two {
    width: 21rem;
    height: 21rem;
  }

  .app-preview {
    width: min(19rem, 88vw);
  }

  .app-preview img {
    max-height: 38rem;
  }

  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .feature-tab,
  .feature-tab:nth-child(2) {
    border-right: 0;
  }

  .club-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(25rem, 1fr));
  }

  .media-disclosure {
    margin-top: -2rem;
  }

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

  .proof-grid article {
    min-height: 14rem;
  }

  .proof-grid article > span {
    margin-bottom: 2.5rem;
  }

  .experience-card--movement {
    grid-column: auto;
  }

  .experience-card__content h3,
  .experience-card--belong .experience-card__content h3 {
    max-width: 13ch;
    padding-right: 2rem;
    font-size: 2rem;
  }

  .day-timeline::before {
    left: 4.25rem;
  }

  .day-timeline li {
    min-height: 10.5rem;
    grid-template-columns: 3.1rem 1fr;
    column-gap: 2.5rem;
  }

  .day-timeline__dot {
    left: 3.88rem;
  }

  .day-timeline time {
    font-size: 0.61rem;
  }

  .membership {
    padding-inline: 0.25rem;
  }

  .membership-card {
    min-height: 36rem;
    padding: 2.2rem 1.4rem;
    border-radius: 1.7rem;
  }

  .waitlist-form__row {
    grid-template-columns: 1fr;
  }

  .membership-card__mark {
    right: 1.4rem;
    bottom: 1.2rem;
  }

  .membership-card__mark img {
    width: 7rem;
    height: 7rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__top > p {
    text-align: left;
  }

  .site-footer nav {
    grid-column: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
  }

  .legal-main {
    padding-top: 4.6rem;
  }

  .legal-hero {
    padding-block: 4.75rem;
  }

  .legal-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .legal-aside nav {
    grid-template-columns: 1fr;
  }

  .legal-content > section {
    padding-block: 3rem;
  }

  .legal-feature {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal] {
    transform: none;
    opacity: 1;
  }
}

/* Public site architecture — homepage gateways and content pages */
.content-page main {
  overflow: hidden;
}

.home-intro {
  background: var(--porcelain);
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 0.55fr minmax(22rem, 1.55fr) 0.65fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 7rem);
}

.home-intro h2,
.home-clarity h2,
.content-hero h1,
.media-hero h1,
.movement-intro h2,
.power-spotlight h2,
.recovery-section h2,
.care-note h2,
.fuelher-hero h1,
.fuelher-belief h2,
.fuelher-steps h2,
.fuelher-app h2,
.app-hero h1,
.awareness-section h2,
.app-trust h2,
.page-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-intro h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.7vw, 6.1rem);
}

.home-intro__grid > div > p {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.home-intro__aside {
  margin-top: 5rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}

.home-gateway {
  background:
    radial-gradient(circle at 10% 10%, rgba(108, 88, 217, 0.09), transparent 24rem),
    linear-gradient(180deg, #f1ece7, #ebe3dc);
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gateway-card {
  position: relative;
  display: block;
  min-height: clamp(29rem, 43vw, 39rem);
  overflow: hidden;
  border: 1px solid rgba(59, 33, 24, 0.08);
  border-radius: clamp(1.5rem, 2.5vw, 2.4rem);
  background: var(--porcelain);
  box-shadow: 0 16px 46px rgba(43, 27, 21, 0.1);
  isolation: isolate;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.gateway-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 24px 60px rgba(43, 27, 21, 0.16);
}

.gateway-card > div {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.6rem, 3.5vw, 3rem);
}

.gateway-card > div > p {
  margin-bottom: 0.55rem;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gateway-card h3 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.gateway-card .round-arrow {
  right: clamp(1.5rem, 3.5vw, 3rem);
  bottom: clamp(1.5rem, 3.5vw, 3rem);
}

.gateway-card__number {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: 2rem;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.gateway-card--experience {
  background:
    radial-gradient(circle at 62% 38%, rgba(185, 138, 94, 0.42), transparent 16rem),
    var(--cocoa-deep);
  color: var(--porcelain);
}

.gateway-card--experience > img {
  position: absolute;
  top: 9%;
  left: 50%;
  width: 55%;
  height: auto;
  max-height: 57%;
  transform: translateX(-50%);
  object-fit: contain;
  opacity: 0.76;
  filter: sepia(0.25) drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.22));
  transition: transform 500ms ease;
}

.gateway-card--experience:hover > img {
  transform: translateX(-50%) rotate(7deg) scale(1.04);
}

.gateway-card--movement {
  color: var(--porcelain);
}

.gateway-card--movement::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(35, 18, 14, 0.86), rgba(35, 18, 14, 0.02) 70%);
  content: "";
}

.gateway-card--movement picture,
.gateway-card--movement picture img {
  width: 100%;
  height: 100%;
}

.gateway-card--movement picture img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.gateway-card--movement:hover picture img {
  transform: scale(1.04);
}

.gateway-card--fuelher {
  background:
    radial-gradient(circle at 76% 18%, rgba(151, 91, 76, 0.2), transparent 19rem),
    linear-gradient(150deg, #f8e9e4, #ebcec5);
}

.gateway-card__logo {
  position: absolute;
  top: 17%;
  left: 50%;
  width: min(64%, 25rem);
  height: auto;
  transform: translateX(-50%);
  transition: transform 500ms ease;
}

.gateway-card--fuelher:hover .gateway-card__logo {
  transform: translateX(-50%) scale(1.035);
}

.gateway-card--app {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, #493647, #765477);
  color: var(--porcelain);
}

.gateway-card__phone {
  position: absolute;
  top: 8%;
  right: 7%;
  width: min(41%, 17rem);
  height: auto;
  filter: drop-shadow(0 2rem 2rem rgba(24, 8, 17, 0.28));
  transition: transform 500ms ease;
}

.gateway-card--app:hover .gateway-card__phone {
  transform: translateY(-0.5rem) rotate(1.5deg);
}

.manifesto__copy .text-link {
  margin-top: 1.8rem;
}

.home-clarity {
  background: linear-gradient(145deg, #f7f1e8, #eee3d7);
}

.home-clarity__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(27rem, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.home-clarity h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.home-clarity__copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--ink-soft);
}

.home-clarity__links,
.app-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.launch-list {
  border-top: 1px solid rgba(59, 33, 24, 0.22);
}

.launch-list article {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(59, 33, 24, 0.22);
}

.launch-list span {
  color: var(--plum);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-list h3,
.launch-list strong {
  margin: 0;
  font-size: 0.82rem;
}

.launch-list h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.launch-list strong {
  color: var(--ink-soft);
  font-weight: 620;
  text-align: right;
}

/* Connected experience */
.content-hero {
  position: relative;
  display: grid;
  min-height: min(54rem, 100svh);
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background:
    radial-gradient(circle at 80% 46%, rgba(186, 144, 105, 0.35), transparent 23rem),
    linear-gradient(145deg, #3c241b, #1f100c);
  color: var(--porcelain);
}

.content-hero__grid {
  display: grid;
  grid-template-columns: minmax(22rem, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.content-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.6rem;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.content-hero__copy > p:not(.eyebrow) {
  max-width: 39rem;
  color: rgba(255, 253, 249, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.content-hero__symbol {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.content-hero__symbol::before,
.content-hero__symbol::after {
  position: absolute;
  width: 76%;
  height: 76%;
  border: 1px solid rgba(255, 253, 249, 0.14);
  border-radius: 50%;
  content: "";
}

.content-hero__symbol::after {
  width: 55%;
  height: 55%;
  border-color: rgba(185, 138, 94, 0.33);
}

.content-hero__symbol img {
  position: relative;
  z-index: 1;
  width: 65%;
  height: auto;
  filter: sepia(0.2) drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.3));
}

.signal-section {
  background: var(--porcelain);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.signal-grid article {
  position: relative;
  min-height: 24rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-grid article > span {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(59, 33, 24, 0.42);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.signal-grid img {
  width: min(55%, 14rem);
  height: 4.8rem;
  margin-bottom: 3.5rem;
  object-fit: contain;
  object-position: left center;
}

.signal-grid h3 {
  max-width: 15ch;
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.signal-grid article > p {
  max-width: 31rem;
  color: var(--ink-soft);
}

.flow-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(185, 138, 94, 0.22), transparent 26rem),
    var(--cocoa-deep);
  color: var(--porcelain);
}

.flow-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.flow-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.flow-heading > p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 253, 249, 0.66);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.flow-grid li {
  min-height: 17rem;
  padding: 2rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.flow-grid li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.flow-grid li > span {
  color: var(--nude-light);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.flow-grid h3 {
  margin: 4.3rem 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.flow-grid p {
  margin: 0;
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.75rem;
  line-height: 1.55;
}

.explore-section {
  background: #efe8e1;
}

.explore-section .section-heading {
  margin-bottom: 3.5rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.explore-grid a {
  position: relative;
  min-height: 24rem;
  padding: clamp(2rem, 3.5vw, 3.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.64);
  transition: transform 220ms ease, background 220ms ease;
}

.explore-grid a:hover {
  transform: translateY(-0.35rem);
  background: var(--porcelain);
}

.explore-grid span {
  color: var(--plum);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.explore-grid h3 {
  margin: 5rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.explore-grid p {
  max-width: 28rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.explore-grid i {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
}

/* Movement */
.media-hero {
  position: relative;
  display: grid;
  min-height: min(57rem, 100svh);
  align-items: end;
  overflow: hidden;
  padding: 11rem 0 6rem;
  background: #55443a;
  color: var(--porcelain);
  isolation: isolate;
}

.media-hero__media,
.media-hero__media img,
.media-hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-hero__media {
  z-index: -2;
}

.media-hero__media img {
  object-fit: cover;
  object-position: center 40%;
}

.media-hero__scrim {
  z-index: -1;
  background: linear-gradient(0deg, rgba(25, 13, 10, 0.84), rgba(25, 13, 10, 0.05) 75%);
}

.media-hero__content h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8vw, 8rem);
}

.media-hero__content > p:not(.eyebrow):not(.media-hero__note) {
  max-width: 42rem;
  color: rgba(255, 253, 249, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.media-hero__note {
  position: absolute;
  right: max(1.5rem, calc((100vw - 90rem) / 2));
  bottom: 2rem;
  margin: 0;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.63rem;
}

.movement-intro {
  background: var(--porcelain);
}

.movement-intro__grid {
  display: grid;
  grid-template-columns: 0.5fr 1.15fr 0.7fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 7rem);
}

.movement-intro h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.movement-intro__grid > div p {
  max-width: 41rem;
  color: var(--ink-soft);
}

.movement-intro blockquote {
  margin: 4.8rem 0 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.45;
}

.pathway-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(108, 88, 217, 0.08), transparent 22rem),
    #eee8e2;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pathway-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(59, 33, 24, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.pathway-card > span {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.pathway-card__state {
  margin-bottom: 5.5rem;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pathway-card h3 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.pathway-card > p:not(.pathway-card__state) {
  max-width: 39rem;
  font-size: 0.88rem;
}

.pathway-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.pathway-card li {
  padding: 0.5rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.65rem;
  opacity: 0.72;
}

.pathway-card--energy {
  background: #eadccf;
}

.pathway-card--power {
  background: linear-gradient(145deg, #3a241c, #1f100d);
  color: var(--porcelain);
}

.pathway-card--power > img {
  width: min(45%, 14rem);
  height: 4rem;
  margin: -3rem 0 2.4rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.pathway-card--balance {
  background: #e8e3f5;
}

.pathway-card--grounded {
  background: #dce8dc;
}

.power-spotlight {
  background: var(--porcelain);
}

.power-spotlight__grid,
.recovery-section__grid,
.fuelher-app__grid,
.awareness-section__grid,
.app-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.power-spotlight__visual {
  min-height: 38rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.power-spotlight__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.power-spotlight h2,
.recovery-section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.power-spotlight__copy > p:not(.eyebrow) {
  max-width: 39rem;
  color: var(--ink-soft);
}

.recovery-section {
  background: var(--green);
  color: var(--porcelain);
}

.recovery-section__grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.recovery-art--page {
  position: relative;
  inset: auto;
  min-height: 35rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(14, 38, 26, 0.2);
}

.recovery-section__grid > div:last-child > p:not(.eyebrow) {
  max-width: 40rem;
  color: rgba(255, 253, 249, 0.72);
}

.recovery-section__note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.75rem;
}

.care-note {
  background: #efe9e3;
}

.care-note__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 68rem;
}

.care-note__inner > span {
  display: grid;
  width: clamp(7rem, 12vw, 11rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 4rem;
}

.care-note h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.care-note__inner p:last-child {
  max-width: 49rem;
  margin: 0;
  color: var(--ink-soft);
}

/* FuelHer */
.fuelher-hero {
  display: grid;
  min-height: min(56rem, 100svh);
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background: linear-gradient(145deg, #faebe5, #e7c6ba);
}

.fuelher-hero__grid,
.fuelher-belief__grid,
.fuelher-steps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.fuelher-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7vw, 7.4rem);
}

.fuelher-hero__copy > p:not(.eyebrow) {
  max-width: 37rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.fuelher-hero__copy > img {
  width: min(72%, 24rem);
  height: 6rem;
  margin-bottom: 2.2rem;
  object-fit: contain;
  object-position: left center;
}

.fuelher-hero__media {
  position: relative;
}

.fuelher-hero__media img {
  width: 100%;
  min-height: 35rem;
  border-radius: 48% 48% 2rem 2rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.fuelher-hero__media p {
  margin: 0.85rem 0 0;
  color: rgba(59, 33, 24, 0.52);
  font-size: 0.62rem;
  text-align: right;
}

.fuelher-hero__media figcaption {
  margin: 0.85rem 0 0;
  color: rgba(59, 33, 24, 0.52);
  font-size: 0.62rem;
  text-align: right;
}

.fuelher-belief {
  background: var(--cocoa-deep);
  color: var(--porcelain);
}

.fuelher-belief__grid > p:last-child {
  margin: 0;
  color: rgba(255, 253, 249, 0.64);
}

.fuelher-belief__grid {
  grid-template-columns: 0.4fr 1.2fr 0.7fr;
  align-items: start;
}

.fuelher-belief blockquote {
  margin: 5rem 0 0;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 253, 249, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.4;
}

.fuelher-belief h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.7vw, 6rem);
}

.feeling-section {
  background: #f5eee8;
}

.feeling-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.feeling-card {
  min-height: 19rem;
  grid-column: span 2;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.feeling-card:nth-child(4),
.feeling-card:nth-child(5) {
  grid-column: span 3;
}

.feeling-card span {
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.feeling-card h3 {
  margin: 5rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.feeling-card p {
  max-width: 27rem;
  margin: 0;
  font-size: 0.8rem;
}

.feeling-card--power { background: #59354a; color: white; }
.feeling-card--light { background: #f3dfd1; }
.feeling-card--energy { background: #d8a95f; }
.feeling-card--balance { background: #d8e0cf; }
.feeling-card--comfort { background: #493027; color: white; }

.fuelher-steps {
  background: var(--porcelain);
}

.fuelher-steps__grid {
  align-items: start;
}

.fuelher-steps__intro {
  position: sticky;
  top: 8rem;
}

.fuelher-steps h2,
.fuelher-app h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.fuelher-steps__intro > p:not(.eyebrow),
.fuelher-app__grid > div > p:not(.eyebrow) {
  max-width: 37rem;
  color: var(--ink-soft);
}

.fuelher-steps__intro > img {
  width: min(78%, 24rem);
  height: auto;
  margin-top: 4rem;
}

.fuelher-step-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fuelher-step-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.fuelher-step-list span {
  color: var(--plum);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.fuelher-step-list h3 {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.fuelher-step-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.fuelher-app {
  background: linear-gradient(145deg, #eee4de, #e2d5cb);
}

.fuelher-app__grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.fuelher-app__phone {
  display: grid;
  min-height: 42rem;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.68), transparent 16rem),
    #d6bfb7;
}

.fuelher-app__phone img {
  width: min(58%, 20rem);
  height: auto;
  filter: drop-shadow(0 2rem 2rem rgba(49, 25, 20, 0.24));
}

.care-note--fuel {
  background: #f7e9e3;
}

/* App page */
.app-hero {
  display: grid;
  min-height: min(57rem, 100svh);
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background:
    radial-gradient(circle at 79% 48%, rgba(185, 138, 94, 0.28), transparent 23rem),
    linear-gradient(145deg, #33222f, #171016);
  color: var(--porcelain);
}

.app-hero__grid {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) minmax(19rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.app-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7vw, 7.3rem);
}

.app-hero__copy > p:not(.eyebrow):not(.store-note) {
  max-width: 39rem;
  color: rgba(255, 253, 249, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.app-hero .store-note {
  color: rgba(255, 253, 249, 0.48) !important;
}

.app-hero__phone {
  position: relative;
  display: grid;
  min-height: 40rem;
  place-items: center;
}

.app-hero__phone img {
  position: relative;
  z-index: 2;
  width: min(64%, 20rem);
  height: auto;
  filter: drop-shadow(0 2.5rem 2.8rem rgba(0, 0, 0, 0.45));
}

.app-hero__orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.app-hero__orbit--one { width: 35rem; height: 35rem; }
.app-hero__orbit--two { width: 25rem; height: 25rem; border-color: rgba(185, 138, 94, 0.3); }

.app-section--page {
  background: #f6f0e9;
}

.module-section {
  background: var(--porcelain);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-grid article {
  min-height: 20rem;
  padding: clamp(2rem, 3.5vw, 3.3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-grid article > span {
  color: var(--purple);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.module-grid img {
  width: min(80%, 16rem);
  height: 5rem;
  margin: 2.8rem 0 -1rem;
  object-fit: contain;
  object-position: left center;
}

.module-grid h3 {
  margin: 4rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.module-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.awareness-section {
  background: #d9d3ef;
}

.awareness-section h2,
.app-trust h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.awareness-section__grid > div > p:not(.eyebrow) {
  max-width: 39rem;
  color: var(--ink-soft);
}

.awareness-section__grid > img {
  width: 100%;
  height: auto;
  max-height: 10rem;
  object-fit: contain;
}

.awareness-section blockquote {
  margin: 0;
  padding: clamp(2.5rem, 5vw, 5rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.55);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.app-trust {
  background: var(--porcelain);
}

.app-trust__grid > div > p:not(.eyebrow) {
  max-width: 41rem;
  color: var(--ink-soft);
}

.app-trust__grid > ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.app-trust__grid li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

/* Shared content-page CTA */
.page-cta {
  padding-top: 2rem;
  background: var(--paper);
}

.page-cta__card {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 7rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 35%, rgba(185, 138, 94, 0.34), transparent 24rem),
    var(--cocoa-deep);
  color: var(--porcelain);
}

.page-cta__card::after {
  position: absolute;
  top: -11rem;
  right: -7rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025);
  content: "";
}

.page-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 5.7vw, 6rem);
}

.page-cta__card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 39rem;
  color: rgba(255, 253, 249, 0.7);
}

.page-cta .button {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.page-cta__card--fuel {
  background: radial-gradient(circle at 84% 35%, rgba(255, 240, 229, 0.2), transparent 24rem), #6c3e4f;
}

.page-cta__card--app {
  background: radial-gradient(circle at 84% 35%, rgba(108, 88, 217, 0.32), transparent 24rem), #231723;
}

@media (max-width: 72rem) {
  .home-intro__grid,
  .movement-intro__grid {
    grid-template-columns: 0.45fr 1.4fr;
  }

  .home-intro__aside,
  .movement-intro blockquote {
    grid-column: 2;
    margin-top: 0;
  }

  .gateway-card {
    min-height: 31rem;
  }

  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-grid li:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .explore-grid a {
    min-height: 20rem;
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__top {
    grid-template-columns: auto 1fr;
  }

  .site-footer__top > p {
    text-align: right;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

@media (max-width: 52rem) {
  .home-intro__grid,
  .movement-intro__grid,
  .content-hero__grid,
  .home-clarity__grid,
  .flow-heading,
  .power-spotlight__grid,
  .recovery-section__grid,
  .fuelher-hero__grid,
  .fuelher-belief__grid,
  .fuelher-steps__grid,
  .fuelher-app__grid,
  .app-hero__grid,
  .awareness-section__grid,
  .app-trust__grid {
    grid-template-columns: 1fr;
  }

  .fuelher-belief blockquote {
    margin-top: 0;
  }

  .home-intro__aside,
  .movement-intro blockquote {
    grid-column: auto;
  }

  .gateway-grid,
  .signal-grid,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .gateway-card {
    min-height: min(38rem, 110vw);
  }

  .content-hero,
  .media-hero,
  .fuelher-hero,
  .app-hero {
    min-height: auto;
    padding: 9rem 0 5rem;
  }

  .content-hero__symbol {
    width: min(34rem, 90vw);
    margin-inline: auto;
  }

  .media-hero {
    min-height: 45rem;
  }

  .media-hero__note {
    position: static;
    margin-top: 1.5rem;
  }

  .flow-heading {
    align-items: start;
    gap: 1.5rem;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-grid li:nth-child(3),
  .flow-grid li:nth-child(5) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .flow-grid li:nth-child(4) {
    border-left: 0;
  }

  .power-spotlight__visual {
    min-height: 30rem;
  }

  .recovery-art--page {
    min-height: 28rem;
  }

  .fuelher-hero__media {
    order: -1;
  }

  .fuelher-hero__media img {
    min-height: 28rem;
  }

  .feeling-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feeling-card,
  .feeling-card:nth-child(4),
  .feeling-card:nth-child(5) {
    grid-column: auto;
  }

  .feeling-card:last-child {
    grid-column: 1 / -1;
  }

  .fuelher-steps__intro {
    position: static;
  }

  .fuelher-app__phone {
    min-height: 34rem;
  }

  .app-hero__phone {
    min-height: 34rem;
  }

  .app-section--page .app-layout {
    grid-template-columns: 1fr;
  }

  .app-section--page .app-intro {
    text-align: center;
  }

  .app-section--page .app-intro > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .app-section--page .phone-stage {
    order: 2;
  }

  .app-section--page .feature-tabs {
    order: 3;
  }

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

  .care-note__inner {
    align-items: start;
  }
}

@media (max-width: 38rem) {
  .home-intro h2,
  .home-clarity h2,
  .content-hero h1,
  .media-hero h1,
  .fuelher-hero h1,
  .app-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .gateway-card {
    min-height: 29rem;
  }

  .gateway-card > div {
    padding: 1.5rem;
  }

  .gateway-card h3 {
    max-width: 10ch;
    font-size: 2.35rem;
  }

  .gateway-card .round-arrow {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .gateway-card__phone {
    width: 48%;
  }

  .launch-list article {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .launch-list strong {
    text-align: left;
  }

  .signal-grid article,
  .pathway-card,
  .explore-grid a,
  .module-grid article {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .signal-grid img {
    margin-bottom: 3rem;
  }

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

  .flow-grid li,
  .flow-grid li:nth-child(3),
  .flow-grid li:nth-child(4),
  .flow-grid li:nth-child(5) {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .flow-grid h3 {
    margin-top: 2rem;
  }

  .pathway-card__state {
    margin-bottom: 4rem;
  }

  .pathway-card--power > img {
    margin-top: -2rem;
  }

  .power-spotlight__visual {
    min-height: 24rem;
  }

  .recovery-art--page {
    min-height: 23rem;
  }

  .care-note__inner {
    grid-template-columns: 1fr;
  }

  .care-note__inner > span {
    width: 6rem;
    font-size: 2.5rem;
  }

  .fuelher-hero__media img {
    min-height: 22rem;
  }

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

  .feeling-card,
  .feeling-card:last-child {
    min-height: 17rem;
    grid-column: auto;
  }

  .fuelher-step-list li {
    grid-template-columns: 2rem 1fr;
    gap: 0.8rem;
  }

  .fuelher-app__phone,
  .app-hero__phone {
    min-height: 28rem;
  }

  .app-hero__orbit--one { width: 27rem; height: 27rem; }
  .app-hero__orbit--two { width: 20rem; height: 20rem; }

  .page-cta__card {
    padding: 3rem 1.5rem;
    border-radius: 1.5rem;
  }
}
