/* Landing pages V3 (masculina/feminina/app-online/kit-fitbox) — previa nao publicada.
   Portado de propostas/landing-pages-v3/shared.css (pacote Codex,
   LIVEL-ENTREGA-DESENVOLVEDOR-ASTRO-VERCEL-2026-07-31.zip).
   Fontes (Bebas Neue, Open Sans) NAO sao redeclaradas aqui: ja carregam
   globalmente via src/styles/tokens.css + global.css (import do BaseLayout).
   Tokens de cor/sombra/tipografia com equivalente exato em tokens.css
   reaproveitam var(--livel-*) em vez de duplicar hex; --action usa
   var(--livel-purple-vivid) (nao var(--livel-action), que hoje aponta pro
   roxo sobrio do resto do site) para preservar o roxo vivido original do
   mockup, mesmo criterio ja usado em home-v3.astro. */

:root {
  color-scheme: light;
  --canvas: var(--livel-off-white);
  --surface: var(--livel-white);
  --surface-muted: var(--livel-surface-muted);
  --ink: var(--livel-ink);
  --brown: var(--livel-brown);
  --muted: #6d675f;
  --purple: var(--livel-purple);
  --purple-deep: #2d0f2e;
  --purple-dark: var(--livel-purple-dark);
  --action: var(--livel-purple-vivid);
  --action-hover: var(--livel-purple-vivid-dark);
  --lime: var(--livel-lime);
  --orange: var(--livel-orange);
  --whatsapp: var(--livel-whatsapp);
  --border: var(--livel-border);
  --border-light: rgb(255 255 255 / 18%);
  --display: var(--livel-font-display);
  --body: var(--livel-font-body);
  --radius: var(--livel-radius-card);
  --shadow: var(--livel-shadow-card);
  --shadow-action: 0 10px 28px rgb(173 43 238 / 28%);
  --ease: var(--livel-ease);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

::selection {
  background: rgb(198 242 78 / 68%);
  color: var(--ink);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: var(--action);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms var(--ease);
}

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

.shell {
  width: min(1280px, calc(100% - clamp(2rem, 6vw, 7rem)));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section--paper {
  background: var(--surface);
}

.section--dark {
  background:
    radial-gradient(circle at 80% 15%, rgb(173 43 238 / 20%), transparent 28rem),
    linear-gradient(145deg, #2d0f2e, #16081d 72%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgb(255 255 255 / 82%);
}

.eyebrow--light span {
  width: 1.8rem;
  height: 2px;
  display: block;
  background: var(--lime);
}

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

.section-title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.87;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-title span {
  display: block;
  color: var(--action);
  font-weight: 300;
}

.section-title--light {
  color: #fff;
}

.section-title--light span {
  color: var(--lime);
}

.body-lg {
  max-width: 57ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.body-lg--light {
  color: rgb(255 255 255 / 68%);
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms var(--ease),
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    box-shadow 240ms var(--ease);
}

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

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

.button--primary {
  background: var(--action);
  color: #fff;
  box-shadow: var(--shadow-action);
}

.button--primary:hover {
  background: var(--action-hover);
}

.button--ghost-light,
.button--outline-light {
  border-color: rgb(255 255 255 / 48%);
  background: transparent;
  color: #fff;
}

.button--ghost-light:hover,
.button--outline-light:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 9%);
}

.button--surface {
  background: #fff;
  color: var(--purple-deep);
  box-shadow: 0 14px 32px rgb(0 0 0 / 18%);
}

.button--surface:hover {
  background: var(--lime);
}

.button--whatsapp {
  background: var(--whatsapp);
  color: #12351f;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  width: 100%;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
  background: rgb(250 249 245 / 98%);
}

.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: block;
}

.brand img {
  width: auto;
  height: 2.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}

.site-nav a {
  position: relative;
  color: var(--brown);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--action);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

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

.menu-toggle {
  display: none;
}

.hero {
  padding-block: clamp(1rem, 2.5vw, 2rem) clamp(4rem, 7vw, 7rem);
}

.hero__frame {
  position: relative;
  min-height: min(760px, calc(100svh - 112px));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--purple-deep);
  box-shadow: 0 26px 70px rgb(45 15 46 / 18%);
  isolation: isolate;
}

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

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

.hero__scrim {
  background:
    linear-gradient(90deg, rgb(25 7 30 / 95%) 0%, rgb(31 9 36 / 86%) 37%, rgb(31 9 36 / 24%) 68%, transparent 100%),
    linear-gradient(0deg, rgb(16 5 20 / 68%) 0%, transparent 34%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(630px, 55%);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5.5rem);
  padding-bottom: clamp(8.5rem, 14vw, 11rem);
}

.hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 0.81;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__title span,
.hero__title strong {
  display: block;
}

.hero__title strong {
  color: var(--lime);
  font-weight: 300;
}

.hero__lead {
  max-width: 50ch;
  margin: 1.55rem 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  color: rgb(255 255 255 / 55%);
  font-size: 0.72rem;
}

.hero__note span {
  color: var(--lime);
}

.hero__facts {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  left: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.hero__facts article {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-light);
  border-radius: 0.8rem;
  background: rgb(24 8 30 / 78%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 10%),
    0 14px 36px rgb(0 0 0 / 12%);
  backdrop-filter: blur(14px);
  color: #fff;
}

.fact-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero__facts strong,
.hero__facts small {
  display: block;
}

.hero__facts strong {
  font-size: 0.86rem;
}

.hero__facts small {
  margin-top: 0.1rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.68rem;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: end;
  gap: 2rem;
}

.section-intro .section-title {
  max-width: 11ch;
}

.friction__content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto minmax(220px, 0.7fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.friction__rule {
  width: 1px;
  height: 100%;
  min-height: 100px;
  background: var(--border);
}

.friction__aside {
  margin: 0;
  color: var(--brown);
  font-size: 0.86rem;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--dark {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2.5rem;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.step-card {
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  box-shadow: var(--shadow);
}

.step-card--dark {
  background:
    radial-gradient(circle at 80% 10%, rgb(173 43 238 / 35%), transparent 14rem),
    var(--purple-deep);
  color: #fff;
}

.step-card__number {
  color: var(--action);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card__visual {
  min-height: 210px;
  margin: 1rem 0 1.4rem;
  padding: 1.2rem;
  border-radius: 0.75rem;
  background: var(--surface);
}

.step-card__visual--choice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--border);
}

.step-card__visual--choice span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-card__visual--choice strong {
  padding: 0.9rem;
  border-radius: 0.65rem;
  background: var(--surface-muted);
  font-size: 0.86rem;
}

.step-card__visual--choice strong:first-of-type {
  background: rgb(173 43 238 / 11%);
  color: var(--purple);
}

.step-card__visual--choice i {
  align-self: center;
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
}

.today-card {
  min-height: 210px;
  margin: 1rem 0 1.4rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0.75rem;
  background:
    linear-gradient(0deg, rgb(20 6 25 / 96%), rgb(20 6 25 / 12%)),
    url("/assets/photos/home/livel-home-homem-modal-musculacao.webp") center 35% / cover;
}

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

.today-card span {
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.today-card strong {
  margin-top: 0.3rem;
  font-size: 1.05rem;
}

.today-card small {
  color: rgb(255 255 255 / 62%);
  font-size: 0.68rem;
}

.today-card i {
  margin-top: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 9999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.today-card b {
  color: var(--action);
}

.week-card {
  min-height: 210px;
  margin: 1rem 0 1.4rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #fff;
}

.week-card > span {
  color: var(--action);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.week-card div {
  display: flex;
  gap: 0.4rem;
  margin: 1rem 0;
}

.week-card i {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.week-card .is-done {
  background: var(--purple);
  color: #fff;
}

.week-card .is-today {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgb(198 242 78 / 25%);
}

.week-card strong {
  font-size: 0.82rem;
}

.step-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.step-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.step-card--dark p {
  color: rgb(255 255 255 / 62%);
}

.strength {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.strength__media {
  position: relative;
  min-height: 650px;
}

.strength__media img {
  width: 88%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 60% center;
  border-radius: var(--radius);
}

.strength__media--app-screen {
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2.25rem 2.25rem 4.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 34%, rgb(173 43 238 / 42%), transparent 20rem),
    linear-gradient(145deg, #2d0f2e, #16071c);
}

.strength__media--app-screen img {
  width: auto;
  max-width: 68%;
  height: 570px;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 1.75rem;
  filter: drop-shadow(0 2rem 2.5rem rgb(0 0 0 / 38%));
}

.strength__stamp {
  position: absolute;
  right: 0;
  bottom: 4rem;
  margin: 0;
  padding: 1.3rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--lime);
  box-shadow: 0 24px 50px rgb(45 15 46 / 20%);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.strength__stamp span,
.strength__stamp strong {
  display: block;
}

.strength__stamp strong {
  font-weight: 300;
}

.strength__copy .body-lg {
  margin-top: 1.6rem;
}

.check-list,
.product__list,
.app-showcase__features,
.plan-card ul {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.7rem;
  border-bottom: 1px solid var(--border);
  color: var(--brown);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0.83rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 700;
}

.product__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.product__copy .body-lg {
  margin-top: 1.5rem;
}

.product__list {
  margin-bottom: 2rem;
}

.product__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  color: rgb(255 255 255 / 75%);
  font-size: 0.84rem;
}

.product__list span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
}

.product__media {
  position: relative;
  margin: 0;
}

.product__media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
}

.product__media figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: rgb(45 15 46 / 92%);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.product__media figcaption span,
.product__media figcaption strong {
  display: block;
}

.product__media figcaption strong {
  color: var(--lime);
  font-weight: 300;
}

.app-showcase__frame {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 6vw, 5.5rem);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgb(173 43 238 / 40%), transparent 36rem),
    linear-gradient(145deg, #32103d, #18091f 78%);
  box-shadow: 0 28px 75px rgb(45 15 46 / 18%);
}

.app-showcase__copy .body-lg {
  margin-top: 1.5rem;
}

.app-showcase__features {
  margin-bottom: 2rem;
}

.app-showcase__features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.3rem;
  color: rgb(255 255 255 / 72%);
  font-size: 0.82rem;
}

.app-showcase__features li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "·";
  font-size: 1.5rem;
  line-height: 1;
}

.app-preview {
  width: min(100%, 520px);
  margin-left: auto;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 1rem;
  background: #faf9f5;
  box-shadow: 0 28px 70px rgb(0 0 0 / 32%);
  color: var(--ink);
  transform: rotate(1.5deg);
}

.app-preview__top {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
}

.app-preview__top img {
  width: 76px;
  padding: 0.35rem;
  border-radius: 0.4rem;
  background: var(--purple);
}

.app-preview__top span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.app-preview__hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 0.8rem;
  background: var(--purple-deep);
}

.app-preview__hero img,
.app-preview__hero > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.app-preview__hero img {
  object-fit: cover;
}

.app-preview__hero > div {
  background: linear-gradient(0deg, rgb(22 6 27 / 96%), transparent 72%);
}

.app-preview__hero p {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  margin: 0;
  color: #fff;
}

.app-preview__hero small,
.app-preview__hero strong,
.app-preview__hero p span {
  display: block;
}

.app-preview__hero small {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-preview__hero strong {
  max-width: 11ch;
  margin-top: 0.4rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 0.98;
}

.app-preview__hero p span {
  margin-top: 0.35rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.68rem;
}

.app-preview__hero > i {
  position: absolute;
  right: 1.2rem;
  bottom: 1.25rem;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.8rem;
  font-style: normal;
}

.app-preview__rhythm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0.5rem 0.4rem;
}

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

.app-preview__rhythm small {
  color: var(--action);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-preview__rhythm strong {
  max-width: 24ch;
  font-size: 0.78rem;
}

.app-preview__rhythm > span {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
}

.app-preview__rhythm b {
  font-size: 1.1rem;
}

.modality-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
  gap: 0.8rem;
}

.modality-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--purple-deep);
  color: #fff;
}

.modality-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--ease);
}

.modality-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(20 6 25 / 94%), transparent 65%);
  content: "";
}

.modality-card:hover img {
  transform: scale(1.025);
}

.modality-card > div {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
}

.modality-card span {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modality-card h3 {
  margin: 0.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.modality-card p {
  margin: 0.4rem 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.72rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.experience__mark {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.8;
  text-transform: uppercase;
}

.experience__mark span,
.experience__mark strong {
  display: block;
}

.experience__mark strong {
  font-weight: 300;
}

.experience__copy .body-lg {
  margin-top: 1.5rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.credential img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.credential strong,
.credential span {
  display: block;
}

.credential strong {
  font-size: 0.82rem;
}

.credential span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.7rem;
}

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

.plan-card {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 7%);
}

.plan-card--featured {
  border-color: rgb(198 242 78 / 50%);
  background: #fff;
  color: var(--ink);
}

.plan-card__tag {
  width: fit-content;
  margin: 0;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  background: rgb(198 242 78 / 14%);
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__tag {
  background: var(--lime);
  color: var(--ink);
}

.plan-card h3 {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.plan-card > p:not(.plan-card__tag) {
  max-width: 45ch;
  margin: 0.9rem 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.82rem;
}

.plan-card--featured > p:not(.plan-card__tag) {
  color: var(--muted);
}

.plan-card__price {
  margin-top: 1.5rem;
  padding-block: 1.2rem;
  border-block: 1px solid var(--border-light);
}

.plan-card--featured .plan-card__price {
  border-color: var(--border);
}

.plan-card__price span,
.plan-card__price strong,
.plan-card__price small {
  display: block;
}

.plan-card__price span {
  color: rgb(255 255 255 / 55%);
  font-size: 0.68rem;
}

.plan-card--featured .plan-card__price span,
.plan-card--featured .plan-card__price small {
  color: var(--muted);
}

.plan-card__price strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__price strong {
  color: var(--purple);
}

.plan-card__price small {
  color: rgb(255 255 255 / 45%);
  font-size: 0.64rem;
}

.plan-card ul {
  margin-bottom: 1.7rem;
}

.plan-card li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.3rem;
  color: rgb(255 255 255 / 72%);
  font-size: 0.8rem;
}

.plan-card--featured li {
  color: var(--brown);
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "✓";
  font-weight: 700;
}

.plan-card--featured li::before {
  color: var(--action);
}

.plans__legal {
  max-width: 78ch;
  margin: 1.5rem auto 0;
  color: rgb(255 255 255 / 45%);
  font-size: 0.68rem;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq__heading {
  position: sticky;
  top: 110px;
}

.faq__heading .button {
  margin-top: 2rem;
}

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

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

.faq summary {
  position: relative;
  padding: 1.4rem 3rem 1.4rem 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

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

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

.faq details p {
  max-width: 64ch;
  margin: 0;
  padding: 0 2rem 1.4rem 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.closing {
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.closing__frame {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--purple-deep);
}

.closing__frame > img,
.closing__frame > div[aria-hidden] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing__frame > img {
  object-fit: cover;
}

.closing__frame > div[aria-hidden] {
  background:
    linear-gradient(90deg, rgb(24 7 29 / 94%), rgb(24 7 29 / 50%) 58%, transparent),
    linear-gradient(0deg, rgb(24 7 29 / 45%), transparent);
}

.closing__copy {
  position: relative;
  z-index: 2;
  width: min(620px, 60%);
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  color: #fff;
}

.closing__copy > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 68%);
}

.closing__copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.closing--app .closing__frame {
  background:
    radial-gradient(circle at 79% 42%, rgb(173 43 238 / 34%), transparent 25rem),
    linear-gradient(135deg, #2d0f2e, #120716);
}

.closing--app .closing__frame > img {
  top: 2rem;
  right: 6%;
  bottom: 2rem;
  left: auto;
  width: 40%;
  height: calc(100% - 4rem);
  object-fit: contain;
  filter: drop-shadow(0 2rem 2.5rem rgb(0 0 0 / 38%));
}

.closing--app .closing__frame > div[aria-hidden] {
  background: linear-gradient(90deg, rgb(24 7 29 / 98%) 0%, rgb(24 7 29 / 86%) 48%, rgb(24 7 29 / 8%) 78%);
}

.footer {
  padding-block: 5rem 1.5rem;
  background: #18091f;
  color: #fff;
}

.footer__brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}

.footer__brand img {
  width: 10rem;
}

.footer__brand p {
  margin: 0;
  text-align: right;
}

.footer__brand strong,
.footer__brand span {
  display: block;
}

.footer__brand strong {
  font-size: 0.78rem;
}

.footer__brand span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-block: 3rem;
}

.footer h2,
.footer nav > strong {
  margin: 0 0 0.85rem;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer p {
  max-width: 34ch;
  margin: 0;
  color: rgb(255 255 255 / 52%);
  font-size: 0.75rem;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer nav a,
.footer nav button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: rgb(255 255 255 / 68%);
  cursor: pointer;
  font-size: 0.75rem;
  text-align: left;
  text-decoration: none;
}

.footer nav a:hover,
.footer nav button:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  color: rgb(255 255 255 / 38%);
  font-size: 0.65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 360ms var(--ease),
    transform 360ms var(--ease);
}

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

.preview-bar {
  position: relative;
  z-index: 60;
  padding: 0.48rem 1rem;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.preview-bar span {
  color: var(--purple-deep);
}

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

.hero--feminina .hero__media img {
  object-position: 64% center;
}

.hero--kit .hero__frame {
  background:
    radial-gradient(circle at 78% 48%, rgb(173 43 238 / 13%), transparent 28rem),
    linear-gradient(135deg, #fff, #f3efe8);
}

.hero--kit .hero__title {
  font-size: clamp(3.6rem, 6vw, 5.7rem);
}

.hero--kit .hero__media img {
  object-fit: contain;
  object-position: 78% 50%;
  padding: clamp(2rem, 5vw, 5rem);
  filter: drop-shadow(0 2rem 3rem rgb(45 15 46 / 18%));
}

.hero--kit .hero__scrim {
  background:
    linear-gradient(90deg, rgb(250 249 245 / 100%) 0%, rgb(250 249 245 / 96%) 42%, rgb(250 249 245 / 16%) 73%),
    linear-gradient(0deg, rgb(45 15 46 / 8%), transparent 40%);
}

.hero--kit .hero__content,
.hero--kit .hero__title,
.hero--kit .hero__lead,
.hero--kit .hero__note {
  color: var(--ink);
}

.hero--kit .hero__facts article {
  border-color: rgb(45 15 46 / 10%);
  background: rgb(255 255 255 / 82%);
  color: var(--ink);
  box-shadow: 0 1rem 2.5rem rgb(45 15 46 / 8%);
  backdrop-filter: blur(18px);
}

.hero--kit .hero__facts small {
  color: var(--muted);
}

.hero--kit .button--ghost-light {
  border-color: rgb(45 15 46 / 22%);
  color: var(--ink);
}

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

.hero--kit .eyebrow span {
  background: var(--purple);
}

.hero--app .hero__frame {
  background:
    radial-gradient(circle at 80% 38%, rgb(173 43 238 / 34%), transparent 30rem),
    radial-gradient(circle at 58% 100%, rgb(255 145 77 / 18%), transparent 23rem),
    linear-gradient(135deg, #120716, #2d0f2e 62%, #16071c);
}

.hero--app .hero__scrim {
  background: linear-gradient(90deg, rgb(18 7 22 / 97%) 0%, rgb(18 7 22 / 82%) 45%, transparent 72%);
}

.hero--app .hero__content {
  max-width: 46rem;
}

.hero--app .hero__title {
  max-width: 8.7ch;
}

.hero--app .hero__facts {
  width: min(48rem, calc(100% - 5rem));
}

.hero--app .hero__visual {
  position: absolute;
  z-index: 2;
  top: 4.5%;
  right: 3%;
  bottom: 11%;
  width: min(37%, 29rem);
  transform: rotate(3deg);
}

.hero--app .hero__visual::before {
  position: absolute;
  inset: 10% -12% 2%;
  border-radius: 50%;
  background: rgb(173 43 238 / 28%);
  content: "";
  filter: blur(55px);
}

.hero--app .hero__visual img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2rem 3rem rgb(0 0 0 / 35%));
}

.editorial-intro {
  min-height: 46rem;
  display: grid;
  align-content: center;
}

.editorial-intro .section-title {
  max-width: 10ch;
}

.editorial-intro .section-heading {
  align-items: end;
}

.editorial-intro__aside {
  max-width: 36rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.editorial-intro__aside strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--purple);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-showcase__frame--screens {
  grid-template-columns: minmax(0, 0.76fr) minmax(32rem, 1.24fr);
  min-height: 48rem;
  overflow: hidden;
}

.app-shots {
  position: relative;
  min-height: 43rem;
  perspective: 1200px;
}

.app-shot {
  position: absolute;
  width: 43%;
  max-height: 40rem;
  object-fit: contain;
  filter: drop-shadow(0 1.8rem 2.2rem rgb(0 0 0 / 34%));
  transition: transform 550ms var(--ease);
  will-change: transform;
}

.app-shot:nth-child(1) {
  z-index: 3;
  right: 29%;
  bottom: -3rem;
  transform: rotate(-3deg) translateZ(5rem);
}

.app-shot:nth-child(2) {
  z-index: 2;
  right: -1%;
  bottom: -5rem;
  transform: rotate(7deg) translateZ(1rem);
}

.app-shot:nth-child(3) {
  z-index: 1;
  right: 56%;
  bottom: -5.4rem;
  transform: rotate(-11deg) translateZ(-2rem);
}

.app-showcase__frame--screens:hover .app-shot:nth-child(1) {
  transform: rotate(-1deg) translateY(-0.75rem) translateZ(5rem);
}

.app-showcase__frame--screens:hover .app-shot:nth-child(2) {
  transform: rotate(9deg) translateX(0.6rem) translateZ(1rem);
}

.app-showcase__frame--screens:hover .app-shot:nth-child(3) {
  transform: rotate(-13deg) translateX(-0.6rem) translateZ(-2rem);
}

.workout-poster {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
  border-radius: 2.25rem;
  background:
    radial-gradient(circle at 65% 20%, rgb(173 43 238 / 42%), transparent 24rem),
    var(--purple-deep);
  box-shadow: 0 2rem 5rem rgb(45 15 46 / 18%);
  color: #fff;
}

.workout-poster__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 46rem;
  width: 52%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.workout-poster__copy .section-title {
  color: #fff;
}

.workout-poster__device {
  position: absolute;
  z-index: 2;
  top: 3rem;
  right: 6%;
  bottom: -9rem;
  width: min(37%, 27rem);
  object-fit: contain;
  filter: drop-shadow(0 2rem 3rem rgb(0 0 0 / 38%));
  transform: rotate(4deg);
}

.workout-poster__glow {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgb(255 145 77 / 18%);
  filter: blur(70px);
}

.modality-grid--three {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.modality-grid--three .modality-card {
  min-height: 36rem;
}

.product__media--light {
  background:
    radial-gradient(circle at 50% 45%, rgb(173 43 238 / 16%), transparent 48%),
    #f7f2f7;
}

.product__media--light img {
  object-fit: contain;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.offer-note {
  margin-top: 1rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.72rem;
  line-height: 1.55;
}

.offer-note--dark {
  color: var(--muted);
}

.offer-note--center {
  max-width: 72rem;
  margin: 1.5rem auto 0;
  text-align: center;
}

.unboxing-scroll {
  overflow: clip;
}

.unboxing-scroll__heading {
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.unboxing-scroll__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.unboxing-scroll__stage {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

.unboxing-scroll__visual {
  position: relative;
  height: min(68vh, 43rem);
  min-height: 36rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 38%, rgb(214 255 91 / 10%), transparent 24rem),
    linear-gradient(145deg, #f4f0eb, #dcd4d8);
  box-shadow: 0 2.5rem 6rem rgb(0 0 0 / 28%);
  isolation: isolate;
}

.unbox-frame {
  position: absolute;
  inset: 0;
  display: grid;
  margin: 0;
  padding: clamp(1rem, 3vw, 2.5rem);
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem) scale(0.96);
  will-change: transform, opacity;
}

.unbox-frame.is-active {
  z-index: 2;
  opacity: 1;
  transform: none;
}

.unbox-frame > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.25rem;
}

.unbox-frame--split {
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.unbox-frame--split > img {
  min-width: 0;
  object-fit: cover;
}

.unboxing-scroll__counter {
  position: absolute;
  z-index: 5;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgb(24 7 29 / 88%);
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.unboxing-scroll__counter i {
  width: 2.8rem;
  height: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 25%);
}

.unboxing-scroll__counter i::after {
  display: block;
  width: var(--unbox-progress, 16.6667%);
  height: 100%;
  background: var(--lime);
  content: "";
}

.unboxing-scroll__caption {
  min-height: 2.8rem;
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.unboxing-scroll__steps {
  padding-block: 4vh 12vh;
}

.unbox-step {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem 0 2.25rem 2rem;
  border-left: 1px solid rgb(255 255 255 / 14%);
  opacity: 0.34;
  transition:
    opacity 420ms var(--ease),
    border-color 420ms var(--ease);
}

.unbox-step.is-active {
  border-color: var(--lime);
  opacity: 1;
}

.unbox-step > span {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.unbox-step h3 {
  max-width: 10ch;
  margin: 1rem 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.unbox-step p {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: rgb(255 255 255 / 64%);
  line-height: 1.7;
}

.unbox-step .button {
  margin-top: 1.75rem;
}

.product-film__poster {
  position: relative;
  width: 100%;
  min-height: 42rem;
  display: block;
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: 0;
  border: 0;
  border-radius: 2rem;
  background: var(--purple-deep);
  box-shadow: 0 2rem 5rem rgb(45 15 46 / 18%);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.product-film__poster > img,
.product-film__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-film__poster > img {
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.product-film__shade {
  background:
    linear-gradient(90deg, rgb(24 7 29 / 90%), rgb(24 7 29 / 28%) 70%),
    linear-gradient(0deg, rgb(24 7 29 / 65%), transparent 60%);
}

.product-film__poster:hover > img {
  transform: scale(1.035);
}

.product-film__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 50%;
  background: rgb(173 43 238 / 78%);
  box-shadow: 0 1.5rem 3rem rgb(0 0 0 / 28%);
  font-size: 1.6rem;
  transform: translate(-50%, -50%);
  transition:
    background 240ms var(--ease),
    transform 240ms var(--spring);
}

.product-film__poster:hover .product-film__play {
  background: var(--lime);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.08);
}

.product-film__label {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 5vw, 4.5rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  left: clamp(1.5rem, 5vw, 4.5rem);
}

.product-film__label small,
.product-film__label strong,
.product-film__label i {
  display: block;
}

.product-film__label small {
  color: var(--lime);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-film__label strong {
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  text-transform: uppercase;
}

.product-film__label i {
  margin-top: 0.8rem;
  color: rgb(255 255 255 / 70%);
  font-size: 0.82rem;
  font-style: normal;
}

.video-dialog {
  width: min(68rem, calc(100% - 2rem));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 1.5rem;
  background: #140719;
  box-shadow: 0 3rem 9rem rgb(0 0 0 / 60%);
  color: #fff;
}

.video-dialog::backdrop {
  background: rgb(10 3 12 / 78%);
  backdrop-filter: blur(12px);
}

.video-dialog__header {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 1rem 1.5rem;
}

.video-dialog__header strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-dialog__header button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: rgb(255 255 255 / 7%);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}

.video-dialog__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-dialog__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

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

  .site-header__cta {
    justify-self: end;
  }

  .hero__content {
    width: 62%;
  }

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

  .modality-card {
    min-height: 460px;
  }
}

@media (max-width: 1040px) {
  .hero--app .hero__content {
    max-width: 55%;
  }

  .hero--app .hero__visual {
    right: 1%;
    width: 42%;
  }

  .app-showcase__frame--screens {
    grid-template-columns: 1fr;
  }

  .app-shots {
    min-height: 40rem;
  }

  .workout-poster__copy {
    width: 58%;
  }

  .unboxing-scroll__layout {
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 2rem, 680px);
  }

  .section {
    padding-block: 4.5rem;
  }

  .site-header__inner {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
  }

  .brand img {
    height: 2.35rem;
  }

  .site-header__cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    justify-self: end;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 10;
    top: 68px;
    right: 0;
    left: 0;
    height: calc(100svh - 68px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    padding: 2rem;
    background: var(--canvas);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition:
      opacity 200ms var(--ease),
      transform 200ms var(--ease),
      visibility 0s linear 200ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2.8rem, 14vw, 5rem);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero__frame {
    min-height: 810px;
  }

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

  .hero__scrim {
    background:
      linear-gradient(0deg, rgb(25 7 30 / 98%) 0%, rgb(25 7 30 / 86%) 47%, rgb(25 7 30 / 14%) 88%),
      linear-gradient(90deg, rgb(25 7 30 / 30%), transparent);
  }

  .hero__content {
    width: 100%;
    justify-content: flex-end;
    padding: 2rem;
    padding-bottom: 13rem;
  }

  .hero__title {
    font-size: clamp(4.1rem, 18vw, 6.2rem);
  }

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

  .hero__facts article {
    min-height: 58px;
    padding: 0.6rem 0.75rem;
  }

  .hero__facts article:nth-child(n + 3) {
    display: none;
  }

  .section-intro,
  .section-heading,
  .strength,
  .product__grid,
  .app-showcase__frame,
  .experience,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: start;
  }

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

  .friction__rule {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.9fr);
    grid-template-areas:
      "number visual"
      "title visual"
      "copy visual";
    column-gap: 1rem;
  }

  .step-card__number {
    grid-area: number;
  }

  .step-card__visual,
  .today-card,
  .week-card {
    grid-area: visual;
    min-height: 240px;
    margin: 0;
  }

  .step-card h3 {
    grid-area: title;
    align-self: end;
  }

  .step-card > p {
    grid-area: copy;
  }

  .strength__media {
    min-height: 560px;
  }

  .strength__media img {
    min-height: 560px;
  }

  .strength__copy,
  .product__copy {
    order: -1;
  }

  .product__media img {
    min-height: 500px;
  }

  .app-preview {
    margin: 1rem auto 0;
  }

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

  .faq__heading {
    position: static;
  }

  .closing__copy {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__grid > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .preview-bar {
    padding-inline: 0.75rem;
    font-size: 0.62rem;
  }

  .brand img {
    height: 2.35rem;
  }

  .hero--masculina .hero__media img {
    object-position: 68% center;
  }

  .hero--feminina .hero__media img {
    object-position: 66% center;
  }

  .hero--kit .hero__media img {
    object-position: 50% 20%;
    padding: 2rem 1rem 18rem;
  }

  .hero--kit .hero__scrim {
    background: linear-gradient(0deg, rgb(250 249 245 / 100%) 0%, rgb(250 249 245 / 96%) 53%, rgb(250 249 245 / 8%) 88%);
  }

  .hero--kit .hero__content {
    justify-content: flex-end;
  }

  .hero--kit .hero__title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero--app .hero__content {
    z-index: 3;
    max-width: none;
    min-height: auto;
    justify-content: flex-start;
    padding: 1rem 1.25rem 1.25rem;
  }

  .hero--app .hero__frame {
    min-height: auto;
    padding-top: 14.5rem;
  }

  .hero--app .hero__visual {
    top: 0.5rem;
    right: 22%;
    bottom: auto;
    width: 56%;
    height: 14rem;
    opacity: 0.82;
  }

  .hero--app .hero__scrim {
    z-index: 2;
    background: linear-gradient(0deg, rgb(18 7 22 / 100%) 0%, rgb(18 7 22 / 96%) 58%, rgb(18 7 22 / 18%) 88%);
  }

  .hero--app .hero__title {
    max-width: 10ch;
    font-size: clamp(3.35rem, 16vw, 4.6rem);
  }

  .hero--app .hero__lead {
    margin-top: 0.85rem;
  }

  .hero--app .hero__actions {
    margin-top: 1rem;
  }

  .hero--app .hero__facts {
    position: relative;
    inset: auto;
    margin: 0 1rem 1rem;
  }

  .editorial-intro {
    min-height: auto;
  }

  .unboxing-scroll__layout {
    display: block;
  }

  .unboxing-scroll__stage {
    z-index: 4;
    top: 7.25rem;
    padding-top: 0.35rem;
    background: var(--purple-deep);
  }

  .unboxing-scroll__visual {
    height: 40vh;
    min-height: 20rem;
    border-radius: 1.25rem;
  }

  .unboxing-scroll__caption {
    margin-bottom: 0;
    padding-bottom: 0.75rem;
  }

  .unboxing-scroll__steps {
    padding-block: 0 6vh;
  }

  .unbox-step {
    min-height: 48vh;
    padding: 2rem 0 2rem 1.25rem;
  }

  .unbox-step h3 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .product-film__poster {
    min-height: 38rem;
  }

  .product-film__poster > img {
    object-position: 58% center;
  }

  .product-film__shade {
    background: linear-gradient(0deg, rgb(24 7 29 / 94%), rgb(24 7 29 / 16%) 80%);
  }

  .product-film__play {
    top: 36%;
    width: 5rem;
    height: 5rem;
  }

  .app-showcase__frame--screens {
    display: block;
    padding-bottom: 0;
  }

  .app-shots {
    min-height: 31rem;
    margin-top: 1rem;
  }

  .app-shot {
    width: 58%;
    max-height: 31rem;
  }

  .app-shot:nth-child(1) {
    right: 22%;
  }

  .app-shot:nth-child(2) {
    right: -12%;
  }

  .app-shot:nth-child(3) {
    right: 58%;
  }

  .workout-poster,
  .workout-poster__copy {
    min-height: 48rem;
  }

  .workout-poster__copy {
    z-index: 3;
    width: 100%;
    justify-content: flex-end;
    padding: 2rem 1.4rem;
    background: linear-gradient(0deg, rgb(24 7 29 / 98%) 0%, rgb(24 7 29 / 80%) 48%, transparent 78%);
  }

  .workout-poster__device {
    top: 1.25rem;
    right: 13%;
    bottom: auto;
    width: 74%;
    max-height: 37rem;
  }

  .modality-grid--three {
    display: flex;
  }

  .modality-grid--three .modality-card {
    min-width: 82vw;
  }
}

@media (max-width: 560px) {
  .section-title {
    font-size: clamp(3.15rem, 17vw, 4.8rem);
  }

  .hero__frame {
    min-height: 830px;
  }

  .hero__content {
    padding-inline: 1.25rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__note {
    font-size: 0.75rem;
  }

  .step-card {
    display: block;
  }

  .step-card__visual,
  .today-card,
  .week-card {
    margin: 1rem 0 1.4rem;
  }

  .strength__media,
  .strength__media img {
    min-height: 470px;
  }

  .strength__media img {
    width: 100%;
  }

  .strength__media--app-screen {
    min-height: 540px;
    padding: 1.5rem 1.5rem 4.5rem;
  }

  .strength__media--app-screen img {
    width: auto;
    max-width: 78%;
    height: 455px;
    min-height: 0;
  }

  .strength__stamp {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .product__media img {
    min-height: 420px;
  }

  .product__media figcaption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .app-showcase__frame {
    padding: 1.25rem;
  }

  .app-preview {
    transform: none;
  }

  .app-preview__hero {
    min-height: 330px;
  }

  .modality-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .modality-grid::-webkit-scrollbar {
    display: none;
  }

  .modality-card {
    min-width: 82vw;
    min-height: 460px;
    scroll-snap-align: start;
  }

  .experience__mark {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .closing__frame,
  .closing__copy {
    min-height: 720px;
  }

  .closing__frame > img {
    object-position: 65% center;
  }

  .closing__frame > div[aria-hidden] {
    background: linear-gradient(0deg, rgb(24 7 29 / 98%), rgb(24 7 29 / 42%) 82%, transparent);
  }

  .closing--app .closing__frame > img {
    top: 1rem;
    right: 15%;
    bottom: auto;
    width: 70%;
    height: 52%;
    object-fit: contain;
    object-position: center;
  }

  .closing--app .closing__frame > div[aria-hidden] {
    background: linear-gradient(0deg, rgb(24 7 29 / 100%) 0%, rgb(24 7 29 / 92%) 50%, rgb(24 7 29 / 14%) 84%);
  }

  .closing__copy {
    justify-content: flex-end;
    padding: 1.5rem;
  }

  .closing__copy > div {
    display: grid;
  }

  .footer__brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__brand p {
    text-align: left;
  }

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

  .footer__grid nav:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .unbox-frame,
  .unbox-step,
  .product-film__poster > img,
  .product-film__play,
  .app-shot,
  .workout-poster__device,
  .hero--app .hero__visual {
    transition: none !important;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
