/* Deltaplay landing — Amicro chrome (G3 tokens cited, not cloned wholesale). Local only. */
:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #12141A;
  --bg-deep: #12141A;
  --bg-wash: #12141A;
  --surface: #1C1F28;
  --card: #181818;
  --card-2: #20242E;
  --card-hover: #202020;
  --stage: #131313;
  --hero-well: #1C1F28;
  --ink: #fafeff;
  --muted: #767676;
  --kicker: #A3A3A3;
  --lede: #C4C4C4;
  --faint: #3A3A3A;
  --line: rgba(255, 255, 255, 0.06);
  --inset: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --pill: rgba(255, 255, 255, 0.07);
  --pill-on: #2A2A2A;
  --pill-border: rgba(255, 255, 255, 0.1);
  --pill-fg: #D4D4D4;
  --pill-hover: rgba(255, 255, 255, 0.1);
  --catbar: #181818;
  --catbar-border: rgba(255, 255, 255, 0.05);
  --catbar-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
  --teal: #7EB8B0;
  --teal-ink: #10201E;
  --teal-dim: rgba(126, 184, 176, 0.22);
  --magenta: #C4789A;
  --magenta-dim: rgba(196, 120, 154, 0.2);
  --sage: #A8B8B0;
  --warn: #C4892A;
  --warn-ink: #E0B56A;
  --ok: #3B7A58;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-card: none;
  --font: "Outfit", "Geist", "Inter", "Segoe UI", system-ui, sans-serif;
  --serif: "Outfit", "Geist", "Inter", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, Consolas, monospace;
  --light-bg: #EEF2F3;
  --light-card: #FAF8F3;
  --light-ink: #3e4044;
  --light-muted: #5C6560;
  --light-teal: #2A7A72;
  --light-line: rgba(34, 40, 36, 0.12);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #EEF2F3;
  --bg-deep: #EEF2F3;
  --bg-wash: #EEF2F3;
  --surface: #FAF8F3;
  --card: #FAF8F3;
  --card-2: #EAE7DF;
  --card-hover: #F6F3EC;
  --stage: #EDE9E1;
  --hero-well: #FAF8F3;
  --ink: #3e4044;
  --muted: #5C6560;
  --kicker: #C46A2A;
  --lede: #3e4044;
  --faint: #DDD8CE;
  --line: rgba(34, 40, 36, 0.12);
  --inset: none;
  --pill: #FAF8F3;
  --pill-on: #222824;
  --pill-border: rgba(34, 40, 36, 0.12);
  --pill-fg: #3A423C;
  --pill-hover: #EDE9E1;
  --catbar: #FAF8F3;
  --catbar-border: rgba(34, 40, 36, 0.10);
  --catbar-shadow: 0 8px 28px -16px rgba(34, 40, 36, 0.18);
  --teal: #2A7A72;
  --teal-ink: #F7F4ED;
  --teal-dim: rgba(42, 122, 114, 0.14);
  --magenta: #A33669;
  --magenta-dim: rgba(163, 54, 105, 0.14);
  --warn: #C46A2A;
  --warn-ink: #A35416;
  --shadow: 0 14px 36px -22px rgba(34, 40, 36, 0.18);
  --shadow-card: 0 1px 0 rgba(34, 40, 36, 0.04), 0 14px 36px -22px rgba(34, 40, 36, 0.16);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s, color 0.25s;
}

html[data-theme="light"] body {
  background: var(--bg);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kicker);
  margin: 0 0 12px;
}

h1,
h2,
.serif {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.lede {
  color: var(--lede);
  max-width: 42rem;
}

.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warn-ink);
  border: 1px solid color-mix(in srgb, var(--warn) 40%, transparent);
  background: color-mix(in srgb, var(--warn) 12%, transparent);
  border-radius: 999px;
  padding: 4px 9px;
  vertical-align: middle;
}

/* —— Amicro toprow —— */
.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 8px;
}

.toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  position: relative;
}

.toprow-brand {
  display: inline-flex;
  align-items: center;
  /* gap = 0.48 × Outfit cap-height (0.70em) */
  gap: 0.336em;
  font-size: 18.2px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  flex-shrink: 0;
  white-space: nowrap;
}

.toprow-mark {
  /* 2× the V11c nav size Manish said was too small. Word unchanged. */
  height: 1.428em;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.toprow-word,
.toprow-ai {
  font: inherit;
  letter-spacing: inherit;
}

.toprow-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
  margin-right: 4px;
}

.toprow-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.toprow-nav a:hover {
  color: var(--ink);
}

.toprow-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.toprow-menu:hover { background: var(--pill); color: var(--ink); }
.toprow-menu .ico-close { display: none; }
.toprow.is-open .toprow-menu .ico-menu { display: none; }
.toprow.is-open .toprow-menu .ico-close { display: block; }

.toprow-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav-catbar {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: var(--catbar);
  border: 1px solid var(--catbar-border);
  box-shadow: var(--catbar-shadow);
}

.nav-catbar a,
.nav-catbar span {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.nav-catbar a:hover { color: var(--ink); }

.nav-catbar .on {
  background: var(--pill-on);
  color: #fff;
}

html[data-theme="light"] .nav-catbar .on { color: #FBFBFA; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover { background: var(--pill); color: var(--ink); }
.theme-toggle svg { display: none; flex-shrink: 0; }
/* Dark shows sun (switch to light). Light shows moon (switch to dark). */
html[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
html[data-theme="light"] .theme-toggle .ico-moon { display: block; }
.theme-toggle .lab-dark,
.theme-toggle .lab-light { display: none !important; }
html[data-theme="light"] .theme-toggle {
  background: transparent;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pill-on);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover { background: #333; color: #fff; }
html[data-theme="light"] .btn { color: #FBFBFA; }
html[data-theme="light"] .btn:hover { background: #2A3238; }

.btn-on {
  background: #fff;
  color: #12141A;
}

.btn-on:hover {
  background: #EDEDED;
  color: #12141A;
}

html[data-theme="light"] .btn-on {
  background: #1E2428;
  color: #FBFBFA;
}

html[data-theme="light"] .btn-on:hover {
  background: #2A3238;
  color: #FBFBFA;
}

.btn-ghost {
  background: var(--pill);
  color: var(--pill-fg);
  border-color: var(--pill-border);
}

.btn-ghost:hover {
  background: var(--pill-hover);
  color: var(--ink);
}

.btn-teal {
  background: var(--teal);
  color: var(--teal-ink);
  border-color: transparent;
}

.btn-teal:hover {
  filter: brightness(1.06);
  color: var(--teal-ink);
}

/* Hero: illustration above copy, normal document flow */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 8px 0 36px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(920px, 100%);
  margin: 0 auto;
}

.hero-art {
  position: relative;
  width: min(620px, 94%);
  aspect-ratio: 800 / 400;
  max-height: 300px;
  margin: 0 auto 6px;
  overflow: visible;
  pointer-events: none;
}

.hero-court {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: color-mix(in srgb, var(--ink) 30%, transparent);
}

.hero-court .court-net {
  color: color-mix(in srgb, var(--ink) 48%, transparent);
}

.hero-court .net-mesh {
  opacity: 0.34;
}

.hero-player {
  position: absolute;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-player-far {
  width: 9.2%;
  left: 53.2%;
  top: 4%;
}

.hero-player-near {
  width: 25.5%;
  left: 29.5%;
  bottom: 1.5%;
}

html[data-theme="light"] .hero-court {
  color: color-mix(in srgb, var(--ink) 22%, transparent);
}

html[data-theme="light"] .hero-court .court-net {
  color: color-mix(in srgb, var(--ink) 44%, transparent);
}

.theme-art-light { display: none !important; }
html[data-theme="light"] .theme-art-dark { display: none !important; }
html[data-theme="light"] .theme-art-light { display: block !important; }

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 4px 20px 8px;
  min-width: 0;
}

.hero-copy-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1180px, 100%);
  max-width: 100%;
}

.hero h1 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
  gap: 0.04em;
  margin: 0 0 16px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.hero-line1,
.hero-line2 {
  display: block;
  white-space: normal;
  text-wrap: balance;
  max-width: 100%;
}

.hero .lede {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 0 auto 24px;
  color: var(--ink);
  max-width: 48rem;
  width: 100%;
  white-space: normal;
  text-wrap: balance;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
}

.hero-actions .btn {
  min-height: 46px;
  min-width: 168px;
  justify-content: center;
  text-align: center;
}

.hero-actions .btn-on,
html[data-theme="light"] .hero-actions .btn-on {
  background: #FFFFFF;
  color: #12141A;
}

.hero-actions .btn-on:hover,
html[data-theme="light"] .hero-actions .btn-on:hover {
  background: #EDEDED;
  color: #12141A;
}

.hero-actions .btn-ghost,
html[data-theme="light"] .hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  backdrop-filter: blur(8px);
  transform: none;
}

.hero-actions .btn-ghost:hover,
html[data-theme="light"] .hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}

html[data-theme="light"] .hero h1 {
  color: var(--ink);
}

html[data-theme="light"] .hero .lede {
  color: var(--ink);
}

html[data-theme="light"] .hero-actions .btn-on {
  background: #222824;
  color: #FAF8F3;
}

html[data-theme="light"] .hero-actions .btn-on:hover {
  background: #2E3530;
  color: #FAF8F3;
}

html[data-theme="light"] .hero-actions .btn-ghost {
  border-color: color-mix(in srgb, var(--ink) 35%, transparent);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

html[data-theme="light"] .hero-actions .btn-ghost:hover {
  background: #FFFFFF;
  color: var(--ink);
}

.hero-honesty {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* —— How it Works (vertical Amicro cards) —— */
.how {
  padding: 56px 0 16px;
  margin-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

.how-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-align: left;
}

.how h2 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(2.73rem, 5.33vw, 3.835rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  width: auto;
  text-align: left;
}

.how-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.how-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--inset), var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.how-copy {
  padding: 22px 24px 14px;
}

.how-media {
  width: 100%;
  background: #0E1016;
  display: flex;
  justify-content: center;
}

.how-copy .demo-pill {
  margin-top: 10px;
}

.how-media img,
.how-media video {
  width: 70%;
  max-width: 70%;
  height: auto;
  display: block;
  object-fit: contain;
}

.how-lede {
  margin: 0;
  padding: 16px 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* How 02 — tape card; step title sits above, not on the tape */
.how-card-02 {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
}

.how-card-02 .how-copy {
  padding: 6px 8px 16px;
}

.how-02-media {
  justify-content: stretch;
  padding: 0;
  background: transparent;
}

.how-02-stage {
  width: 100%;
}

.how-02-unit {
  --how-02-shetty: #3EE0C4;
  --how-02-shi: #EC60B0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-02-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #0A0C10;
  border: none;
}

.how-card-02 .how-lede {
  padding: 16px 8px 0;
}

/* How 03 — title outside the card, 2×2 charts fill the well */
.how-card-03 {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
  margin-top: 36px;
}

.how-card-03 .how-copy {
  padding: 6px 8px 16px;
}

.how-card-03 .how-lede {
  padding: 16px 8px 0;
}

.how-03-media {
  justify-content: stretch;
  padding: 0;
  background: transparent;
}

.how-03-stage {
  --how-03-shetty: #3EE0C4;
  --how-03-shi: #EC60B0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  padding: 16px 18px 18px;
  background: #0E1016;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-sizing: border-box;
}

html[data-theme="light"] .how-03-stage {
  background: var(--hero-well);
  border-color: rgba(20, 28, 32, 0.12);
}

.how-03-cell {
  min-width: 0;
  background: #16181F;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

html[data-theme="light"] .how-03-cell {
  background: var(--card-2);
  border-color: var(--line);
}

.how-03-title {
  font-family: var(--font);
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}

.how-03-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.how-03-title-row .how-03-title { margin: 0; }

.how-03-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.how-03-chart {
  width: 100%;
  height: auto;
  display: block;
  flex: 1 1 auto;
  min-height: 180px;
}

.how-03-chart-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.how-03-chart-wrap .how-03-chart {
  flex: none;
  min-height: 0;
}

.how-03-score-tip {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  min-width: 112px;
  padding: 8px 10px;
  border-radius: 10px;
  background: color-mix(in srgb, #16181F 94%, #000);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: var(--ink);
}

html[data-theme="light"] .how-03-score-tip {
  background: #fff;
  border-color: rgba(20, 28, 32, 0.12);
  box-shadow: 0 10px 28px -12px rgba(20, 28, 32, 0.22);
}

.how-03-score-tip[hidden] { display: none; }

.how-03-score-tip-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 4px;
}

.how-03-score-tip-a,
.how-03-score-tip-b {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.how-03-score-tip-a { color: var(--how-03-shetty); }
.how-03-score-tip-b { color: var(--how-03-shi); }

@media (hover: none) {
  .how-03-score-tip { display: none !important; }
}

.how-03-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  min-height: 28px;
  font-size: 12px;
  color: var(--muted);
}

.how-03-legend .sw {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

.how-03-legend .sw.shetty { background: var(--how-03-shetty); }
.how-03-legend .sw.shi { background: var(--how-03-shi); }

/* Movement speed only — extra air under ticks / axis title before the HTML legend */
.how-03-run .how-03-chart-wrap {
  padding-bottom: 8px;
}
.how-03-run .how-03-legend {
  margin-top: 0;
  padding-top: 18px;
}

.how-03-donuts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
  padding-top: 10px;
}

.how-03-donut {
  position: relative;
  min-width: 0;
}

.how-03-donut-name {
  display: none;
}

.how-03-donut .how-03-chart { min-height: 0; }

.how-03-donut-lab {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
}

.how-03-donut-lab strong {
  display: block;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.how-03-donut-lab small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  max-width: 9em;
  margin: 2px auto 0;
}

.how-03-donut-lab.is-shot strong { font-size: 18px; }

.how-03-donut-seg.is-dim { opacity: 0.38; }
.how-03-donut-seg.is-hot { opacity: 1; }

.how-03-shot-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 16px;
  min-height: 28px;
  font-size: 11px;
  color: var(--muted);
}

.how-03-shot-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.how-03-shot-legend i.s0 { background: #E8A838; }
.how-03-shot-legend i.s1 { background: #3EC3E8; }
.how-03-shot-legend i.s2 { background: #9BD44A; }
.how-03-shot-legend i.s3 { background: #B794F6; }

.how-03-foot {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
}

.how-03-heats {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px 10px;
  flex: 1 1 auto;
  min-height: 220px;
  align-items: stretch;
}

.how-03-heat-court {
  margin: 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.how-03-media .how-03-heat img,
.how-03-heat-court img {
  width: 100%;
  max-width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.how-03-heat-lab {
  margin: 0;
  margin-top: auto;
  width: 100%;
  min-height: 28px;
  padding-top: 10px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}

.how-03-heat-lab .sw {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

.how-03-heat-lab .sw.shetty { background: var(--how-03-shetty); }
.how-03-heat-lab .sw.shi { background: var(--how-03-shi); }

.how-03-heat-legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 28px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.how-03-heat-bar {
  width: 10px;
  flex: 1 1 auto;
  min-height: 140px;
  border-radius: 999px;
  /* G3 m2 turbo (heatmap_shetty_m2.png) — low sky-blue → red core */
  background: linear-gradient(
    180deg,
    #d32a1f 0%,
    #db7922 20%,
    #d2be38 40%,
    #7bbc76 54%,
    #2bb1ab 66%,
    #0ba8c0 78%,
    #1a7fb2 90%,
    #2466a5 100%
  );
}

@media (max-width: 800px) {
  .page,
  .wrap {
    width: calc(100% - 24px);
  }

  .how-03-stage {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 18px;
  }

  .how-03-cell {
    padding: 10px 12px 8px;
    min-height: 0;
  }

  .how-03-cell > .how-03-chart,
  .how-03-cell > .how-03-chart-wrap {
    flex: 0 0 auto;
    min-height: 0;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    padding-top: 0;
    padding-bottom: 0;
    justify-content: flex-start;
  }

  .how-03-chart-wrap {
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .how-03-chart,
  .how-03-chart-wrap .how-03-chart {
    flex: none;
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
  }

  .how-03-legend {
    margin-top: 14px;
    padding-top: 0;
    min-height: 0;
  }

  .how-03-shot-legend {
    margin-top: 12px;
    padding-top: 0;
    min-height: 0;
  }

  .how-03-run .how-03-chart-wrap {
    padding-bottom: 6px;
  }

  .how-03-run .how-03-legend {
    margin-top: 16px;
    padding-top: 0;
  }

  .how-03-donuts {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    align-items: start;
    gap: 8px;
    flex: 0 0 auto;
    padding-top: 4px;
  }

  .how-03-donut {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .how-03-donut .how-03-chart {
    min-height: 0;
    max-height: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .how-03-donut-name {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-align: center;
  }

  .how-03-donut-lab.is-idle {
    opacity: 0;
  }

  .how-03-donut-lab.is-shot {
    opacity: 1;
  }

  .how-03-donut-lab strong { font-size: 12px; }
  .how-03-donut-lab.is-shot strong { font-size: 14px; }
  .how-03-donut-lab small { font-size: 10px; max-width: 7.5em; }

  .how-03-heats {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    flex: 0 0 auto;
    gap: 6px 8px;
    align-items: start;
    justify-items: stretch;
  }

  .how-03-heat-court {
    height: auto;
  }

  .how-03-heat-lab {
    margin-top: 4px;
    padding-top: 0;
    min-height: 0;
  }

  .how-03-media .how-03-heat img,
  .how-03-heat-court img {
    height: auto;
    max-height: 200px;
    width: 100%;
    object-fit: contain;
  }

  .how-03-heat-legend {
    grid-column: 1 / -1;
    flex-direction: row-reverse;
    min-width: 0;
    width: min(78%, 200px);
    max-width: 220px;
    margin: 6px auto 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 0;
  }

  .how-03-heat-bar {
    width: auto;
    flex: 1 1 auto;
    min-width: 72px;
    min-height: 0;
    height: 10px;
    max-height: 10px;
    background: linear-gradient(
      90deg,
      #2466a5 0%,
      #1a7fb2 12%,
      #0ba8c0 22%,
      #2bb1ab 34%,
      #7bbc76 46%,
      #d2be38 60%,
      #db7922 80%,
      #d32a1f 100%
    );
  }
}

/* How 04 — each player's report to their coach, delivered on WhatsApp */
.how-card-04 {
  --how-04-teal: #EDEDED;
  --how-04-magenta: #A3A3A3;
  --how-04-accent: var(--how-04-teal);
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
  margin-top: 36px;
}

.how-card-04 .how-copy {
  padding: 6px 8px 16px;
}

.how-04-kicker {
  margin: 14px 0 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--how-04-teal);
  font-style: italic;
}

.how-04-kicker-note {
  margin: 6px 0 0;
  max-width: 52ch;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

html[data-theme="light"] .how-card-04 {
  --how-04-teal: #171717;
  --how-04-magenta: #5C5C5C;
}

.how-04-media {
  justify-content: stretch;
  padding: 0;
  background: transparent;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}

.how-04-stage {
  width: 100%;
  padding: 16px 18px 14px;
  background: #0E1016;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-sizing: border-box;
}

html[data-theme="light"] .how-04-stage {
  background: var(--hero-well);
  border-color: rgba(20, 28, 32, 0.12);
}

.how-04-tree {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how-04-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.how-04-cell {
  min-width: 0;
  background: #16181F;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

html[data-theme="light"] .how-04-cell {
  background: var(--card-2);
  border-color: var(--line);
}

.how-04-c1 { --how-04-accent: var(--how-04-teal); }
.how-04-c2 { --how-04-accent: var(--how-04-magenta); }

.how-04-coach {
  font-family: var(--font);
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .how-04-coach {
  background: #fff;
  border-color: rgba(20, 28, 32, 0.10);
  box-shadow: none;
}

.how-04-coach-oval {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: auto;
  min-width: 9.5rem;
  padding: 10px 22px 8px;
  border-radius: 999px;
}

.how-04-coach-name {
  display: block;
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.how-04-coach-role {
  display: block;
  font-family: var(--mono, "IBM Plex Mono", ui-monospace, Consolas, monospace);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--how-04-accent) 78%, var(--muted));
}

.how-04-arrow {
  width: 22px;
  height: 18px;
  margin: 2px 0 4px;
  display: block;
  overflow: visible;
}

.how-04-arrow path {
  fill: none;
  stroke: var(--how-04-accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.how-04-players {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.how-04-players::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 10px;
  width: 1px;
  background: color-mix(in srgb, var(--how-04-accent) 28%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.how-04-players li {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--lede);
  background: #12141A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.how-04-stu {
  min-width: 0;
}

.how-04-delta {
  flex: 0 0 auto;
  font-family: var(--mono, "IBM Plex Mono", ui-monospace, Consolas, monospace);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #EDEDED;
  background: #2A2A2A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px 8px;
}

.how-04-tree .how-04-c1 .how-04-delta {
  color: #EDEDED;
  background: #2A2A2A;
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="light"] .how-04-delta {
  color: #171717;
  background: #EFEFEF;
  border-color: rgba(20, 28, 32, 0.12);
}

html[data-theme="light"] .how-04-tree .how-04-c1 .how-04-delta {
  color: #171717;
  background: #EFEFEF;
  border-color: rgba(20, 28, 32, 0.12);
}

html[data-theme="light"] .how-04-players li {
  background: var(--stage);
  border-color: var(--line);
  color: var(--ink);
}

.how-04-deliver {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2px;
}

.how-04-brace {
  display: block;
  width: 100%;
  height: 22px;
  color: color-mix(in srgb, var(--ink) 28%, var(--muted));
}

.how-04-brace path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-04-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 4px;
  font-family: var(--font);
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.how-04-wa .how-04-wa-mark {
  width: 22px;
  height: 22px;
}

@media (max-width: 800px) {
  .how-04-stage {
    padding: 10px 10px 8px;
  }

  .how-04-cols {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 10px;
  }

  .how-04-cell {
    padding: 14px 12px 12px;
  }

  .how-04-players li {
    padding: 6px 9px;
    font-size: 12.5px;
  }

  .how-04-brace {
    height: 16px;
  }

  .how-04-wa {
    font-size: 14px;
  }
}

/* How 04 — Alt A primary, Alt B under it */
.how-04-alt {
  width: 100%;
}

.how-04-alt-label {
  margin: 0 0 8px 8px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.how-04-alt-note {
  margin: 14px 2px 2px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.how-04-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 12px;
  background: #2A2A2A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: var(--font);
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

html[data-theme="light"] .how-04-wa-badge {
  background: #171717;
  color: #F3F2EE;
  border-color: rgba(20, 28, 32, 0.16);
}

.how-04-wa-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: block;
}

.how-04-pills {
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-04-pills li {
  margin: 0;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--lede);
  background: #12141A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

html[data-theme="light"] .how-04-pills li {
  background: var(--stage);
  border-color: var(--line);
  color: var(--ink);
}

.how-04-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}

.how-04-htree-row .how-04-coach-oval {
  min-width: 8.5rem;
  padding: 8px 16px 7px;
}

/* Alt B — WhatsApp on the left, two horizontal coach rows */
.how-04-htree {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 0;
}

.how-04-htree-root {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  padding-right: 22px;
}

.how-04-htree-root::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: color-mix(in srgb, var(--ink) 28%, var(--muted));
}

.how-04-htree-rows {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding-left: 22px;
}

.how-04-htree-rows::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: color-mix(in srgb, var(--ink) 28%, var(--muted));
}

.how-04-htree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  background: #16181F;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  position: relative;
}

.how-04-htree-row::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 22px;
  height: 1px;
  background: color-mix(in srgb, var(--ink) 28%, var(--muted));
}

html[data-theme="light"] .how-04-htree-row {
  background: var(--card-2);
  border-color: var(--line);
}

.how-04-htree-row .how-04-coach {
  width: auto;
  flex: 0 0 auto;
  padding: 7px 12px;
}

@media (max-width: 800px) {
  .how-04-alt-label {
    margin-left: 4px;
  }

  .how-04-alt-note {
    text-align: left;
    font-size: 12.5px;
  }

  .how-04-htree {
    flex-direction: column;
    gap: 10px;
  }

  .how-04-htree-root {
    justify-content: flex-start;
    padding-right: 0;
  }

  .how-04-htree-root::after,
  .how-04-htree-rows::before,
  .how-04-htree-row::before {
    display: none;
  }

  .how-04-htree-rows {
    padding-left: 0;
  }

  .how-04-htree-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .how-04-htree-row .how-04-coach {
    width: auto;
  }
}

@media (max-width: 480px) {
  .how-04-wa-badge {
    font-size: 14px;
    padding: 6px 12px 6px 7px;
  }

  .how-04-wa-mark {
    width: 24px;
    height: 24px;
  }

  .how-04-pills li {
    padding: 6px 9px;
    font-size: 12.5px;
  }
}

/* Pricing — two plan cards (Cursor-style, landing chrome) */
.price {
  padding: 36px 0 40px;
  scroll-margin-top: 28px;
}

.price h2 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

.price-trial-line {
  margin: 8px 0 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 22rem));
  justify-content: center;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  max-width: 22rem;
  background: #16181F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-sizing: border-box;
  box-shadow: var(--inset), var(--shadow-card);
}

.plan-card-featured {
  background: #1C1F28;
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="light"] .plan-card {
  background: var(--hero-well);
  border-color: rgba(20, 28, 32, 0.12);
}

html[data-theme="light"] .plan-card-featured {
  background: #fff;
  border-color: rgba(20, 28, 32, 0.18);
  box-shadow: var(--shadow-card);
}

.plan-top {
  margin: 0 0 22px;
}

.plan-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.plan-save {
  flex: 0 0 auto;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #9CB47A;
}

html[data-theme="light"] .plan-save {
  color: #6A8A4A;
}

.plan-amount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 14px 0 0;
}

.plan-rupee {
  font-family: var(--font);
  font-weight: 650;
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.plan-per {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.plan-bill {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--lede);
}

.plan-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  background-color: #9CB47A;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2 6.3 11.4 12.8 4.6' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2 6.3 11.4 12.8 4.6' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

html[data-theme="light"] .plan-features li::before {
  background-color: #6A8A4A;
}

.plan-foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.plan-soon {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.plan-cta {
  width: 100%;
}

@media (max-width: 800px) {
  .price {
    padding: 28px 0 32px;
  }

  .price-grid {
    grid-template-columns: minmax(0, 22rem);
    justify-content: center;
    gap: 16px;
    max-width: 22rem;
  }

  .plan-card {
    padding: 20px 16px 18px;
  }

  .plan-rupee {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
}

/* Closing CTA */
.close {
  padding: 8px 0 56px;
  scroll-margin-top: 28px;
  text-align: center;
}

.close-line {
  margin: 0 auto 18px;
  max-width: 32rem;
  font-size: 16px;
  line-height: 1.5;
  color: var(--lede);
}

.close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .close {
    padding: 4px 0 40px;
  }

  .close-line {
    font-size: 15px;
  }
}

/* Biomechanical Analysis — title above 2×2 plates (G3 Overview copy) */
.bio-plates {
  padding-top: 48px;
  padding-bottom: 64px;
}

.bio-plates-head {
  margin-bottom: 16px;
  padding: 6px 8px 8px;
}

.bio-plates-head .kicker { margin-bottom: 8px; }

.bio-plates-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.bio-plates-title h2 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

.bio-plates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bio-plate {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bio-plate-art {
  background: #16181F;
  padding: 14px 14px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="light"] .bio-plate-art {
  background: #F3F1EB;
}

.bio-plate-art img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
}

.bio-plate-body {
  padding: 12px 18px 16px;
}

.bio-plate-body h3 {
  font-family: var(--font);
  font-weight: 650;
  font-size: 16px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.bio-plate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bio-plate-stat {
  background: var(--stage);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}

.bio-plate-stat span {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.bio-plate-stat b {
  display: block;
  font-size: 18px;
  font-weight: 650;
  margin-top: 4px;
  color: var(--teal);
}

.bio-plates-note {
  margin: 14px 8px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 800px) {
  .bio-plates {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .bio-plates-head {
    padding: 0 0 4px;
  }

  .bio-plates-title {
    align-items: flex-start;
    gap: 10px;
  }

  .bio-plates-title h2 {
    flex: 1 1 12rem;
    min-width: 0;
  }

  .bio-plates-grid { grid-template-columns: 1fr; }

  .bio-plate-art {
    padding: 0;
    overflow: hidden;
  }

  .bio-plate-art img {
    max-height: none;
    width: 100%;
    border-radius: 0;
    transform: scale(1.1);
    transform-origin: center 58%;
  }

  .bio-plate-body {
    padding: 12px 14px 14px;
  }

  .bio-plate-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bio-plate-stat {
    padding: 10px 12px;
  }

  .bio-plate-stat:nth-child(3) {
    grid-column: 1 / -1;
  }

  .bio-plate-stat span { font-size: 10px; }
  .bio-plate-stat b { font-size: 16px; }
}

html[data-theme="light"] .how-02-unit {
  border-color: rgba(20, 28, 32, 0.12);
}

.how-02-media .how-02-player video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #0A0C10;
  cursor: pointer;
  pointer-events: none;
}

#how-02-video::-webkit-media-controls,
#how-02-video::-webkit-media-controls-enclosure,
#how-02-video::-webkit-media-controls-panel,
#how-02-video::-webkit-media-controls-overlay-play-button,
#how-02-video::-webkit-media-controls-start-playback-button,
#how-02-video::-webkit-media-controls-play-button,
#how-02-video::-webkit-media-controls-timeline,
#how-02-video::-webkit-media-controls-current-time-display,
#how-02-video::-webkit-media-controls-time-remaining-display,
#how-02-video::-webkit-media-controls-mute-button,
#how-02-video::-webkit-media-controls-toggle-closed-captions-button,
#how-02-video::-webkit-media-controls-volume-slider,
#how-02-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

.how-02-tap {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.how-02-play {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 6;
  display: none;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 20, 24, 0.72);
  color: #ECF0F2;
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.how-02-play.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
}

.how-02-play[hidden] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.how-02-play:hover,
.how-02-play:focus-visible {
  background: rgba(18, 20, 24, 0.92);
}

.how-02-play:focus-visible {
  outline: 2px solid rgba(62, 224, 196, 0.7);
  outline-offset: 2px;
}

html[data-theme="light"] .how-02-play {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(18, 20, 24, 0.7);
  color: #ECF0F2;
}

.how-02-player:fullscreen,
.how-02-player:-webkit-full-screen,
.how-02-player:-ms-fullscreen {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  border: none;
  background: #000;
  overflow: hidden;
}

.how-02-player:fullscreen video,
.how-02-player:-webkit-full-screen video,
.how-02-player:-ms-fullscreen video,
.how-02-media .how-02-player:fullscreen video,
.how-02-media .how-02-player:-webkit-full-screen video,
.how-02-media .how-02-player:-ms-fullscreen video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.how-02-fs {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 20, 24, 0.72);
  color: #ECF0F2;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.how-02-fs.is-visible,
.how-02-player:fullscreen .how-02-fs,
.how-02-player:-webkit-full-screen .how-02-fs,
.how-02-player:-ms-fullscreen .how-02-fs {
  opacity: 1;
  pointer-events: auto;
}

.how-02-fs:hover,
.how-02-fs:focus-visible {
  background: rgba(18, 20, 24, 0.92);
}

.how-02-fs:focus-visible {
  outline: 2px solid rgba(62, 224, 196, 0.7);
  outline-offset: 2px;
}

.how-02-fs svg {
  display: block;
}

.how-02-fs .how-02-fs-exit {
  display: none;
}

.how-02-player:fullscreen .how-02-fs .how-02-fs-enter,
.how-02-player:-webkit-full-screen .how-02-fs .how-02-fs-enter,
.how-02-player:-ms-fullscreen .how-02-fs .how-02-fs-enter,
.how-02-fs.is-full .how-02-fs-enter {
  display: none;
}

.how-02-player:fullscreen .how-02-fs .how-02-fs-exit,
.how-02-player:-webkit-full-screen .how-02-fs .how-02-fs-exit,
.how-02-player:-ms-fullscreen .how-02-fs .how-02-fs-exit,
.how-02-fs.is-full .how-02-fs-exit {
  display: block;
}

html[data-theme="light"] .how-02-fs {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(18, 20, 24, 0.7);
  color: #ECF0F2;
}

.how-02-shuttle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.how-02-analysis {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 14px 16px 16px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--ink);
  min-width: 0;
  box-sizing: border-box;
}

.how-02-court-wrap {
  position: absolute;
  right: 2.8%;
  bottom: 10%;
  left: auto;
  top: auto;
  z-index: 3;
  height: auto;
  width: max-content;
  max-width: 28%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  background: #12161A;
}

.how-02-player:fullscreen .how-02-court-wrap,
.how-02-player:-webkit-full-screen .how-02-court-wrap,
.how-02-player:-ms-fullscreen .how-02-court-wrap {
  right: 2.8%;
  bottom: 10%;
  max-width: 18%;
}

.how-02-court-wrap canvas {
  display: block;
  width: auto;
  height: auto;
}

.how-02-body-title {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.how-02-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}

.how-02-card {
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px 12px;
  box-sizing: border-box;
}

html[data-theme="light"] .how-02-card {
  background: #FFFFFF;
  border-color: rgba(34, 40, 36, 0.14);
  box-shadow: 0 1px 0 rgba(34, 40, 36, 0.04);
}

.how-02-card .how-02-name {
  justify-content: flex-start;
  width: auto;
  margin-bottom: 8px;
}

.how-02-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
}

.how-02-row + .how-02-row {
  margin-top: 6px;
}

.how-02-lab {
  white-space: nowrap;
  color: var(--muted);
  line-height: 1.4;
}

.how-02-name {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: auto;
  box-sizing: border-box;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.how-02-name i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: inline-block;
}

.how-02-name.shetty { color: var(--how-02-shetty); }

.how-02-name.shetty i { background: var(--how-02-shetty); }

.how-02-name.shi { color: var(--how-02-shi); }

.how-02-name.shi i { background: var(--how-02-shi); }

.how-02-row > b {
  display: grid;
  grid-template-columns: max-content 2.35em;
  column-gap: 4px;
  align-items: baseline;
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.4;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
}

.how-02-num {
  text-align: right;
  font-variant-numeric: tabular-nums lining-nums;
}

.how-02-row .how-02-unit {
  width: auto;
  max-width: none;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: left;
  font-size: 0.68em;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  line-height: 1;
}

@media (max-width: 800px) {
  .how-02-analysis {
    padding: 12px 12px 14px;
    gap: 8px;
  }

  .how-02-body-title { font-size: 11px; }

  .how-02-row > b { font-size: 14px; }

  .how-02-name { font-size: 11px; }

  .how-02-court-wrap {
    transform: scale(0.88);
    transform-origin: right bottom;
    right: 2%;
    bottom: 8%;
  }

  .how-02-fs {
    width: 44px;
    height: 44px;
    top: 8px;
    right: 8px;
  }
}

.how-no {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kicker);
  display: block;
  margin-bottom: 8px;
}

.how-card h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.how-sub {
  margin: 8px 0 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--muted);
}

/* —— Feature catbar —— */
.catbar-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
  padding: 0 20px;
}

.catbar,
.feature-nav {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: var(--catbar);
  border: 1px solid var(--catbar-border);
  box-shadow: var(--catbar-shadow);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.feature-nav::-webkit-scrollbar { display: none; }

.feature-nav a {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.feature-nav a:hover { color: var(--ink); }

.feature-nav a.is-on {
  background: var(--pill-on);
  color: #fff;
  border-color: transparent;
}

html[data-theme="light"] .feature-nav a.is-on { color: #FBFBFA; }

/* —— Sections —— */
.section,
.viz-band,
.studio,
.closer {
  scroll-margin-top: 28px;
}

.section {
  padding: 88px 0;
}

/* —— Carousel —— */
.carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
  gap: 16px;
}

.carousel-btns {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.carousel::-webkit-scrollbar { display: none; }

.feat-card {
  flex: 0 0 min(78%, 340px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.feat-card .stage {
  height: 210px;
  background: #0E1016;
  position: relative;
  overflow: hidden;
}

.feat-card .stage canvas,
.feat-card .stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-card .body {
  padding: 18px 20px 22px;
  flex: 1;
}

.feat-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 8px;
  font-weight: 500;
}

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

.chat-mock {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
}

.bubble.ask {
  align-self: flex-end;
  background: var(--teal-dim);
  color: var(--ink);
}

.bubble.ans {
  background: var(--card-2);
  color: var(--lede);
}

/* —— Players —— */
.player-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.player-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.player-hero {
  height: 280px;
  background: #0A0C10;
  position: relative;
}

.player-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.player-hero .who {
  position: absolute;
  left: 16px;
  bottom: 14px;
}

.player-hero h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.player-hero span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-list {
  list-style: none;
  margin: 0;
  padding: 8px 6px 14px;
}

.stat-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.stat-list li:last-child { border-bottom: 0; }

.stat-list .n {
  font-family: var(--mono);
  color: var(--ink);
}

.play {
  border: 0;
  background: var(--teal);
  color: var(--teal-ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.play:hover { filter: brightness(1.08); }

.player-mini {
  height: 0;
  overflow: hidden;
  background: #0E1016;
  transition: height 0.25s ease;
}

.player-mini.is-open { height: 140px; }

.player-mini canvas {
  width: 100%;
  height: 140px;
  display: block;
}

/* —— Visualisations —— */
.viz-band {
  background:
    radial-gradient(70% 80% at 10% 20%, rgba(126, 184, 176, 0.08), transparent 50%),
    radial-gradient(60% 70% at 90% 80%, rgba(196, 120, 154, 0.07), transparent 50%),
    var(--bg-deep);
  padding: 96px 0 80px;
}

.viz-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.viz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.viz-card.wide { grid-column: 1 / -1; }

.viz-card .label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 22px 8px;
}

.viz-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
}

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

.viz-card canvas,
.viz-card svg {
  width: 100%;
  flex: 1;
  min-height: 240px;
  display: block;
}

/* —— Split —— */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.split-still,
.split-court {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  position: relative;
}

.split-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-court {
  display: flex;
  flex-direction: column;
}

.split-court .pad {
  padding: 22px 22px 8px;
}

.split-court h3 {
  font-family: var(--serif);
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 1.5rem;
}

.split-court p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-court canvas {
  width: 100%;
  flex: 1;
  min-height: 280px;
}

.hud-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(12, 14, 18, 0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

/* —— Overlay —— */
.overlay-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 480px;
  background: #0A0C10;
}

.overlay-frame img {
  width: 100%;
  height: min(70vh, 640px);
  object-fit: cover;
  object-position: center 30%;
}

.speed-chip {
  position: absolute;
  left: 6%;
  top: 42%;
  background: var(--teal);
  color: var(--teal-ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 13px;
  box-shadow: var(--shadow);
}

.speed-chip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 560;
  letter-spacing: -0.03em;
}

.dist-chip {
  position: absolute;
  right: 8%;
  bottom: 18%;
  background: rgba(18, 20, 26, 0.82);
  border: 1px solid var(--magenta);
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
}

/* —— Quote —— */
.quote {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 48px 48px 40px;
  max-width: 820px;
}

.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.25;
}

.quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
}

/* —— Light studio —— */
.studio {
  background: var(--light-bg);
  color: var(--light-ink);
  padding: 96px 0;
}

.studio .kicker { color: var(--light-teal); }
.studio .lede,
.studio p { color: var(--light-muted); }
.studio h2 { color: var(--light-ink); }

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 32px;
}

.studio-card {
  background: var(--light-card);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.06);
}

.studio-card h3 {
  font-family: var(--serif);
  margin: 0 0 8px;
  font-weight: 560;
}

.radar-wrap {
  display: grid;
  place-items: center;
}

#radar {
  width: 100%;
  height: 380px;
  display: block;
}

.bars {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.bar-row span {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.track {
  height: 8px;
  background: rgba(23, 23, 23, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.track i {
  display: block;
  height: 100%;
  background: var(--light-teal);
  border-radius: 99px;
}

.track i.alt { background: #C4789A; }

/* —— System —— */
.system-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.sys-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.sys-card.photo { min-height: 320px; }

.sys-card.photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sys-card .body {
  padding: 22px;
}

.sys-card h3 {
  font-family: var(--serif);
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 1.4rem;
}

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

.step-no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.sys-lines {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--lede);
}

.sys-lines li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.sys-lines span {
  font-family: var(--mono);
  color: var(--muted);
  width: 42px;
}

.sys-take {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  background: rgba(126, 184, 176, 0.08);
  color: var(--lede);
  font-size: 14px;
}

/* —— Closer —— */
.closer {
  text-align: center;
  padding: 100px 0 80px;
}

.closer h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 16px;
}

.closer p {
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 36rem;
}

/* —— Footer —— */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

.foot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.foot-brand {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.ai-note {
  margin: 0;
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* —— Motion bits —— */
.shuttle-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(126, 184, 176, 0.45);
}

@media (max-width: 900px) {
  .player-row,
  .viz-grid,
  .split,
  .studio-grid,
  .system-grid {
    grid-template-columns: 1fr;
  }
  .viz-card.wide { grid-column: auto; }
  .hero h1 {
    font-size: clamp(2.16rem, 7.92vw, 3.78rem);
    width: 100%;
  }
  .hero-copy-inner,
  .hero-actions {
    width: 100%;
  }
  .toprow {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .toprow-right {
    max-width: 100%;
    justify-content: flex-start;
  }
  .nav-catbar {
    flex-wrap: wrap;
    border-radius: 16px;
    max-width: 100%;
  }
  .quote { padding: 28px; }
  .speed-chip { top: 18%; left: 8%; }
}

@media (max-width: 800px) {
  .hero-plate-far {
    width: 6.6%;
    left: 52.4%;
    top: 3.6%;
    transform: none;
  }
  .hero-plate-near {
    width: 18%;
    left: 32%;
    top: 42%;
    transform: none;
  }
}



@media (max-width: 640px) {
  .hero-copy {
    padding: 4px 16px 20px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(1.3rem, 6.1vw, 2.304rem);
  }

  .hero-line1 {
    white-space: normal;
  }

  .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions .btn-ghost {
    transform: none;
  }

  .hero-actions .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .page,
  .wrap {
    width: calc(100% - 16px);
  }

  .toprow {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .toprow-right {
    width: auto;
    justify-content: flex-end;
  }

  .nav-catbar a,
  .nav-catbar span {
    padding: 7px 12px;
    font-size: 12px;
  }

  .how-no {
    font-size: 14px;
    color: #C4C4C4;
  }

  .how-card-02 .how-copy,
  .how-card-03 .how-copy,
  .how-card-04 .how-copy {
    padding: 4px 2px 12px;
  }

  .how-card-02 .how-lede,
  .how-card-03 .how-lede {
    padding: 12px 2px 0;
  }

  .how-02-analysis {
    padding: 12px 12px 14px;
  }

  .how-02-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .how-02-court-wrap {
    transform: scale(0.78);
    transform-origin: right bottom;
    right: 2%;
    bottom: 8%;
    display: block;
  }

  .how-03-stage {
    padding: 8px;
    gap: 18px;
  }

  .how-03-cell > .how-03-chart,
  .how-03-cell > .how-03-chart-wrap {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
  }

  .how-03-heats {
    grid-template-columns: 1fr 1fr;
    gap: 6px 8px;
  }

  .how-03-heat-legend {
    grid-column: 1 / -1;
    flex-direction: row-reverse;
    min-width: 0;
    width: min(78%, 200px);
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .how-03-heat-bar {
    width: auto;
    flex: 1 1 auto;
    min-height: 0;
    height: 10px;
    max-height: 10px;
    background: linear-gradient(
      90deg,
      #2466a5 0%,
      #1a7fb2 12%,
      #0ba8c0 22%,
      #2bb1ab 34%,
      #7bbc76 46%,
      #d2be38 60%,
      #db7922 80%,
      #d32a1f 100%
    );
  }

  .how-03-media .how-03-heat img,
  .how-03-heat-court img {
    height: auto;
    max-height: 180px;
  }

  .bio-plates-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bio-plates-title h2 {
    flex: none;
    width: 100%;
  }
}

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

  .hero-scan {
    animation: none;
    top: 48%;
    opacity: 0.7;
  }

  .hero-plate-far,
  .hero-plate-near {
    animation: none;
  }
}

/* —— Smart court 3D (10s looping demo) —— */
.smart-court-page {
  min-height: 100vh;
}

.smart-court-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 0 0 10px;
}

.smart-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0B0C10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

#smart-court-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #0B0C10;
}

.smart-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.smart-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #4FD1C5;
  box-shadow: 0 0 10px rgba(79, 209, 197, 0.45);
}

.smart-load {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A8F99;
}

.smart-load.is-ready {
  display: none;
}

.smart-caption {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 46rem;
  line-height: 1.5;
}

.smart-caption strong {
  color: var(--warn-ink);
  font-weight: 500;
}

.smart-back {
  margin: 22px 0 48px;
  font-size: 14px;
}

.smart-back a {
  color: var(--teal);
  text-decoration: none;
}

.smart-back a:hover {
  text-decoration: underline;
}

/* —— Header pilot CTA —— */
.toprow-cta {
  padding: 7px 14px;
  font-size: 13px;
}

/* —— Hero lede + stat strip —— */
.hero .hero-lede {
  text-align: center;
  text-wrap: balance;
}

.hero .hero-lede span {
  display: inline;
}

.hero-strip {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 16px 20px 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--kicker);
}

.hero-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  flex: 0 0 auto;
}

/* —— Pricing per-student math —— */
.plan-math {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

/* —— FAQ —— */
.faq {
  padding: 8px 0 44px;
  scroll-margin-top: 28px;
}

.faq h2 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(860px, 100%);
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2px 18px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  transition: transform 0.18s ease;
}

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

.faq-item p {
  margin: 0 0 15px;
  max-width: 64ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.faq-item a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

html[data-theme="light"] .faq-item {
  background: var(--hero-well);
  border-color: rgba(20, 28, 32, 0.1);
}

@media (max-width: 640px) {
  .hero .hero-lede {
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 30rem;
  }

  .hero-strip {
    padding-top: 12px;
    gap: 8px 10px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .toprow-cta {
    padding: 6px 11px;
    font-size: 12px;
  }

  .faq-item {
    padding: 1px 14px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 12px 0;
  }
}

/* == phone adaptive == */
@media (min-width: 801px) {
  .hero-line1 { white-space: nowrap; }
  .hero .lede { white-space: normal; width: 100%; }
}
@media (max-width: 800px) {
  html, body { overflow-x: clip; }
  .hero-copy { padding: 4px 14px 10px; justify-content: flex-start; }
  .hero-copy-inner, .hero h1, .hero .lede, .hero-actions { width: 100%; max-width: 100%; }
  .hero-line1, .hero-line2, .hero .lede { white-space: normal; overflow-wrap: anywhere; }
  .hero .lede { width: 100%; max-width: 22rem; margin-left: auto; margin-right: auto; font-size: clamp(0.95rem, 3.6vw, 1.15rem); line-height: 1.35; }
  .hero-actions { margin-left: 0; justify-content: center; }
  .how { padding: 36px 0 12px; }
  .how h2 { font-size: clamp(1.85rem, 8.2vw, 2.6rem); width: 100%; }
  .how-copy, .how-lede { padding-left: 14px; padding-right: 14px; }
  .how-media img, .how-media video { width: 100%; max-width: 100%; }
  .how-03-heats { grid-template-columns: 1fr 1fr; justify-items: stretch; }
  .how-03-heat-bar { width: auto; min-height: 0; height: 10px; max-height: 10px; }
  .how-sub { font-size: 14.5px; max-width: 100%; }
  .how-02-cards { grid-template-columns: 1fr 1fr; }
  .how-02-court-wrap { transform: scale(0.75); transform-origin: right bottom; }
  .toprow { gap: 8px; }
  .nav-catbar { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(1.55rem, 7.4vw, 2.05rem); margin-bottom: 10px; gap: 0.06em; }
  .hero .lede, .hero .hero-lede { font-size: 13.5px; margin-bottom: 14px; max-width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 0; justify-content: center; text-align: center; }
  .how-copy h3 { font-size: clamp(1.15rem, 5.4vw, 1.45rem); line-height: 1.2; }
  .how-03-cell { padding: 10px 10px 8px; }
  .how-03-media .how-03-heat img, .how-03-heat-court img { height: auto; max-height: 170px; width: 100%; object-fit: contain; }
  .plan-card { padding: 18px 14px 16px; }
  .close-actions .btn { flex: 1 1 auto; min-width: 0; }
}
@media (max-width: 400px) {
  .page, .wrap { width: calc(100% - 12px); }
}

.plan-trial-highlight {
  color: #EDEDED;
  font-weight: 600;
}
.plan-trial-highlight::marker {
  color: #6EE7A8;
}
.plan-card-featured .plan-trial-highlight {
  color: #FFFFFF;
}

/* == phone fill == */
@media (max-width: 800px) {
  .page,
  .wrap {
    width: calc(100% - 20px);
    max-width: none;
  }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
    gap: 8px;
  }
  .hero-actions .btn {
    flex: 1 1 calc(50% - 4px);
    width: auto;
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
  }
  .how-media img,
  .how-media video {
    width: 100%;
    max-width: 100%;
  }
  .how-03-stage { padding: 8px; }
  .faq h2 { font-size: clamp(1.55rem, 7vw, 2.1rem); }
}
@media (max-width: 400px) {
  .page,
  .wrap { width: calc(100% - 12px); }
}


/* == landing polish (players-59) == */
.hero-kicker {
  margin: 0 0 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.page-rest {
  padding-top: 8px;
}

.bio-plates-lede {
  margin: 10px 0 0;
  max-width: 40rem;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lede);
}

.close {
  padding: 88px 0 80px;
  scroll-margin-top: 28px;
  text-align: center;
  background: var(--bg);
}

.close h2 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 18px;
  color: #EDEDED;
}

.close h2 .close-h2-line {
  display: inline-block;
  white-space: nowrap;
}

/* Desktop ≥801: hide subtitle-only mobile breaks. H2 always breaks after “into”. */
@media (min-width: 801px) {
  .close br.m-only {
    display: none;
  }
}

.close-line {
  margin: 0 auto 28px;
  max-width: 38rem;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lede);
}

.close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.site-foot {
  border-top: 1px solid var(--line);
  padding: 36px 0 44px;
  color: var(--muted);
  font-size: 13px;
  background: var(--bg);
}

.foot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.foot-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.foot-brand {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.foot-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

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

.foot-nav a {
  color: var(--lede);
}

.foot-nav a:hover {
  color: var(--ink);
}

.foot-year {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 800px) {
  .close {
    padding: 64px 0 56px;
  }

  .close h2 {
    font-size: clamp(1.12rem, 4.45vw, 1.85rem);
  }

  .close h2 .close-h2-line {
    display: inline-block;
    white-space: nowrap;
  }

  .close-line span.close-phrase {
    display: block;
    white-space: nowrap;
  }

  .close br.m-only {
    display: none;
  }

  .close-line {
    font-size: 15px;
    max-width: 28rem;
  }

  .bio-plates-lede {
    font-size: 14px;
  }
}

/* Responsive layout: content determines height; artwork retains its aspect ratio. */
.hero-copy { position: relative; inset: auto; padding: 8px 20px 12px; }
.hero-copy-inner { width: min(1180px, 100%); }
.hero h1 { width: 100%; font-size: clamp(2rem, 4.5vw, 4.25rem); line-height: 1.08; }
.hero-line1, .hero-line2 { white-space: normal; text-wrap: balance; }
.hero .lede { width: 100%; max-width: 48rem; white-space: normal; text-wrap: balance; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-actions { margin-left: 0; }
.btn { min-height: 44px; }
.bio-plate-art img { height: auto; aspect-ratio: 1; }
@media (max-width: 900px) {
  .hero h1 { font-size: clamp(2rem, 5.2vw, 3rem); }
}
@media (max-width: 800px) {
  .page, .wrap { width: calc(100% - 32px); }
  .toprow { align-items: center; }
  .hero-copy { padding: 4px 16px 24px; }
  .hero .hero-lede { font-size: 16px; line-height: 1.5; max-width: 32rem; }
  .hero-actions { max-width: 360px; gap: 10px; }
  .hero-actions .btn { min-height: 46px; }
  .bio-plate-art img { height: auto; max-height: none; transform: none; }
  .foot-nav a { display: inline-flex; align-items: center; min-height: 44px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 18px; }
  .hero-kicker { font-size: 10px; }
  .hero .hero-lede { margin-bottom: 22px; }
}
.how-stack, .how-card, .how-copy, .how-media { min-width: 0; max-width: 100%; }
.how .delta-delivery-lede { width: 100%; max-width: 100%; white-space: normal; }
@media (min-width: 561px) and (max-width: 800px) {
  .bio-plates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Complete the light palette without altering media or report data. */
.theme-toggle { min-height: 44px; min-width: 44px; justify-content: center; }
:where(a, button, summary):focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
html[data-theme="light"] { --muted: #5C6560; --teal: #22776F; --magenta: #A33669; --line: rgba(34,40,36,.14); }
html[data-theme="light"] .hero-kicker { color: var(--muted); }
html[data-theme="light"] .btn-ghost { color: var(--ink); background: var(--pill); border-color: var(--line); }
html[data-theme="light"] .btn-ghost:hover { color: var(--ink); background: var(--card-2); }
html[data-theme="light"] .close,
html[data-theme="light"] .site-foot { background: var(--bg); }
html[data-theme="light"] .close h2 { color: var(--ink); }
html[data-theme="light"] .plan-trial-highlight { color: #226A45; }
html[data-theme="light"] .plan-card-featured .plan-trial-highlight { color: #226A45; }
html[data-theme="light"] .how-03-stage { --how-03-shetty: #19776E; --how-03-shi: #AC356C; }
html[data-theme="light"] .bio-plate-art { background: #F3F1EB; }
html[data-theme="light"] .how-media { background: var(--card-2); }
html[data-theme="light"] .delta-delivery-stage .delta-branch-lines path { stroke: #747E85; }
html[data-theme="light"] .delta-delivery-stage .delta-branch-lines circle { fill: #747E85; }
html[data-theme="light"] .delta-delivery-stage .delta-score-up strong { color: #226A45; }
html[data-theme="light"] .delta-delivery-stage .delta-score-down strong { color: #B13948; }
html[data-theme="light"] .delta-delivery-stage .delta-coach-avatar { color: #243038; }
@media (max-width: 400px) {
  .toprow { flex-wrap: nowrap; }
  .toprow-right { gap: 6px; flex-wrap: nowrap; }
  .theme-toggle { min-width: 44px; padding: 0; }
}
html[data-theme="light"] .hero-actions .btn-ghost { transform: none; }

@media (max-width: 560px) {
  .how-02-cards {
    grid-template-columns: 1fr;
  }
  .how-02-court-wrap {
    transform: scale(0.72);
    transform-origin: right bottom;
    right: 2%;
    bottom: 8%;
    max-width: 30%;
  }
}

@media (max-width: 360px) {
  .how-02-analysis {
    padding: 10px 10px 12px;
    gap: 8px;
  }
  .how-02-card { padding: 10px 12px; }
  .how-02-row > b { font-size: 13px; }
  .how-02-court-wrap {
    transform: scale(0.66);
    transform-origin: right bottom;
    right: 1.6%;
    bottom: 7%;
  }
}

@media (max-width: 800px) and (max-height: 430px) and (orientation: landscape) {
  .how-02-analysis {
    padding: 8px 12px 10px;
    gap: 8px;
  }
  .how-02-cards { gap: 8px; }
  .how-02-court-wrap {
    transform: scale(0.7);
    transform-origin: right bottom;
  }
}


/* hero-flow2: keep art above copy; neutralize leftover overlap/wrap rules */
.hero-art {
  margin-bottom: 16px;
  max-height: 280px;
}
.hero-player-far {
  width: 8.2%;
  left: 59%;
  top: -18%;
}
.hero-player-near {
  width: 27%;
  left: 28%;
  bottom: 10%;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3.35rem);
}
@media (min-width: 801px) {
  .hero-line1 { white-space: nowrap; }
  .hero-line2 { white-space: nowrap; }
}
@media (max-width: 800px) {
  .hero-actions { max-width: none; }
  .hero-actions .btn {
    flex: 0 1 auto;
    min-width: 154px;
    width: auto;
  }
  .hero-art {
    max-height: 240px;
    width: min(520px, 96%);
  }
}
@media (max-width: 560px) {
  .hero-art {
    max-height: 200px;
    width: min(400px, 96%);
  }
  .hero-player-far { width: 9.2%; left: 58.2%; top: -20%; }
  .hero-player-near { width: 30%; bottom: 9%; }
  .hero-actions .btn { min-width: 146px; }
}
@media (max-width: 400px) {
  .hero-actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
}

/* == how-03 mobile heat row lock (do not stack courts; slim Low-left scale) == */
@media (max-width: 800px) {
  .how-03-stage .how-03-heats {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    justify-items: stretch;
    gap: 6px 8px;
    min-height: 0;
    flex: 0 0 auto;
  }

  .how-03-stage .how-03-heat-court {
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .how-03-stage .how-03-heat-court:nth-child(1) { grid-column: 1; }
  .how-03-stage .how-03-heat-court:nth-child(2) { grid-column: 2; }

  .how-03-stage .how-03-heat-court img,
  .how-03-stage .how-03-media .how-03-heat img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
  }

  .how-03-stage .how-03-heat-lab {
    margin-top: 4px;
    padding-top: 0;
    min-height: 0;
  }

  .how-03-stage .how-03-heat-legend {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: min(72%, 200px);
    max-width: 220px;
    min-width: 0;
    min-height: 0;
    height: auto;
    margin: 6px auto 0;
    padding: 0;
  }

  .how-03-stage .how-03-heat-lo { order: 1; }
  .how-03-stage .how-03-heat-bar { order: 2; }
  .how-03-stage .how-03-heat-hi { order: 3; }

  .how-03-stage .how-03-heat-bar {
    flex: 0 1 auto;
    align-self: center;
    width: 110px;
    min-width: 72px;
    max-width: 160px;
    height: 10px;
    min-height: 0;
    max-height: 10px;
    padding: 0;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      #2466a5 0%,
      #1a7fb2 12%,
      #0ba8c0 22%,
      #2bb1ab 34%,
      #7bbc76 46%,
      #d2be38 60%,
      #db7922 80%,
      #d32a1f 100%
    );
  }
}

/* Pilot line: bold only, never green. Last-wins vs earlier highlight rules. */
.plan-features li.plan-trial-highlight,
.plan-card-featured .plan-features li.plan-trial-highlight,
html[data-theme="light"] .plan-features li.plan-trial-highlight,
html[data-theme="light"] .plan-card-featured .plan-features li.plan-trial-highlight {
  color: var(--ink);
  font-weight: 600;
}

/* Biomech plate ledes + readable wrapping labels (last-wins) */
.bio-plate-body h3 {
  margin: 0 0 6px;
}

.bio-plate-lede {
  margin: 0 0 12px;
  max-width: 36rem;
  font-size: 14px;
  line-height: 1.45;
  color: var(--lede);
}

.bio-plate-stats {
  align-items: stretch;
}

.bio-plate-stat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 10px 12px;
}

.bio-plate-stat span {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
  overflow-wrap: anywhere;
  color: var(--muted);
}

.bio-plate-stat b {
  margin-top: auto;
  padding-top: 6px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .bio-plate-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bio-plate-stat {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    padding: 10px 14px;
  }

  .bio-plate-stat:nth-child(3) {
    grid-column: auto;
  }

  .bio-plate-stat span {
    font-size: 13px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .bio-plate-stat b {
    margin-top: 0;
    padding-top: 0;
    font-size: 17px;
    flex: 0 0 auto;
  }
}

/* Footer rework — last-wins spacing (Sep 2026) */
.site-foot .foot-inner {
  gap: 8px;
}

.site-foot .foot-brand-block {
  gap: 0;
}

.site-foot .ai-note {
  margin: 0;
  max-width: 34rem;
  padding: 0 16px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  white-space: normal;
}

.site-foot .ai-note span {
  display: block;
}

.site-foot .foot-updated {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  opacity: 0.8;
}

@media (max-width: 800px) {
  .site-foot .ai-note {
    max-width: 100%;
    padding: 0 20px;
    white-space: normal;
  }
}

/* Section titles centered — last-wins (Sep 2026) */
.how-head,
.bio-plates-head,
.price .how-head,
.faq .how-head {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.how .how-head h2,
.price .how-head h2,
.faq .how-head h2,
.how h2,
.price h2,
.faq h2 {
  width: 100%;
  text-align: center;
}

.bio-plates-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bio-plates-title h2 {
  flex: 0 1 auto;
  width: auto;
  text-align: center;
}

.bio-plates-lede,
.price-trial-line {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  .bio-plates-title,
  .bio-plates-title h2 {
    justify-content: center;
    align-items: center;
  }

  .bio-plates-title h2 {
    flex: 0 1 auto;
    width: auto;
  }
}

@media (max-width: 480px) {
  .bio-plates-title {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .bio-plates-title h2 {
    flex: none;
    width: auto;
  }
}

/* hero-far-mid3: feet mid far-court (halfway net tape ↔ far baseline) */
.hero-player-far {
  width: 8.2%;
  left: 57.4%;
  top: -8%;
}
@media (max-width: 560px) {
  .hero-player-far { width: 9.2%; left: 56.6%; top: -12%; }
}

/* Telegram-style header nav — last-wins (Sep 2026) */
.toprow {
  flex-wrap: nowrap;
  align-items: center;
}

.toprow-menu { display: none; }

@media (max-width: 900px) {
  .toprow {
    flex-wrap: nowrap;
    align-items: center;
  }
  .toprow-right {
    max-width: none;
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

@media (min-width: 801px) {
  .toprow-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin-left: auto;
    margin-right: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .toprow-nav a {
    min-height: 0;
    padding: 0;
    display: inline;
  }
  .toprow-menu { display: none !important; }
}

@media (max-width: 800px) {
  .toprow {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }
  .toprow-menu { display: inline-flex; }
  .toprow-right {
    gap: 2px;
    flex-wrap: nowrap;
  }
  .toprow-nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }
  .toprow.is-open .toprow-nav { display: flex; }
  .toprow-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    font-size: 15px;
    border-radius: 10px;
    white-space: nowrap;
  }
  .toprow-nav a:hover { background: var(--pill); color: var(--ink); }
}

html[data-theme="light"] .toprow-nav a { color: var(--ink); }
html[data-theme="light"] .toprow-nav a:hover { color: var(--ink); }
html[data-theme="light"] .toprow-menu { color: var(--ink); }
@media (max-width: 800px) {
  html[data-theme="light"] .toprow-nav {
    background: var(--surface);
    border-color: var(--line);
    box-shadow: 0 14px 32px rgba(34, 40, 36, 0.12);
  }
  html[data-theme="light"] .toprow-nav a:hover { background: var(--pill); }
}

/* hero-far-left20: nudge left ~1.2pp; width 80% of far-mid3 (8.2→6.56 / 9.2→7.36). Near/net/court untouched. */
.hero-player-far {
  width: 6.56%;
  left: 56.2%;
  top: -8%;
}
@media (max-width: 560px) {
  .hero-player-far { width: 7.36%; left: 55.4%; top: -12%; }
}

/* heroflip-1: H1 Elite/athletes — ≥801 one line; ≤800 two stacked sentences. Lede is one sans line. */
@media (min-width: 801px) {
  .hero h1 {
    display: block;
    white-space: nowrap;
    font-size: clamp(1.42rem, 2.48vw, 2.2rem);
  }
  .hero h1 .hero-line1,
  .hero h1 .hero-line2 {
    display: inline;
    white-space: nowrap;
    text-wrap: nowrap;
  }
  .hero .hero-lede,
  .hero .lede.hero-lede {
    white-space: normal;
    text-wrap: balance;
  }
}
@media (max-width: 800px) {
  .hero h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: normal;
    font-size: clamp(1.2rem, 4.7vw, 1.65rem);
  }
  .hero h1 .hero-line1,
  .hero h1 .hero-line2 {
    display: block;
    white-space: nowrap;
    overflow-wrap: normal;
  }
  .hero .hero-lede,
  .hero .lede.hero-lede {
    white-space: normal;
    max-width: 22rem;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(1.12rem, 4.9vw, 1.4rem);
  }
}

/* how-02-hud-tighten: label+value sit close; units are clean text, not chips */
.how-02-row {
  justify-content: flex-start;
  gap: 6px;
}
.how-02-row .how-02-unit,
html[data-theme="light"] .how-02-row .how-02-unit {
  width: auto;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* hero-hud1: far player a little nearer net; desktop court +15%; HUD Speed|Distance row */
.hero-player-far {
  width: 6.56%;
  left: 56.2%;
  top: -1%;
}
@media (max-width: 560px) {
  .hero-player-far { width: 7.36%; left: 55.4%; top: -5%; }
}
@media (min-width: 801px) {
  .hero-art {
    width: min(713px, 94%);
    max-height: 322px;
  }
}

.how-02-metrics {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 18px;
  min-width: 0;
}
.how-02-row + .how-02-row {
  margin-top: 0;
}
.how-02-card {
  padding: 8px 12px 9px;
}
.how-02-card .how-02-name {
  margin-bottom: 4px;
}
@media (max-width: 360px) {
  .how-02-metrics {
    flex-wrap: wrap;
    gap: 6px 14px;
  }
}

@media (max-width: 800px) {
  .how-02-cards {
    grid-template-columns: 1fr;
  }
}

/* bio-lede2: last line is always the full phrase, never an orphan “using” */
.bio-plates-lede .bio-lede-last {
  display: block;
  white-space: nowrap;
}

/* hud-hug: Shetty/Shi cards shrink to text; pair sits under Body Movement */
.how-02-analysis {
  align-items: flex-start;
}
.how-02-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  grid-template-columns: unset;
}
.how-02-card {
  width: max-content;
  max-width: 100%;
  flex: 0 0 auto;
  min-width: 0;
}
.how-02-metrics {
  flex-wrap: nowrap;
}
@media (max-width: 800px) {
  .how-02-cards {
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    grid-template-columns: unset;
  }
  .how-02-card {
    width: max-content;
  }
}
@media (max-width: 360px) {
  .how-02-metrics {
    flex-wrap: nowrap;
  }
}

/* hero-150comp: 100–110% laptop matches the liked 150% first-shot (court-led, How below fold) */
@media (min-width: 801px) {
  .toprow {
    flex-wrap: nowrap;
    margin-bottom: 8px;
  }
  .toprow-nav {
    flex-wrap: nowrap;
    gap: 26px;
  }
  .toprow-nav a {
    font-size: 15.5px;
    font-weight: 400;
    white-space: nowrap;
  }
  .hero {
    padding: 2px 0 56px;
    min-height: calc(100svh - 5.35rem);
    box-sizing: border-box;
  }
  .hero-inner {
    width: min(1100px, 100%);
  }
  .hero-art {
    width: min(941px, 96%);
    max-height: 425px;
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: clamp(1.55rem, 2.72vw, 2.45rem);
    margin-bottom: 14px;
  }
  .hero .lede,
  .hero .lede.hero-lede,
  .hero .hero-lede {
    font-size: clamp(1.12rem, 1.62vw, 1.36rem);
    margin-bottom: 22px;
  }
}

/* how-02-hud-in: Speed/Distance cards overlay the tape (bottom-left), not a strip under it */
.how-02-player .how-02-analysis {
  position: absolute;
  left: 2.6%;
  bottom: 10%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: max-content;
  max-width: 36%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  color: #F4F7F8;
  pointer-events: none;
  box-sizing: border-box;
}
.how-02-player .how-02-body-title {
  margin: 0 0 0 2px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 247, 248, 0.78);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.how-02-player .how-02-cards {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  grid-template-columns: unset;
}
.how-02-player .how-02-card {
  box-sizing: border-box;
  width: 8.75rem;
  min-width: 8.75rem;
  max-width: 100%;
  flex: 0 0 auto;
  padding: 6px 9px 7px;
  border-radius: 8px;
  background: rgba(12, 16, 20, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.how-02-player .how-02-card .how-02-name {
  margin-bottom: 3px;
}
.how-02-player .how-02-metrics {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1px;
  width: 100%;
}
.how-02-player .how-02-row + .how-02-row {
  margin-top: 0;
}
.how-02-player .how-02-lab {
  color: rgba(236, 240, 242, 0.72);
  font-size: 10px;
}
.how-02-player .how-02-row {
  width: 100%;
  justify-content: space-between;
  gap: 8px;
}
.how-02-player .how-02-row > b {
  color: #F4F7F8;
  font-size: 13px;
  grid-template-columns: 4.5ch max-content;
  font-variant-numeric: tabular-nums lining-nums;
}
.how-02-player .how-02-num {
  display: inline-block;
  min-width: 4.5ch;
  text-align: right;
  font-variant-numeric: tabular-nums lining-nums;
}
.how-02-player .how-02-row .how-02-unit,
html[data-theme="light"] .how-02-player .how-02-row .how-02-unit {
  color: rgba(236, 240, 242, 0.7);
}
html[data-theme="light"] .how-02-player .how-02-card {
  background: rgba(12, 16, 20, 0.58);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
}
html[data-theme="light"] .how-02-player .how-02-row > b {
  color: #F4F7F8;
}
html[data-theme="light"] .how-02-player .how-02-lab {
  color: rgba(236, 240, 242, 0.72);
}
.how-02-player:fullscreen .how-02-analysis,
.how-02-player:-webkit-full-screen .how-02-analysis,
.how-02-player:-ms-fullscreen .how-02-analysis {
  left: 2.6%;
  bottom: 10%;
  max-width: 22%;
}
@media (max-width: 800px) {
  .how-02-player .how-02-analysis {
    left: 2%;
    bottom: 8%;
    max-width: 46%;
    gap: 3px;
  }
  .how-02-player .how-02-cards {
    flex-direction: column;
    gap: 4px;
  }
  .how-02-player .how-02-card {
    width: auto;
    min-width: 13.75rem;
    padding: 4px 7px 5px;
  }
  .how-02-player .how-02-metrics {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .how-02-player .how-02-row > b { font-size: 11px; }
  .how-02-player .how-02-body-title { font-size: 8px; }
}
@media (max-width: 560px) {
  .how-02-player .how-02-analysis {
    left: 1.8%;
    bottom: 8%;
    max-width: 48%;
    transform: scale(0.78);
    transform-origin: left bottom;
  }
  .how-02-player .how-02-cards {
    flex-direction: column;
  }
  .how-02-player .how-02-body-title { display: none; }
}
@media (max-width: 360px) {
  .how-02-player .how-02-analysis {
    left: 1.6%;
    bottom: 7%;
    max-width: 50%;
    transform: scale(0.7);
    transform-origin: left bottom;
    padding: 0;
  }
  .how-02-player .how-02-card { padding: 3px 6px 4px; }
  .how-02-player .how-02-row > b { font-size: 10px; }
}
@media (max-width: 800px) and (max-height: 430px) and (orientation: landscape) {
  .how-02-player .how-02-analysis {
    padding: 0;
    max-width: 34%;
    transform: scale(0.8);
    transform-origin: left bottom;
  }
}
