.home-page {
  --max: 1240px;
  --home-bg: #070a0a;
  --home-surface: #0d1212;
  --home-light: #eef0ea;
  --home-ink: #091011;
  --home-line: rgba(255, 255, 255, .14);
  overflow-x: clip;
  background: var(--home-bg);
}

.home-page::before {
  display: none;
}

.home-page main {
  overflow: clip;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p,
.home-page blockquote {
  letter-spacing: 0;
}

.home-page h1,
.home-page h2 {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 800;
}

.home-page em {
  color: var(--teal-light);
  font-style: normal;
}

.home-page .section-inner {
  width: min(calc(100% - 64px), var(--max));
}

.home-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--teal-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.home-page .eyebrow > span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(66, 196, 202, .55);
  border-radius: 50%;
  color: #d8f9f7;
  font-size: .62rem;
}

.home-page .button {
  min-height: 56px;
  border-radius: 2px;
  padding: 15px 21px;
  letter-spacing: 0;
}

.home-page .button-arrow {
  justify-content: space-between;
  gap: 24px;
}

.home-page .button-arrow span {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .2s ease;
}

.home-page .button-arrow:hover span {
  transform: translate(3px, -3px);
}

.home-page .button-dark {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
}

.home-page .button-dark:hover {
  background: #173033;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding-inline: max(32px, calc((100% - var(--max)) / 2));
  border-bottom-color: rgba(255, 255, 255, .12);
  background: rgba(7, 10, 10, .88);
  backdrop-filter: blur(18px);
}

.home-header .brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  letter-spacing: 0;
}

.home-header .brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.home-nav a {
  position: relative;
  color: #bfc7c5;
  font-size: .76rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.home-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.home-nav a:hover::after,
.home-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-header .header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(66, 196, 202, .65);
  color: #d8fbf9;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
  transition: transform .2s ease;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - 116px);
  display: block;
  border-bottom: 0;
  background:
    radial-gradient(circle at 77% 46%, rgba(0, 163, 172, .12), transparent 28%),
    linear-gradient(112deg, #070a0a 0%, #080d0d 46%, #101717 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 10, 10, .98) 0%, rgba(7, 10, 10, .88) 50%, rgba(7, 10, 10, .2) 82%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 24%;
  background: linear-gradient(transparent, rgba(7, 10, 10, .78));
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000 0%, #000 72%, transparent 100%);
}

.hero-athlete {
  position: absolute;
  z-index: -2;
  top: 50%;
  right: -8%;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-athlete::before,
.hero-athlete::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-athlete::before {
  inset: 5%;
  z-index: 0;
  border: 1px solid rgba(66, 196, 202, .2);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 163, 172, .2), rgba(0, 163, 172, .04) 58%, transparent 72%),
    conic-gradient(from 28deg, transparent 0 18%, rgba(66, 196, 202, .12) 18% 19%, transparent 19% 57%, rgba(255, 255, 255, .08) 57% 58%, transparent 58%);
  box-shadow: 0 0 90px rgba(0, 163, 172, .12), inset 0 0 70px rgba(0, 0, 0, .32);
}

.hero-athlete::after {
  inset: 12%;
  z-index: 3;
  background:
    linear-gradient(transparent calc(50% - .5px), rgba(255, 255, 255, .12) 50%, transparent calc(50% + .5px)),
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(66, 196, 202, .17) 50%, transparent calc(50% + .5px));
  mask-image: radial-gradient(circle, #000 0 69%, transparent 70%);
  opacity: .7;
}

.hero-brand-mark {
  position: absolute;
  z-index: 1;
  inset: 12%;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
  transition: transform .3s ease-out;
  will-change: transform;
}

.hero-brand-mark img,
.hero-brand-symbol {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.hero-brand-mark img {
  object-fit: cover;
  opacity: .24;
  filter: saturate(.6) contrast(.9) brightness(.64);
  mix-blend-mode: screen;
}

.hero-brand-symbol {
  z-index: 1;
  background: url("/assets/images/logo-atleta-delite.png") center / cover no-repeat;
  opacity: .72;
  filter: saturate(.72) contrast(1.08) brightness(.8);
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, #000 0 37%, rgba(0, 0, 0, .82) 40%, transparent 46% 58%, rgba(0, 0, 0, .72) 64%, #000 69% 100%);
}

.hero-orbit {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(66, 196, 202, .34);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 82%;
  aspect-ratio: 1;
  top: 9%;
  right: 9%;
}

.hero-orbit-two {
  width: 100%;
  aspect-ratio: 1;
  top: 0;
  right: 0;
  border-color: rgba(255, 255, 255, .08);
}

.hero-layout {
  position: relative;
  min-height: inherit;
  display: grid;
  align-items: center;
  padding-block: 72px 112px;
}

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

.hero h1 {
  max-width: 970px;
  margin-bottom: 42px;
  font-size: 5.6rem;
  line-height: .9;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
}

.hero-bottom {
  width: min(100%, 850px);
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 54px;
  align-items: end;
}

.hero-lede {
  margin: 0;
  color: #c5cdca;
  font-size: 1rem;
  line-height: 1.75;
}

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

.hero .micro-copy {
  margin-top: 13px;
  line-height: 1.5;
}

.hero-marker {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: 140px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  color: #b9c3c1;
}

.hero-marker span,
.hero-marker small {
  font-size: .55rem;
  font-weight: 800;
}

.hero-marker strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: rgba(255, 255, 255, .28);
  font-family: Impact, sans-serif;
  font-size: 3.8rem;
  line-height: .8;
}

.hero-marker small {
  grid-column: 1 / -1;
  margin-top: 10px;
  color: var(--teal-light);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: max(32px, calc((100% - var(--max)) / 2));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #8d9896;
  font-size: .64rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 30px;
  height: 1px;
  display: block;
  background: var(--teal);
}

.performance-rail {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: #0b1010;
}

.rail-track {
  width: min(calc(100% - 64px), var(--max));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
  color: #aeb8b6;
  font-size: .69rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.rail-track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.rail-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-light);
}

.recognition,
.mental-training,
.method,
.continuity,
.about,
.testimonials-stage,
.call-section,
.faq,
.guide-section,
.final-cta {
  padding-block: 138px;
}

.recognition {
  position: relative;
  background: var(--home-light);
  color: var(--home-ink);
}

.recognition .eyebrow,
.guide-section .eyebrow {
  color: #006c72;
}

.recognition .eyebrow > span,
.guide-section .eyebrow > span {
  border-color: rgba(0, 108, 114, .5);
  color: #00565b;
}

.recognition h2 {
  max-width: 1050px;
  margin-bottom: 0;
  color: var(--home-ink);
  font-size: 4.8rem;
  line-height: .98;
}

.recognition h2 em {
  color: #007981;
}

.recognition-stage {
  position: relative;
  min-height: 880px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 90px;
}

.stage-word {
  position: absolute;
  top: -40px;
  right: -28px;
  color: rgba(8, 20, 20, .045);
  font-family: Impact, sans-serif;
  font-size: 18rem;
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.stage-intro {
  grid-column: 1 / span 4;
  align-self: start;
  max-width: 370px;
  margin: 35px 0 0;
  padding-top: 22px;
  border-top: 2px solid #0b2527;
  color: #344343;
  font-size: 1.13rem;
}

.pressure-signals {
  grid-column: 5 / -1;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(8, 20, 20, .24);
}

.pressure-signals li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  min-height: 160px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(8, 20, 20, .2);
}

.pressure-signals li > span {
  color: #007981;
  font-size: .65rem;
  font-weight: 850;
}

.pressure-signals h3 {
  margin-bottom: 10px;
  color: var(--home-ink);
  font-size: 1.65rem;
  text-transform: uppercase;
}

.pressure-signals p {
  max-width: 610px;
  margin: 0;
  color: #50605f;
}

.parent-voice {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 70px;
  margin-top: 120px;
  padding: 58px 0 0;
  border-top: 4px solid #0b2527;
}

.parent-intro h3 {
  max-width: 420px;
  color: var(--home-ink);
  font-size: 2.15rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.parent-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.parent-quotes blockquote {
  min-height: 116px;
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid rgba(8, 20, 20, .24);
  color: #0b2527;
  font-size: 1.35rem;
  font-weight: 720;
}

.parent-note {
  grid-column: 2;
  margin: -46px 0 0;
  color: #687473;
  font-size: .71rem;
}

.mental-training {
  position: relative;
  background: #060808;
}

.mental-training::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(66, 196, 202, .28), transparent);
}

.training-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 76px;
}

.training-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.training-intro h2 {
  margin: 0;
  font-size: 4.7rem;
}

.training-intro > p:last-child {
  max-width: 490px;
  margin: 0 0 8px auto;
  color: #aeb7b5;
  font-size: 1.06rem;
}

.training-spectrum {
  border-top: 1px solid var(--home-line);
}

.training-spectrum article {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 75px minmax(240px, .85fr) 1.15fr 150px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--home-line);
  transition: background-color .25s ease, padding .25s ease;
}

.training-spectrum article:hover {
  padding-inline: 18px;
  background: rgba(0, 163, 172, .07);
}

.training-spectrum article > span {
  color: var(--teal-light);
  font-size: .68rem;
  font-weight: 800;
}

.training-spectrum h3 {
  margin: 0;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.training-spectrum p {
  margin: 0;
  color: #929d9b;
  font-size: .9rem;
}

.training-spectrum b {
  color: rgba(255, 255, 255, .15);
  font-family: Impact, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  text-align: right;
}

.method {
  background: #0b1111;
}

.method-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 118px;
}

.method-intro h2 {
  margin-bottom: 30px;
  font-size: 4.8rem;
}

.method-intro > p:not(.eyebrow) {
  max-width: 430px;
  color: #9ba7a4;
}

.method-progress {
  width: 100%;
  height: 2px;
  margin-top: 44px;
  background: rgba(255, 255, 255, .12);
}

.method-progress span {
  width: 25%;
  height: 100%;
  display: block;
  background: var(--teal-light);
  transition: width .35s ease;
}

.method-steps {
  counter-reset: method;
}

.method-step {
  min-height: 335px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 30px;
  align-content: center;
  padding: 50px 0;
  border-top: 1px solid var(--home-line);
  opacity: .48;
  transition: opacity .3s ease;
}

.method-step:last-child {
  border-bottom: 1px solid var(--home-line);
}

.method-step.is-active,
.method-step:hover {
  opacity: 1;
}

.method-number {
  color: rgba(66, 196, 202, .85);
  font-family: Impact, sans-serif;
  font-size: 3.7rem;
  line-height: 1;
}

.step-label {
  margin: 4px 0 18px;
  color: var(--teal-light);
  font-size: .65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.method-step h3 {
  margin-bottom: 18px;
  font-size: 2rem;
  text-transform: uppercase;
}

.method-step div > p:last-child {
  max-width: 550px;
  margin: 0;
  color: #9ba6a4;
}

.continuity {
  background: #ecefe9;
  color: var(--home-ink);
}

.app-showcase {
  padding-block: 110px;
}

.continuity .eyebrow {
  color: #006e74;
}

.continuity .eyebrow > span {
  border-color: rgba(0, 110, 116, .5);
  color: #006e74;
}

.app-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 36px 90px;
  align-items: end;
}

.app-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.app-intro h2 {
  max-width: 820px;
  margin: 0;
  color: var(--home-ink);
  font-size: 4.7rem;
  line-height: .94;
  text-transform: uppercase;
}

.app-intro > p:last-child {
  max-width: 480px;
  margin: 0 0 4px;
  color: #40504f;
  font-size: 1.03rem;
  line-height: 1.75;
}

.verified-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #697675;
  font-size: .68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.verified-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #008990;
}

.app-product-stage {
  position: relative;
  min-height: 700px;
  margin-top: 66px;
}

.app-desktop {
  width: min(90%, 1010px);
  aspect-ratio: 16 / 10.2;
  overflow: hidden;
  border: 1px solid rgba(8, 20, 20, .2);
  border-radius: 8px;
  background: #f7f8f4;
  box-shadow: 0 34px 80px rgba(11, 28, 27, .18);
  transform: perspective(1400px) rotateY(2deg) rotateX(.6deg);
  transform-origin: left center;
}

.app-window-bar {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #101717;
}

.app-window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50605d;
}

.app-window-bar > span:nth-child(1) { background: #d5b35c; }
.app-window-bar > span:nth-child(2) { background: #1b9b7a; }

.app-window-bar small {
  margin-left: auto;
  color: #91a09d;
  font-size: .52rem;
  font-weight: 800;
}

.app-shell-preview {
  height: calc(100% - 37px);
  display: grid;
  grid-template-columns: 172px 1fr;
}

.app-preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 28px 17px;
  background: #111a19;
  color: #899693;
}

.app-preview-sidebar strong {
  margin-bottom: 24px;
  color: #f4f7f3;
  font-size: .76rem;
  line-height: 1;
}

.app-preview-sidebar strong span {
  display: block;
  margin-bottom: 4px;
  color: #72d2b8;
  font-size: .5rem;
}

.app-preview-sidebar > span {
  padding: 7px 9px;
  border-radius: 5px;
  font-size: .53rem;
  font-weight: 700;
}

.app-preview-sidebar > .is-current {
  background: rgba(27, 155, 122, .18);
  color: #78d6bd;
}

.app-preview-main {
  overflow: hidden;
  padding: 16px 20px 20px;
  background: #f5f5f0;
}

.app-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.app-preview-topbar p,
.app-preview-topbar span {
  margin: 0;
  color: #6b7774;
  font-size: .5rem;
  font-weight: 800;
}

.app-preview-topbar span {
  padding: 5px 8px;
  border: 1px solid #d2d8d3;
  border-radius: 4px;
}

.app-preview-hero {
  min-height: 158px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
  padding: 22px 24px;
  border-radius: 8px;
  background: linear-gradient(120deg, #14211f, #1a6b5a);
  color: #fff;
}

.app-preview-hero small,
.app-preview-lower small {
  color: #77d7bd;
  font-size: .5rem;
  font-weight: 800;
}

.app-preview-journey {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-preview-journey > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 13px;
}

.app-preview-journey strong {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  white-space: nowrap;
}

.app-preview-journey span {
  color: #c4d0cc;
  font-size: .56rem;
}

.app-preview-journey i {
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, .16);
}

.app-preview-journey i b {
  width: 62.5%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #d5b35c;
}

.app-preview-focus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.app-preview-focus blockquote {
  margin: 0;
  padding: 10px 0;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.35;
}

.app-preview-focus p {
  margin: 0;
  color: #b8c8c3;
  font-size: .52rem;
}

.app-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 11px;
}

.app-preview-grid article {
  min-width: 0;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #dce0da;
  border-radius: 7px;
  background: #fff;
}

.app-preview-grid small { color: #74817e; font-size: .43rem; font-weight: 800; }
.app-preview-grid strong { margin-block: 9px auto; font-size: .66rem; line-height: 1.35; }
.app-preview-grid span { color: #1a6b5a; font-size: .48rem; font-weight: 800; }

.app-preview-lower {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 10px;
  margin-top: 10px;
}

.app-preview-lower article {
  min-width: 0;
  min-height: 108px;
  padding: 14px;
  border: 1px solid #dce0da;
  border-radius: 7px;
  background: #fff;
}

.app-preview-lower small {
  color: #687673;
}

.app-today-card {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: start;
}

.app-today-card div strong,
.app-diary-card > strong {
  display: block;
  margin-top: 7px;
  font-size: .68rem;
}

.app-today-card > span {
  width: 16px;
  height: 16px;
  border: 1px solid #1a6b5a;
  border-radius: 4px;
}

.app-today-card p,
.app-diary-card p {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: #6d7976;
  font-size: .48rem;
  line-height: 1.45;
}

.app-diary-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-diary-card time {
  color: #1a6b5a;
  font-size: .48rem;
  font-weight: 800;
}

.app-phone {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 250px;
  aspect-ratio: .51;
  padding: 8px;
  border: 2px solid #111918;
  border-radius: 31px;
  background: #111918;
  box-shadow: 0 30px 60px rgba(7, 20, 18, .26);
}

.app-phone-speaker {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 58px;
  height: 5px;
  border-radius: 8px;
  background: #111918;
  transform: translateX(-50%);
}

.app-phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 17px 17px;
  border-radius: 23px;
  background: #fafaf6;
  color: #18211f;
}

.app-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 13px;
  border-bottom: 1px solid #dfe4de;
}

.app-phone-top strong { font-size: .87rem; }
.app-phone-top span { color: #1a6b5a; font-size: .43rem; font-weight: 850; }
.app-phone-screen > p { margin: 20px 0 24px; font-size: .73rem; font-weight: 750; line-height: 1.45; }

.app-check-row {
  margin-bottom: 18px;
}

.app-check-row > span,
.app-phone-screen label {
  display: block;
  margin-bottom: 7px;
  color: #53605d;
  font-size: .52rem;
  font-weight: 750;
}

.app-check-row i {
  position: relative;
  height: 3px;
  display: block;
  border-radius: 4px;
  background: #d8ded8;
}

.app-check-row b {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--value);
  height: 3px;
  border-radius: 4px;
  background: #1b9b7a;
}

.app-check-row b::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #1a6b5a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  transform: translateY(-50%);
}

.app-demo-input {
  min-height: 44px;
  padding: 10px;
  border: 1px solid #d9dfd9;
  border-radius: 5px;
  color: #9aa39f;
  font-size: .55rem;
}

.app-phone-screen button {
  min-height: 34px;
  margin-top: auto;
  border: 0;
  border-radius: 5px;
  background: #1a6b5a;
  color: #fff;
  font-size: .55rem;
  font-weight: 800;
}

.app-phone-screen > small {
  margin-top: 8px;
  color: #8a9491;
  font-size: .4rem;
  text-align: center;
}

.app-audio-card {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 4%;
  width: 380px;
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr 40px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #101817;
  color: #fff;
  box-shadow: 0 22px 45px rgba(5, 17, 15, .3);
}

.app-audio-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #d5b35c;
}

.app-audio-icon span {
  width: 26px;
  height: 20px;
  border: solid #17201f;
  border-width: 0 3px 3px 0;
  transform: skew(-18deg);
}

.app-audio-card small { color: #74d0b6; font-size: .48rem; font-weight: 850; }
.app-audio-card strong { display: block; margin-block: 5px; font-size: .86rem; }
.app-audio-card p { margin: 0; color: #9ba8a5; font-size: .58rem; }

.app-audio-card button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: transparent;
}

.app-audio-card button span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.app-verified {
  justify-content: flex-end;
  margin: 16px 0 54px;
}

.app-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(8, 20, 20, .2);
}

.app-benefits article {
  min-height: 174px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 30px 36px 30px 0;
  border-bottom: 1px solid rgba(8, 20, 20, .2);
}

.app-benefits article:nth-child(odd) { border-right: 1px solid rgba(8, 20, 20, .2); }
.app-benefits article:nth-child(even) { padding-left: 36px; }
.app-benefits article > span { color: #007981; font-size: .65rem; font-weight: 850; }
.app-benefits h3 { margin-bottom: 13px; font-size: 1.42rem; text-transform: uppercase; }
.app-benefits p { margin: 0; color: #4e5c5a; font-size: .9rem; line-height: 1.65; }

.app-continuity-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 58px;
  padding: 22px 0;
  border-top: 1px solid rgba(8, 20, 20, .25);
  border-bottom: 1px solid rgba(8, 20, 20, .25);
}

.app-continuity-flow p {
  margin: 0;
  font-size: .7rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-continuity-flow p span {
  display: block;
  margin-bottom: 4px;
  color: #007981;
  font-size: .48rem;
}

.app-continuity-flow i {
  position: relative;
  height: 1px;
  background: #9aa5a1;
}

.app-continuity-flow i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #697572;
  border-right: 1px solid #697572;
  transform: rotate(45deg);
}

.app-flow-note {
  margin: 18px 0 0 auto;
  color: #52615f;
  font-size: .74rem;
  font-weight: 750;
  text-align: right;
}

.testimonials-stage {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #101717;
}

.testimonials-stage::before {
  content: "VOCI";
  position: absolute;
  top: 52px;
  right: -.04em;
  color: rgba(255, 255, 255, .025);
  font-family: var(--display);
  font-size: clamp(12rem, 24vw, 26rem);
  line-height: .75;
  pointer-events: none;
}

.testimonials-layout {
  position: relative;
  z-index: 1;
}

.testimonials-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
}

.testimonials-stage h2 {
  max-width: 850px;
  margin: 0;
  font-size: 4.3rem;
  line-height: .96;
  text-transform: uppercase;
}

.testimonials-heading > p {
  max-width: 480px;
  margin: 0 0 5px;
  padding-left: 28px;
  border-left: 2px solid #d5b35c;
  color: #acb7b4;
  line-height: 1.75;
}

.testimonials-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 80px;
  outline: none;
}

.testimonials-gallery:focus-visible {
  outline: 3px solid rgba(66, 196, 202, .55);
  outline-offset: 8px;
}

.testimonial-shot {
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #0b1010;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .2);
}

.testimonial-shot figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  color: #82918e;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.testimonial-shot figcaption b {
  color: #42c4ca;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
}

.testimonial-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  background: #d9ddd8;
}

.testimonial-shot-primary {
  grid-column: 1 / span 7;
  align-self: start;
  color: #111918;
  background: #e8ebe5;
}

.testimonial-shot-primary figcaption { color: #52605d; }
.testimonial-shot-primary figcaption b { color: #007981; }

.testimonial-shot-tall {
  grid-column: 8 / -1;
  margin-top: 74px;
}

.testimonial-shot-compact {
  grid-column: 1 / span 5;
  align-self: start;
  margin-top: -10px;
  background: #17201f;
}

.testimonial-shot-portrait {
  grid-column: 7 / -1;
  padding: 28px;
  background: #0b1010;
}

.testimonial-shot-portrait img {
  width: 88%;
  margin-inline: auto;
}

.testimonial-shot-portrait figcaption { color: #82918e; }
.testimonial-shot-portrait figcaption b { color: #42c4ca; }

.testimonial-policy {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: 40px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.testimonial-policy span {
  color: #d5b35c;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-policy p {
  max-width: 790px;
  margin: 0;
  color: #8e9a97;
  font-size: .82rem;
  line-height: 1.7;
}

@media (min-width: 721px) {
  .testimonial-policy p { grid-column: 2; }
}

/* Google reviews */
.google-reviews-stage {
  position: relative;
  padding: 118px 0 126px;
  overflow: hidden;
  color: #0b1312;
  background: #e8ebe5;
  border-top: 1px solid rgba(11, 19, 18, .12);
}

.google-reviews-stage::before {
  position: absolute;
  top: 24px;
  right: max(4vw, 40px);
  color: rgba(11, 19, 18, .045);
  font-family: var(--display);
  font-size: clamp(9rem, 22vw, 22rem);
  line-height: .78;
  content: "GOOGLE";
  pointer-events: none;
}

.google-reviews-layout {
  position: relative;
  z-index: 1;
}

.google-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, 1.48fr);
  gap: 64px;
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(11, 19, 18, .18);
}

.google-reviews-heading .eyebrow {
  align-self: start;
  color: #007981;
}

.google-reviews-heading h2 {
  max-width: 930px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 4.8vw, 5rem);
  font-weight: 600;
  line-height: .94;
  text-transform: uppercase;
}

.google-review-wall {
  columns: 3 300px;
  column-gap: 16px;
  margin-top: 52px;
  outline: none;
}

.google-review-wall:focus-visible {
  outline: 3px solid rgba(0, 121, 129, .45);
  outline-offset: 8px;
}

.google-review-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 24px;
  break-inside: avoid;
  border: 1px solid rgba(11, 19, 18, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 42px rgba(11, 19, 18, .08);
}

.google-review-card > header,
.google-review-card > footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.google-review-card > header { margin-bottom: 24px; }

.google-stars {
  color: #b97900;
  font-size: .94rem;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}

.google-source {
  color: #66726f;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.google-review-card blockquote {
  margin: 0;
  color: #26302e;
  font-size: .96rem;
  line-height: 1.65;
}

.google-review-card > footer {
  align-items: end;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 19, 18, .14);
}

.google-review-card cite {
  color: #0b1312;
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.google-review-card > footer span {
  color: #78827f;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.google-review-featured {
  padding: 30px;
  color: #f4f6f2;
  border-color: rgba(66, 196, 202, .54);
  background: #0b1010;
  box-shadow: 0 26px 56px rgba(11, 19, 18, .16);
}

.google-review-featured .google-stars { color: #fbbc04; }
.google-review-featured .google-source,
.google-review-featured > footer span { color: #82918e; }
.google-review-featured blockquote { color: #d7dedb; font-size: 1.05rem; }
.google-review-featured > footer { border-color: rgba(255, 255, 255, .14); }
.google-review-featured cite { color: #fff; }

.google-review-excerpt {
  margin: 18px 0 0;
  color: rgba(15, 20, 22, .58);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.google-review-featured .google-review-excerpt {
  color: rgba(255, 255, 255, .58);
}

.google-review-method {
  border-color: rgba(0, 121, 129, .45);
  background: #d9e9e7;
  box-shadow: inset 4px 0 0 #007981;
}

.google-review-method .google-source,
.google-review-method cite { color: #006d74; }

.google-review-mini {
  padding: 20px 22px;
  background: #f7f8f4;
}

.google-review-mini blockquote {
  font-size: 1.03rem;
  line-height: 1.5;
}

.google-reviews-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(11, 19, 18, .18);
}

.google-reviews-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  color: #26302e;
  border: 1px solid rgba(11, 19, 18, .34);
  background: transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.google-reviews-link:hover,
.google-reviews-link:focus-visible {
  color: #006d74;
  border-color: #007981;
  background: rgba(66, 196, 202, .08);
}

.mobile-carousel-nav {
  display: none;
}

.about {
  background: #080b0b;
}

.about-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 110px;
  align-items: center;
}

.about-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(66, 196, 202, .28);
  background: #e7e8eb;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(3, 13, 14, .38), transparent 34%),
    linear-gradient(90deg, rgba(0, 163, 172, .08), transparent 36%);
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  border-top: 1px solid #007981;
  border-right: 1px solid #007981;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 26%;
}

.about-portrait > p {
  position: absolute;
  right: -52px;
  bottom: 30px;
  z-index: 3;
  width: 205px;
  margin: 0;
  padding: 18px 22px;
  background: var(--teal);
  color: #001c1e;
  font-size: .67rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-portrait > p span {
  display: block;
  font-family: Impact, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about-copy h2 {
  margin-bottom: 8px;
  font-size: 4.9rem;
}

.about-role {
  margin: 0 0 38px;
  color: var(--teal-light);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-copy blockquote {
  margin: 0 0 35px;
  padding-left: 28px;
  border-left: 2px solid var(--teal);
  color: #e5e9e6;
  font-size: 1.5rem;
  font-weight: 680;
  line-height: 1.45;
}

.about-copy > p:not(.eyebrow):not(.about-role) {
  max-width: 650px;
  color: #9da8a6;
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.about-facts li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #bfc7c5;
  font-size: .67rem;
  font-weight: 750;
  white-space: nowrap;
  text-transform: uppercase;
}

.level-band {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
  background: var(--teal);
  color: #001c1e;
}

.level-lines {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 47px, #001c1e 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, #001c1e 48px);
}

.level-layout {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 54px;
  align-items: start;
}

.level-index {
  margin: 0;
  color: rgba(0, 28, 30, .2);
  font-family: Impact, sans-serif;
  font-size: 9rem;
  line-height: .8;
}

.level-band .eyebrow {
  color: #002d30;
}

.level-band h2 {
  max-width: 990px;
  color: #001c1e;
  font-size: 4.1rem;
  line-height: 1;
}

.level-band div > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: #063b3e;
  font-weight: 600;
}

.call-section {
  background: #0b1111;
}

.call-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: start;
}

.call-intro {
  position: sticky;
  top: 116px;
}

.call-intro h2 {
  margin-bottom: 30px;
  font-size: 3.85rem;
}

.call-intro > p:not(.eyebrow) {
  max-width: 550px;
  color: #a7b1af;
}

.call-agenda {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--home-line);
}

.call-agenda li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--home-line);
  color: #d2d8d6;
  font-size: .83rem;
}

.call-agenda span {
  color: var(--teal-light);
  font-size: .62rem;
  font-weight: 850;
}

.call-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.call-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #c2cac8;
  font-size: .65rem;
  font-weight: 750;
  text-transform: uppercase;
}

.call-surface {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #080c0c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
}

.form-topline {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--home-line);
}

.form-topline span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(66, 196, 202, .5);
  border-radius: 50%;
  color: var(--teal-light);
  font-size: .61rem;
  font-weight: 850;
}

.form-topline p {
  margin: 0;
  color: #c2cac8;
  font-size: .82rem;
}

.call-surface .field input {
  background: #050808;
}

.call-surface .privacy-copy {
  margin-top: 24px;
}

.call-surface .check-row {
  align-items: start;
}

.call-surface .success-state h3 {
  font-size: 2.7rem;
}

.call-surface .next-step {
  margin-top: 28px;
}

.faq {
  background: #080b0b;
}

.faq-layout {
  display: grid;
  grid-template-columns: .64fr 1.36fr;
  gap: 100px;
  align-items: start;
}

.faq header {
  position: sticky;
  top: 116px;
}

.faq header h2 {
  font-size: 4.1rem;
}

.faq header > p:last-child {
  color: #8f9a98;
}

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

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

.faq-list summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  color: #e5e9e6;
  font-size: 1.05rem;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(66, 196, 202, .5);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--teal-light);
  transform: translate(-50%, -50%);
}

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

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

.faq-list .answer {
  max-width: 760px;
  padding: 0 50px 30px 0;
  color: #99a4a2;
  font-size: .94rem;
}

.guide-section {
  padding-block: 100px;
  background: var(--home-light);
  color: var(--home-ink);
}

.guide-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 100px;
  align-items: center;
}

.guide-cover {
  position: relative;
  width: 100%;
  transform: rotate(-3deg);
}

.guide-cover::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -16px;
  bottom: -18px;
  width: 90%;
  height: 92%;
  border: 1px solid rgba(8, 20, 20, .35);
}

.guide-cover img {
  display: block;
  width: 100%;
  box-shadow: 0 24px 45px rgba(15, 29, 29, .2);
}

.guide-copy h2 {
  max-width: 760px;
  color: var(--home-ink);
  font-size: 4.6rem;
}

.guide-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #465554;
  font-size: 1.05rem;
}

.guide-copy .button {
  min-width: 360px;
  margin-top: 22px;
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(3, 7, 7, .95), rgba(3, 7, 7, .58)),
    url("/assets/images/hero-athlete-silhouette.png") 118% 48% / 68% auto no-repeat,
    #050707;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  pointer-events: none;
}

.final-layout {
  position: relative;
}

.final-layout h2 {
  max-width: 980px;
  font-size: 4.8rem;
}

.final-layout .button {
  min-width: 380px;
}

.home-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-call {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1180px) {
  .hero h1 { font-size: 4.8rem; }
  .home-nav { gap: 15px; }
  .home-nav a { font-size: .69rem; }
  .recognition h2,
  .method-intro h2,
  .about-copy h2 { font-size: 4.2rem; }
  .app-intro h2,
  .testimonials-stage h2,
  .guide-copy h2 { font-size: 3.8rem; }
  .training-intro h2,
  .final-layout h2 { font-size: 4.1rem; }
  .method-layout,
  .call-layout { gap: 64px; }
  .about-layout { gap: 78px; }
}

@media (max-width: 980px) {
  .home-page .section-inner { width: min(calc(100% - 44px), var(--max)); }
  .home-header { padding-inline: 22px; }
  .home-header .header-cta { margin-left: auto; }
  .nav-toggle { display: block; order: 3; }
  .home-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 22px 26px;
    border-bottom: 1px solid var(--home-line);
    background: rgba(7, 10, 10, .98);
    transform: translateY(-140%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, visibility 0s linear .25s;
  }
  .home-header.is-open .home-nav {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .home-header.is-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .home-header.is-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .home-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .hero { min-height: 790px; }
  .hero-athlete { top: 50%; right: -20%; width: min(78vw, 700px); opacity: .56; }
  .hero::before { background: linear-gradient(90deg, rgba(7, 10, 10, .98), rgba(7, 10, 10, .77) 70%, rgba(7, 10, 10, .34)); }
  .hero h1 { max-width: 820px; font-size: 4.4rem; }
  .hero-marker { display: none; }
  .recognition,
  .mental-training,
  .method,
  .continuity,
  .about,
  .testimonials-stage,
  .call-section,
  .faq,
  .final-cta { padding-block: 108px; }
  .recognition-stage { min-height: auto; display: block; }
  .stage-word { font-size: 13rem; }
  .stage-intro { max-width: 520px; margin-bottom: 80px; }
  .pressure-signals { margin-left: 22%; }
  .parent-voice { gap: 44px; }
  .training-spectrum article { grid-template-columns: 54px minmax(220px, .8fr) 1.2fr; }
  .training-spectrum b { display: none; }
  .method-layout,
  .call-layout,
  .faq-layout { grid-template-columns: 1fr; }
  .method-intro,
  .call-intro,
  .faq header { position: static; }
  .method-progress { display: none; }
  .method-intro > p:not(.eyebrow) { max-width: 650px; }
  .method-step { min-height: 280px; }
  .app-showcase { padding-block: 92px; }
  .app-intro { gap: 32px 54px; }
  .app-intro h2 { font-size: 3.9rem; }
  .app-product-stage { min-height: 640px; }
  .app-desktop { width: 92%; }
  .app-phone { width: 225px; }
  .app-audio-card { width: 340px; }
  .app-continuity-flow { gap: 9px; }
  .app-continuity-flow p { font-size: .62rem; }
  .about-layout { grid-template-columns: minmax(300px, .8fr) 1.2fr; gap: 70px; }
  .about-portrait > p { right: -28px; }
  .level-layout { grid-template-columns: 100px 1fr; }
  .level-index { font-size: 6.5rem; }
  .level-band h2 { font-size: 3.5rem; }
  .call-surface { max-width: 760px; }
  .faq-layout { gap: 48px; }
  .faq header > p:last-child { display: none; }
  .guide-layout { grid-template-columns: 280px 1fr; gap: 60px; }
  .testimonials-heading { gap: 54px; }
  .testimonials-gallery { margin-top: 64px; }
  .testimonial-shot { padding: 20px; }
  .testimonial-shot-tall { margin-top: 42px; }
  .google-reviews-stage { padding-block: 104px; }
  .google-reviews-heading { gap: 40px; }
  .google-review-wall { columns: 2 280px; margin-top: 54px; }
}

@media (max-width: 720px) {
  .home-page .section-inner { width: min(calc(100% - 30px), var(--max)); }
  .home-header { min-height: 66px; padding-inline: 15px; }
  .home-header .brand span { display: none; }
  .home-header .brand img { width: 36px; height: 36px; }
  .home-header .header-cta { min-height: 38px; padding: 7px 10px; font-size: .63rem; }
  .nav-toggle { width: 40px; height: 40px; }
  .home-nav { top: 66px; padding-inline: 15px; }
  .home-page .eyebrow { gap: 10px; margin-bottom: 18px; font-size: .65rem; }
  .home-page .eyebrow > span { width: 26px; height: 26px; }
  .hero { min-height: calc(100svh - 32px); }
  .hero-grid-lines { background-size: 44px 44px; }
  .hero-athlete { top: -18%; right: -38%; width: 130%; height: auto; opacity: .36; transform: none; }
  .hero::before { background: linear-gradient(180deg, rgba(7, 10, 10, .32), rgba(7, 10, 10, .8) 43%, #070a0a 70%); }
  .hero-layout { align-items: end; padding-block: 72px 82px; }
  .hero-copy { display: block; }
  .hero h1 { margin-bottom: 26px; font-size: 3.25rem; line-height: .94; }
  .hero-bottom { display: flex; flex-direction: column; gap: 26px; }
  .hero-action { order: 1; }
  .hero-lede { order: 2; }
  .hero-lede { font-size: .91rem; line-height: 1.65; }
  .hero-action .button { width: 100%; }
  .scroll-cue { display: none; }
  .performance-rail { overflow-x: auto; scrollbar-width: none; }
  .performance-rail::-webkit-scrollbar { display: none; }
  .rail-track { width: max-content; min-height: 58px; justify-content: flex-start; margin: 0; padding-inline: 18px; }
  .recognition,
  .mental-training,
  .method,
  .continuity,
  .about,
  .testimonials-stage,
  .call-section,
  .faq,
  .final-cta { padding-block: 82px; }
  .recognition h2,
  .training-intro h2,
  .method-intro h2,
  .app-intro h2,
  .testimonials-stage h2,
  .about-copy h2,
  .guide-copy h2,
  .final-layout h2 { font-size: 3rem; }
  .recognition-stage { margin-top: 62px; }
  .stage-word { top: -10px; right: -10px; font-size: 7rem; }
  .stage-intro { max-width: 100%; margin: 0 0 54px; padding-top: 18px; font-size: 1rem; }
  .pressure-signals { margin-left: 0; }
  .pressure-signals li { grid-template-columns: 82px 1fr; min-height: 0; gap: 14px; padding: 24px 0; }
  .pressure-signals h3 { font-size: 1.2rem; }
  .pressure-signals p { font-size: .88rem; }
  .parent-voice { grid-template-columns: 1fr; gap: 22px; margin-top: 76px; padding-top: 36px; }
  .parent-intro h3 { font-size: 1.65rem; }
  .parent-quotes { grid-template-columns: 1fr; }
  .parent-quotes blockquote { min-height: 78px; font-size: 1.08rem; }
  .parent-note { grid-column: auto; margin: 8px 0 0; }
  .training-intro { grid-template-columns: 1fr; gap: 22px; margin-bottom: 52px; }
  .training-intro .eyebrow { grid-column: auto; margin-bottom: 0; }
  .training-intro > p:last-child { margin: 0; font-size: .95rem; }
  .training-spectrum article { min-height: 0; grid-template-columns: 38px 1fr; gap: 5px 12px; padding: 23px 0; }
  .training-spectrum article:hover { padding-inline: 0; }
  .training-spectrum p { grid-column: 2; font-size: .83rem; }
  .training-spectrum h3 { font-size: 1.08rem; }
  .method-layout { gap: 42px; }
  .method-step { min-height: 0; grid-template-columns: 62px 1fr; gap: 16px; padding: 38px 0; opacity: 1; }
  .method-number { font-size: 2.5rem; }
  .method-step h3 { font-size: 1.5rem; }
  .app-showcase { padding-block: 68px; }
  .app-intro { grid-template-columns: 1fr; gap: 24px; }
  .app-intro .eyebrow { grid-column: auto; }
  .app-intro h2 { font-size: 3rem; }
  .app-intro > p:last-child { max-width: 620px; }
  .app-product-stage { min-height: 0; display: grid; margin-top: 44px; }
  .app-desktop { width: 100%; height: 520px; aspect-ratio: auto; transform: none; }
  .app-shell-preview { grid-template-columns: 1fr; }
  .app-preview-sidebar { display: none; }
  .app-preview-main { padding: 13px; }
  .app-preview-hero { min-height: 145px; padding: 20px; }
  .app-preview-grid article { min-height: 82px; padding: 11px; }
  .app-preview-lower article { min-height: 96px; padding: 11px; }
  .app-phone { position: relative; right: auto; bottom: auto; width: min(72%, 250px); margin: -48px 0 0 auto; }
  .app-audio-card { position: relative; bottom: auto; left: auto; width: min(92%, 380px); margin: -56px auto 0 0; }
  .app-verified { justify-content: flex-start; margin: 20px 0 42px; }
  .app-benefits { grid-template-columns: 1fr; }
  .app-benefits article { min-height: 0; padding: 24px 0; border-right: 0 !important; }
  .app-benefits article:nth-child(even) { padding-left: 0; }
  .app-continuity-flow { grid-template-columns: 1fr 1fr; gap: 0; margin-top: 42px; padding: 0; border-bottom: 0; }
  .app-continuity-flow p { min-height: 68px; padding: 15px 0; border-bottom: 1px solid rgba(8, 20, 20, .22); white-space: normal; }
  .app-continuity-flow p:nth-of-type(even) { padding-left: 18px; border-left: 1px solid rgba(8, 20, 20, .22); }
  .app-continuity-flow i { display: none; }
  .app-flow-note { margin-top: 14px; text-align: left; }
  .about-layout { grid-template-columns: 1fr; gap: 70px; }
  .about-portrait { width: min(88%, 430px); }
  .about-portrait > p { right: -14%; bottom: 20px; }
  .about-copy blockquote { padding-left: 20px; font-size: 1.2rem; }
  .level-band { padding-block: 78px; }
  .level-layout { grid-template-columns: 1fr; gap: 20px; }
  .level-index { font-size: 4.3rem; }
  .level-band h2 { font-size: 2.55rem; }
  .call-layout { gap: 52px; }
  .call-intro h2 { font-size: 2.8rem; }
  .call-surface { padding: 26px 20px; }
  .call-surface .field-grid { grid-template-columns: 1fr; gap: 16px; }
  .call-surface .field-span { grid-column: auto; }
  .faq-list summary { min-height: 82px; font-size: .94rem; }
  .faq-list .answer { padding-right: 0; font-size: .87rem; }
  .guide-section { padding-block: 80px; }
  .guide-layout { grid-template-columns: 1fr; gap: 58px; }
  .guide-cover { width: min(68%, 300px); margin-inline: auto; }
  .guide-copy .button { width: 100%; min-width: 0; }
  .testimonials-heading { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-heading > p { padding-left: 20px; }
  .testimonials-gallery {
    display: flex;
    gap: 14px;
    margin: 48px -15px 0;
    padding: 3px 15px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .testimonials-gallery::-webkit-scrollbar { display: none; }
  .testimonial-shot,
  .testimonial-shot-tall,
  .testimonial-shot-compact,
  .testimonial-shot-portrait {
    flex: 0 0 min(82vw, 350px);
    align-self: flex-start;
    margin-top: 0;
    padding: 18px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .testimonial-shot-portrait img { width: 100%; }
  .testimonial-shot figcaption { margin-bottom: 15px; }
  .testimonial-policy { grid-template-columns: 1fr; gap: 10px; margin-top: 38px; }
  .testimonials-stage { padding-bottom: 52px; }
  .google-reviews-stage { padding-block: 82px; }
  .google-reviews-stage::before { top: 72px; right: -24px; font-size: 9rem; }
  .google-reviews-heading { grid-template-columns: 1fr; gap: 20px; padding-bottom: 30px; }
  .google-reviews-heading h2 { font-size: 3rem; }
  .google-review-wall {
    display: flex;
    gap: 14px;
    margin: 44px -15px 0;
    padding: 3px 15px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .google-review-wall::-webkit-scrollbar { display: none; }
  .google-review-card,
  .google-review-featured,
  .google-review-method,
  .google-review-mini {
    flex: 0 0 min(82vw, 350px);
    align-self: flex-start;
    margin: 0;
    padding: 22px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .google-review-card blockquote,
  .google-review-featured blockquote,
  .google-review-mini blockquote { font-size: .93rem; line-height: 1.58; }
  .google-review-card cite { font-size: 1.08rem; }
  .js .mobile-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
  }
  .carousel-position {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-family: var(--display);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
  }
  .carousel-actions {
    display: flex;
    gap: 8px;
  }
  .carousel-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 1.15rem;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, opacity .2s ease;
  }
  .carousel-button:hover:not(:disabled) {
    color: #42c4ca;
    border-color: #42c4ca;
  }
  .carousel-button:focus-visible {
    outline: 2px solid #42c4ca;
    outline-offset: 3px;
  }
  .carousel-button:disabled {
    opacity: .28;
    cursor: default;
  }
  .google-carousel-nav .carousel-position {
    color: rgba(15, 20, 22, .64);
  }
  .google-carousel-nav .carousel-button {
    color: #0b1312;
    border-color: rgba(15, 20, 22, .24);
  }
  .google-carousel-nav .carousel-button:hover:not(:disabled) {
    color: #007981;
    border-color: #007981;
  }
  .google-reviews-action { justify-content: stretch; margin-top: 30px; }
  .google-reviews-link { width: 100%; justify-content: space-between; }
  .final-cta { min-height: 650px; background-position: 160% 25%; background-size: auto, 120% auto, auto; }
  .final-cta::before { inset: 15px; }
  .final-layout .button { width: 100%; min-width: 0; }
  .mobile-call {
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 163, 172, .96);
    color: #001b1d;
    font-size: .72rem;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .34);
    transform: translateY(78px);
    transition: transform .25s ease;
  }
  .mobile-call.is-visible { transform: translateY(0); }
  .home-footer { padding-bottom: 98px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-athlete { top: -14%; right: -48%; width: 145%; }
  .home-page .button { font-size: .7rem; }
  .recognition h2,
  .training-intro h2,
  .method-intro h2,
  .app-intro h2,
  .testimonials-stage h2,
  .about-copy h2,
  .guide-copy h2,
  .final-layout h2 { font-size: 2.6rem; }
  .pressure-signals li { grid-template-columns: 68px 1fr; }
  .app-product-stage { margin-top: 36px; }
  .app-desktop { height: 500px; }
  .app-preview-hero { min-height: 154px; grid-template-columns: .92fr 1.08fr; gap: 14px; align-items: stretch; padding: 16px; }
  .app-preview-focus { padding-left: 14px; }
  .app-preview-focus blockquote { font-size: .78rem; }
  .app-preview-journey strong { font-size: 1.7rem; }
  .app-preview-grid { grid-template-columns: 1fr 1fr; }
  .app-preview-grid article:nth-child(3) { grid-column: 1 / -1; min-height: 70px; }
  .app-preview-grid strong { font-size: .62rem; }
  .app-preview-lower { display: none; }
  .app-preview-topbar p { max-width: 48%; }
  .app-phone { width: min(70%, 230px); margin-top: -40px; }
  .app-phone-screen { padding: 29px 15px 15px; }
  .app-phone-screen > p { margin: 16px 0 19px; }
  .app-check-row { margin-bottom: 15px; }
  .app-audio-card { margin-top: -48px; }
  .app-audio-card { grid-template-columns: 48px 1fr 34px; gap: 10px; padding: 14px; }
  .app-audio-icon { width: 48px; height: 48px; }
  .app-benefits article { grid-template-columns: 38px 1fr; gap: 12px; }
  .call-intro h2 { font-size: 2.45rem; }
  .role-options { grid-template-columns: 1fr 1fr; }
  .about-portrait > p { width: 165px; right: -10%; }
  .level-band h2 { font-size: 2.25rem; }
  .testimonial-shot,
  .testimonial-shot-tall,
  .testimonial-shot-compact,
  .testimonial-shot-portrait {
    flex-basis: min(82vw, 350px);
    padding: 16px;
  }
  .google-reviews-heading h2 { font-size: 2.6rem; }
  .google-review-card,
  .google-review-featured,
  .google-review-method,
  .google-review-mini {
    flex-basis: min(82vw, 350px);
    padding: 20px;
  }
}

@media (max-width: 340px) {
  .home-page .section-inner { width: calc(100% - 24px); }
  .home-header { padding-inline: 12px; }
  .home-header .header-cta { font-size: .58rem; }
  .hero h1 { font-size: 2.5rem; overflow-wrap: anywhere; }
  .hero-lede { font-size: .86rem; }
  .home-page .button { padding-inline: 15px; font-size: .65rem; }
  .recognition h2,
  .training-intro h2,
  .method-intro h2,
  .app-intro h2,
  .testimonials-stage h2,
  .about-copy h2,
  .guide-copy h2,
  .final-layout h2 { font-size: 2.3rem; }
  .google-reviews-heading h2 { font-size: 2.3rem; }
  .pressure-signals li { grid-template-columns: 1fr; }
  .parent-quotes blockquote { font-size: 1rem; }
  .call-intro h2 { font-size: 2.2rem; }
  .call-surface { padding-inline: 15px; }
  .role-options { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-orbit,
  .hero-brand-mark {
    transform: none !important;
  }
}
