:root {
  --bg: #050807;
  --ink: #0a0d0b;
  --paper: #f4f1e8;
  --paper-soft: #d7ded0;
  --text: #f7fff7;
  --muted: #aab7ad;
  --muted-2: #6f7d73;
  --line: rgba(244, 241, 232, 0.16);
  --line-strong: rgba(41, 245, 116, 0.45);
  --panel: #0d1511;
  --panel-2: #111b17;
  --green: #29f574;
  --blue: #72c8ff;
  --gold: #ffd166;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.98), rgba(5, 8, 7, 0.9) 52%, rgba(5, 8, 7, 0.98)),
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.035) 0 1px, transparent 1px 92px),
    #050807;
}

body.light-page {
  background: var(--paper);
  color: #10140f;
}

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

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 7, 0.86);
  backdrop-filter: blur(18px);
}

.light-page .topbar {
  background: rgba(244, 241, 232, 0.86);
  border-color: rgba(10, 13, 11, 0.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #07100c;
  font-weight: 950;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.light-page .brand-copy span {
  color: #506054;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  padding: 10px 11px;
}

.light-page .nav-links a {
  color: #4e5c52;
}

.nav-links a[aria-current="page"] {
  color: var(--green);
  background: rgba(41, 245, 116, 0.1);
}

.nav-cta {
  color: #07100c !important;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 56%, var(--bg) 100%),
    linear-gradient(110deg, rgba(41, 245, 116, 0.12), transparent 38%),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.03) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.74fr);
  gap: 56px;
  align-items: center;
  padding: 58px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-page .eyebrow {
  color: #0c8135;
}

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

h1 {
  margin-bottom: 0;
  max-width: 880px;
  font-size: clamp(48px, 7.8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.subhead {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--paper-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.44;
}

.light-page .subhead {
  color: #3f4d42;
}

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

.button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: #07100c;
}

.button.blue {
  background: rgba(114, 200, 255, 0.12);
  border-color: rgba(114, 200, 255, 0.46);
}

.button.full {
  width: 100%;
}

.sport-hero {
  position: relative;
  min-height: clamp(720px, calc(100vh - 75px), 860px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(5, 8, 7, 0.98) 0 34%, rgba(5, 8, 7, 0.72) 52%, rgba(5, 8, 7, 0.95) 100%),
    linear-gradient(145deg, rgba(41, 245, 116, 0.16), transparent 42%),
    linear-gradient(35deg, transparent 42%, rgba(255, 181, 84, 0.2) 74%, rgba(114, 200, 255, 0.1)),
    #040706;
}

.sport-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.035) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.026) 0 1px, transparent 1px 112px);
  pointer-events: none;
}

.sport-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.sport-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.sport-copy {
  width: min(710px, 56vw);
  display: grid;
  justify-items: start;
}

.sport-copy h1 {
  max-width: 760px;
  font-size: clamp(56px, 6.4vw, 92px);
  line-height: 0.94;
}

.sport-copy .subhead {
  max-width: 660px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-signals span {
  min-height: 38px;
  border: 1px solid rgba(244, 241, 232, 0.15);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--paper-soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 900;
}

.sport-hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.court-perspective {
  position: absolute;
  right: max(-58px, -4vw);
  top: 68px;
  width: min(65vw, 940px);
  height: min(73vh, 680px);
  min-height: 590px;
  filter: drop-shadow(0 48px 110px rgba(0, 0, 0, 0.46));
}

.court-surface {
  position: absolute;
  inset: 90px 14px 26px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 10px;
  overflow: hidden;
  transform: perspective(1040px) rotateX(58deg) rotateZ(-7deg);
  transform-origin: 50% 78%;
  background:
    linear-gradient(90deg, rgba(41, 245, 116, 0.13), transparent 30%, rgba(255, 209, 102, 0.12) 62%, rgba(114, 200, 255, 0.08)),
    linear-gradient(180deg, rgba(244, 241, 232, 0.08), rgba(5, 8, 7, 0.82) 66%),
    #0b2119;
}

.court-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.06) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.04) 0 1px, transparent 1px 84px);
  opacity: 0.82;
}

.court-surface::after {
  content: "Pickleball vision session";
  position: absolute;
  left: 28px;
  top: 22px;
  color: rgba(244, 241, 232, 0.74);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.court-line,
.court-net,
.heat-zone,
.ball-trail,
.tracked-ball,
.shot-label {
  position: absolute;
  z-index: 1;
}

.court-line {
  background: rgba(244, 241, 232, 0.58);
}

.baseline {
  left: 7%;
  right: 7%;
  bottom: 12%;
  height: 2px;
}

.service-one,
.service-two {
  left: 12%;
  right: 12%;
  height: 2px;
}

.service-one {
  top: 34%;
}

.service-two {
  top: 62%;
}

.center-line {
  top: 13%;
  bottom: 12%;
  left: 50%;
  width: 2px;
}

.court-net {
  left: 8%;
  right: 8%;
  top: 49%;
  height: 7px;
  border-top: 1px solid rgba(244, 241, 232, 0.42);
  border-bottom: 1px solid rgba(244, 241, 232, 0.16);
  background: repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.18) 0 2px, transparent 2px 12px);
}

.heat-zone {
  border: 1px solid rgba(41, 245, 116, 0.28);
  border-radius: 999px;
  background: rgba(41, 245, 116, 0.1);
  filter: blur(0.4px);
}

.heat-one {
  width: 180px;
  height: 96px;
  left: 15%;
  top: 21%;
}

.heat-two {
  width: 220px;
  height: 120px;
  right: 16%;
  top: 45%;
  border-color: rgba(255, 209, 102, 0.28);
  background: rgba(255, 209, 102, 0.08);
}

.heat-three {
  width: 150px;
  height: 84px;
  left: 49%;
  bottom: 14%;
  border-color: rgba(114, 200, 255, 0.28);
  background: rgba(114, 200, 255, 0.08);
}

.ball-trail {
  width: 330px;
  height: 150px;
  left: 41%;
  top: 18%;
  border-top: 3px solid rgba(41, 245, 116, 0.74);
  border-right: 2px solid rgba(41, 245, 116, 0.35);
  border-radius: 50%;
  transform: rotate(12deg);
}

.tracked-ball {
  width: 22px;
  height: 22px;
  left: 69%;
  top: 30%;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 26px rgba(255, 209, 102, 0.72);
}

.shot-label {
  right: 12%;
  top: 21%;
  border: 1px solid rgba(41, 245, 116, 0.36);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--green);
  background: rgba(5, 8, 7, 0.62);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.player-vision {
  position: absolute;
  left: 23%;
  top: 28%;
  width: 310px;
  height: 380px;
  transform: rotate(-7deg);
}

.player-vision span {
  position: absolute;
  display: block;
}

.player-shadow {
  left: 68px;
  bottom: 20px;
  width: 220px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  filter: blur(12px);
}

.player-head {
  left: 122px;
  top: 16px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(244, 241, 232, 0.9), rgba(123, 142, 132, 0.78));
  box-shadow: inset -10px -9px 18px rgba(5, 8, 7, 0.38);
}

.player-torso {
  left: 108px;
  top: 78px;
  width: 86px;
  height: 132px;
  border-radius: 34px 30px 48px 46px;
  background:
    linear-gradient(130deg, rgba(41, 245, 116, 0.86), rgba(8, 38, 24, 0.9));
  box-shadow: inset -16px -12px 24px rgba(5, 8, 7, 0.32);
}

.player-arm,
.player-leg {
  border-radius: 999px;
  background: rgba(219, 230, 218, 0.88);
  transform-origin: 50% 12%;
}

.player-arm.lead {
  left: 182px;
  top: 98px;
  width: 20px;
  height: 132px;
  transform: rotate(-53deg);
}

.player-arm.trail {
  left: 94px;
  top: 94px;
  width: 18px;
  height: 104px;
  transform: rotate(33deg);
  opacity: 0.78;
}

.player-leg.front {
  left: 166px;
  top: 194px;
  width: 21px;
  height: 154px;
  transform: rotate(-29deg);
}

.player-leg.back {
  left: 111px;
  top: 190px;
  width: 21px;
  height: 150px;
  transform: rotate(31deg);
  opacity: 0.82;
}

.player-paddle {
  right: 12px;
  top: 74px;
  width: 76px;
  height: 94px;
  border-radius: 48% 46% 50% 44%;
  border: 3px solid rgba(244, 241, 232, 0.8);
  background:
    linear-gradient(145deg, rgba(6, 14, 11, 0.92), rgba(41, 245, 116, 0.22));
  transform: rotate(20deg);
  box-shadow: 0 0 32px rgba(41, 245, 116, 0.24);
}

.pose-line {
  height: 2px;
  background: rgba(114, 200, 255, 0.74);
  transform-origin: left center;
}

.pose-line.shoulder {
  left: 98px;
  top: 112px;
  width: 166px;
  transform: rotate(-19deg);
}

.pose-line.hip {
  left: 124px;
  top: 204px;
  width: 96px;
  transform: rotate(12deg);
  background: rgba(41, 245, 116, 0.68);
}

.pose-line.swing {
  right: 3px;
  top: 52px;
  width: 210px;
  height: 130px;
  border-top: 2px solid rgba(255, 209, 102, 0.72);
  border-right: 2px solid rgba(255, 209, 102, 0.34);
  border-radius: 50%;
  background: transparent;
  transform: rotate(14deg);
}

.tracking-node {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(114, 200, 255, 0.82);
}

.node-head {
  left: 144px;
  top: 38px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(41, 245, 116, 0.84);
}

.node-shoulder {
  left: 184px;
  top: 111px;
}

.node-hip {
  left: 152px;
  top: 202px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(41, 245, 116, 0.76);
}

.node-knee {
  left: 198px;
  top: 280px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(255, 209, 102, 0.76);
}

.node-paddle {
  right: 45px;
  top: 112px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(41, 245, 116, 0.76);
}

.detection-box {
  left: 67px;
  top: 4px;
  width: 222px;
  height: 348px;
  border: 1px solid rgba(41, 245, 116, 0.48);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(41, 245, 116, 0.1), 0 0 42px rgba(41, 245, 116, 0.12);
}

.review-panel {
  position: absolute;
  right: clamp(22px, 5vw, 94px);
  bottom: clamp(56px, 9vh, 98px);
  width: min(390px, 32vw);
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 46%),
    rgba(5, 8, 7, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.review-topline span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-topline strong {
  color: var(--paper);
  font-size: 12px;
}

.review-filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.review-filmstrip span {
  min-height: 62px;
  border: 1px solid rgba(244, 241, 232, 0.1);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(41, 245, 116, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(244, 241, 232, 0.12), rgba(5, 8, 7, 0.92));
}

.review-metric {
  min-height: 42px;
  border-top: 1px solid rgba(244, 241, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--paper-soft);
  font-size: 12px;
  font-weight: 850;
}

.review-metric strong {
  color: var(--text);
}

.review-action {
  min-height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-top: 10px;
  color: #07100c;
  background: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.cinematic-hero {
  position: relative;
  min-height: calc(100vh - 75px);
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 150, 62, 0.34), transparent 28%),
    radial-gradient(circle at 48% 50%, rgba(41, 245, 116, 0.14), transparent 34%),
    radial-gradient(circle at 12% 16%, rgba(114, 200, 255, 0.12), transparent 24%),
    #040706;
}

.cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 68%, var(--bg) 100%),
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.03) 0 1px, transparent 1px 110px),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.025) 0 1px, transparent 1px 110px);
  pointer-events: none;
}

.cinematic-aura {
  position: absolute;
  right: 4%;
  top: 4%;
  width: min(44vw, 680px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 172, 80, 0.38), rgba(255, 172, 80, 0.08) 42%, transparent 66%);
  filter: blur(4px);
  opacity: 0.92;
  animation: auraDrift 9s ease-in-out infinite alternate;
}

.cinematic-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 66px 0 82px;
}

.cinematic-copy {
  display: grid;
  justify-items: start;
}

.launch-pill {
  min-height: 42px;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--paper-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(16px);
  margin-bottom: 22px;
}

.launch-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(41, 245, 116, 0.72);
}

.cinematic-stage {
  position: relative;
  min-height: 640px;
  perspective: 1200px;
}

.stage-light {
  position: absolute;
  inset: 8% 6% 14%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.22), transparent 9%),
    radial-gradient(circle at 50% 42%, rgba(41, 245, 116, 0.18), transparent 34%),
    radial-gradient(circle at 74% 16%, rgba(255, 170, 72, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.device-scene {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 9%;
  transform: rotateX(7deg) rotateY(-10deg) rotateZ(0.3deg);
  transform-origin: 50% 80%;
  animation: deviceFloat 7s ease-in-out infinite;
}

.device-frame {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(244, 241, 232, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 10, 0.92);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.58),
    0 0 0 8px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.browser-bar {
  height: 46px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: rgba(244, 241, 232, 0.68);
  background: rgba(2, 4, 3, 0.78);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(244, 241, 232, 0.32);
}

.browser-bar strong {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.vision-canvas {
  position: relative;
  min-height: 414px;
  overflow: hidden;
  background:
    radial-gradient(circle at 47% 38%, rgba(244, 241, 232, 0.22), transparent 10%),
    radial-gradient(circle at 42% 42%, rgba(114, 200, 255, 0.22), transparent 28%),
    radial-gradient(circle at 68% 28%, rgba(255, 160, 62, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(244, 241, 232, 0.08), rgba(5, 8, 7, 0.92) 52%),
    #050807;
}

.vision-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.04) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.035) 0 1px, transparent 1px 78px);
  mask-image: radial-gradient(circle at 47% 42%, #000 0 52%, transparent 82%);
}

.vision-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(114, 200, 255, 0.16) 48%, rgba(41, 245, 116, 0.18) 50%, transparent 57%);
  mix-blend-mode: screen;
  transform: translateX(-68%);
  animation: signalScan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.athlete-profile {
  position: absolute;
  left: 11%;
  top: 10%;
  width: min(380px, 68%);
  height: 340px;
}

.head-silhouette {
  position: absolute;
  left: 30%;
  top: 5%;
  width: 158px;
  height: 205px;
  border-radius: 48% 46% 48% 42%;
  background:
    radial-gradient(circle at 34% 18%, rgba(244, 241, 232, 0.22), transparent 12%),
    radial-gradient(circle at 72% 54%, rgba(255, 255, 255, 0.18), transparent 12%),
    linear-gradient(120deg, rgba(244, 241, 232, 0.68), rgba(164, 186, 174, 0.16) 42%, rgba(5, 8, 7, 0.88));
  box-shadow:
    28px 16px 80px rgba(114, 200, 255, 0.16),
    inset -26px -14px 56px rgba(5, 8, 7, 0.72);
}

.head-silhouette::before {
  content: "";
  position: absolute;
  left: -58px;
  top: 16px;
  width: 96px;
  height: 138px;
  border-radius: 55% 40% 48% 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(10, 13, 11, 0.86) 0 7px, transparent 8px),
    radial-gradient(circle at 58% 18%, rgba(10, 13, 11, 0.78) 0 8px, transparent 9px),
    linear-gradient(160deg, rgba(10, 13, 11, 0.95), rgba(48, 58, 52, 0.68));
}

.head-silhouette::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 70px;
  width: 98px;
  height: 58px;
  border-top: 2px solid rgba(244, 241, 232, 0.55);
  border-right: 2px solid rgba(244, 241, 232, 0.28);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.torso-silhouette {
  position: absolute;
  left: 22%;
  bottom: 0;
  width: 250px;
  height: 140px;
  border-radius: 90px 120px 20px 20px;
  background:
    linear-gradient(120deg, rgba(41, 245, 116, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(244, 241, 232, 0.16), rgba(5, 8, 7, 0.88));
}

.motion-arc {
  position: absolute;
  border-radius: 999px;
  border: 2px solid transparent;
  animation: arcPulse 4.6s ease-in-out infinite;
}

.arc-one {
  width: 230px;
  height: 310px;
  left: 24%;
  top: -2%;
  border-left-color: rgba(114, 200, 255, 0.7);
  transform: rotate(-12deg);
}

.arc-two {
  width: 280px;
  height: 210px;
  left: 18%;
  top: 19%;
  border-top-color: rgba(41, 245, 116, 0.58);
  transform: rotate(18deg);
  animation-delay: 0.8s;
}

.arc-three {
  width: 170px;
  height: 260px;
  left: 39%;
  top: 0;
  border-right-color: rgba(255, 209, 102, 0.48);
  transform: rotate(12deg);
  animation-delay: 1.4s;
}

.tracking-point {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(41, 245, 116, 0.88);
  animation: pointPulse 2.3s ease-in-out infinite;
}

.point-one {
  left: 43%;
  top: 18%;
}

.point-two {
  left: 55%;
  top: 40%;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(114, 200, 255, 0.8);
  animation-delay: 0.45s;
}

.point-three {
  left: 38%;
  top: 64%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(255, 209, 102, 0.72);
  animation-delay: 0.9s;
}

.vision-copy {
  position: absolute;
  left: 32px;
  bottom: 34px;
  max-width: 250px;
}

.vision-copy span {
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision-copy strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 0.98;
}

.signal-stack {
  position: absolute;
  right: 24px;
  top: 74px;
  display: grid;
  gap: 10px;
}

.signal-stack span {
  min-width: 138px;
  border: 1px solid rgba(244, 241, 232, 0.13);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(244, 241, 232, 0.82);
  background: rgba(5, 8, 7, 0.58);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.device-base {
  width: 86%;
  height: 26px;
  margin: 0 auto;
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(90deg, transparent, rgba(244, 241, 232, 0.26) 50%, transparent),
    linear-gradient(180deg, rgba(244, 241, 232, 0.22), rgba(5, 8, 7, 0.7));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.home-proof-band {
  padding-top: 88px;
}

.centered {
  text-align: center;
  margin: 0 auto;
}

.centered h2,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.premium-card {
  min-height: 280px;
  border: 1px solid rgba(244, 241, 232, 0.14);
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(150deg, rgba(255, 172, 80, 0.1), transparent 38%),
    linear-gradient(0deg, rgba(41, 245, 116, 0.11), transparent 52%),
    rgba(13, 21, 17, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
}

.premium-card span {
  color: rgba(255, 209, 102, 0.82);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: auto;
}

.premium-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.04;
  margin-bottom: 12px;
}

.premium-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

@keyframes auraDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-22px, 18px, 0) scale(1.06);
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: rotateX(7deg) rotateY(-10deg) rotateZ(0.3deg) translateY(0);
  }

  50% {
    transform: rotateX(6deg) rotateY(-7deg) rotateZ(0deg) translateY(-10px);
  }
}

@keyframes signalScan {
  0%,
  18% {
    transform: translateX(-72%);
    opacity: 0;
  }

  42% {
    opacity: 0.8;
  }

  68%,
  100% {
    transform: translateX(72%);
    opacity: 0;
  }
}

@keyframes arcPulse {
  0%,
  100% {
    opacity: 0.5;
    filter: drop-shadow(0 0 0 rgba(41, 245, 116, 0));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 16px rgba(41, 245, 116, 0.36));
  }
}

@keyframes pointPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ball-trail,
  .tracked-ball,
  .tracking-node,
  .cinematic-aura,
  .device-scene,
  .vision-canvas::after,
  .motion-arc,
  .tracking-point {
    animation: none;
  }
}

.product-stage {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(114, 200, 255, 0.08), transparent 36%),
    linear-gradient(0deg, rgba(41, 245, 116, 0.12), transparent 42%),
    #07100c;
  box-shadow: var(--shadow);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.05) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.04) 0 1px, transparent 1px 70px);
  opacity: 0.8;
}

.coach-window,
.athlete-window {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 7, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.coach-window {
  left: 22px;
  top: 28px;
  width: min(380px, calc(100% - 44px));
  padding: 16px;
}

.athlete-window {
  right: 22px;
  bottom: 26px;
  width: min(290px, calc(100% - 44px));
  padding: 14px;
}

.window-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(41, 245, 116, 0.8);
  margin-top: 2px;
}

.queue {
  display: grid;
  gap: 8px;
}

.queue-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.queue-row strong,
.packet-block strong {
  display: block;
}

.queue-row span,
.packet-block span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.42);
  color: var(--gold);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.tag.green {
  border-color: rgba(41, 245, 116, 0.45);
  color: var(--green);
}

.film-panel {
  position: absolute;
  z-index: 0;
  inset: 150px 54px 150px 110px;
  border: 1px solid rgba(244, 241, 232, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 42% 32%, rgba(244, 241, 232, 0.24) 0 20px, transparent 21px),
    linear-gradient(128deg, rgba(114, 200, 255, 0.12), transparent 44%),
    #030605;
}

.film-panel::before,
.film-panel::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(41, 245, 116, 0.54);
  border-radius: 999px;
}

.film-panel::before {
  width: 110px;
  height: 110px;
  right: 22%;
  top: 26%;
}

.film-panel::after {
  width: 72px;
  height: 120px;
  left: 28%;
  top: 22%;
  transform: rotate(-8deg);
  border-color: rgba(114, 200, 255, 0.6);
}

.packet-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: #030605;
  margin-top: 9px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(41, 245, 116, 0.14), rgba(5, 8, 7, 0.18) 42%, rgba(5, 8, 7, 0.94)),
    linear-gradient(125deg, rgba(114, 200, 255, 0.12), transparent 34%),
    #07100c;
  box-shadow: var(--shadow);
}

.signal-field {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.055) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.045) 0 1px, transparent 1px 76px);
}

.signal-field::before {
  content: "";
  position: absolute;
  inset: -20% 12% auto;
  height: 62%;
  border: 1px solid rgba(41, 245, 116, 0.14);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.field-court {
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(244, 241, 232, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(244, 241, 232, 0.1) 50%, transparent 50.2%),
    linear-gradient(0deg, rgba(41, 245, 116, 0.08), transparent 52%);
}

.field-court::before,
.field-court::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(41, 245, 116, 0.28);
  border-radius: 999px;
}

.field-court::before {
  width: 168px;
  height: 168px;
  left: calc(50% - 84px);
  top: calc(50% - 84px);
}

.field-court::after {
  width: 120px;
  height: 260px;
  right: 8%;
  top: calc(50% - 130px);
  border-color: rgba(114, 200, 255, 0.22);
}

.field-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid transparent;
  pointer-events: none;
}

.orbit-one {
  width: 390px;
  height: 230px;
  left: 8%;
  top: 24%;
  border-top-color: rgba(114, 200, 255, 0.42);
  border-left-color: rgba(114, 200, 255, 0.22);
  transform: rotate(-18deg);
}

.orbit-two {
  width: 460px;
  height: 300px;
  right: 2%;
  top: 18%;
  border-right-color: rgba(41, 245, 116, 0.38);
  border-bottom-color: rgba(41, 245, 116, 0.2);
  transform: rotate(12deg);
}

.orbit-three {
  width: 360px;
  height: 180px;
  left: 24%;
  bottom: 16%;
  border-bottom-color: rgba(255, 209, 102, 0.28);
  transform: rotate(18deg);
}

.field-node {
  position: absolute;
  width: 52px;
  height: 12px;
  border-radius: 999px;
  background: rgba(41, 245, 116, 0.92);
  box-shadow: 0 0 28px rgba(41, 245, 116, 0.32);
}

.node-film {
  left: 14%;
  top: 25%;
}

.node-context {
  right: 16%;
  top: 42%;
  width: 72px;
  background: rgba(114, 200, 255, 0.82);
  box-shadow: 0 0 28px rgba(114, 200, 255, 0.26);
}

.node-guidance {
  left: 38%;
  bottom: 19%;
  width: 92px;
  background: rgba(255, 209, 102, 0.82);
  box-shadow: 0 0 28px rgba(255, 209, 102, 0.18);
}

.film-strip {
  position: absolute;
  right: 38px;
  top: 42px;
  width: 112px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(3, 6, 5, 0.68);
}

.film-strip span {
  height: 58px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(244, 241, 232, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(41, 245, 116, 0.18), rgba(3, 6, 5, 0.9));
  border: 1px solid rgba(244, 241, 232, 0.1);
}

.center-signal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, calc(100% - 96px));
  min-height: 154px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(41, 245, 116, 0.16), transparent 52%),
    rgba(5, 8, 7, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
}

.center-signal span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.center-signal strong {
  max-width: 260px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
}

.visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.visual-caption span {
  min-height: 44px;
  border: 1px solid rgba(244, 241, 232, 0.12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--paper-soft);
  background: rgba(3, 6, 5, 0.58);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.5fr);
  gap: 44px;
  align-items: start;
}

.section-title h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 720px;
}

.light-page .section-title p,
.light-page .text-copy,
.light-page .story p,
.light-page .timeline p,
.light-page .person p,
.light-page .privacy-note,
.light-page .signal-list {
  color: #425146;
}

.role-switcher {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.role-tabs button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 950;
  cursor: pointer;
}

.role-tabs button:last-child {
  border-right: 0;
}

.role-tabs button.active {
  color: #07100c;
  background: var(--green);
}

.role-body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.role-body h3 {
  margin-bottom: 6px;
  font-size: 28px;
}

.role-body p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.proof-card,
.story,
.timeline,
.person,
.form-panel,
.surface-card,
.principle {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.light-page .proof-card,
.light-page .story,
.light-page .timeline,
.light-page .person,
.light-page .form-panel,
.light-page .surface-card,
.light-page .principle {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(10, 13, 11, 0.14);
}

.proof-card strong,
.surface-card strong,
.principle strong {
  display: block;
  font-size: 21px;
  margin-bottom: 8px;
}

.proof-card p,
.surface-card p,
.principle p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 48px;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero .subhead {
  color: inherit;
  opacity: 0.78;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.story h2,
.timeline h2,
.form-panel h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.story p,
.timeline p,
.text-copy {
  color: var(--muted);
  line-height: 1.62;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  border-left: 3px solid var(--green);
  padding-left: 14px;
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
}

.surface-grid,
.principles-grid,
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.surface-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.surface-card .label {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.people-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.people-filter button {
  min-height: 42px;
  border: 1px solid rgba(10, 13, 11, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.4);
  color: #10140f;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.people-filter button.active {
  background: #10140f;
  color: var(--paper);
}

.person {
  min-height: 300px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(41, 245, 116, 0.9), rgba(114, 200, 255, 0.8)),
    #0a0d0b;
  display: grid;
  place-items: center;
  color: #07100c;
  font-weight: 950;
  font-size: 22px;
  margin-bottom: 22px;
}

.person h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.person .role {
  color: #0c8135;
  font-weight: 950;
  margin-bottom: 14px;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: 18px;
  align-items: stretch;
}

.founder-profile {
  display: grid;
  gap: 22px;
}

.founder-heading {
  display: flex;
  gap: 18px;
  align-items: center;
}

.founder-heading .eyebrow {
  margin-bottom: 8px;
}

.founder-heading h2 {
  margin-bottom: 6px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.founder-heading .role {
  color: #0c8135;
  font-weight: 950;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-link {
  min-height: 46px;
  color: #10140f;
  border-color: rgba(10, 13, 11, 0.2);
  background: rgba(255, 255, 255, 0.62);
}

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

.credential-card {
  border: 1px solid rgba(10, 13, 11, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  padding: 14px;
}

.credential-card strong {
  display: block;
  color: #0b4f25;
  font-size: 14px;
  margin-bottom: 7px;
}

.credential-card p {
  margin: 0;
  color: #425146;
  font-size: 14px;
  line-height: 1.48;
}

.founder-points,
.signal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-points li,
.signal-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.founder-points li::before,
.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.founder-points strong {
  color: #10140f;
}

.private-beta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.privacy-note {
  border: 1px solid rgba(12, 129, 53, 0.22);
  border-radius: 8px;
  background: rgba(12, 129, 53, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 16px 18px;
  line-height: 1.5;
}

.privacy-note strong {
  color: #0b4f25;
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.58fr);
  gap: 36px;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #0c8135;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(10, 13, 11, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: #10140f;
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.form-status {
  display: none;
  border-radius: 8px;
  border: 1px solid rgba(12, 129, 53, 0.26);
  background: rgba(12, 129, 53, 0.08);
  color: #0b4f25;
  padding: 14px;
  font-weight: 850;
}

.form-status.show {
  display: block;
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 7, 0.78);
}

.light-page .footer {
  background: rgba(10, 13, 11, 0.92);
  color: var(--paper);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 850;
}

@media (max-width: 980px) {
  .sport-hero {
    min-height: 980px;
    align-items: start;
  }

  .sport-hero-inner {
    padding: 52px 0 0;
  }

  .sport-copy {
    width: min(720px, 100%);
  }

  .sport-copy h1 {
    max-width: 680px;
    font-size: clamp(48px, 9vw, 76px);
  }

  .sport-hero-scene {
    top: 390px;
    height: 600px;
  }

  .court-perspective {
    left: 3%;
    right: auto;
    top: 0;
    width: 94%;
    min-height: 540px;
    height: 560px;
  }

  .review-panel {
    right: 32px;
    bottom: 34px;
    width: min(380px, calc(100% - 64px));
  }

  .cinematic-inner,
  .hero-inner,
  .section-grid,
  .story-grid,
  .contact-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .cinematic-stage {
    min-height: 560px;
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .proof-grid,
  .surface-grid,
  .principles-grid,
  .people-grid,
  .premium-grid,
  .credential-grid,
  .private-beta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .sport-hero {
    min-height: 1060px;
  }

  .sport-hero-inner {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    padding-top: 36px;
  }

  .sport-copy {
    width: 100%;
  }

  .sport-copy h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .sport-copy .subhead {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-signals {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-signals span {
    justify-content: center;
    width: 100%;
  }

  .sport-hero-scene {
    top: 478px;
    height: 560px;
  }

  .court-perspective {
    left: -39%;
    top: 18px;
    width: 152%;
    min-height: 500px;
    height: 520px;
    transform: scale(0.94);
    transform-origin: center top;
  }

  .court-surface {
    inset: 72px 10px 40px;
  }

  .court-surface::after {
    left: 18px;
    top: 16px;
    font-size: 10px;
  }

  .player-vision {
    left: 27%;
    top: 30%;
    transform: scale(0.82) rotate(-7deg);
    transform-origin: left top;
  }

  .review-panel {
    left: 10px;
    right: 10px;
    bottom: 12px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    padding: 13px;
  }

  .review-topline strong {
    max-width: 118px;
    text-align: right;
    font-size: 11px;
    line-height: 1.2;
  }

  .review-filmstrip span {
    min-height: 48px;
  }

  .review-action {
    min-height: 40px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: calc(100vw - 20px);
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    gap: 7px;
    overflow: hidden;
  }

  .nav-links a {
    min-width: 0;
    padding: 9px 7px;
    text-align: center;
    font-size: 13px;
  }

  .nav-cta {
    grid-column: span 2;
  }

  .hero-inner,
  .cinematic-inner,
  .page-band,
  .page-hero,
  .nav,
  .footer-inner {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .hero-inner {
    padding-top: 40px;
    gap: 34px;
  }

  .cinematic-inner {
    padding-top: 42px;
    gap: 34px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

  .cinematic-stage {
    min-height: 460px;
  }

  .device-scene {
    left: 0;
    right: 0;
    top: 10%;
    transform: rotateX(4deg) rotateY(-4deg);
  }

  .device-frame {
    min-height: 360px;
  }

  .vision-canvas {
    min-height: 318px;
  }

  .athlete-profile {
    left: 3%;
    top: 16%;
    width: 82%;
    transform: scale(0.82);
    transform-origin: left top;
  }

  .signal-stack {
    right: 12px;
    top: 58px;
  }

  .signal-stack span {
    min-width: 112px;
    font-size: 11px;
    padding: 8px 10px;
  }

  .vision-copy {
    left: 18px;
    bottom: 22px;
    max-width: 210px;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .field-court {
    inset: 34px 18px;
  }

  .film-strip {
    right: 18px;
    top: 18px;
    width: 84px;
    gap: 6px;
    padding: 8px;
  }

  .film-strip span {
    height: 44px;
  }

  .center-signal {
    width: calc(100% - 44px);
    min-height: 132px;
    padding: 20px;
  }

  .visual-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .film-panel {
    inset: 198px 18px 202px;
  }

  .coach-window,
  .athlete-window {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .coach-window {
    top: 14px;
  }

  .athlete-window {
    bottom: 14px;
  }

  .role-tabs,
  .proof-grid,
  .surface-grid,
  .principles-grid,
  .people-grid,
  .premium-grid,
  .credential-grid,
  .private-beta-grid {
    grid-template-columns: 1fr;
  }

  .founder-heading,
  .privacy-note {
    flex-direction: column;
  }

  .privacy-note strong {
    white-space: normal;
  }
}

/* Homepage image hero: exact generated Concepts 1 and 3. */
body[data-page="home"] .sport-hero {
  min-height: clamp(760px, calc(100vh - 75px), 920px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.64), var(--bg) 100%),
    linear-gradient(112deg, rgba(5, 8, 7, 0.98) 0 36%, rgba(5, 8, 7, 0.72) 58%, rgba(5, 8, 7, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(244, 241, 232, 0.035) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(244, 241, 232, 0.026) 0 1px, transparent 1px 112px),
    #040706;
}

body[data-page="home"] .sport-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(142deg, rgba(41, 245, 116, 0.14), transparent 38%),
    linear-gradient(35deg, transparent 44%, rgba(255, 181, 84, 0.15) 74%, rgba(114, 200, 255, 0.08));
  pointer-events: none;
}

body[data-page="home"] .sport-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 30%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

body[data-page="home"] .sport-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
}

body[data-page="home"] .sport-copy {
  width: auto;
  max-width: 670px;
  display: grid;
  justify-items: start;
}

body[data-page="home"] .sport-copy h1 {
  max-width: 700px;
  font-size: clamp(54px, 6.2vw, 90px);
  line-height: 0.94;
}

body[data-page="home"] .sport-copy .subhead {
  max-width: 640px;
}

.hero-product-frame {
  position: relative;
  margin: 0;
  width: min(108%, 800px);
  justify-self: end;
  border: 1px solid rgba(244, 241, 232, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(5, 8, 7, 0.72);
  filter: drop-shadow(0 34px 90px rgba(0, 0, 0, 0.44));
}

.hero-product-frame::before {
  content: "";
  position: absolute;
  inset: 8% 4% 0 8%;
  z-index: -1;
  border: 1px solid rgba(244, 241, 232, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(41, 245, 116, 0.08), transparent 36%),
    rgba(13, 21, 17, 0.34);
  transform: rotate(-2deg);
}

.hero-product-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-stack {
  position: relative;
  min-height: min(66vh, 680px);
  height: 680px;
}

.hero-image-stack::before {
  content: "";
  position: absolute;
  inset: 9% 2% 8% 15%;
  border: 1px solid rgba(244, 241, 232, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(41, 245, 116, 0.08), transparent 36%),
    rgba(13, 21, 17, 0.34);
  transform: rotate(-2deg);
}

.hero-image-card {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 8, 7, 0.72);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.primary-concept {
  top: 0;
  right: 0;
  width: min(92%, 620px);
  aspect-ratio: 532 / 588;
}

.review-concept {
  left: 0;
  bottom: 18px;
  width: min(52%, 360px);
  aspect-ratio: 532 / 588;
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(41, 245, 116, 0.14);
  transform: translateX(-4%);
}

.hero-ui-copy {
  position: absolute;
  left: 7.5%;
  top: 22.9%;
  width: 44%;
  display: grid;
  gap: 7px;
  pointer-events: none;
}

.hero-ui-copy span,
.hero-ui-copy strong,
.hero-ui-copy em {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  color: rgba(247, 255, 247, 0.92);
  font-style: normal;
  font-weight: 950;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-ui-copy span {
  width: 54%;
  min-height: 19px;
  padding: 0 8px;
  border-radius: 3px;
  color: #06100b;
  background: rgba(41, 245, 116, 0.94);
  font-size: clamp(6px, 0.74vw, 10px);
}

.hero-ui-copy strong {
  min-height: 21px;
  padding: 0 8px;
  border-radius: 3px;
  color: #08110c;
  background: rgba(247, 255, 247, 0.93);
  font-size: clamp(6px, 0.72vw, 10px);
}

.hero-ui-copy strong:nth-of-type(2) {
  width: 88%;
}

.hero-ui-copy em {
  min-height: 11px;
  color: rgba(225, 237, 226, 0.78);
  font-size: clamp(5px, 0.62vw, 8px);
}

.hero-ui-copy.compact {
  width: 46%;
}

.hero-ui-copy.compact span {
  width: 58%;
}

.hero-ui-copy.compact strong {
  font-size: clamp(5px, 0.68vw, 8px);
}

.hero-ui-metrics {
  position: absolute;
  left: 5.6%;
  right: 5.4%;
  bottom: 6.5%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2%;
  pointer-events: none;
}

.hero-ui-metrics span {
  min-width: 0;
  min-height: clamp(34px, 4.8vw, 58px);
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 11px 0 34%;
  color: var(--text);
}

.hero-ui-metrics strong,
.hero-ui-metrics em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-ui-metrics strong {
  color: rgba(247, 255, 247, 0.9);
  font-size: clamp(5px, 0.64vw, 9px);
  line-height: 1;
}

.hero-ui-metrics em {
  color: rgba(225, 237, 226, 0.58);
  font-size: clamp(5px, 0.58vw, 8px);
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.hero-ui-metrics.compact span {
  padding-left: 31%;
}

body[data-page="home"] .home-proof-band {
  padding-top: 48px;
}

.premium-card.has-media {
  min-height: 372px;
  justify-content: flex-start;
}

.premium-card.has-media span {
  margin-bottom: 14px;
}

.workflow-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  border: 1px solid rgba(244, 241, 232, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 8, 7, 0.52);
}

.workflow-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.premium-card.has-media:nth-child(1) .workflow-card-media img {
  object-position: 52% 48%;
}

.premium-card.has-media:nth-child(2) .workflow-card-media img {
  object-position: 50% 50%;
}

.premium-card.has-media:nth-child(3) .workflow-card-media img {
  object-position: 56% 50%;
}

@media (max-width: 980px) {
  body[data-page="home"] .sport-hero {
    min-height: auto;
    align-items: start;
  }

  body[data-page="home"] .sport-hero-inner {
    grid-template-columns: 1fr;
    padding: 46px 0 56px;
  }

  body[data-page="home"] .sport-copy {
    width: 100%;
    max-width: 760px;
  }

  .hero-product-frame {
    width: min(760px, 100%);
    justify-self: center;
  }

  .hero-image-stack {
    width: min(760px, 100%);
    min-height: 640px;
    height: 640px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .sport-hero-inner {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    padding-top: 36px;
    gap: 30px;
  }

  body[data-page="home"] .sport-copy,
  body[data-page="home"] .section-title.centered,
  body[data-page="home"] .section-title.centered h2,
  body[data-page="home"] .section-title.centered p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body[data-page="home"] .sport-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(31px, 8.9vw, 36px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  body[data-page="home"] .section-title.centered h2 {
    overflow-wrap: anywhere;
  }

  body[data-page="home"] .sport-copy .subhead {
    max-width: 100%;
    font-size: 17px;
  }

  body[data-page="home"] .hero-signals {
    display: none;
  }

  .hero-product-frame {
    width: min(100%, 420px);
  }

  .hero-image-stack {
    min-height: 488px;
    height: 488px;
  }

  .primary-concept {
    width: 88%;
  }

  .review-concept {
    left: 4px;
    bottom: 0;
    width: 56%;
    transform: none;
  }

  .hero-ui-copy {
    gap: 5px;
  }

  .hero-ui-copy span {
    min-height: 15px;
    padding: 0 5px;
  }

  .hero-ui-copy strong {
    min-height: 17px;
    padding: 0 5px;
  }

  .hero-ui-metrics span {
    min-height: 38px;
    padding-right: 6px;
  }

  body[data-page="home"] .home-proof-band {
    padding-top: 36px;
  }

  .premium-card.has-media {
    min-height: 338px;
  }

  .nav {
    align-items: stretch;
  }

  .brand {
    align-self: flex-start;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    grid-column: 1 / -1;
  }
}
