:root {
  color-scheme: dark;
  --bg: #0d0d0d;
  --bg-soft: #151515;
  --panel: #1c1c1c;
  --panel-raised: #242424;
  --line: #3d3d40;
  --text: #ffffff;
  --muted: #9494a3;
  --quiet: #7a7a87;
  --blue: #317dff;
  --blue-bright: #57a0ff;
  --amber: #f59e0b;
  --red: #ef4444;
  --court: #f4f7fb;
  --court-text: #161719;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 70px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.nav-account {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-account button {
  font: inherit;
  cursor: pointer;
}

.nav-account [hidden] {
  display: none !important;
}

.nav-greeting {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-logout {
  border: 0;
  padding: 6px 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
}

.nav-auth-status {
  max-width: 210px;
  color: #ff9c9c;
  font-size: 12px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  text-shadow: none;
  white-space: nowrap;
}

.button,
.button:hover,
.button:focus-visible,
.button:active {
  box-shadow: none;
}

.button.primary {
  background: var(--blue);
  box-shadow: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button.dark {
  background: var(--court-text);
}

.app-store-badge {
  display: inline-flex;
  width: 178px;
  align-items: center;
  text-decoration: none;
}

.app-store-badge img {
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 80% 12%, rgba(49, 125, 255, 0.23), transparent 30%),
    linear-gradient(180deg, #121212 0%, #0d0d0d 62%, #111 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -120px -8%;
  height: 390px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.06) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.05) 50%, transparent 50.2%);
  background-size: 130px 130px;
  transform: rotate(-5deg);
  opacity: 0.85;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2.1vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
}

.proof-pill {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.proof-pill strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.proof-pill span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.device-stage,
.product-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.product-stage {
  min-height: 690px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.screenshot-frame {
  position: relative;
  overflow: hidden;
  border: 10px solid #050506;
  border-radius: 42px;
  background: #101010;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.58);
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #050506;
}

.hero-shot {
  order: 2;
  z-index: 3;
  width: min(280px, 30vw);
  aspect-ratio: 1284 / 2778;
}

.side-shot {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(150px, 16vw);
  aspect-ratio: 1284 / 2778;
  opacity: 0.88;
}

.drill-shot {
  order: 1;
  transform: rotate(-3deg);
}

.clips-shot {
  order: 3;
  transform: rotate(3deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(330px, 72vw);
  border: 10px solid #060607;
  border-radius: 42px;
  background: #0b0b0c;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.phone.secondary-phone {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 48px;
  width: min(245px, 50vw);
  transform: rotate(7deg);
  opacity: 0.92;
}

.phone-screen {
  min-height: 650px;
  padding: 24px 18px;
  background:
    linear-gradient(180deg, rgba(49, 125, 255, 0.15), transparent 34%),
    #111;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.today-card,
.feedback-card,
.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #1c1c1c;
}

.today-card {
  min-height: 238px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.64)),
    linear-gradient(135deg, #317dff, #101113 64%);
}

.card-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.today-card h3 {
  margin: 42px 0 10px;
  font-size: 30px;
  line-height: 1;
}

.today-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
}

.progress-track {
  height: 8px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-track span {
  display: block;
  width: 62%;
  height: 100%;
  background: #fff;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.mini-card {
  min-height: 112px;
  padding: 14px;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 23px;
}

.mini-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.feedback-card {
  margin-top: 12px;
  padding: 16px;
}

.feedback-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feedback-row:first-child {
  border-top: 0;
}

.feedback-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.grade {
  min-width: 34px;
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(49, 125, 255, 0.16);
  color: var(--blue-bright);
  text-align: center;
  font-weight: 900;
}

.media-strip {
  position: absolute;
  left: 0;
  bottom: 78px;
  width: 235px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(28, 28, 28, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.media-strip img {
  border-radius: 8px;
  background: #fff;
}

.section {
  padding: 92px 0;
}

.section.light {
  background: var(--court);
  color: var(--court-text);
}

.section.dark {
  background: #101010;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 68px;
  align-items: center;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.light .section-copy,
.light .muted {
  color: rgba(22, 23, 25, 0.68);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 950;
}

.feature-item h3 {
  margin-bottom: 4px;
  font-size: 19px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.light .feature-item p {
  color: rgba(22, 23, 25, 0.62);
}

.workout-board {
  border: 1px solid rgba(22, 23, 25, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(22, 23, 25, 0.1);
  overflow: hidden;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e6e9ee;
  color: #687083;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.drill-table {
  display: grid;
  gap: 1px;
  background: #e9edf3;
}

.drill-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px 20px;
  background: #fff;
}

.drill-row .num {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #ecf3ff;
  color: var(--blue);
  font-weight: 900;
}

.drill-row strong {
  display: block;
  margin-bottom: 2px;
  font-size: 17px;
}

.drill-row span {
  color: #737b8b;
  font-size: 13px;
  font-weight: 650;
}

.drill-tag {
  border-radius: 8px;
  padding: 8px 10px;
  background: #151719;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 76px;
  align-items: center;
}

.meter-stack {
  display: grid;
  gap: 16px;
}

.meter {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 18px;
}

.meter-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.meter-track {
  height: 32px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel-raised);
}

.meter-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #1f5fc9, #57a0ff);
}

.meter-92 {
  width: 92%;
}

.meter-82 {
  width: 82%;
}

.meter-76 {
  width: 76%;
}

.meter-68 {
  width: 68%;
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.goal-card {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.goal-symbol {
  min-height: 104px;
  display: grid;
  place-items: center;
  background: var(--blue);
  font-size: 34px;
  font-weight: 950;
}

.goal-card div:last-child {
  padding: 16px;
}

.goal-card h3 {
  margin-bottom: 4px;
  font-size: 15px;
  text-transform: uppercase;
}

.goal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.screens-section {
  overflow: hidden;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.screen-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: #050506;
}

.screen-card h3 {
  margin: 18px 0 6px;
}

.screen-card p {
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(22, 23, 25, 0.1);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: rgba(22, 23, 25, 0.66);
}

.cta-band {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(49, 125, 255, 0.92), rgba(49, 125, 255, 0.72)),
    #317dff;
}

.cta-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-shell h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 0.98;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
  background: #0a0a0a;
}

.footer-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--quiet);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.legal-main,
.support-main {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-main {
  color-scheme: light;
  color: #17181b;
}

.legal-body,
.support-body {
  background: var(--court);
  color: var(--court-text);
}

.legal-main h1,
.support-main h1 {
  margin-bottom: 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
}

.legal-main h2,
.support-main h2 {
  margin: 42px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.legal-main p,
.legal-main li,
.support-main p,
.support-main li {
  font-size: 16px;
}

.legal-main p,
.support-main p {
  color: rgba(22, 23, 25, 0.78);
}

.legal-main a,
.support-main a {
  color: #1f66d6;
  font-weight: 750;
}

.legal-main blockquote {
  margin: 24px 0;
  border-left: 4px solid var(--blue);
  padding: 8px 0 8px 18px;
  background: transparent;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.support-card {
  border: 1px solid rgba(22, 23, 25, 0.1);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.support-card h2 {
  margin-top: 0;
}

/* Entry page: full-bleed product hero using the app's real screens. */
.home-body .site-header {
  position: absolute;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #081018;
  backdrop-filter: none;
}

.home-body .nav-shell {
  width: calc(100% - (2 * clamp(32px, 4vw, 112px)));
  max-width: none;
  min-height: 96px;
}

.home-body .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: clamp(24px, 3.5vw, 52px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.home-body .nav-links a:hover,
.home-body .nav-links a:focus-visible {
  color: #fff;
}

.home-body .nav-account {
  gap: 18px;
}

.home-body .nav-account .button {
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.home-body .nav-account .nav-download {
  color: var(--blue-bright);
}

.home-body .hero {
  display: flex;
  min-height: max(660px, 100svh);
  align-items: center;
  padding: 136px 0 72px;
  background: #081018;
}

.home-body .hero::before {
  display: none;
}

.home-body .hero-shell {
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
  gap: clamp(30px, 5vw, 78px);
}

.home-body .hero-content {
  position: relative;
  z-index: 2;
}

.home-body .hero .eyebrow {
  margin-bottom: 24px;
  color: #85b8ff;
}

.home-body .hero h1 {
  max-width: 670px;
  margin-bottom: 26px;
  font-size: clamp(52px, 5.7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home-body .hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.38;
}

.home-body .hero-actions {
  margin-bottom: 0;
}

.home-body .hero-actions .primary {
  min-height: 64px;
  border-radius: 2px;
  padding: 0 28px;
  background: #317dff;
  box-shadow: none;
  font-size: 17px;
}

.home-body.audience-page .hero {
  min-height: max(560px, 100svh);
  padding: 104px 0 96px;
}

.home-body.audience-page .hero-shell {
  display: block;
  width: min(880px, calc(100% - 40px));
}

.home-body.audience-page .page-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.home-body.audience-page .hero h1,
.home-body.audience-page .hero-copy {
  margin-right: auto;
  margin-left: auto;
}

.home-body.audience-page .hero-actions {
  justify-content: center;
}

.home-body.audience-page .hero-actions .secondary {
  min-height: 64px;
  border-radius: 2px;
  padding: 0 28px;
  font-size: 17px;
}

.trainer-interest-form {
  max-width: 680px;
  margin: 34px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.home-body.audience-page .trainer-interest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: clamp(40px, 6vw, 84px);
  text-align: left;
}

.home-body.audience-page .trainer-interest-information {
  min-width: 0;
}

.home-body.audience-page .trainer-interest-information h1,
.home-body.audience-page .trainer-interest-information .hero-copy {
  margin-right: 0;
  margin-left: 0;
}

.home-body.audience-page .trainer-interest-form {
  max-width: none;
  margin: 0;
}

.home-body.audience-page .trainer-interest-layout .trainer-interest-fields {
  grid-template-columns: 1fr;
}

.trainer-interest-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trainer-interest-fields label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.trainer-interest-fields label span {
  color: var(--muted);
  font-weight: 650;
}

.trainer-interest-fields input {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: #101010;
  font: inherit;
}

.trainer-interest-fields input:focus {
  outline: 2px solid #85b8ff;
  outline-offset: 2px;
}

.trainer-interest-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.trainer-interest-notice {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.trainer-interest-notice a {
  color: #a7c9ff;
}

.trainer-interest-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.trainer-interest-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: #317dff;
}

.trainer-interest-consent a {
  color: #a7c9ff;
}

.trainer-interest-form .button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.trainer-interest-form .button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.trainer-interest-status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.trainer-interest-status[data-state="loading"] { color: var(--muted); }
.trainer-interest-status[data-state="success"] { color: #8ee3ae; }
.trainer-interest-status[data-state="failure"] { color: #ff9c9c; }

.home-body.audience-page .offer-card {
  max-width: 540px;
  margin: 32px auto 0;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 0 0 26px;
  background: transparent;
  box-shadow: none;
}

.home-body.audience-page .offer-title {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-body.audience-page .offer-price {
  margin-bottom: 10px;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-body.audience-page .offer-price span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
}

.home-body.audience-page .offer-benefits {
  display: grid;
  gap: 10px;
  max-width: 410px;
  margin: 22px auto 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  list-style: none;
  text-align: left;
}

.home-body.audience-page .offer-benefits li::before {
  content: "✓";
  margin-right: 10px;
  color: #85b8ff;
  font-weight: 800;
}

.home-body.audience-page .offer-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.home-body.audience-page .offer-benefits li::before {
  grid-row: span 2;
}

.home-body.audience-page .offer-benefits li strong,
.home-body.audience-page .offer-benefits li span {
  grid-column: 2;
}

.home-body.audience-page .offer-benefits li span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.home-body.audience-page .offer-bonus,
.home-body.audience-page .offer-subscription-details {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 12px 18px 18px;
}

.home-body.audience-page .offer-bonus > :first-child {
  margin-bottom: 16px;
  color: #ff6b6b;
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-body.audience-page .offer-bonus h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.home-body.audience-page .offer-bonus p,
.home-body.audience-page .offer-subscription-details p {
  margin: 10px 0 0;
}

.home-body.audience-page .offer-bonus-steps {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.4;
}

.home-body.audience-page .offer-bonus p:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.home-body.audience-page .offer-subscription-details > :first-child {
  margin-top: 0;
  color: #a7c9ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-body.audience-page .offer-subscription-details .offer-price {
  margin-top: 8px;
}

.home-body.audience-page .offer-subscription-details > :last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.home-body.audience-page .offer-card .hero-actions {
  margin: 24px 0 0;
}

.home-body.audience-page .offer-login {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.home-body.audience-page .offer-login a {
  color: #a7c9ff;
  font-weight: 750;
}

.home-body.audience-page .parents-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
  align-items: start;
  gap: clamp(40px, 6vw, 84px);
  text-align: left;
}

.home-body.audience-page .parents-hero-shell {
  width: min(1180px, calc(100% - 40px));
}

.home-body.audience-page .parents-information {
  min-width: 0;
}

.home-body.audience-page .parents-layout h1,
.home-body.audience-page .parents-layout .hero-copy {
  margin-right: 0;
  margin-left: 0;
}

.home-body.audience-page .parents-layout .hero-copy {
  max-width: 680px;
}

.home-body.audience-page .parents-layout .offer-card {
  max-width: none;
  margin: 0;
}

.home-body.audience-page .parents-layout .hero-actions {
  justify-content: center;
}

.home-body.audience-page .parents-highlight {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 28px;
}

.home-body.audience-page .parents-highlight h2,
.home-body.audience-page .parents-details h2,
.home-body.audience-page .parents-consent h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.home-body.audience-page .parents-highlight p,
.home-body.audience-page .parents-details p,
.home-body.audience-page .parents-consent p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.home-body.audience-page .parents-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
  margin-top: 40px;
}

.home-body.audience-page .parents-details section {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
}

.home-body.audience-page .parents-details h2,
.home-body.audience-page .parents-consent h2 {
  font-size: 21px;
}

.home-body.audience-page .parents-consent {
  margin-top: 40px;
  border-left: 3px solid #85b8ff;
  padding: 4px 0 4px 20px;
}

.home-body.audience-page .parents-consent a {
  color: #a7c9ff;
  font-weight: 750;
}

.home-body .product-stage {
  min-height: 0;
  height: min(680px, calc(100svh - 144px));
  min-height: 500px;
  align-self: stretch;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(10px, 1.6vw, 22px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 34px 0 0 clamp(28px, 4vw, 68px);
}

.home-body .screenshot-frame {
  border-color: rgba(1, 5, 11, 0.95);
  border-width: 8px;
  border-radius: 22px;
  box-shadow: none;
}

.home-body .hero-shot {
  width: min(272px, 24vw);
}

.home-body .side-shot {
  width: min(174px, 15vw);
  opacity: 1;
}

.home-body .drill-shot {
  transform: none;
}

.home-body .clips-shot {
  transform: none;
}

.home-body .training-section {
  padding: clamp(104px, 12vw, 176px) 0 118px;
}

.home-body .training-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.home-body .training-intro .eyebrow,
.home-body .screens-intro .eyebrow {
  color: var(--blue);
}

.home-body .training-intro h2 {
  max-width: 880px;
  margin: 0 auto 22px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-body .training-intro .section-copy {
  margin: 0 auto;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

.home-body .audience-actions {
  justify-content: center;
  margin-top: 32px;
}

.home-body .light .audience-actions .secondary {
  border-color: rgba(13, 36, 74, 0.22);
  color: var(--court-text);
  background: rgba(13, 36, 74, 0.04);
}

.home-body .training-layout {
  margin-top: clamp(74px, 10vw, 136px);
}

.home-body .training-layout h2 {
  max-width: 610px;
  font-size: clamp(38px, 4.8vw, 66px);
  letter-spacing: -0.04em;
}

.home-body .training-layout .section-copy {
  max-width: 570px;
}

.home-body .feature-list {
  gap: 22px;
}

.home-body .feature-item {
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.home-body .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.home-body .workout-board {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 34px 88px rgba(22, 23, 25, 0.14);
}

.home-body .feedback-section {
  padding: clamp(104px, 12vw, 164px) 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(49, 125, 255, 0.22), transparent 28%),
    #0b1018;
}

.home-body .feedback-section .section h2,
.home-body .feedback-section h2 {
  letter-spacing: -0.04em;
}

.home-body .screens-section {
  padding: clamp(104px, 12vw, 166px) 0 116px;
  background: #fff;
}

.home-body .screens-intro {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.home-body .screens-intro h2 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: clamp(44px, 5.6vw, 78px);
  letter-spacing: -0.05em;
}

.home-body .screens-intro .section-copy {
  margin: 0 auto;
  color: rgba(22, 23, 25, 0.66);
  font-size: 20px;
}

.home-body .screens-grid {
  gap: clamp(18px, 3vw, 42px);
  margin-top: clamp(52px, 7vw, 88px);
  align-items: end;
}

.home-body .screen-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.home-body .screen-card img {
  max-height: 590px;
  margin: 0 auto 28px;
  border: 9px solid #06080b;
  border-radius: 30px;
  box-shadow: 0 28px 62px rgba(10, 21, 37, 0.18);
}

.home-body .screen-card h3 {
  margin-bottom: 8px;
  color: var(--court-text);
  font-size: 19px;
  text-align: center;
  text-transform: none;
}

.home-body .screen-card p {
  max-width: 280px;
  margin: 0 auto;
  color: rgba(22, 23, 25, 0.64);
  text-align: center;
}

@media (max-width: 980px) {
  .hero-shell,
  .split,
  .focus-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .device-stage,
  .product-stage {
    min-height: 590px;
  }

  .goal-grid,
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 28px, var(--max));
    min-height: 76px;
  }

  .nav-links {
    display: none;
  }

  .nav-account .button:not(#login-button):not(#subscribe-button):not(#manage-billing-button) {
    display: none;
  }

  .hero-shell,
  .section-shell,
  .cta-shell,
  .footer-shell,
  .legal-main,
  .support-main {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 48px;
  }

  .goal-grid,
  .screens-grid,
  .support-cards {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .proof-pill {
    min-height: 104px;
    padding: 12px;
  }

  .proof-pill strong {
    font-size: 16px;
  }

  .proof-pill span {
    font-size: 11px;
  }

  .device-stage,
  .product-stage {
    min-height: 520px;
    justify-content: center;
  }

  .product-stage {
    min-height: 330px;
  }

  .hero-shot {
    width: min(280px, 74vw);
  }

  .side-shot {
    display: none;
  }

  .phone {
    width: min(310px, 84vw);
  }

  .phone.secondary-phone,
  .media-strip {
    display: none;
  }

  .phone-screen {
    min-height: 580px;
  }

  .section {
    padding: 68px 0;
  }

  .meter {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .drill-row {
    grid-template-columns: 40px 1fr;
  }

  .drill-tag {
    grid-column: 2;
    width: max-content;
  }

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

@media (max-width: 980px) {
  .home-body .hero {
    min-height: auto;
    padding: 138px 0 46px;
  }

  .home-body .hero-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-body .hero h1 {
    max-width: 760px;
  }

  .home-body .product-stage {
    height: 480px;
    min-height: 0;
    justify-content: flex-start;
    padding-left: 8%;
  }

  .trainer-interest-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-body.audience-page .trainer-interest-layout {
    grid-template-columns: 1fr;
  }

  .home-body.audience-page .trainer-interest-form {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
  }

  .home-body.audience-page .parents-layout {
    grid-template-columns: 1fr;
  }

  .home-body.audience-page .parents-layout .offer-card {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
  }

  .home-body .site-header {
    position: absolute;
  }

  .home-body .nav-shell {
    width: calc(100% - 28px);
    min-height: 76px;
  }

  .home-body .brand img {
    width: 64px;
    height: 57px;
  }

  .home-body .hero {
    padding: 114px 0 28px;
  }

  .home-body .hero h1 {
    font-size: clamp(46px, 13vw, 62px);
    letter-spacing: -0.06em;
  }

  .home-body .hero-copy {
    max-width: 34rem;
    font-size: 18px;
  }

  .home-body .hero-actions .primary {
    min-height: 56px;
    font-size: 16px;
  }

  .home-body .product-stage {
    height: 360px;
    justify-content: center;
    padding: 4px 0 0;
  }

  .home-body.audience-page .parents-details {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-body .hero-shot {
    width: min(210px, 58vw);
  }
}
