@font-face {
  font-family: Sora;
  src: url('/tipos/sora-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('/tipos/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --ink: #111;
  --white: #fff;
  --grey: #8a8a8a;
  --muted: #a6a6a6;
  --line: #292929;
  --light-line: #d8d8d8;
  --soft: #f2f2f2;
  --display: Sora, Arial, sans-serif;
  --body: Inter, Arial, sans-serif;
  --max: 1440px;
  --gutter: clamp(20px, 4.2vw, 72px);
  --section: clamp(84px, 10vw, 152px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; background: var(--black); overflow-x: clip; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body, button, a { font-family: var(--body); }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { max-width: 100%; height: auto; }
[hidden] { display: none !important; }
::selection { background: var(--white); color: var(--black); }

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 100;
  pointer-events: none;
}
.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(var(--reading, 0));
  transform-origin: left;
}

.topbar {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, height .35s ease;
}
.topbar.is-scrolled {
  height: 66px;
  background: rgba(0, 0, 0, .92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand-cluster {
  min-width: 0;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: auto; height: 24px; display: block; }
.brand-cluster__divider { width: 1px; height: 25px; background: var(--line); }
.brand-integrations { display: flex; align-items: center; gap: 12px; }
.brand-integrations img { display: block; object-fit: contain; opacity: .78; }
.brand-integrations__label {
  color: #666;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-integrations__whoop { width: 64px; height: auto; }
.brand-integrations__polar { width: 60px; height: auto; filter: brightness(0) invert(1); }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.nav a, .footer a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav a:hover, .footer a:hover { color: var(--white); }
.topbar__actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.language {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.language button {
  width: 35px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}
.language button[aria-pressed="true"] { background: var(--white); color: var(--black); }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--white); color: var(--black); }
.button--light:hover { background: #dedede; }
.button--dark { background: var(--black); color: var(--white); }
.button--dark:hover { background: #292929; }
.button--ghost { border-color: var(--line); color: var(--white); }
.button--ghost:hover { border-color: var(--white); }
.button--large { min-height: 58px; padding: 0 28px; }
.button__arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  transition: transform .25s var(--ease);
}
.button:hover .button__arrow { transform: rotate(45deg); }
.icon-arrow-up-right {
  width: 15px;
  height: 15px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 900px;
  min-height: max(900px, 100svh);
  padding: 94px var(--gutter) 52px;
  overflow: hidden;
  background: var(--black);
}
.hero__grain {
  position: absolute;
  width: min(54vw, 790px);
  aspect-ratio: 1;
  right: -10vw;
  top: 6vh;
  border: 1px solid #151515;
  border-radius: 50%;
  box-shadow: 0 0 0 9vw #080808, 0 0 0 18vw #040404;
  opacity: .95;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
  padding: clamp(52px, 4.5vw, 72px) clamp(28px, 4vw, 64px) 34px;
  overflow: hidden;
  border: 1px solid #181818;
  border-radius: 34px;
  background: linear-gradient(135deg, #050505 0%, #020202 58%, #090909 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.hero__panel-brand {
  position: absolute;
  z-index: 4;
  top: 27px;
  left: clamp(28px, 4vw, 64px);
  width: 142px;
  height: auto;
  opacity: .92;
}
.hero__copy { position: relative; z-index: 3; align-self: center; padding-top: 22px; }
.hero__copy > .eyebrow { color: var(--grey); margin-bottom: 17px; }
.hero h1, .final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 6.15vw, 98px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.072em;
  line-height: .81;
  text-transform: uppercase;
}
.hero h1 span, .final-cta h2 span { display: block; }
.hero h1 span { white-space: nowrap; }
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  text-stroke: 1.5px var(--white);
}
.hero__lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: #b5b5b5;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 23px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span:last-child { transition: transform .25s var(--ease); }
.text-link:hover span:last-child { transform: translateY(4px); }

.audience { margin-top: 29px; max-width: 600px; }
.audience__label { margin: 0 0 12px; color: #666; font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.audience-switch {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.audience-switch__indicator {
  position: absolute;
  z-index: -1;
  left: 4px;
  top: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 13px;
  background: var(--white);
  transition: transform .5s var(--ease);
}
body[data-audience="athlete"] .audience-switch__indicator { transform: translateX(100%); }
.audience-switch button {
  min-width: 0;
  height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  transition: color .35s ease;
}
.audience-switch button[aria-selected="true"] { color: var(--black); }
.audience-switch__number { font-size: 9px; opacity: .72; }
.audience-switch__arrow { font-size: 16px; }
.audience-benefits { min-height: 58px; }
.audience__benefit {
  max-width: 540px;
  margin: 15px 4px 0;
  color: #ededed;
  font-family: var(--display);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-product {
  position: relative;
  min-height: 630px;
  align-self: end;
  perspective: 1200px;
}
.hero-product__halo {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 76%;
  height: 10%;
  border: 1px solid #242424;
  border-radius: 50%;
  transform: translateX(-50%);
}
.hero-phone { position: absolute; transition: opacity .35s ease, transform .6s var(--ease); }
.hero-phone--main {
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(42%, 280px);
  transform: translate3d(calc(-50% + var(--depth-x, 0px)), var(--depth-y, 0px), 0);
}
.hero-phone--left {
  z-index: 2;
  left: 0;
  bottom: 3%;
  width: min(34%, 220px);
  transform: translate3d(var(--depth-left-x, 0px), var(--depth-left-y, 0px), -40px) rotate(-9deg);
}
.hero-phone--right {
  z-index: 1;
  right: 0;
  bottom: 5%;
  width: min(34%, 220px);
  transform: translate3d(var(--depth-right-x, 0px), var(--depth-right-y, 0px), -60px) rotate(9deg);
}
.phone-shell {
  position: relative;
  overflow: hidden;
  border: 5px solid #252525;
  border-radius: 34px;
  background: #080808;
}
.phone-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: inherit;
  pointer-events: none;
}
.phone-shell img { width: 100%; display: block; }
.status-bar-crop { overflow: hidden; }
/* AQUÍ YA NO SE RECORTA NADA, y es a propósito.
   Esta regla nació para las capturas hechas a mano desde un iPhone, que traían
   arriba la franja del sistema (hora, cobertura, batería) y había que quitarla.
   Las capturas de ahora las genera `scripts/landing-capturas.js`, que no tiene
   esa franja: lleva la barra de estado ya simulada y la cabecera de la app
   completa, idéntica en las 26 pantallas y en los dos idiomas.
   Recortando ese mismo 6 % se comía la barra negra y un trozo de la cabecera,
   y cada pantalla empezaba a una altura distinta según su proporción: es lo que
   hacía que unas salieran con logo y otras cortadas por la mitad. */
.status-bar-crop:not(.status-bar-crop--mobile-only) > img {
  width: 100%;
  height: auto;
}
.screen-demo-profile {
  position: absolute;
  z-index: 8;
  /* Justo DEBAJO de la cabecera de la app, que ocupa el 12 % de alto de toda
     captura (la barra de estado simulada más la barra del logo). Encima tapaba
     el nombre y media marca, que es precisamente lo que la etiqueta viene a
     aclarar. */
  top: 13.5%;
  right: 2.2%;
  min-width: 29%;
  padding: 7px 9px;
  border: 1px solid #343434;
  border-radius: 999px;
  background: #171717;
  color: #d8f73c;
  font-size: clamp(5px, .55vw, 8px);
  font-weight: 800;
  letter-spacing: .09em;
  text-align: center;
  white-space: nowrap;
}
.screen-demo-profile--light {
  border-color: #d4d2ca;
  background: #f0efe9;
  color: #526a17;
}
.screen-demo-profile--captured { top: 5.1%; }
.data-pill {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 14px;
  border: 1px solid #3b3b3b;
  border-radius: 999px;
  background: #0b0b0b;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  text-transform: uppercase;
}
.data-pill--top { top: 19%; left: -14%; }
.data-pill--accent { right: -26%; top: 28%; background: var(--white); color: var(--black); border-color: var(--white); }
.data-pill--bottom { right: -13%; bottom: 19%; }
.hero__foot {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5f5f5f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}
.hero__foot p { margin: 0; }
.hero__scroll span { color: var(--white); margin-left: 9px; }

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
}
.ticker__list {
  width: min(100%, var(--max));
  min-height: 66px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  font-family: var(--display);
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .05em;
  text-align: center;
}
.ticker__list li {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  border-left: 1px solid var(--line);
}
.ticker__list li:last-child { border-right: 1px solid var(--line); }

.section-head {
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 62px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.section-head--dark { border-color: var(--light-line); }
.section-index { margin: 0; color: var(--grey); font-size: 10px; font-variant-numeric: tabular-nums; }

.nutrition, .showcase, .pricing {
  color: var(--black);
  background: var(--white);
  padding: var(--section) var(--gutter);
}
.nutrition__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(550px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 132px);
}
.nutrition h2, .integrations h2, .showcase h2, .proof h2, .pricing h2, .faq h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.062em;
  line-height: .92;
  text-transform: uppercase;
}
.nutrition__copy > p:not(.microcopy) {
  max-width: 620px;
  margin: 30px 0 0;
  color: #4b4b4b;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
}
.nutrition__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}
.nutrition__steps article { padding: 18px 13px 20px 0; border-right: 1px solid var(--light-line); }
.nutrition__steps article + article { padding-left: 16px; }
.nutrition__steps article:last-child { border-right: 0; }
.nutrition__steps span, .nutrition__steps strong, .nutrition__steps small { display: block; }
.nutrition__steps span { color: var(--grey); font-size: 9px; margin-bottom: 18px; }
.nutrition__steps strong { font-size: 14px; text-transform: uppercase; }
.nutrition__steps small { margin-top: 5px; color: #666; font-size: 11px; line-height: 1.4; }
.microcopy { color: var(--grey); font-size: 11px; letter-spacing: .03em; }
.nutrition__copy .microcopy { margin-top: 18px; }
.nutrition-visual { position: relative; min-height: 670px; }
.meal-photo {
  position: absolute;
  left: 0;
  top: 7%;
  width: 61%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
}
.meal-photo img { width: 100%; aspect-ratio: 1; display: block; object-fit: cover; filter: saturate(.82) contrast(1.08); }
.meal-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.scan-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); animation: blink 1.2s ease infinite; }
@keyframes blink { 50% { opacity: .25; } }
.nutrition-phone {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 48%;
  box-shadow: -22px 28px 0 var(--black);
}
.macro-card {
  position: absolute;
  z-index: 3;
  min-width: 138px;
  padding: 14px 16px;
  border: 1px solid var(--light-line);
  background: var(--white);
}
.macro-card span, .macro-card strong { display: block; }
.macro-card span { color: var(--grey); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.macro-card strong { margin-top: 5px; font-family: var(--display); font-size: 22px; font-style: italic; }
.macro-card--protein { left: 6%; bottom: 5%; }
.macro-card--calories { right: 2%; top: 2%; }

.nutrition-plan {
  max-width: var(--max);
  min-height: 760px;
  margin: clamp(88px, 10vw, 150px) auto 0;
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(520px, 1.22fr);
  overflow: hidden;
  border-radius: 32px;
  background: var(--black);
  color: var(--white);
}
.nutrition-plan__copy {
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 4.8vw, 70px);
  border-right: 1px solid var(--line);
}
.nutrition-plan__eyebrow {
  margin: 0 0 42px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}
.nutrition-plan h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.3vw, 76px);
  font-style: italic;
  letter-spacing: -.06em;
  line-height: .91;
  text-transform: uppercase;
}
.nutrition-plan__copy > p:not(.nutrition-plan__eyebrow) {
  max-width: 570px;
  margin: 30px 0 32px;
  color: #a5a5a5;
  font-size: 15px;
  line-height: 1.65;
}
.nutrition-plan__roles { display: flex; flex-wrap: wrap; gap: 7px; }
.nutrition-plan__roles span {
  padding: 9px 11px;
  border: 1px solid #363636;
  border-radius: 999px;
  color: #bcbcbc;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}
.nutrition-plan__roles span:first-child { border-color: #575f35; color: #d4f15b; }
.nutrition-plan__steps { margin-top: auto; border-top: 1px solid #2d2d2d; }
.nutrition-plan__steps article {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid #2d2d2d;
}
.nutrition-plan__steps span { grid-row: 1 / 3; color: #5f5f5f; font-size: 9px; }
.nutrition-plan__steps strong { font-size: 12px; text-transform: uppercase; }
.nutrition-plan__steps small { margin-top: 3px; color: #818181; font-size: 10px; line-height: 1.4; }
.nutrition-plan__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 46%, rgba(111, 133, 36, .24), transparent 34%),
    #080808;
}
.nutrition-plan__week {
  position: absolute;
  z-index: 4;
  top: 27px;
  right: 27px;
  padding: 9px 12px;
  border: 1px solid #323232;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #a8a8a8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}
.nutrition-plan__phone {
  position: absolute;
  bottom: 34px;
  width: min(43%, 288px);
  box-shadow: 0 34px 90px rgba(0,0,0,.62);
}
.nutrition-plan__phone img { width: 100%; display: block; }
.nutrition-plan__phone--menu { z-index: 1; left: 7%; transform: rotate(-4deg); opacity: .82; }
.nutrition-plan__phone--recipe { z-index: 2; right: 7%; transform: rotate(4deg); }
.nutrition-plan__data {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}
.nutrition-plan__data span {
  padding: 8px 10px;
  border: 1px solid #343434;
  border-radius: 999px;
  background: rgba(0,0,0,.88);
  color: #d0d0d0;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.integrations, .proof, .faq {
  padding: var(--section) var(--gutter);
  background: var(--black);
  color: var(--white);
}
.integrations__intro, .showcase__headline, .pricing__headline {
  max-width: var(--max);
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: end;
  gap: 70px;
}
.integrations__intro p, .showcase__headline p, .pricing__headline p {
  max-width: 560px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.integration-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.integration-card {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 34px 36px 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #0c0c0c;
}
.integration-card--polar { background: var(--white); color: var(--black); }
.integration-card__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.integration-card__top > span { color: var(--grey); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.whoop-logo { width: 130px; height: auto; }
.polar-logo { width: 132px; height: auto; }
.integration-card h3 {
  max-width: 570px;
  margin: 58px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.7vw, 58px);
  font-style: italic;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}
.integration-card > p { max-width: 510px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.integration-card--whoop > p {
  position: relative;
  z-index: 3;
  max-width: 360px;
}
.integration-card--polar > p { color: #666; }
.integration-screens { position: absolute; left: 12%; right: 8%; bottom: 28px; height: 510px; }
.integration-screen {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(43%, 235px);
  transform: translateX(-24%) rotate(4deg);
}
.integration-screen--back { z-index: 1; left: 20%; transform: rotate(-4deg); opacity: .72; }
.trademark-note {
  max-width: var(--max);
  margin: 20px auto 0;
  color: #555;
  font-size: 10px;
  line-height: 1.5;
}

@media (min-width: 1151px) {
  .integration-card { min-height: clamp(880px, 68vw, 980px); }
}

.showcase__headline p, .pricing__headline p { color: #5e5e5e; }
.screen-wall-controls {
  max-width: 1280px;
  margin: -42px auto 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.screen-wall-controls > span {
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}
.screen-wall-controls > div { display: flex; gap: 7px; }
.screen-wall-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}
.screen-wall-controls button:hover:not(:disabled) { background: var(--black); color: var(--white); }
.screen-wall-controls button:disabled { opacity: .28; cursor: default; }
.screen-wall {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 28px);
  align-items: start;
}
.screen-card { margin: 0; }
.screen-card--raised { margin-top: 0; }
.screen-card__image {
  position: relative;
  width: min(100%, 330px);
  height: auto;
  margin-inline: auto;
  background: var(--ink);
  transition: transform .55s var(--ease);
}
.screen-card__image img {
  width: 100%;
  display: block;
  transition: transform .55s var(--ease);
}
.screen-card__image--device-shot {
  overflow: hidden;
  border-radius: 5px 5px 34px 34px;
  background: var(--black);
  box-shadow: 0 0 0 1px #2a2a2a;
}
.screen-card__image--device-shot img { height: auto; }
.screen-card:hover .screen-card__image { transform: translateY(-6px); }
.screen-card figcaption {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--light-line);
}
.screen-card figcaption span { grid-row: 1 / 3; color: var(--grey); font-size: 10px; }
.screen-card figcaption strong { font-size: 14px; text-transform: uppercase; }
.screen-card figcaption small { margin-top: 4px; color: #686868; font-size: 12px; line-height: 1.45; }

.athlete-progress {
  max-width: 1280px;
  min-height: 390px;
  margin: clamp(52px, 6vw, 82px) auto 0;
  display: grid;
  grid-template-columns: minmax(320px, .5fr) minmax(0, 1.5fr);
  overflow: hidden;
  border: 1px solid #262626;
  border-radius: 30px;
  background: #070707;
  color: var(--white);
}
.athlete-progress__copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 46px);
  border-right: 1px solid #262626;
}
.athlete-progress__index {
  margin: 0 0 34px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}
.athlete-progress h3 {
  max-width: 100%;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 2.8vw, 46px);
  font-style: italic;
  letter-spacing: -.055em;
  line-height: .94;
  overflow-wrap: normal;
}
.athlete-progress__copy > p:not(.athlete-progress__index) {
  max-width: 470px;
  margin: 24px 0 38px;
  color: #a6a6a6;
  font-size: 14px;
  line-height: 1.6;
}
.athlete-progress__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.athlete-progress__metrics span {
  padding: 8px 10px;
  border: 1px solid #343434;
  border-radius: 999px;
  color: #b8b8b8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}
.athlete-progress__metrics span:first-child {
  border-color: #5d701c;
  color: #c8f52a;
}
.athlete-progress__visual {
  min-width: 0;
  display: grid;
  place-items: center;
  background: var(--black);
}
.athlete-progress__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.human-chat {
  max-width: 1280px;
  min-height: 720px;
  margin: clamp(68px, 8vw, 108px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  overflow: hidden;
  border: 1px solid #282828;
  border-radius: 30px;
  background: #070707;
  color: var(--white);
}
.human-chat__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(38px, 5vw, 72px);
  border-right: 1px solid #282828;
}
.human-chat__eyebrow {
  margin: 0 0 48px;
  color: #777;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .17em;
}
.human-chat h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 5.1vw, 72px);
  font-style: italic;
  letter-spacing: -.06em;
  line-height: .9;
}
.human-chat__copy > p:not(.human-chat__eyebrow) {
  max-width: 630px;
  margin: 30px 0;
  color: #a2a2a2;
  font-size: 15px;
  line-height: 1.65;
}
.human-chat__roles { display: flex; flex-wrap: wrap; gap: 7px; }
.human-chat__roles span {
  padding: 8px 11px;
  border: 1px solid #353535;
  border-radius: 999px;
  color: #a8a8a8;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .09em;
}
.human-chat__roles span:last-child { border-color: #566b1d; color: #d0f24a; }
.human-chat__facts {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #292929;
}
.human-chat__facts article { padding: 20px 13px 0 0; }
.human-chat__facts article + article { padding-left: 13px; border-left: 1px solid #292929; }
.human-chat__facts strong, .human-chat__facts small { display: block; }
.human-chat__facts strong { font-size: 11px; text-transform: uppercase; }
.human-chat__facts small { margin-top: 6px; color: #717171; font-size: 9px; line-height: 1.45; }
.human-chat__visual {
  min-width: 0;
  display: grid;
  place-items: end center;
  padding: 34px 20px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 68%, rgba(166, 198, 46, .16), transparent 42%),
    #0b0b0b;
}
.human-chat__phone {
  width: min(82%, 350px);
  transform: rotate(1.8deg) translateY(22px);
  box-shadow: 0 35px 90px rgba(0,0,0,.58);
}
.demo-chat-thread {
  position: absolute;
  z-index: 5;
  top: 9.7%;
  right: 0;
  bottom: 8.1%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px 13px;
  overflow: hidden;
  background: #f2f1eb;
  color: #171717;
}
.demo-chat-thread__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 12px;
  border-bottom: 1px solid #d9d7ce;
}
.demo-chat-thread__head strong { font-size: 13px; }
.demo-chat-thread__head span { color: #63791f; font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.demo-chat-bubble {
  max-width: 84%;
  padding: 10px 11px 8px;
  border: 1px solid #dedbd2;
  border-radius: 15px 15px 15px 5px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0,0,0,.055);
}
.demo-chat-bubble--athlete {
  align-self: flex-end;
  border-color: #dce5b6;
  border-radius: 15px 15px 5px 15px;
  background: #eaf2ca;
}
.demo-chat-bubble p { margin: 0; font-size: 10px; line-height: 1.35; }
.demo-chat-bubble small { display: block; margin-top: 5px; color: #89877f; font-size: 6px; font-weight: 700; letter-spacing: .03em; }
.demo-chat-thread__input {
  min-height: 38px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 12px;
  border: 1px solid #d7d5cd;
  border-radius: 13px;
  color: #96938c;
  font-size: 9px;
}
.demo-chat-thread__input b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #5d741c;
  color: #fff;
  font-size: 14px;
}

.proof__title, .faq__title {
  max-width: var(--max);
  margin: 0 auto 68px;
  display: grid;
  grid-template-columns: .35fr 1fr;
  align-items: start;
  gap: 40px;
}
.proof__title h2, .faq__title h2 { max-width: 1000px; }
.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.proof-card {
  min-height: 330px;
  padding: 28px;
  background: var(--black);
}
.proof-card--wide {
  position: relative;
  grid-column: span 2;
  min-height: 500px;
  display: grid;
  grid-template-columns: 42px minmax(240px, .68fr) 1fr;
  gap: 22px;
  overflow: hidden;
}
.proof-card__number { color: #555; font-size: 10px; }
.proof-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2.5vw, 40px);
  font-style: italic;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-transform: uppercase;
}
.proof-card p { color: var(--grey); font-size: 14px; line-height: 1.6; }
.proof-card--report {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 28px;
}
.proof-card--agenda {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.agenda-preview {
  width: min(78%, 235px);
  margin: auto auto -42px;
  box-shadow: 0 22px 62px rgba(0,0,0,.52);
}
.proof-card--install {
  position: relative;
  grid-column: span 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 42px minmax(260px, .66fr) minmax(330px, 1fr);
  gap: 22px;
  overflow: hidden;
}
.proof-card--report > h3,
.proof-card--report > p,
.proof-card--report > .proof-card__number { position: relative; z-index: 2; }
.report-preview {
  position: relative;
  width: min(78%, 310px);
  margin: auto auto 0;
  padding-top: 34px;
}
.report-preview img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #303640;
  border-radius: 16px;
  background: #0d0f11;
  box-shadow: 0 20px 55px rgba(0,0,0,.42);
}
.report-preview__label {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  padding: 7px 10px;
  border: 1px solid #3d444c;
  border-radius: 999px;
  background: rgba(7,8,9,.88);
  color: #d7d7d7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}
.proof-context-stack {
  position: relative;
  min-width: 0;
  min-height: 440px;
  align-self: stretch;
  overflow: hidden;
}
.proof-phone {
  position: absolute;
  bottom: -86px;
  width: min(64%, 225px);
  box-shadow: 0 28px 68px rgba(0,0,0,.48);
}
.proof-phone--context { z-index: 1; left: 3%; transform: rotate(-4deg); opacity: .66; }
.proof-phone--chat { z-index: 2; right: 1%; transform: rotate(4deg); }
.proof-context-label {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 10px;
  padding: 8px 11px;
  border: 1px solid #3a4320;
  border-radius: 999px;
  background: rgba(5,5,5,.88);
  color: #d3f14e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .09em;
}
.proof-install-copy { align-self: start; }
.proof-install-copy p { max-width: 430px; }
.proof-install-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.proof-install-tags span {
  padding: 8px 10px;
  border: 1px solid #343434;
  border-radius: 999px;
  color: #aaa;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .09em;
}
.proof-install-visual { position: relative; min-width: 0; height: 620px; margin: -4px 0 -28px; overflow: hidden; }
.proof-install-phone {
  position: absolute;
  bottom: -24px;
  width: min(49%, 250px);
  box-shadow: 0 30px 76px rgba(0,0,0,.56);
}
.proof-install-phone--back { z-index: 1; left: 7%; transform: rotate(-5deg); opacity: .68; }
.proof-install-phone--front { z-index: 2; right: 7%; transform: rotate(5deg); }
.proof-install-badge {
  position: absolute;
  z-index: 5;
  right: 7%;
  top: 15px;
  padding: 9px 12px;
  border: 1px solid #485b19;
  border-radius: 999px;
  background: #d0f33b;
  color: #111;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .1em;
}

.pricing { overflow: hidden; }
.pricing__headline { margin-bottom: 44px; }
.plan-stage { position: relative; max-width: var(--max); margin: 0 auto; }
.plan-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.plan-controls button {
  width: 43px;
  height: 43px;
  border: 1px solid var(--light-line);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 19px;
  transition: background-color .2s ease, color .2s ease;
}
.plan-controls button:hover { background: var(--black); color: var(--white); }
.plan-counter { display: flex; align-items: center; gap: 9px; min-width: 68px; font-size: 10px; font-variant-numeric: tabular-nums; }
.plan-counter i { width: 25px; height: 1px; background: var(--light-line); }
.plan-viewport {
  overflow: hidden;
  padding: 15px 0 22px;
  touch-action: pan-y;
  cursor: grab;
}
.plan-viewport.is-swiping { cursor: grabbing; }
.plan-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transition: transform .7s var(--ease);
}
.plan-card {
  flex: 0 0 clamp(300px, 31vw, 430px);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--light-line);
  border-radius: 27px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  opacity: .42;
  transform: scale(.92);
  transition: opacity .55s ease, transform .65s var(--ease), color .35s ease, background-color .35s ease;
}
.plan-card.is-selected {
  background: var(--black);
  color: var(--white);
  opacity: 1;
  transform: scale(1);
}
.plan-card:focus-visible { outline: 3px solid #8a8a8a; outline-offset: 3px; }
.plan-card__tag { margin: 0 0 50px; color: var(--grey); font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.plan-card h3 { margin: 0; }
.plan-card h3 strong, .plan-card h3 span { display: block; }
.plan-card h3 strong {
  font-family: var(--display);
  font-size: clamp(42px, 4.3vw, 62px);
  font-style: italic;
  letter-spacing: -.055em;
  line-height: .95;
}
.plan-card h3 span { margin-top: 8px; color: var(--grey); font-size: 11px; font-weight: 500; text-transform: uppercase; }
.plan-card > p:not(.plan-card__tag) { margin: 19px 0 26px; color: var(--grey); font-size: 14px; }
.plan-card ul { margin: 0 0 30px; padding: 0; list-style: none; }
.plan-card li { padding: 12px 0; border-bottom: 1px solid var(--light-line); color: #5c5c5c; font-size: 13px; }
.plan-card.is-selected li { border-color: #2e2e2e; color: #c3c3c3; }
.plan-card .button { margin-top: auto; width: 100%; }
.plan-card.is-selected .button--dark { background: var(--white); color: var(--black); }
.pricing__note { margin: 28px auto 0; color: var(--grey); font-size: 10px; text-align: center; }

.faq { display: grid; grid-template-columns: .65fr 1fr; gap: clamp(50px, 9vw, 150px); }
.faq__title { display: block; margin: 0; }
.faq__title .eyebrow { color: var(--grey); margin-bottom: 24px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; flex: 0 0 24px; width: 24px; height: 24px; border: 1px solid #3b3b3b; border-radius: 50%; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 7px; top: 11px; width: 8px; height: 1px; background: var(--white); }
.faq summary i::after { transform: rotate(90deg); transition: transform .3s ease; }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details p { max-width: 700px; margin: -3px 44px 28px 0; color: var(--grey); font-size: 14px; line-height: 1.7; }
.faq__privacy-link {
  display: table;
  margin-top: 12px;
  padding-bottom: 2px;
  border-bottom: 1px solid #777;
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.faq__privacy-link:hover { border-color: var(--white); color: #d7ff39; }

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: var(--section) var(--gutter);
  border-top: 1px solid var(--line);
  text-align: center;
}
.final-cta__symbol {
  position: absolute;
  width: min(78vw, 1100px);
  max-width: none;
  opacity: .055;
  transform: rotate(-10deg);
}
.final-cta__inner { position: relative; z-index: 2; }
.final-cta__inner > .eyebrow { color: var(--grey); margin-bottom: 30px; }
.final-cta h2 { font-size: clamp(52px, 8.6vw, 132px); line-height: .87; }
.final-cta .button { margin-top: 46px; }
.final-cta .microcopy { margin: 18px 0 0; }

.footer {
  max-width: var(--max);
  min-height: 180px;
  margin: 0 auto;
  padding: 42px var(--gutter) calc(42px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
}
.footer > img { width: 220px; height: auto; opacity: .75; }
.footer__links { display: flex; gap: 28px; }
.footer > p { justify-self: end; margin: 0; color: #555; font-size: 10px; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s var(--ease) var(--delay, 0ms), transform .85s var(--ease) var(--delay, 0ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.hero-product.is-switching { animation: productSwitch .55s var(--ease); }
@keyframes productSwitch {
  0% { opacity: .35; transform: translateY(16px) scale(.985); }
  100% { opacity: 1; transform: none; }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .meal-photo { animation: mealDrift linear both; animation-timeline: view(); animation-range: entry 0% cover 80%; }
    .nutrition-phone { animation: phoneDrift linear both; animation-timeline: view(); animation-range: entry 0% cover 80%; }
    @keyframes mealDrift { from { transform: translateY(48px) rotate(-2deg); } to { transform: translateY(-18px) rotate(-2deg); } }
    @keyframes phoneDrift { from { transform: translateY(72px); } to { transform: translateY(-8px); } }
  }
}

@media (max-width: 1150px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero { min-height: auto; }
  .hero__inner { display: block; min-height: 0; padding: 62px clamp(24px, 5vw, 44px) 34px; }
  .hero__panel-brand { top: 23px; left: clamp(24px, 5vw, 44px); width: 126px; }
  .hero__copy { max-width: 760px; }
  .hero h1 { font-size: clamp(64px, 9.2vw, 100px); }
  .hero-product { max-width: 700px; min-height: 650px; margin: 36px auto 0; }
  .nutrition__grid { grid-template-columns: .9fr 1.1fr; gap: 44px; }
  .nutrition-visual { min-height: 580px; }
  .nutrition-plan { grid-template-columns: minmax(360px, .86fr) minmax(480px, 1.14fr); }
  .integration-card { min-height: 830px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card--wide { grid-column: span 2; }
  .proof-card--install { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --section: 86px; }
  .topbar { height: 66px; }
  .topbar__cta { display: none; }
  .brand img { height: 20px; }
  .hero {
    min-height: auto;
    padding-top: 92px;
  }
  .hero__inner { display: block; min-height: 0; padding: 62px clamp(24px, 5vw, 44px) 34px; }
  .hero__panel-brand { top: 23px; left: clamp(24px, 5vw, 44px); width: 126px; }
  .hero__copy { max-width: 700px; }
  .hero h1 { font-size: clamp(64px, 12vw, 100px); }
  .hero__lead { max-width: 650px; }
  .hero-product { max-width: 700px; min-height: 650px; margin: 24px auto 0; }
  .hero__foot { display: none; }
  .ticker__list { grid-template-columns: repeat(3, 1fr); }
  .ticker__list li { min-height: 58px; border-bottom: 1px solid var(--line); }
  .ticker__list li:nth-child(3n) { border-right: 1px solid var(--line); }
  .ticker__list li:nth-child(n + 4) { border-bottom: 0; }
  .nutrition__grid { grid-template-columns: 1fr; }
  .nutrition-visual { width: min(100%, 690px); margin: 0 auto; }
  .nutrition-plan { grid-template-columns: 1fr; }
  .nutrition-plan__copy { min-height: 660px; border-right: 0; border-bottom: 1px solid var(--line); }
  .nutrition-plan__visual { min-height: 690px; }
  .integrations__intro, .showcase__headline, .pricing__headline { grid-template-columns: 1fr; gap: 24px; }
  .integration-grid { grid-template-columns: 1fr; }
  .integration-card { min-height: 790px; }
  .integration-screens { left: 22%; right: 15%; }
  .integration-card--whoop > p { max-width: 300px; }
  .integration-card--whoop .integration-screens { left: 32%; right: 3%; bottom: 18px; }
  .screen-card--raised { margin-top: 0; }
  .human-chat { grid-template-columns: 1fr; }
  .human-chat__copy { min-height: 610px; border-right: 0; border-bottom: 1px solid #282828; }
  .human-chat__visual { min-height: 720px; }
  .screen-wall-controls { display: flex; margin-top: -42px; }
  .screen-wall {
    grid-template-columns: repeat(4, minmax(300px, 44vw));
    gap: 12px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    overscroll-behavior-inline: contain;
  }
  .screen-wall::-webkit-scrollbar { display: none; }
  .screen-wall.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
  .screen-card { scroll-snap-align: center; }
  .proof__title { grid-template-columns: 1fr; gap: 24px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-card--wide { grid-column: span 2; }
  .proof-card--install { grid-column: span 2; grid-template-columns: 42px minmax(200px, .65fr) minmax(250px, 1fr); gap: 16px; }
  .plan-viewport { margin-inline: calc(var(--gutter) * -1); }
  .plan-track { gap: 12px; }
  .plan-card { flex-basis: clamp(280px, 52vw, 400px); }
  .plan-card:not(.is-selected) { border-color: #d6d6d2; background: #efefec; opacity: .58; }
  .faq { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer > p { justify-self: center; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; --section: 72px; }
  .topbar { height: 64px; gap: 6px; padding-inline: 12px; }
  .brand-cluster { gap: 6px; }
  .brand img { height: 16px; }
  .brand-cluster__divider { height: 18px; }
  .brand-integrations { gap: 6px; }
  .brand-integrations__label { display: none; }
  .brand-integrations__whoop, .brand-integrations__polar { width: 42px; }
  .topbar__actions { gap: 5px; }
  .language { border-color: #242424; }
  .language { padding: 3px; }
  .language button { width: 27px; height: 26px; font-size: 8px; }
  .button--login { min-height: 36px; padding-inline: 10px; font-size: 9px; }
  .hero {
    min-height: auto;
    padding: 82px 10px 34px;
  }
  .hero__inner { padding: 57px 15px 22px; border-radius: 24px; }
  .hero__panel-brand { top: 20px; left: 17px; width: 110px; }
  .hero__grain { width: 100vw; right: -46vw; }
  .hero h1 { font-size: clamp(44px, 13.2vw, 60px); line-height: .86; letter-spacing: -.067em; }
  .hero__copy > .eyebrow { max-width: 26em; margin-bottom: 17px; }
  .hero__lead { margin-top: 24px; font-size: 15px; }
  .hero__actions { margin-top: 24px; gap: 17px; }
  .button--large { width: 100%; }
  .hero__actions .text-link { width: 100%; justify-content: center; }
  .audience { margin-top: 32px; }
  .audience-switch button {
    height: 59px;
    grid-template-columns: 1fr auto;
    gap: 5px;
    padding: 0 12px;
    font-size: 12px;
  }
  .audience-switch__number { display: none; }
  .hero-product { min-height: clamp(440px, 85vw, 560px); margin-top: 34px; }
  .hero-phone--main { width: 46%; }
  .hero-phone--left, .hero-phone--right { width: 35%; }
  .phone-shell { border-width: 3px; border-radius: 22px; }
  .data-pill { min-height: 28px; padding: 0 9px; font-size: 7px; }
  .data-pill--top { left: -2%; }
  .data-pill--accent { right: -8%; }
  .data-pill--bottom { right: -4%; }
  .ticker__list { grid-template-columns: repeat(2, 1fr); font-size: 10px; }
  .ticker__list li,
  .ticker__list li:nth-child(n + 4) { min-height: 52px; padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .ticker__list li:nth-child(3n) { border-right: 0; }
  .ticker__list li:nth-child(even) { border-right: 1px solid var(--line); }
  .ticker__list li:nth-last-child(-n + 2) { border-bottom: 0; }
  .section-head { margin-bottom: 40px; }
  .nutrition h2, .integrations h2, .showcase h2, .proof h2, .pricing h2, .faq h2 { font-size: clamp(43px, 13vw, 64px); }
  .nutrition__steps { grid-template-columns: 1fr; }
  .nutrition__steps article, .nutrition__steps article + article { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--light-line); }
  .nutrition__steps article:last-child { border-bottom: 0; }
  .nutrition__steps span { display: inline; margin-right: 14px; }
  .nutrition__steps strong { display: inline; }
  .nutrition__steps small { margin-left: 31px; }
  .nutrition-visual { min-height: 500px; }
  .meal-photo { width: 72%; border-radius: 19px; }
  .nutrition-phone { width: 50%; box-shadow: -12px 14px 0 var(--black); }
  .macro-card { min-width: 110px; padding: 10px 12px; }
  .macro-card strong { font-size: 17px; }
  .macro-card--protein { left: 1%; bottom: 1%; }
  .macro-card--calories { right: 0; }
  .nutrition-plan { min-height: 0; margin-top: 72px; border-radius: 22px; }
  .nutrition-plan__copy { min-height: 0; padding: 28px 22px 30px; }
  .nutrition-plan__eyebrow { margin-bottom: 28px; }
  .nutrition-plan h3 { font-size: clamp(42px, 12.5vw, 58px); }
  .nutrition-plan__copy > p:not(.nutrition-plan__eyebrow) { margin: 22px 0 25px; font-size: 14px; }
  .nutrition-plan__steps { margin-top: 28px; }
  .nutrition-plan__visual { min-height: 520px; }
  .nutrition-plan__week { top: 17px; right: 17px; }
  .nutrition-plan__phone { bottom: 22px; width: min(42%, 180px); }
  .nutrition-plan__phone--menu { left: 5%; transform: rotate(-4deg); }
  .nutrition-plan__phone--recipe { right: 5%; }
  .nutrition-plan__data { display: none; }
  .integration-card { min-height: 690px; padding: 26px 22px 0; border-radius: 21px; }
  .integration-card h3 { margin-top: 42px; font-size: 35px; }
  .integration-card__top > span { max-width: 90px; text-align: right; }
  .integration-screens { left: 8%; right: 4%; bottom: 22px; height: 345px; }
  .integration-card--whoop > p { max-width: 100%; }
  .integration-card--whoop .integration-screens { left: 8%; right: 4%; bottom: 10px; }
  .integration-screen { width: min(45%, 150px); }
  .screen-wall { grid-template-columns: repeat(4, minmax(250px, 78vw)); }
  .screen-card__image { width: 100%; height: auto; }
  .human-chat { min-height: 0; border-radius: 22px; }
  .human-chat__copy { min-height: 0; padding: 30px 22px 32px; }
  .human-chat__eyebrow { margin-bottom: 28px; }
  .human-chat h3 { font-size: clamp(39px, 12.2vw, 54px); }
  .human-chat__copy > p:not(.human-chat__eyebrow) { margin: 23px 0 26px; font-size: 14px; }
  .human-chat__facts { margin-top: 28px; }
  .human-chat__facts article { padding-top: 15px; }
  .human-chat__visual { min-height: 600px; padding-top: 24px; }
  .human-chat__phone { width: min(86%, 285px); }
  .demo-chat-thread { gap: 8px; padding: 15px 11px 11px; }
  .demo-chat-bubble { padding: 8px 9px 7px; }
  .demo-chat-bubble p { font-size: 8px; }
  .proof-card--agenda { min-height: 610px; }
  .agenda-preview { width: min(78%, 220px); }
  .athlete-progress {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }
  .athlete-progress__copy {
    padding: 24px 22px 26px;
    border-right: 0;
    border-bottom: 1px solid #262626;
  }
  .athlete-progress__index { margin-bottom: 22px; }
  .athlete-progress h3 { font-size: clamp(34px, 11vw, 48px); }
  .athlete-progress__copy > p:not(.athlete-progress__index) { margin: 18px 0 24px; }
  .athlete-progress__visual img { width: 100%; height: auto; object-fit: contain; object-position: top; }
  .status-bar-crop--mobile-only { position: relative; aspect-ratio: 736 / 1500; }
  .athlete-progress__visual.status-bar-crop--mobile-only > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
  }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card, .proof-card--wide { grid-column: span 1; min-height: 270px; }
  .proof-card--install { grid-column: span 1; }
  .proof-card--wide { display: flex; flex-direction: column; min-height: 0; }
  .proof-card--wide > div:not(.proof-phone) { max-width: 100%; margin: 22px 0; }
  .proof-phone { position: static; width: min(72%, 240px); margin: 8px auto 0; }
  .proof-card--wide .proof-context-stack { position: relative; width: 100%; min-height: 470px; margin: 10px 0 0; }
  .proof-context-stack .proof-phone { position: absolute; bottom: -70px; width: min(64%, 215px); margin: 0; }
  .proof-context-stack .proof-phone--context { left: 1%; }
  .proof-context-stack .proof-phone--chat { right: 1%; }
  .proof-context-label { top: 8px; right: 5px; }
  .proof-card--install { min-height: 790px; display: flex; flex-direction: column; }
  .proof-install-copy { margin-top: 18px; }
  .proof-install-visual { width: 100%; height: 530px; margin: 20px 0 -28px; }
  .proof-install-phone { bottom: -28px; width: min(55%, 205px); }
  .proof-install-phone--back { left: 0; }
  .proof-install-phone--front { right: 0; }
  .proof-install-badge { top: 5px; right: 2%; }
  .proof-card--report { min-height: 440px; padding-bottom: 24px; }
  .report-preview { width: min(80%, 265px); padding-top: 31px; }
  .plan-viewport { margin-inline: calc(var(--gutter) * -1); }
  .plan-track { gap: 12px; }
  .plan-card { flex-basis: clamp(210px, 65vw, 290px); min-height: 530px; padding: 22px; }
  .plan-card:not(.is-selected) { border-color: #d6d6d2; background: #efefec; opacity: .58; }
  .plan-card__tag { margin-bottom: 38px; }
  .faq summary { font-size: 15px; }
  .final-cta { min-height: 650px; }
  .final-cta h2 { font-size: clamp(47px, 14vw, 70px); }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 360px) {
  .topbar { gap: 4px; padding-inline: 8px; }
  .brand-cluster, .brand-integrations { gap: 4px; }
  .brand img { height: 15px; }
  .brand-integrations__whoop, .brand-integrations__polar { width: 31px; }
  .topbar__actions { gap: 3px; }
  .language button { width: 24px; height: 24px; }
  .button--login { min-height: 34px; padding-inline: 8px; }
  .hero h1 { font-size: clamp(39px, 12.8vw, 44px); }
  .final-cta h2 { font-size: clamp(43px, 12.5vw, 47px); }
}

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