:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --muted: #8d8d87;
  --line: rgba(10, 10, 10, 0.12);
  --panel: rgba(255, 255, 255, 0.7);
  --warm: #c98855;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  font-weight: 400;
}

/* Type system:
   headlines   -> Cormorant Garamond Medium
   copy        -> Instrument Sans (default, set on :root)
   nav/buttons -> Helvetica Neue */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

p {
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-nav,
.nav,
.nav__cta,
.nav__menu,
button,
.button,
.plans__button,
.footer__cols {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

/* Fixed nav component (banner + nav row) — superpower-style scroll behavior */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 420px;
  will-change: transform;
}

.promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 46px;
  color: rgba(10, 10, 10, 0.78);
  background: #dedbd2;
  font-size: 15px;
  text-decoration: none;
}

.promo strong {
  font-weight: 500;
}

main {
  overflow-x: clip;
}

.hero {
  position: relative;
  min-height: calc(100svh - 58px);
  margin: 8px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: #080705;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.08);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      100deg,
      rgba(8, 7, 5, 0.62) 0%,
      rgba(8, 7, 5, 0.32) 34%,
      rgba(8, 7, 5, 0) 62%
    ),
    linear-gradient(
      to top,
      rgba(8, 7, 5, 0.55) 0%,
      rgba(8, 7, 5, 0) 42%
    );
}

/* Floating pill nav: links left, logo centered, actions right */
.nav {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  padding: 6px 6px 6px clamp(20px, 2.6vw, 30px);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(86, 80, 76, 0.32);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

/* Slightly more solid once the page scrolls past the hero */
.site-nav.is-scrolled .nav,
.site-nav.is-scrolled .nav__menu {
  background: rgba(54, 50, 47, 0.58);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.55);
}

.logo,
.nav__links,
.nav__actions,
.nav__menu {
  animation: fadeDown 700ms ease both;
}

.logo {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: clamp(90px, 7.6vw, 112px);
  height: auto;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.nav__links {
  grid-column: 1;
  display: flex;
  justify-self: start;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  opacity: 0.86;
  transition: opacity 0.2s ease;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__actions {
  grid-column: 3;
  display: flex;
  justify-self: end;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
}

.nav__login {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.86;
  transition: opacity 0.2s ease;
}

.nav__login:hover {
  opacity: 1;
}

.nav__cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
}

.nav__menu {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(44px, 3.6vw, 50px);
  height: clamp(44px, 3.6vw, 50px);
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(86, 80, 76, 0.32);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  cursor: pointer;
  transition: background-color 0.4s ease, box-shadow 0.4s ease,
    transform 0.2s ease;
}

.nav__menu:hover {
  transform: translateY(-1px);
}

.nav__menu svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(600px, calc(100% - 48px));
  margin: clamp(150px, 25vh, 260px) 0 0 clamp(32px, 4vw, 60px);
  color: rgba(255, 255, 255, 0.82);
}

.hero__copy p.hero__eyebrow {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.7;
}

.hero h1 {
  width: 600px;
  max-width: 100%;
  white-space: nowrap;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.4vw, 70px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero__copy p {
  max-width: 560px;
  margin: 18px 0 48px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 400;
}

.hero__actions .button--dark {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 48px;
  padding: 13px 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button--dark {
  background: rgba(255, 255, 255, 0.84);
  color: #0a0a0a;
}

.button--light {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.button--ink {
  border: 0;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
}

.kicker {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(116px, 12vw, 170px) auto clamp(118px, 13vw, 190px);
}

.intro-module {
  width: calc(100% - 400px);
  max-width: none;
  margin: clamp(132px, 15vw, 230px) auto clamp(132px, 15vw, 220px);
}

.intro-module p {
  width: 100%;
  margin: 0 auto;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 400;
}

.intro-module strong {
  font-weight: 500;
}

.intro-module span {
  color: #a3a3a3;
}

.wellness-heading {
  margin-bottom: clamp(36px, 4vw, 56px);
}

.section__heading.wellness-heading h2 {
  font-size: min(20px, 4vw);
  line-height: 1.2;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.wellness-heading span {
  color: var(--muted);
}

.wellness-story {
  position: relative;
  height: 420vh;
  margin: 0 auto 160px;
}

.wellness-module {
  position: sticky;
  top: 24px;
  display: grid;
  grid-template-columns: 1fr 1.04fr 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  width: calc(100% - 48px);
  height: calc(100svh - 24px);
  min-height: 620px;
  max-height: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 64px);
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
  background: #cbbab7;
}

/* Nature backgrounds (light, calm) that change on scroll */
.wellness-module__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.wm-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1100ms ease, transform 2200ms ease;
}

.wm-layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.wm-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 16, 18, 0.4) 0%,
    rgba(20, 16, 18, 0.06) 36%,
    rgba(20, 16, 18, 0) 54%,
    rgba(20, 16, 18, 0.42) 100%
  );
}

.wm-layer[data-bg="0"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(255, 240, 232, 0.6), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(170, 150, 158, 0.42), transparent 60%),
    linear-gradient(180deg, #e6c8c2 0%, #d6b9bf 46%, #c0b1b8 100%);
}

.wm-layer[data-bg="1"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(240, 248, 246, 0.58), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(120, 142, 144, 0.4), transparent 60%),
    linear-gradient(180deg, #d0dcd8 0%, #bac9c8 46%, #a4b8b8 100%);
}

.wm-layer[data-bg="2"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(255, 247, 230, 0.6), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(160, 138, 108, 0.4), transparent 60%),
    linear-gradient(180deg, #eedaba 0%, #dec6a1 46%, #cab394 100%);
}

.wm-layer[data-bg="3"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(244, 240, 252, 0.56), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(120, 112, 150, 0.4), transparent 60%),
    linear-gradient(180deg, #dad4e8 0%, #c5bedb 46%, #b1aacb 100%);
}

.wm-layer[data-bg="4"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(244, 248, 228, 0.56), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(120, 140, 108, 0.4), transparent 60%),
    linear-gradient(180deg, #dbe4cc 0%, #c6d2b3 46%, #b2c09d 100%);
}

.wm-layer[data-bg="5"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(255, 244, 234, 0.6), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(170, 138, 120, 0.4), transparent 60%),
    linear-gradient(180deg, #f2dccc 0%, #e6c8b3 46%, #d6b9a6 100%);
}

.wm-layer[data-bg="6"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(252, 238, 240, 0.6), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(168, 130, 140, 0.4), transparent 60%),
    linear-gradient(180deg, #ecd4d8 0%, #dcbfc6 46%, #c9adb6 100%);
}

.wm-layer[data-bg="7"] {
  background:
    radial-gradient(82% 52% at 50% 16%, rgba(238, 242, 248, 0.58), transparent 62%),
    radial-gradient(95% 62% at 50% 104%, rgba(122, 132, 156, 0.4), transparent 60%),
    linear-gradient(180deg, #d4dae6 0%, #bfc6d8 46%, #adb4c9 100%);
}

/* Left nav — white over nature, frosted pill on active */
.wellness-module__nav {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wellness-module__nav li {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  padding: 11px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(12.5px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: color 320ms ease, background 320ms ease, box-shadow 320ms ease,
    border-color 320ms ease;
}

.wellness-module__nav-icon {
  flex: none;
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  opacity: 0.85;
}

.wellness-module__nav li.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.wellness-module__nav li.is-active .wellness-module__nav-icon {
  opacity: 1;
}

/* Center — device */
.wellness-module__device {
  display: grid;
  place-items: center;
}

/* Pagination dots are a mobile-only control; hidden on desktop */
.wellness-module__dots {
  display: none;
}

/* Caption revealed directly beneath the connected module */
.wellness-caption {
  width: min(760px, calc(100% - 48px));
  margin: 16px auto 0;
  text-align: center;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
}

/* Right copy — white over nature */
.wellness-module__copy {
  color: #fff;
  padding-right: 100px;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wellness-module__copy h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.04;
  font-weight: 500;
}

.wellness-module__copy h2.heading--serif {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.4vw, 56px);
}

.wellness-module__copy h2.heading--serif em {
  font-style: italic;
  font-weight: 500;
}

.wellness-module__copy p {
  margin: 0;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.wellness-module__copy.is-changing {
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.wellness-story + .process {
  margin-top: 0;
}

/* Light-outline iPhone + app dashboard */
.phone-device {
  position: relative;
  width: min(322px, 100%);
  aspect-ratio: 9 / 19.3;
  filter: drop-shadow(0 36px 60px rgba(20, 14, 8, 0.2));
}

.phone-device__frame {
  display: none;
}

.phone-device__screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: 46px;
  background: #f7f6f2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.phone-device::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 80px;
  height: 22px;
  border-radius: 12px;
  background: #000;
  transform: translateX(-50%);
}

.app__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.app__time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.app__sys {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
}

.app__sys-ico {
  height: 11px;
  width: auto;
  fill: currentColor;
}

.app__sys-wifi {
  height: 12px;
}

.app__sys-wifi path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
}

.app__sys-wifi circle {
  fill: currentColor;
  stroke: none;
}

.app {
  display: flex;
  flex-direction: column;
  gap: 11px;
  height: 100%;
  padding: 20px 17px 18px;
}

.app.is-changing {
  opacity: 0.35;
  transition: opacity 140ms ease;
}

.app:not(.is-changing) {
  transition: opacity 320ms ease;
}

.app__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app__brand {
  font-size: 13px;
  font-weight: 600;
}

.app__date {
  font-size: 11px;
  color: var(--muted);
}

.app__hello {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.app__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(158deg, #2c2419 0%, #16120d 100%);
  color: #fff;
  overflow: hidden;
}

.app__hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app__hero-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.app__hero-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 10px;
  font-weight: 500;
}

.app__metric {
  display: block;
  margin: 14px 0 4px;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.app__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.app__spark {
  display: block;
  width: 100%;
  height: 34px;
  margin-top: 14px;
}

.app__spark path {
  fill: none;
  stroke: var(--warm);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.app__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.chip {
  padding: 11px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.chip span {
  display: block;
  margin-bottom: 5px;
  font-size: 8.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.chip strong {
  font-size: 15px;
  font-weight: 600;
}

.app__focus {
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.app__focus-h {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.app__focus ul {
  display: grid;
  gap: 8px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.app__focus li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.3;
}

.app__focus li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
}

.section__heading {
  width: min(700px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section__heading h2,
.membership h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
  font-weight: 500;
}

#process-title {
  font-size: clamp(24px, 3.4vw, 44px);
}

.section__heading p {
  width: min(520px, 100%);
  margin: 18px auto 0;
  color: #8d8d87;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.28;
  font-weight: 400;
}

.grow .section__heading {
  width: auto;
  max-width: 100%;
}

.grow .section__heading h2 {
  white-space: nowrap;
  font-size: clamp(24px, 3.4vw, 44px);
}

.grow-title__muted {
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  position: relative;
}

.step-card img,
.app-card {
  width: 100%;
  aspect-ratio: 0.95 / 1;
  border-radius: 10px;
  object-fit: cover;
  background: #e7e7e4;
}

.step-card:nth-child(2) img {
  object-position: 62% center;
}

.step-card h3 {
  margin: 18px 0 8px;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.step-card p {
  margin: 0;
  color: #8d8d87;
  font-size: 15px;
  line-height: 1.32;
  font-weight: 400;
}

.step-card p em {
  font-weight: 500;
  font-style: italic;
}

.app-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.app-card__top {
  width: min(230px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.84);
}

.app-card small,
.app-card strong {
  display: block;
}

.app-card small {
  color: var(--muted);
  font-weight: 800;
}

.app-card strong {
  margin-top: 8px;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.app-card svg {
  width: min(230px, 100%);
  margin: 0 auto;
  padding: 0 18px 18px;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.84);
}

.app-card path {
  fill: none;
  stroke: var(--warm);
  stroke-width: 6;
  stroke-linecap: round;
}

.app-card__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.app-card__tabs i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.16);
}

.app-card__tabs i:nth-child(2) {
  background: #000;
}

#grow-title {
  font-size: clamp(28px, 3vw, 40px);
}

.plans {
  width: calc(100% - 240px);
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.plans__visual {
  aspect-ratio: 1.02 / 1;
  border-radius: 10px;
  overflow: hidden;
}

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

.phone {
  width: min(258px, 78%);
  aspect-ratio: 9 / 19;
  padding: 10px;
  border-radius: 40px;
  background: #0a0a0a;
  box-shadow: 0 44px 80px -34px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 30px 18px 18px;
  border-radius: 31px;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(
    120% 78% at 50% 36%,
    #4a3115 0%,
    #1c130c 52%,
    #0b0807 100%
  );
  color: #fff;
}

.phone__island {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 74px;
  height: 20px;
  border-radius: 12px;
  background: #000;
  transform: translateX(-50%);
}

.phone__brand {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.phone__ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  margin: 24px auto 22px;
  border-radius: 50%;
}

.phone__ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    #ffc46b 0%,
    #ff8a00 70%,
    #ff8a00 93%,
    rgba(255, 138, 0, 0.12) 93%
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 9px),
    #000 calc(100% - 8px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 9px),
    #000 calc(100% - 8px)
  );
  filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.55));
}

.phone__score b {
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

.phone__score span {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.phone__quote {
  margin: 2px 6px 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.phone__quote small {
  display: block;
  margin-top: 9px;
  font-size: 9px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

.phone__cta {
  width: 100%;
  margin-top: auto;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1512;
  font-size: 12px;
  font-weight: 600;
}

.plans__info {
  padding-left: 100px;
  padding-right: 100px;
}

.plans__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
}

.plans__info h2 {
  margin: 0 0 40px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.04;
  font-weight: 500;
}

.plans__info h2 em {
  font-weight: 500;
  font-style: italic;
}

.plans__lead {
  margin: 0 0 28px;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.5;
  color: #5a5a56;
}

.plans__list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.plans__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.4;
  color: #3a3a38;
}

.plans__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.plans__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}

.plans__price b {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1;
  font-weight: 500;
}

.plans__price em {
  font-style: normal;
  font-size: 15px;
  color: var(--muted);
}

.plans__price small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.plans__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.plans__button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.plans__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.plans__badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plans__badges svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #9a9a93;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plans__note {
  margin: 18px 0 0;
  font-size: 12px;
  color: #a9a9a3;
}

.grow {
  width: calc(100% - 240px);
  max-width: none;
}

.grow__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grow__cell {
  position: relative;
  aspect-ratio: 1.02 / 1;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}

.grow__cell--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grow__cell--photo:last-child img {
  object-position: center;
}

.grow__grid .grow__cell--photo:nth-child(1) img {
  object-position: center 38%;
}

.grow__grid .grow__cell--photo:nth-child(3) img {
  object-position: center 32%;
}

.grow__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(
    to top,
    rgba(10, 8, 6, 0.5) 0%,
    rgba(10, 8, 6, 0.1) 46%,
    rgba(10, 8, 6, 0) 68%
  );
  color: #fff;
}

.grow__overlay h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  font-weight: 500;
}

.grow__overlay p {
  margin: 0;
  max-width: 32ch;
  font-size: 16px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.82);
}

.grow__cell--panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecebe6;
}

.orb-player {
  width: min(300px, 76%);
  padding: 22px 22px 18px;
  border-radius: 22px;
  background: #221d18;
  text-align: center;
  box-shadow: 0 34px 60px -34px rgba(0, 0, 0, 0.55);
}

.orb-player small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.orb-player__orb {
  width: 84px;
  height: 84px;
  margin: 20px auto 16px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 34% 30%,
    #c2a685 0%,
    #7a6047 44%,
    #2c2319 100%
  );
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.45),
    0 10px 22px rgba(0, 0, 0, 0.35);
}

.orb-player p {
  margin: 0 0 20px;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.orb-player__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.orb-player__bar {
  position: relative;
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.orb-player__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.72);
}

.orb-player__play {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 180ms ease;
}

.orb-player__play:hover {
  transform: scale(1.06);
}

.orb-player__play svg {
  width: 15px;
  height: 15px;
  margin-left: 2px;
  fill: #1a1512;
}

.grow__grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.grow__grid .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.grow__grid .reveal:nth-child(4) {
  transition-delay: 240ms;
}

.beliefs {
  width: calc(100% - 240px);
  max-width: none;
}

.beliefs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.beliefs__photo,
.beliefs__panel {
  position: relative;
  aspect-ratio: 1.02 / 1;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}

.beliefs__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.beliefs__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 48px);
  color: #fff;
  background: #6b4a2a;
}

.beliefs__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--belief-bg, url("assets/beliefs-texture.webp")) center / cover no-repeat;
  transform: scale(1.04);
  transition: opacity 200ms ease;
}

.beliefs__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(46, 26, 10, 0.62) 0%,
      rgba(46, 26, 10, 0.1) 56%,
      rgba(46, 26, 10, 0) 78%
    ),
    linear-gradient(
      to right,
      rgba(46, 26, 10, 0.28) 0%,
      rgba(46, 26, 10, 0) 52%
    );
}

.beliefs__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.beliefs__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.beliefs__num {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255, 255, 255, 0.9);
}

.beliefs__statement p {
  margin: 0;
  padding-right: 80px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.18;
  font-weight: 500;
}

.beliefs__text {
  transition: opacity 220ms ease, transform 220ms ease;
}

.beliefs__statement.is-changing .beliefs__text {
  opacity: 0;
  transform: translateY(8px);
}

.beliefs__statement em {
  font-style: italic;
  font-variant: normal;
  letter-spacing: 0.02em;
}

.beliefs__nav {
  display: flex;
  gap: 20px;
  margin-top: 26px;
}

.beliefs__nav button {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.beliefs__nav button:hover {
  color: #fff;
  transform: translateX(1px);
}

.faq {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.faq__intro {
  position: static;
}

.faq__intro .kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
}

.faq__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
  font-weight: 500;
}

.faq__intro h2 em {
  font-weight: 500;
  font-style: italic;
}

.faq__intro p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.faq__intro a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.faq__icon {
  position: relative;
  flex: none;
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 300ms ease;
}

.faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.6px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 0;
  width: 1.6px;
  height: 100%;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__icon {
  color: var(--ink);
}

.faq__item.is-open .faq__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a-inner {
  overflow: hidden;
}

.faq__a-inner p {
  max-width: 60ch;
  margin: 0;
  padding: 0 48px 28px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.lifestyle {
  position: relative;
  width: 100%;
  margin: clamp(116px, 12vw, 170px) 0 clamp(118px, 13vw, 190px);
}

.lifestyle__head {
  padding: 0 clamp(16px, 4vw, 64px);
  margin-bottom: clamp(28px, 3vw, 42px);
}

.lifestyle__head .kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.lifestyle__head h2 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.04;
  font-weight: 500;
}

.lifestyle__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px clamp(16px, 4vw, 64px) 0;
}

.lifestyle__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease,
    opacity 200ms ease;
}

.lifestyle__arrow:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.lifestyle__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.lifestyle__arrow:disabled:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.lifestyle__track {
  display: flex;
  gap: 16px;
  height: min(58vh, 540px);
  overflow-x: auto;
  padding: 0 clamp(16px, 4vw, 64px);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.lifestyle__track::-webkit-scrollbar {
  display: none;
}

.lifestyle__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}

.lifestyle__card {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  margin: 0;
  scroll-snap-align: center;
}

.lifestyle__card img {
  height: 100%;
  width: auto;
  aspect-ratio: 1122 / 1402;
  border-radius: 14px;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.lifestyle__card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  padding: 44px 24px 22px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(
    to top,
    rgba(20, 16, 12, 0.42) 0%,
    rgba(20, 16, 12, 0.16) 45%,
    rgba(20, 16, 12, 0) 100%
  );
  color: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 500;
}

.lifestyle__card figcaption em {
  font-style: italic;
  font-weight: 500;
}

.lifestyle__card figcaption.figcaption--serif {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.lifestyle__card figcaption.figcaption--serif em {
  font-style: italic;
  font-weight: 500;
}

.membership .kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--warm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.membership {
  text-align: center;
}

.membership h2 {
  width: min(820px, 100%);
  margin: 0 auto 48px;
}

.membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.dash-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 224px;
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(250, 249, 246, 0.9)
  );
  overflow: hidden;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease, border-color 320ms ease;
}

.dash-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 136, 85, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 320ms ease;
}

.dash-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 136, 85, 0.42);
  box-shadow: 0 28px 52px -30px rgba(46, 30, 16, 0.34);
}

.dash-card:hover::after {
  opacity: 1;
}

.dash-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(201, 136, 85, 0.1);
  color: var(--warm);
}

.dash-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash-card__body {
  margin-top: auto;
  padding-top: 26px;
}

.dash-card__label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dash-card strong {
  display: block;
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.18;
  font-weight: 500;
  color: var(--ink);
}

.dash-card__arrow {
  position: absolute;
  top: 30px;
  right: 26px;
  color: var(--warm);
  font-size: 17px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.dash-card:hover .dash-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.membership__button {
  margin-top: 36px;
}

.dashboard {
  width: calc(100% - 240px);
  max-width: none;
  text-align: center;
}

.dashboard .section__heading {
  margin-bottom: 26px;
}

#dashboard-title span {
  color: var(--muted);
}

.dashboard__module {
  position: relative;
  min-height: clamp(520px, 62vh, 700px);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}

.dashboard__module img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dashboard__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 14, 0.5) 0%,
    rgba(8, 10, 14, 0.12) 36%,
    rgba(8, 10, 14, 0) 54%,
    rgba(8, 10, 14, 0.32) 100%
  );
}

.dashboard__nav {
  position: absolute;
  left: clamp(34px, 5vw, 74px);
  top: 50%;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
}

.dashboard__nav li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard__nav li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: background 260ms ease, transform 260ms ease;
}

.dashboard__nav button {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  font: inherit;
  font-size: clamp(16px, 1.3vw, 22px);
  font-style: italic;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  transition: color 260ms ease, transform 260ms ease;
}

.dashboard__nav button.is-active {
  color: #fff;
  transform: translateX(6px);
}

.dashboard__nav li:has(button.is-active)::before {
  background: #fff;
  transform: scale(1.4);
}

.dashboard__copy {
  position: absolute;
  right: clamp(40px, 7vw, 110px);
  top: 50%;
  width: min(440px, 40vw);
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dashboard__copy.is-changing {
  opacity: 0;
  transform: translateY(-50%) translateX(12px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.dashboard__copy h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.04;
  font-weight: 500;
}

.dashboard__copy p {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.dashboard__cta {
  margin-top: 34px;
  text-align: center;
}

/* Apply questionnaire modal */
.apply {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.apply[hidden] {
  display: none;
}

.apply__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.55);
  backdrop-filter: blur(6px);
  animation: applyFade 240ms ease;
}

.apply__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(30px, 4vw, 50px);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 50px 100px -34px rgba(0, 0, 0, 0.5);
  animation: applyPop 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.apply__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f0efeb;
  color: #1a1512;
  font-size: 20px;
  cursor: pointer;
  transition: background 180ms ease;
}

.apply__close:hover {
  background: #e6e4dd;
}

.apply__progress {
  height: 3px;
  margin-bottom: 28px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
}

.apply__progress i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: 3px;
  background: var(--ink);
  transition: width 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.apply__step {
  display: none;
}

.apply__step.is-active {
  display: block;
  animation: applyStep 340ms ease;
}

.apply__kicker {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apply__step h3 {
  margin: 0 0 20px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  font-weight: 500;
}

.apply__form input[type="text"],
.apply__form input[type="email"],
.apply__form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafaf8;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  resize: vertical;
  transition: border-color 180ms ease;
}

.apply__form input:focus,
.apply__form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.apply__form .is-invalid {
  border-color: #c0563a;
}

.apply__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.apply__chips label {
  position: relative;
  cursor: pointer;
}

.apply__chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.apply__chips span {
  display: inline-flex;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.apply__chips input:checked + span {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.apply__chips input:focus-visible + span {
  outline: 2px solid var(--warm);
  outline-offset: 2px;
}

.apply__done-text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.apply__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
}

.apply__back {
  padding: 8px 4px;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.apply__back[hidden] {
  visibility: hidden;
  display: block;
}

.apply__next {
  min-width: 150px;
  min-height: 50px;
  padding: 0 26px;
}

@keyframes applyFade {
  from {
    opacity: 0;
  }
}

@keyframes applyPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
}

@keyframes applyStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

.steps .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.steps .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.steps .reveal:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-1.4%);
  }
}

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

@media (max-width: 1440px) {
  .site-nav {
    padding-left: clamp(16px, 5vw, 80px);
    padding-right: clamp(16px, 5vw, 80px);
  }
}

@media (max-width: 980px) {
  .nav {
    gap: clamp(12px, 2vw, 22px);
  }

  .nav__links {
    gap: clamp(14px, 2vw, 24px);
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(40px, 7vw, 58px);
  }

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

}

@media (max-width: 640px) {
  .promo {
    height: 42px;
    gap: 18px;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100svh - 52px);
    margin: 8px;
    border-radius: 14px;
  }

  .hero__image {
    animation: none;
    object-position: 67% center;
    transform: scale(1.08);
  }

  .nav {
    gap: 10px;
    padding: 9px 9px 9px 20px;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .logo img {
    width: 92px;
  }

  /* On phones: drop the inline links + Log in, keep logo, CTA and menu */
  .nav__links,
  .nav__login {
    display: none;
  }

  .nav__cta {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav__menu {
    width: 46px;
    height: 46px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - 58px + 80px);
  }

  .hero__image {
    opacity: 0.95;
  }

  .hero__copy {
    width: calc(100% - 44px);
    margin: 0 22px 36px;
  }

  .hero h1 {
    width: auto;
    max-width: none;
    white-space: normal;
    font-size: clamp(32px, 8.3vw, 46px);
  }

  .hero__copy p.hero__eyebrow {
    font-size: 12px;
  }

  .hero__eyebrow-2 {
    display: block;
  }

  .hero__copy p {
    max-width: none;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 34px);
  }

  .section.process,
  .section.grow,
  .section.compare,
  .section.faq,
  .section.plans,
  .section.beliefs {
    width: calc(100% - 48px);
  }

  .grow__cell {
    height: 64vh;
    aspect-ratio: auto;
  }

  .steps,
  .membership__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 44px;
  }

  .grow__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plans {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .plans__info {
    padding-left: 0;
    padding-right: 0;
  }

  .beliefs__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .beliefs__photo,
  .beliefs__panel {
    aspect-ratio: 1.1 / 1;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq__intro {
    position: static;
  }

  .faq__a-inner p {
    padding-right: 24px;
  }

  .lifestyle {
    margin-top: 88px;
    margin-bottom: 96px;
  }

  .lifestyle__track {
    height: 64vh;
    gap: 12px;
    padding: 0 24px;
  }

  .dashboard {
    width: calc(100% - 20px);
  }

  .dashboard__module {
    min-height: 660px;
  }

  .dashboard__shade {
    background: linear-gradient(
      to top,
      rgba(8, 10, 14, 0.66) 0%,
      rgba(8, 10, 14, 0.1) 52%,
      rgba(8, 10, 14, 0.4) 100%
    );
  }

  .dashboard__nav {
    left: 30px;
    top: 38px;
    gap: 12px;
    transform: none;
    font-size: 16px;
  }

  .dashboard__copy {
    left: 30px;
    right: auto;
    top: auto;
    bottom: 40px;
    width: calc(100% - 60px);
    transform: none;
  }

  .dashboard__copy.is-changing {
    transform: translateX(12px);
  }

  .dashboard__copy h3 {
    font-size: 32px;
  }

  .grow__cell {
    height: 64vh;
    aspect-ratio: auto;
  }

  .section {
    margin-top: 88px;
    margin-bottom: 96px;
  }

  .intro-module {
    width: calc(100% - 34px);
    margin-top: 86px;
    margin-bottom: 92px;
  }

  .intro-module p {
    font-size: 26px;
    line-height: 1.16;
  }

  .wellness-story {
    height: auto;
    margin-bottom: 160px;
  }

  .wellness-module {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    width: calc(100% - 20px);
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 22px 16px 30px;
    border-radius: 18px;
  }

  /* Mobile module 3: pills (top) -> phone -> headline + copy (below) */
  .wellness-module__nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    order: -1;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .wellness-module__nav::-webkit-scrollbar {
    display: none;
  }

  .wellness-module__nav li {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .wellness-module__nav li.is-active {
    color: #1a1410;
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .wellness-module__device {
    order: 0;
    touch-action: pan-y;
    cursor: pointer;
  }

  .phone-device {
    width: min(258px, 62vw);
  }

  .wellness-module__copy {
    order: 1;
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .wellness-module__copy p {
    max-width: none;
    margin: 0 auto;
    font-size: 17px;
  }

  .wellness-module__dots {
    display: none;
  }

  .wellness-module__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .wellness-module__copy h2 {
    width: 100%;
    max-width: none;
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
  }

  .wellness-module__copy h2.heading--serif {
    font-size: 24px;
  }

  .section__heading {
    text-align: left;
  }

  .section__heading h2,
  .membership h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  #process-title {
    font-size: clamp(28px, 3vw, 40px);
  }

  .step-card img,
  .app-card {
    aspect-ratio: 1 / 1;
  }

  .membership {
    text-align: left;
  }

  .membership h2 {
    margin-left: 0;
  }
}

/* Final CTA banner */
.cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(640px, calc(80vh + 120px), 880px);
  margin-top: clamp(80px, 10vw, 150px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.cta__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.cta__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(8, 9, 12, 0.5) 0%,
    rgba(8, 9, 12, 0.5) 60%,
    rgba(8, 9, 12, 0.62) 100%
  );
}

.cta__inner {
  width: min(640px, calc(100% - 48px));
  color: #fff;
}

.cta__icon {
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.cta__inner h2 em {
  font-weight: 500;
  font-style: italic;
}

.cta__inner h2 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5.6vw, 70px);
  line-height: 1.03;
  font-weight: 500;
}

.cta__inner p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  opacity: 0.8;
}

/* Footer */
.footer {
  padding: clamp(52px, 6vw, 84px) clamp(24px, 5vw, 72px) 34px;
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.7);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: clamp(40px, 6vw, 96px);
}

.footer__cols h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__cols div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__cols a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer__cols a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer__legal a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
  }

  .footer__legal {
    gap: 12px;
    white-space: nowrap;
  }
}

/* ============================================================
   Added module: comparison table
   ============================================================ */

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

#compare-title em {
  font-weight: 500;
  font-style: italic;
}

.compare .section__heading .kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* --- Comparison table --- */
.compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare__table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
}

.compare__table th,
.compare__table td {
  padding: 21px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare__table thead th {
  vertical-align: bottom;
  padding-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.compare__table th.compare__feature {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare__table tbody th[scope="row"] {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: color 200ms ease;
}

.compare__table tbody tr:hover th[scope="row"] {
  color: var(--warm);
}

/* highlighted Ritalu column — dark-capped floating card */
.compare__hl {
  position: relative;
  background: rgba(201, 136, 85, 0.06);
}

.compare__table thead th.compare__hl {
  color: #fff;
  background: linear-gradient(168deg, #2c2419 0%, #18130d 100%);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.compare__table tbody tr:last-child td.compare__hl {
  border-bottom: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 38px 52px -34px rgba(46, 30, 16, 0.5);
}

.compare__badge {
  display: inline-block;
  margin-bottom: 9px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(201, 136, 85, 0.22);
  color: #f0cda8;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare__hlname {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.mark {
  display: inline-block;
  vertical-align: middle;
}

.mark--ok {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 136, 85, 0.16);
}

.mark--ok::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid var(--warm);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.compare__hl .mark--ok {
  background: rgba(201, 136, 85, 0.26);
}

.mark--no {
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: #d6d6cf;
}

@media (max-width: 640px) {
  .compare__table {
    font-size: 15px;
  }
}

/* ---------- Waitlist modal ---------- */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 8, 6, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.waitlist-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.waitlist-modal__card {
  position: relative;
  width: min(460px, 100%);
  padding: clamp(30px, 4vw, 46px);
  border-radius: 22px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 30px 80px -30px rgba(20, 12, 6, 0.55);
  transform: translateY(14px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}

.waitlist-modal.is-open .waitlist-modal__card {
  transform: translateY(0) scale(1);
}

.waitlist-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.waitlist-modal__close:hover {
  background: rgba(10, 8, 6, 0.06);
  color: var(--ink);
}

.waitlist-modal__eyebrow {
  margin: 0 0 12px;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
}

.waitlist-modal__title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.06;
  font-weight: 500;
}

.waitlist-modal__title em {
  font-style: italic;
  font-weight: 500;
}

.waitlist-modal__sub {
  margin: 0 auto 24px;
  max-width: 34ch;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #6b6a64;
}

.waitlist-modal__sub em {
  font-style: italic;
}

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

.waitlist-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(10, 8, 6, 0.16);
  border-radius: 999px;
  background: #fff;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.waitlist-input::placeholder {
  color: #a3a19a;
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(201, 136, 85, 0.16);
}

.waitlist-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.waitlist-submit:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.waitlist-modal__fine {
  margin: 14px 0 0;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #9a988f;
}

.waitlist-check {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 136, 85, 0.16);
}

.waitlist-check svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--warm);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waitlist-skip {
  display: block;
  margin: 14px auto 0;
  border: 0;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist-skip:hover {
  color: var(--ink);
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.mobile-menu__inner a {
  color: var(--ink);
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu__cta {
  margin-top: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500;
}

/* ---------- Mobile: unify body copy to 17px ---------- */
@media (max-width: 640px) {
  .hero__copy p,
  .wellness-module__copy p,
  .section__heading p,
  .step-card p,
  .grow__overlay p,
  .faq__intro p,
  .faq__a-inner p,
  .cta__inner p,
  .dashboard__copy p,
  .plans__lead {
    font-size: 17px;
  }
}

/* ---------- Mobile: hero text pure white ---------- */
@media (max-width: 640px) {
  .hero__copy p.hero__eyebrow {
    color: #fff;
    opacity: 1;
  }
  .hero h1,
  .hero h1 em {
    color: #fff;
  }
  .hero__copy p {
    color: #fff;
    opacity: 0.8;
  }
}

/* ---------- Mobile: unify section headlines to match "Everything. Connected." ---------- */
@media (max-width: 640px) {
  #process-title,
  #grow-title,
  #plans-title,
  #faq-title {
    font-size: clamp(40px, 12vw, 54px);
  }
  #grow-title {
    white-space: normal;
  }
}

/* ---------- Module 3 side arrows (mobile only) ---------- */
.wm-arrow {
  display: none;
}

@media (max-width: 640px) {
  .wellness-module__device {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    order: 0;
  }
  .wm-arrow {
    display: block;
    flex: 0 0 auto;
    z-index: 3;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: none;
    color: #fff;
    cursor: pointer;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
    transition: transform 200ms ease;
  }
  .wm-arrow:active {
    transform: scale(0.9);
  }
  .wm-arrow svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: currentColor;
  }
}
