:root {
  --black: #050505;
  --black-soft: #0a0a0a;
  --panel: #101010;
  --panel-light: #171717;
  --white: #f5f3ef;
  --muted: #aaa7a2;
  --muted-dark: #706d68;
  --red: #e20d18;
  --red-dark: #94070e;
  --green: #20bb62;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(0, 0, 0, 0.13);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: 1240px;
  --header-height: 82px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 18px;
  background: #fff;
  color: #000;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(226, 13, 24, 0.7);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(226, 13, 24, 0.2));
}

.brand > span {
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand strong {
  color: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  color: #b1aeaa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button span {
  font-size: 18px;
  line-height: 0;
}

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

.button--small {
  min-height: 44px;
  padding-inline: 22px;
  background: var(--red);
  color: #fff;
}

.button--small:hover,
.button--primary:hover {
  background: #ff1926;
  box-shadow: 0 12px 38px rgba(226, 13, 24, 0.28);
}

.button--large {
  min-height: 62px;
  padding-inline: 34px;
}

.button--primary {
  background: var(--red);
  color: #fff;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.button--outline:hover {
  border-color: var(--red);
  background: var(--red);
}

.button--dark {
  background: #050505;
  color: #fff;
}

.button--dark:hover {
  background: var(--red);
}

.button--light {
  background: #fff;
  color: #060606;
}

.button--light:hover {
  background: var(--black);
  color: #fff;
}

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

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

.hero {
  position: relative;
  min-height: 920px;
  padding: calc(var(--header-height) + 68px) 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(226, 13, 24, 0.11), transparent 33%),
    linear-gradient(135deg, #070707 0%, #030303 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 88px, rgba(255,255,255,.018) 89px, transparent 90px),
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.2) 0 0.55px, transparent 0.7px);
  background-size: auto, 7px 7px;
  pointer-events: none;
}

.hero-grid,
.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 35%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow--one {
  top: 120px;
  right: 3%;
  width: 360px;
  height: 360px;
  background: rgba(226, 13, 24, 0.12);
}

.hero-glow--two {
  bottom: -100px;
  left: 18%;
  width: 240px;
  height: 240px;
  background: rgba(226, 13, 24, 0.08);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: clamp(50px, 6vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #d6d2cd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 3px;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.app-copy h2,
.offer-copy h2,
.comparison-title h2,
.personal-copy h2,
.faq-title h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(64px, 7.5vw, 112px);
}

.hero h1 em,
.section-heading h2 em,
.app-copy h2 em,
.offer-copy h2 em,
.comparison-title h2 em,
.faq-title h2 em,
.final-cta h2 em {
  color: var(--red);
  font-style: inherit;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.34);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

.text-link span {
  font-size: 16px;
}

.text-link:hover,
.text-link--red {
  border-color: var(--red);
  color: var(--red);
}

.hero-proof {
  display: flex;
  align-items: stretch;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof > div {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  gap: 3px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

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

.hero-proof strong {
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-proof span {
  overflow: hidden;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  padding: 0 16px 0 40px;
}

.hero-number {
  position: absolute;
  top: 40px;
  right: -88px;
  z-index: -1;
  color: transparent;
  font-family: var(--display);
  font-size: 260px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
}

.coach-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.01));
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}

.coach-frame::before,
.coach-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  background: var(--red);
}

.coach-frame::before {
  top: -14px;
  left: -14px;
  width: 94px;
  height: 4px;
}

.coach-frame::after {
  top: -14px;
  left: -14px;
  width: 4px;
  height: 94px;
}

.coach-image-wrap {
  position: relative;
  height: 585px;
  overflow: hidden;
  background: #111;
}

.coach-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.66), transparent 38%);
  pointer-events: none;
}

.coach-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.06) saturate(.85);
}

.coach-caption {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.coach-caption div {
  display: flex;
  flex-direction: column;
}

.coach-caption small,
.coach-caption span:not(.coach-mark) {
  color: #bbb7b2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.coach-caption strong {
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.coach-mark {
  color: var(--red);
  font-family: var(--display);
  font-size: 36px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,10,10,.88);
  box-shadow: 0 18px 42px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
}

.floating-card--top {
  top: 74px;
  left: -22px;
}

.floating-card--bottom {
  right: -28px;
  bottom: 100px;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32,187,98,.11);
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: var(--muted-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.floating-card div strong {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-card--bottom > strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 42px;
  font-style: italic;
  line-height: .9;
}

.floating-card--bottom > span {
  color: #c0bcb7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.56);
}

.hero-marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.hero-marquee span {
  padding-inline: 40px;
  color: #c8c5c1;
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-marquee i {
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.results-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 0 30%, rgba(226,13,24,.08), transparent 24%),
    #080808;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading h2,
.app-copy h2,
.offer-copy h2,
.comparison-title h2,
.personal-copy h2,
.faq-title h2 {
  font-size: clamp(58px, 7vw, 94px);
}

.heading-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.heading-aside > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.round-button {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.round-button:hover,
.round-button--active {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.results-viewport {
  width: calc(100vw - max(24px, (100vw - var(--container)) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.results-viewport::-webkit-scrollbar {
  display: none;
}

.results-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.result-card {
  position: relative;
  width: min(400px, 29vw);
  min-width: 290px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: #111;
  transition: transform .35s ease, border-color .35s ease;
}

.result-card:hover {
  z-index: 2;
  border-color: rgba(226,13,24,.65);
  transform: translateY(-8px);
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.result-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #151515;
}

.result-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.42), transparent 38%);
  pointer-events: none;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

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

.result-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 22px;
}

.result-copy div {
  display: flex;
  flex-direction: column;
}

.result-copy small {
  color: var(--muted-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.result-copy strong {
  font-family: var(--display);
  font-size: 23px;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
}

.result-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
}

.carousel-status {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 18px;
  max-width: 540px;
  margin-top: 34px;
}

.carousel-status > span {
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.carousel-status > span:first-child {
  color: #fff;
}

.carousel-line {
  height: 2px;
  background: rgba(255,255,255,.12);
}

.carousel-line i {
  display: block;
  width: calc(100% / 21);
  height: 100%;
  background: var(--red);
  transform-origin: left;
  transition: transform .25s ease;
}

.results-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 46px;
  color: #67645f;
}

.results-note span {
  color: var(--red);
}

.results-note p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.method-section {
  overflow: hidden;
  background: #050505;
}

.method-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 47%, rgba(255,255,255,.02) 47.1% 47.25%, transparent 47.35%);
  pointer-events: none;
}

.method-word {
  position: absolute;
  top: 40px;
  left: 50%;
  color: transparent;
  font-family: var(--display);
  font-size: min(24vw, 330px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
}

.section-heading--center {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 78px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.method-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.method-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
  transition: border-color .3s ease, transform .3s ease;
}

.method-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.method-card:hover {
  border-color: rgba(226,13,24,.55);
  transform: translateY(-7px);
}

.method-card--featured {
  border-color: rgba(226,13,24,.55);
  background: linear-gradient(145deg, rgba(226,13,24,.19), #0c0c0c 54%);
}

.method-index {
  color: var(--red);
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .12em;
}

.method-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-top: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--display);
  font-size: 30px;
}

.method-card h3 {
  margin: 28px 0 14px;
  font-family: var(--display);
  font-size: 31px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.method-card p {
  margin: 0;
  color: #85817c;
  font-size: 13px;
  line-height: 1.7;
}

.method-tag {
  margin-top: auto;
  padding-top: 30px;
  color: #d1cdc8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.method-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.method-cta p {
  margin: 0;
  color: #817e79;
  font-size: 13px;
}

.method-cta strong {
  color: #fff;
}

.app-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0c0c0c;
}

.app-noise {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.22) 0 .55px, transparent .7px);
  background-size: 7px 7px;
  pointer-events: none;
}

.app-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 110px;
}

.app-copy h2 em {
  font-style: inherit;
  -webkit-text-stroke: 1px var(--red);
}

.app-lead {
  max-width: 590px;
  margin: 34px 0 46px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  font-weight: 800;
}

.feature-list h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.feature-list p {
  margin: 0;
  color: #77736f;
  font-size: 12px;
}

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

.phone-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.phone-orbit--one {
  width: 650px;
  height: 650px;
}

.phone-orbit--two {
  width: 480px;
  height: 480px;
  border-color: rgba(226,13,24,.15);
}

.phone {
  position: relative;
  z-index: 2;
  width: 322px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 44px;
  background: linear-gradient(145deg, #3a3a3a, #0a0a0a 20%, #050505 80%, #333);
  box-shadow: 0 50px 100px rgba(0,0,0,.6), inset 0 0 0 2px #111;
  transform: rotate(2.8deg);
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 5;
  width: 84px;
  height: 22px;
  border-radius: 20px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 650px;
  padding: 40px 17px 18px;
  overflow: hidden;
  border-radius: 35px;
  background:
    radial-gradient(circle at 100% 0, rgba(226,13,24,.16), transparent 25%),
    #090909;
}

.phone-head,
.mini-brand,
.next-workout,
.week-progress,
.phone-label,
.exercise-row,
.phone-nav {
  display: flex;
  align-items: center;
}

.phone-head {
  justify-content: space-between;
  margin-bottom: 20px;
}

.mini-brand {
  gap: 9px;
}

.mini-brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.mini-brand > div {
  display: flex;
  flex-direction: column;
}

.mini-brand small,
.next-workout small,
.week-progress small,
.phone-label,
.exercise-row small {
  color: #76726e;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mini-brand strong {
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.phone-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
}

.next-workout {
  justify-content: space-between;
  padding: 20px 18px;
  background: var(--red);
  box-shadow: 0 20px 32px rgba(226,13,24,.16);
}

.next-workout > div {
  display: flex;
  flex-direction: column;
}

.next-workout small {
  color: rgba(255,255,255,.65);
}

.next-workout strong {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.next-workout > span {
  font-size: 21px;
}

.week-progress {
  gap: 17px;
  margin-top: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #111;
}

.ring {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--red) 78%, #292929 0);
}

.ring::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111;
}

.ring span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  font-weight: 800;
}

.ring small {
  color: inherit;
}

.week-progress > div:last-child {
  display: flex;
  flex-direction: column;
}

.week-progress strong {
  font-size: 10px;
  text-transform: uppercase;
}

.week-progress p {
  margin: 3px 0 0;
  color: #5f5c59;
  font-size: 7px;
}

.phone-label {
  justify-content: space-between;
  margin: 20px 2px 9px;
  color: #fff;
  font-size: 8px;
}

.phone-label small {
  color: var(--red);
}

.exercise-row {
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.exercise-row > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
  font-style: italic;
  font-weight: 800;
}

.exercise-row > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.exercise-row strong {
  font-size: 9px;
  text-transform: uppercase;
}

.exercise-row i {
  color: #56524f;
  font-style: normal;
}

.phone-nav {
  position: absolute;
  right: 17px;
  bottom: 18px;
  left: 17px;
  justify-content: space-around;
  padding: 12px 7px;
  border: 1px solid var(--line);
  background: rgba(14,14,14,.92);
}

.phone-nav span,
.phone-nav b {
  color: #5f5c59;
  font-size: 12px;
}

.phone-nav b {
  color: var(--red);
}

.app-float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(10,10,10,.88);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(14px);
}

.app-float--left {
  bottom: 145px;
  left: 0;
}

.app-float--right {
  top: 160px;
  right: 0;
}

.app-float strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
}

.app-float small {
  color: #8b8782;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.videos-section {
  background: #050505;
}

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

.video-card {
  position: relative;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0e0e0e;
  cursor: pointer;
  text-align: left;
  transition: border-color .3s ease, transform .3s ease;
}

.video-card:nth-child(n+7) {
  display: none;
}

.video-grid.show-all .video-card:nth-child(n+7) {
  display: block;
}

.video-card:hover {
  border-color: rgba(226,13,24,.62);
  transform: translateY(-6px);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 55%, rgba(226,13,24,.13) 55.2%, transparent 56%),
    radial-gradient(circle at 80% 20%, rgba(226,13,24,.14), transparent 35%);
}

.video-card::after {
  content: attr(data-number);
  position: absolute;
  right: -4px;
  bottom: -30px;
  color: transparent;
  font-family: var(--display);
  font-size: 140px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
}

.video-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.video-play {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  font-size: 15px;
  transition: background .25s ease, border-color .25s ease;
}

.video-card:hover .video-play {
  border-color: var(--red);
  background: var(--red);
}

.video-category {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.video-card h3 {
  max-width: 260px;
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.offer-section {
  overflow: hidden;
  background: var(--red);
  color: #fff;
}

.offer-section::before {
  content: "RD";
  position: absolute;
  top: 50%;
  left: -50px;
  color: transparent;
  font-family: var(--display);
  font-size: 500px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .7;
  transform: translateY(-50%);
  -webkit-text-stroke: 1px rgba(255,255,255,.13);
}

.offer-section .eyebrow span {
  background: #fff;
}

.offer-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  filter: blur(100px);
}

.offer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  align-items: center;
  gap: 100px;
}

.offer-copy h2 em {
  color: #fff;
  -webkit-text-stroke: 1px rgba(255,255,255,.3);
}

.offer-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 38px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.8;
}

.coach-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 46px;
}

.coach-signature > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
}

.coach-signature div {
  display: flex;
  flex-direction: column;
}

.coach-signature strong {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.coach-signature small {
  color: rgba(255,255,255,.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-card {
  padding: 42px;
  background: #070707;
  box-shadow: 0 36px 90px rgba(80,0,6,.35);
}

.offer-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.offer-card-head > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card-head small {
  color: #696661;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 32px 0 24px;
  font-family: var(--display);
  font-size: 34px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.offer-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(226,13,24,.13);
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.offer-list li > div {
  display: flex;
  flex-direction: column;
}

.offer-list strong {
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.offer-list small {
  margin-top: 2px;
  color: #77736e;
  font-size: 9px;
}

.offer-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #6f6b66;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px 320px;
  align-items: stretch;
  gap: 18px;
}

.comparison-title {
  padding-right: 50px;
}

.comparison-title h2 {
  font-size: clamp(50px, 5.4vw, 76px);
}

.comparison-card {
  padding: 30px;
  border: 1px solid var(--line);
}

.comparison-card > span {
  display: block;
  margin-bottom: 34px;
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8c8883;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-card i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.comparison-card--muted {
  background: #0b0b0b;
}

.comparison-card--muted i {
  background: rgba(255,255,255,.06);
  color: #5f5b57;
}

.comparison-card--elite {
  border-color: rgba(226,13,24,.5);
  background: linear-gradient(145deg, rgba(226,13,24,.18), #0b0b0b 58%);
}

.comparison-card--elite > span,
.comparison-card--elite i {
  color: var(--red);
}

.comparison-card--elite i {
  background: rgba(226,13,24,.13);
}

.personal-section {
  background: var(--white);
  color: #080808;
}

.personal-section .eyebrow {
  color: #45413d;
}

.personal-layout {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 110px;
}

.personal-photo {
  position: relative;
}

.personal-photo::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-top: 5px solid var(--red);
  border-right: 5px solid var(--red);
}

.personal-photo-frame {
  height: 660px;
  overflow: hidden;
  border: 10px solid #090909;
  background: #111;
  box-shadow: 30px 30px 0 #dedbd5;
}

.personal-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.location-chip {
  position: absolute;
  right: -30px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #080808;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-chip span {
  color: var(--red);
}

.personal-copy h2 em {
  color: #7e7a75;
  font-style: inherit;
}

.personal-lead {
  max-width: 650px;
  margin: 34px 0 36px;
  color: #5a5651;
  font-size: 16px;
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-direction: column;
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.credentials li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.credentials span {
  color: var(--red);
  font-family: var(--display);
  font-style: italic;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #080808;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
  gap: 120px;
}

.faq-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-title > p:not(.eyebrow) {
  max-width: 360px;
  margin: 30px 0 20px;
  color: var(--muted-dark);
  font-size: 13px;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -8px 0 28px;
  padding-right: 50px;
  color: #817d78;
  font-size: 13px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--red);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.final-cta::before {
  top: -200px;
  left: -140px;
  width: 520px;
  height: 520px;
}

.final-cta::after {
  right: -180px;
  bottom: -220px;
  width: 620px;
  height: 620px;
}

.final-cta-grid {
  opacity: .25;
  mask-image: none;
  background-size: 70px 70px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta img {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.final-cta p {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.final-cta h2 {
  font-size: clamp(66px, 8vw, 112px);
}

.final-cta h2 em {
  color: #fff;
  -webkit-text-stroke: 1px rgba(255,255,255,.45);
}

.final-cta .button {
  margin-top: 44px;
}

.final-cta small {
  margin-top: 17px;
  color: rgba(255,255,255,.62);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 70px 0 28px;
  background: #030303;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 54px;
}

.brand--footer img {
  width: 58px;
  height: 58px;
}

.brand--footer > span {
  font-size: 30px;
}

.footer-top > p {
  margin: 0;
  color: #5f5b57;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer-social a {
  color: #9a9691;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.footer-social a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #4f4c48;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 26px;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(32,187,98,.25);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-cta-bar {
  display: none;
}

.video-modal {
  width: min(900px, calc(100% - 40px));
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.16);
  background: #080808;
  color: #fff;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
}

.video-modal::backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: #080808;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

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

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

.modal-copy {
  padding: 22px 26px 26px;
}

.modal-copy span {
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 30px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }

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

  .hero-visual {
    padding-left: 24px;
  }

  .coach-image-wrap {
    height: 530px;
  }

  .app-layout,
  .personal-layout {
    gap: 70px;
  }

  .comparison-grid {
    grid-template-columns: 1fr 280px 280px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 101;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.025);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    background: #fff;
    transition: transform .25s ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px max(24px, 8vw) 48px;
    background:
      radial-gradient(circle at 90% 10%, rgba(226,13,24,.17), transparent 30%),
      #050505;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .3s ease, transform .3s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(42px, 10vw, 68px);
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu small {
    color: var(--red);
    font-size: 11px;
    letter-spacing: .12em;
  }

  .mobile-menu .button {
    margin-top: 32px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 88px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    font-size: clamp(70px, 13vw, 108px);
  }

  .hero-visual {
    width: min(100%, 520px);
    margin-inline: auto;
    justify-self: center;
  }

  .section-heading--split,
  .app-layout,
  .offer-layout,
  .personal-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 34px;
  }

  .heading-aside {
    max-width: 600px;
  }

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

  .method-card {
    min-height: 340px;
  }

  .method-icon {
    margin-top: 34px;
  }

  .app-layout {
    gap: 70px;
  }

  .app-copy {
    max-width: 700px;
  }

  .phone-stage {
    min-height: 690px;
  }

  .offer-layout {
    gap: 60px;
  }

  .offer-copy {
    max-width: 760px;
  }

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

  .comparison-title {
    grid-column: 1 / -1;
    padding: 0 0 30px;
  }

  .personal-layout {
    gap: 80px;
  }

  .personal-photo {
    width: min(100%, 560px);
  }

  .faq-layout {
    gap: 60px;
  }

  .faq-title {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 94px 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand > span {
    font-size: 22px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
    line-height: .86;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-proof > div {
    padding: 16px 10px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 7px;
  }

  .hero-visual {
    padding: 0 9px 0 20px;
  }

  .coach-image-wrap {
    height: min(135vw, 580px);
  }

  .floating-card--top {
    top: 48px;
    left: 0;
  }

  .floating-card--bottom {
    right: -4px;
    bottom: 86px;
  }

  .section-heading--split {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .app-copy h2,
  .offer-copy h2,
  .personal-copy h2,
  .faq-title h2 {
    font-size: clamp(53px, 16vw, 74px);
  }

  .results-viewport {
    width: calc(100% + 17px);
  }

  .results-track {
    gap: 14px;
    padding-right: 17px;
  }

  .result-card {
    width: 80vw;
    min-width: 0;
  }

  .carousel-controls {
    display: none;
  }

  .method-card {
    min-height: 320px;
    padding: 28px;
  }

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

  .app-layout {
    gap: 54px;
  }

  .phone-stage {
    min-height: 610px;
    margin-inline: -10px;
    transform: scale(.9);
  }

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

  .phone-orbit--two {
    width: 380px;
    height: 380px;
  }

  .app-float--left {
    left: -15px;
  }

  .app-float--right {
    right: 0;
  }

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

  .video-card:nth-child(n+4) {
    display: none;
  }

  .video-grid.show-all .video-card:nth-child(n+4) {
    display: block;
  }

  .offer-card {
    padding: 28px 22px;
  }

  .offer-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .comparison-title {
    grid-column: auto;
  }

  .personal-photo-frame {
    height: min(132vw, 620px);
    border-width: 7px;
    box-shadow: 15px 15px 0 #dedbd5;
  }

  .location-chip {
    right: -8px;
    bottom: 26px;
  }

  .faq-list summary {
    font-size: 20px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .final-cta {
    padding: 105px 0;
  }

  .final-cta h2 {
    font-size: clamp(56px, 17vw, 80px);
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 78;
    display: block;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(5,5,5,.94);
    backdrop-filter: blur(16px);
  }

  .mobile-cta-bar a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .video-modal {
    width: calc(100% - 24px);
  }
}

@media (max-width: 400px) {
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .floating-card--bottom {
    display: none;
  }

  .phone-stage {
    margin-block: -35px;
    transform: scale(.79);
  }
}

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

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

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