:root {
  color-scheme: dark;
  --background: #131313;
  --surface: #1c1c1e;
  --surface-low: #171717;
  --surface-high: #252525;
  --surface-highest: #353534;
  --text: #f2f1ef;
  --muted: #c4c9ac;
  --subtle: #8e9379;
  --line: rgba(142, 147, 121, 0.24);
  --line-strong: #444933;
  --lime: #c3f400;
  --lime-soft: rgba(195, 244, 0, 0.12);
  --blue: #4b8eff;
  --orange: #ffb86b;
  --green: #16a34a;
  --error: #ffb4ab;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --radius-media: 12px;
  --max: 1180px;
  --gutter: 24px;
  --header: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(rgba(195, 244, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 244, 0, 0.035) 1px, transparent 1px),
    var(--background);
  background-size: 64px 64px, 64px 64px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, rgba(19, 19, 19, 0.66) 72%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 9px);
  z-index: -1;
}

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

figure {
  margin: 0;
}

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

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

button {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (pointer: fine) {
  body.kinetiq-cursor,
  body.kinetiq-cursor a,
  body.kinetiq-cursor button {
    cursor: none;
  }
}

.cursor-glow,
.cursor-core {
  --cursor-ring: var(--lime);
  --cursor-a: rgba(195, 244, 0, 0.18);
  --cursor-b: rgba(75, 142, 255, 0.1);
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  will-change: left, top, width, height, transform, opacity;
}

.cursor-glow {
  width: 240px;
  height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cursor-a) 0 8%, var(--cursor-b) 22%, transparent 62%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transition: opacity 180ms ease, background 180ms ease;
}

.cursor-core {
  --cursor-scale: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cursor-ring);
  border-radius: 999px;
  color: var(--cursor-ring);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.24), transparent 24%),
    rgba(19, 19, 19, 0.72);
  box-shadow:
    0 0 24px var(--cursor-a),
    inset 0 0 18px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%) scale(var(--cursor-scale));
  transition:
    width 170ms ease,
    height 170ms ease,
    border-radius 170ms ease,
    clip-path 170ms ease,
    color 170ms ease,
    border-color 170ms ease,
    opacity 180ms ease;
}

.cursor-core::before {
  content: attr(data-label);
  font-family: Sora, Inter, sans-serif;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.cursor-core::after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 170ms ease, transform 170ms ease;
}

body.cursor-ready .cursor-core {
  opacity: 1;
}

body.cursor-ready .cursor-glow {
  opacity: 0.52;
}

.cursor-core.is-pressing {
  --cursor-scale: 0.84;
}

.cursor-core[data-mode="athlete"],
.cursor-glow[data-mode="athlete"] {
  --cursor-ring: var(--lime);
  --cursor-a: rgba(195, 244, 0, 0.34);
  --cursor-b: rgba(22, 163, 74, 0.15);
}

.cursor-core[data-mode="athlete"] {
  width: 58px;
  height: 58px;
  border-radius: 50% 50% 42% 42%;
}

.cursor-core[data-mode="coach"],
.cursor-glow[data-mode="coach"] {
  --cursor-ring: var(--blue);
  --cursor-a: rgba(75, 142, 255, 0.32);
  --cursor-b: rgba(195, 244, 0, 0.18);
}

.cursor-core[data-mode="coach"] {
  width: 76px;
  height: 42px;
  border-radius: 14px;
}

.cursor-core[data-mode="coach"]::after {
  right: 8px;
  bottom: -7px;
  width: 18px;
  height: 10px;
  border-right: 1px solid var(--cursor-ring);
  border-bottom: 1px solid var(--cursor-ring);
  border-radius: 0 0 10px 0;
  opacity: 0.9;
}

.cursor-core[data-mode="gym"],
.cursor-glow[data-mode="gym"] {
  --cursor-ring: var(--green);
  --cursor-a: rgba(22, 163, 74, 0.32);
  --cursor-b: rgba(195, 244, 0, 0.2);
}

.cursor-core[data-mode="gym"] {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cursor-core[data-mode="shop"],
.cursor-glow[data-mode="shop"] {
  --cursor-ring: var(--orange);
  --cursor-a: rgba(255, 184, 107, 0.34);
  --cursor-b: rgba(195, 244, 0, 0.18);
}

.cursor-core[data-mode="shop"] {
  width: 70px;
  height: 46px;
  border-radius: 18px 18px 18px 6px;
}

.cursor-core[data-mode="shop"]::after {
  left: 10px;
  top: 10px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--cursor-ring);
  border-radius: 999px;
  opacity: 1;
}

.cursor-core[data-mode="arena"],
.cursor-glow[data-mode="arena"] {
  --cursor-ring: var(--lime);
  --cursor-a: rgba(195, 244, 0, 0.38);
  --cursor-b: rgba(255, 184, 107, 0.18);
}

.cursor-core[data-mode="arena"] {
  width: 64px;
  height: 64px;
  border-radius: 999px 999px 16px 16px;
}

.cursor-core[data-mode="arena"]::after {
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: var(--cursor-ring);
  box-shadow: 0 5px 0 var(--cursor-ring);
  opacity: 0.9;
}

.cursor-core[data-mode="ai"],
.cursor-glow[data-mode="ai"] {
  --cursor-ring: var(--blue);
  --cursor-a: rgba(75, 142, 255, 0.34);
  --cursor-b: rgba(195, 244, 0, 0.22);
}

.cursor-core[data-mode="ai"] {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.cursor-core[data-mode="ai"]::after {
  top: -9px;
  left: 50%;
  width: 16px;
  height: 8px;
  border-top: 1px solid var(--cursor-ring);
  border-left: 1px solid var(--cursor-ring);
  transform: translateX(-50%);
  opacity: 1;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--lime);
  color: #161e00;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(19, 19, 19, 0.86);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 12, 12, 0.94);
  border-color: rgba(142, 147, 121, 0.34);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.34);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle-bars {
  display: grid;
  gap: 5px;
}

.nav-toggle-bars i {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle-bars i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bars i:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bars i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  border: 0;
  padding: 0;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(6px);
}

.nav-shell {
  min-height: var(--header);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Sora, Inter, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0;
}

.brand-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(195, 244, 0, 0.16);
}

.brand-word {
  line-height: 1;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--lime);
  background: rgba(195, 244, 0, 0.1);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-action {
  color: #161e00;
  background: var(--lime);
}

.button-primary {
  color: #161e00;
  background: var(--lime);
  box-shadow: 0 0 30px rgba(195, 244, 0, 0.25);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-badge {
  display: inline-grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  min-height: 56px;
  padding: 9px 13px;
  border: 1px solid rgba(195, 244, 0, 0.28);
  border-radius: 14px;
  color: var(--text);
  background: rgba(7, 7, 7, 0.88);
  box-shadow: 0 0 22px rgba(195, 244, 0, 0.08);
}

.store-badge svg {
  width: 26px;
  height: 26px;
  color: var(--lime);
  fill: currentColor;
  stroke: none;
}

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

.store-eyebrow,
.store-name {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.store-eyebrow {
  color: var(--muted);
  font-size: 9px;
}

.store-name {
  color: var(--text);
  font-size: 13px;
}

main {
  overflow: hidden;
}

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

.hero-section {
  min-height: calc(100svh - var(--header) - 38px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 48px;
  padding: 62px 0 38px;
}

.signal-line,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: Sora, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.07;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.hero-visual {
  position: relative;
}

.hero-frame,
.feature-screens,
.wide-media,
.commerce-media,
.arena-media-grid figure,
.role-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.hero-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 19, 19, 0.18), rgba(19, 19, 19, 0.04)),
    linear-gradient(0deg, rgba(19, 19, 19, 0.62), transparent 54%);
  pointer-events: none;
}

.hero-photo-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 5px;
  min-width: 190px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(19, 19, 19, 0.72);
  backdrop-filter: blur(12px);
}

.hero-photo-overlay span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero-frame img,
.wide-media img,
.commerce-media img,
.arena-media-grid img,
.photo-tile img,
.lab-photo-grid img,
.role-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.hero-metrics div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(28, 28, 30, 0.78);
}

.hero-metrics strong {
  display: block;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

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

.hero-metrics .metric-label {
  color: var(--lime);
  text-transform: uppercase;
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.preview-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.preview-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.preview-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(195, 244, 0, 0.32);
}

.preview-icon-blue {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(75, 142, 255, 0.32);
}

.preview-icon-green {
  background: var(--green);
  box-shadow: 0 0 18px rgba(22, 163, 74, 0.32);
}

.preview-icon-orange {
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 184, 107, 0.32);
}

.platform-section,
.photo-band,
.role-section,
.intelligence-section,
.arena-section,
.commerce-section,
.governance-section,
.launch-section {
  padding: 112px 0 0;
  scroll-margin-top: calc(var(--header) + 16px);
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 40px;
}

.photo-tile,
.lab-photo-grid figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: var(--surface);
}

.photo-tile::after,
.lab-photo-grid figure::after,
.commerce-photo::after,
.arena-photo-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(19, 19, 19, 0.74), transparent 52%);
}

.photo-tile figcaption,
.lab-photo-grid figcaption,
.commerce-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(19, 19, 19, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-tile-wide {
  grid-column: span 2;
  min-height: 310px;
}

.photo-band .photo-tile {
  min-height: 310px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: end;
}

.section-heading p,
.commerce-copy p,
.arena-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(28, 28, 30, 0.88);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.feature-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature-tab.is-active {
  border-color: rgba(195, 244, 0, 0.72);
  color: #161e00;
  background: var(--lime);
}

.feature-panel {
  min-height: 392px;
  display: flex;
  flex-direction: column;
}

.module-number {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.feature-panel h3 {
  margin-bottom: 16px;
  font-size: 29px;
}

.feature-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-points,
.check-list {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.feature-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--lime);
  border-radius: 999px;
}

.feature-screens {
  position: relative;
  min-height: 560px;
}

.screen-link-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.feature-screen {
  min-height: 560px;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.feature-screen[hidden] {
  display: none;
}

.screen-stage {
  min-height: 430px;
  padding: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(195, 244, 0, 0.08), transparent 38%),
    #0d0d0d;
}

.screen-link-grid .feature-screen {
  min-height: 330px;
}

.screen-link-grid .screen-stage {
  min-height: 205px;
}

.screen-stage img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}

.commerce-screen-stage img {
  object-fit: cover;
}

.screen-summary {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: rgba(19, 19, 19, 0.78);
}

.screen-summary span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(195, 244, 0, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.screen-summary strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.screen-summary p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.role-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(28, 28, 30, 0.82);
}

.interactive-card {
  position: relative;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(195, 244, 0, 0.08),
    transparent 42%
  );
  transition: opacity 180ms ease;
}

.interactive-card:hover {
  transform: translateY(-4px);
  border-color: rgba(195, 244, 0, 0.52);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.44), 0 0 30px rgba(195, 244, 0, 0.08);
}

.interactive-card:hover::before {
  opacity: 1;
}

.role-media {
  height: 260px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.role-body {
  padding: 20px;
}

.role-body h3 {
  margin-bottom: 10px;
}

.role-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.wide-media {
  min-height: 460px;
}

.wide-media img {
  object-position: center top;
}

.pipeline-stack {
  display: grid;
  gap: 12px;
}

.pipeline-stack article,
.governance-grid article {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 72%),
    rgba(28, 28, 30, 0.86);
}

.pipeline-stack span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.pipeline-stack h3,
.governance-grid h3 {
  margin-bottom: 10px;
}

.pipeline-stack p,
.governance-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lab-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.lab-photo-grid figure {
  min-height: 210px;
}

.arena-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: center;
}

.arena-copy {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(28, 28, 30, 0.78);
}

.arena-photo-copy > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.arena-photo-copy > :not(img) {
  position: relative;
  z-index: 1;
}

.arena-copy h2,
.commerce-copy h2 {
  margin-bottom: 18px;
}

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

.arena-stats div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.arena-stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 24px;
}

.arena-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.arena-media-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 12px;
  min-height: 570px;
}

.arena-media-grid figure {
  margin: 0;
}

.leaderboard-card {
  min-height: 570px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background:
    radial-gradient(circle at top center, rgba(195, 244, 0, 0.1), transparent 36%),
    rgba(28, 28, 30, 0.86);
  box-shadow: var(--shadow);
}

.leaderboard-card h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.leaderboard-podium {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 26px 18px;
  border: 1px solid rgba(195, 244, 0, 0.7);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.68);
  box-shadow: 0 0 32px rgba(195, 244, 0, 0.16);
}

.leaderboard-podium span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #161e00;
  background: var(--lime);
  font-weight: 900;
}

.leaderboard-podium strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
}

.leaderboard-podium small,
.leaderboard-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.leaderboard-podium b {
  color: var(--lime);
  font-size: 34px;
}

.leaderboard-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.leaderboard-list li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(142, 147, 121, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.leaderboard-list li span {
  color: var(--lime);
  font-weight: 900;
}

.leaderboard-list li strong {
  display: block;
}

.leaderboard-list li b {
  color: var(--text);
}

.arena-media-grid figure:first-child img {
  object-position: top center;
}

.arena-media-grid figure:last-child img {
  object-position: top center;
}

.commerce-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 24px;
  align-items: stretch;
}

.commerce-media {
  min-height: 460px;
}

.commerce-photo {
  position: relative;
}

.commerce-photo img {
  object-fit: cover;
}

.commerce-photo figcaption {
  display: grid;
  gap: 5px;
  width: min(360px, calc(100% - 28px));
  border-radius: var(--radius);
}

.commerce-photo figcaption span {
  font-size: 11px;
}

.commerce-photo figcaption strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
  text-transform: none;
}

.commerce-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: rgba(28, 28, 30, 0.78);
}

.commerce-copy .check-list {
  margin-top: 28px;
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.launch-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  /* This panel overrides the shared section `padding: 112px 0 0` with its own interior padding,
     so the between-section gap must be restored explicitly or it butts against the cards above. */
  margin-top: 112px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-media) + 4px);
  background:
    radial-gradient(circle at top right, rgba(195, 244, 0, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow);
}

.launch-copy h2 {
  margin: 10px 0 12px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.launch-copy p {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.6;
}

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

.launch-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: rgba(255, 255, 255, 0.03);
}

.launch-panel strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
}

.launch-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.launch-signal div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.launch-signal span {
  display: block;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.launch-signal b {
  display: block;
  margin-top: 6px;
  color: var(--lime);
  font-size: 18px;
}

.screen-hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 36px;
  align-items: center;
  padding: 72px 0 42px;
}

.screen-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
}

.screen-hero-media {
  min-height: 540px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.screen-hero-media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.screen-detail-grid,
.marketplace-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 36px;
}

.detail-card,
.product-card,
.coach-board,
.ops-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 74%),
    rgba(28, 28, 30, 0.82);
}

.detail-card span,
.product-card b {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(195, 244, 0, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-card h2,
.product-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.detail-card p,
.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 48px;
  line-height: 1;
}

.progress-track {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-highest);
}

.progress-track i,
.client-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(195, 244, 0, 0.44);
}

.split-detail,
.arena-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 36px;
}

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

.athlete-detail-row .detail-stack {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.coach-board,
.ops-table {
  min-height: 480px;
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.board-header strong {
  color: var(--lime);
}

.client-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(142, 147, 121, 0.16);
}

.client-row i {
  grid-column: 1 / -1;
  height: 6px;
  background: linear-gradient(90deg, var(--lime), var(--blue));
}

.client-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-table table {
  width: 100%;
  border-collapse: collapse;
}

.ops-table th,
.ops-table td {
  padding: 13px 8px;
  border-bottom: 1px solid rgba(142, 147, 121, 0.16);
  text-align: left;
  color: var(--muted);
}

.ops-table th {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
}

.ops-table .ok {
  color: var(--green);
  font-weight: 800;
}

.ops-table .warn {
  color: var(--error);
  font-weight: 800;
}

.product-card {
  padding: 0;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card h2,
.product-card p,
.product-card b {
  margin-left: 18px;
  margin-right: 18px;
}

.product-card h2 {
  margin-top: 18px;
}

.product-card b {
  margin-bottom: 18px;
}

.surface-preview {
  width: 100%;
  height: 100%;
  min-height: 185px;
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(142, 147, 121, 0.24);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 18%, rgba(195, 244, 0, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 76%),
    rgba(15, 15, 15, 0.92);
}

.surface-preview span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.surface-preview b {
  display: block;
  margin-top: 5px;
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.12;
}

.surface-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.surface-preview img {
  width: 100%;
  height: 100%;
  min-height: 86px;
  object-fit: cover;
  border-radius: 6px;
}

.preview-athlete {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.preview-bars {
  display: grid;
  gap: 6px;
}

.preview-bars i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--blue));
  box-shadow: 0 0 14px rgba(195, 244, 0, 0.24);
}

.preview-coach {
  align-content: center;
  background:
    radial-gradient(circle at 85% 14%, rgba(75, 142, 255, 0.18), transparent 32%),
    rgba(15, 15, 15, 0.92);
}

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

.preview-columns i {
  position: relative;
  height: 78px;
  overflow: hidden;
  border: 1px solid rgba(142, 147, 121, 0.2);
  border-radius: 6px;
  background:
    radial-gradient(circle at 82% 12%, rgba(75, 142, 255, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

/* Column header chip — colour-coded per stage so the three read as a workflow (to-do / doing / done). */
.preview-columns i::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(195, 244, 0, 0.3);
}

.preview-columns i:nth-child(2)::before {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(75, 142, 255, 0.3);
}

.preview-columns i:nth-child(3)::before {
  background: var(--green);
  box-shadow: 0 0 12px rgba(22, 163, 74, 0.3);
}

/* Stacked "task" rows of decreasing width — makes each column look populated, not blank. */
.preview-columns i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 28px;
  height: 40px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)) 0 0 / 100% 9px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.11)) 0 15px / 74% 9px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) 0 30px / 52% 9px no-repeat;
}

.preview-gym {
  align-content: center;
}

.preview-ops-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preview-ops-cards i {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(142, 147, 121, 0.2);
  border-radius: 6px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.04);
  font-style: normal;
  font-weight: 900;
}

.preview-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
}

.preview-table em {
  color: var(--lime);
  font-style: normal;
  font-weight: 900;
}

.preview-market {
  grid-template-rows: minmax(0, 1fr) auto;
}

.product-surface {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 18%, rgba(195, 244, 0, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 72%),
    #0b0b0b;
}

.product-surface > * {
  position: relative;
  z-index: 1;
}

.product-surface h2,
.product-surface p {
  margin: 0;
}

.product-surface h2 {
  font-size: clamp(13px, 1.25vw, 20px);
  line-height: 1.18;
}

.product-surface p {
  color: var(--muted);
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.45;
}

.surface-card {
  overflow: hidden;
  border: 1px solid rgba(142, 147, 121, 0.28);
  border-radius: var(--radius);
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 80%),
    rgba(28, 28, 30, 0.78);
}

.surface-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.surface-kicker,
.surface-chip,
.surface-icon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.surface-chip {
  min-height: 22px;
  padding: 6px 9px;
  border: 1px solid rgba(195, 244, 0, 0.22);
  border-radius: 999px;
  background: rgba(195, 244, 0, 0.08);
  white-space: nowrap;
}

.surface-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(195, 244, 0, 0.08);
}

.surface-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 147, 121, 0.2);
  border-radius: 7px;
  background: #0e0e0e;
}

.surface-photo img,
.gym-vs-gym img,
.ai-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surface-meter {
  height: 7px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.surface-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(195, 244, 0, 0.34);
}

.surface-meter-muted span {
  background: var(--muted);
}

.surface-rank-list {
  display: grid;
  gap: 7px;
  min-width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.surface-rank-list li,
.team-score,
.client-signal,
.macro-grid span,
.revenue-metrics span,
.live-attendance p {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}

.surface-rank-list li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
}

.surface-rank-list span,
.surface-rank-list em,
.team-score em {
  color: var(--lime);
  font-style: normal;
  font-weight: 800;
}

.surface-rank-list b {
  color: var(--text);
}

.trainee-surface {
  grid-template-columns: minmax(0, 1.28fr) minmax(190px, 0.72fr);
  grid-template-rows: 1fr auto 0.74fr;
}

.trainee-analytics {
  display: grid;
  gap: 10px;
}

.analytics-photo {
  min-height: 132px;
}

.analytics-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(195, 244, 0, 0.16), transparent 35%),
    linear-gradient(0deg, rgba(19, 19, 19, 0.62), transparent 52%);
  pointer-events: none;
}

.analytics-photo span {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.trainee-load {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trainee-arena-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.75fr);
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(195, 244, 0, 0.06), transparent 42%),
    rgba(28, 28, 30, 0.78);
}

.macro-grid,
.revenue-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.macro-grid span,
.revenue-metrics span {
  display: grid;
  gap: 4px;
  padding: 11px 9px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.macro-grid b,
.revenue-metrics b {
  color: var(--text);
  font-size: 15px;
}

.trainee-recovery {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: center;
}

.trainee-recovery .surface-kicker,
.trainee-recovery h2 {
  grid-column: 2;
}

.recovery-ring {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 3px solid var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(195, 244, 0, 0.34);
  font-family: Sora, Inter, sans-serif;
  font-weight: 900;
}

.coach-surface {
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.coach-terminal-header {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 142, 255, 0.1), transparent 34%),
    rgba(13, 13, 13, 0.74);
}

.coach-terminal-header h2 {
  font-size: clamp(18px, 2vw, 24px);
}

.microcycle-builder,
.client-readiness,
.revenue-panel {
  min-height: 0;
}

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

.plan-column {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(142, 147, 121, 0.18);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.36);
}

.plan-column b,
.client-signal b,
.team-score b,
.live-attendance b {
  color: var(--text);
  font-size: 11px;
}

.plan-column span,
.client-signal i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--blue));
}

.plan-column small,
.client-signal span {
  color: var(--muted);
  font-size: 10px;
}

.client-readiness {
  display: grid;
  gap: 8px;
}

.client-signal {
  display: grid;
  gap: 5px;
  padding: 9px;
}

.revenue-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(220px, 0.86fr) minmax(180px, 0.72fr);
  gap: 12px;
  align-items: end;
}

.growth-chart {
  min-height: 82px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 0 40%, rgba(75, 142, 255, 0.22) 41% 43%, transparent 44%),
    radial-gradient(circle at 76% 28%, rgba(195, 244, 0, 0.12), transparent 22%),
    rgba(75, 142, 255, 0.12);
}

.gym-surface {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.gym-surface > header {
  padding: 4px 4px 0;
}

.gym-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gym-ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.7fr);
  gap: 12px;
}

.branch-table table {
  width: 100%;
  border-collapse: collapse;
}

.branch-table td {
  padding: 12px 6px;
  border-bottom: 1px solid rgba(142, 147, 121, 0.16);
  color: var(--muted);
  font-size: 12px;
}

.branch-table td:nth-child(2) {
  color: var(--green);
  font-weight: 900;
}

.branch-table tr:nth-child(3) td:nth-child(2) {
  color: var(--error);
}

.branch-table a {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-attendance {
  display: grid;
  gap: 8px;
}

.live-attendance p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
  border-left: 2px solid var(--lime);
}

.arena-surface {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.arena-product-header {
  text-align: center;
}

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

.challenge-card {
  min-height: 112px;
  display: grid;
  align-content: space-between;
}

.challenge-card > span,
.challenge-card b {
  width: fit-content;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.arena-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.arena-preview-board {
  min-height: 570px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  box-shadow: var(--shadow);
}

.arena-preview-board .challenge-row {
  grid-template-columns: 1fr;
}

.arena-preview-board .gym-vs-gym {
  min-height: 250px;
}

.gym-vs-gym {
  position: relative;
}

.gym-vs-gym img {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.gym-vs-gym > :not(img) {
  position: relative;
  z-index: 1;
}

.team-score {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding: 9px;
}

.anti-cheat ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.anti-cheat li {
  padding-left: 14px;
  border-left: 2px solid var(--lime);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ai-surface {
  grid-template-columns: minmax(210px, 0.82fr) minmax(280px, 1fr);
  /* Row 1 must be at least the .ai-photo min-height (260px); an fr-sized track could resolve
     shorter and let the photo overflow into the .ai-capabilities row below it. */
  grid-template-rows: minmax(260px, auto) minmax(0, 1fr);
  align-items: stretch;
}

.ai-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 16px 0 16px 2px;
}

.ai-copy h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.ai-copy h2 span {
  color: var(--lime);
}

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

.ai-actions span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--lime);
  color: #161e00;
  font-size: 10px;
  font-weight: 900;
}

.ai-actions span + span {
  border: 1px solid rgba(142, 147, 121, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.ai-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(142, 147, 121, 0.28);
  border-radius: var(--radius);
}

.ai-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 19, 19, 0), rgba(195, 244, 0, 0.11)),
    linear-gradient(0deg, rgba(19, 19, 19, 0.5), transparent 45%);
  pointer-events: none;
}

.ai-photo figcaption {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 1;
  width: min(190px, calc(100% - 30px));
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 4px;
  color: var(--lime);
  background: rgba(0, 0, 0, 0.86);
  font-size: 10px;
  font-weight: 900;
  transform: translateX(-50%);
}

.ai-capabilities {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
  gap: 10px;
}

.ai-surface-compact .ai-capabilities {
  grid-template-columns: repeat(2, 1fr);
}

.ai-specs div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.ai-specs b {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 5px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 0 18px rgba(195, 244, 0, 0.18);
  }
  50% {
    box-shadow: 0 0 34px rgba(195, 244, 0, 0.34);
  }
}

.button-primary,
.nav-action,
.feature-tab.is-active {
  animation: softPulse 3.8s ease-in-out infinite;
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(195, 244, 0, 0.34);
}

.status-blue {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(75, 142, 255, 0.34);
}

.status-orange {
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 184, 107, 0.34);
}

.status-green {
  background: var(--green);
  box-shadow: 0 0 18px rgba(22, 163, 74, 0.34);
}

.site-footer {
  margin-top: 112px;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.84);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 180px;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.footer-inner p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--lime);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .nav-action {
    justify-self: end;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

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

  .showcase-grid,
  .split-heading,
  .intelligence-grid,
  .photo-band,
  .arena-section,
  .commerce-section,
  .screen-hero,
  .split-detail,
  .arena-dashboard {
    grid-template-columns: 1fr;
  }

  .photo-tile-wide {
    grid-column: auto;
  }

  .feature-screens,
  .wide-media,
  .commerce-media,
  .screen-hero-media.product-surface {
    min-height: 440px;
  }

  .role-grid,
  .lab-photo-grid,
  .screen-detail-grid,
  .marketplace-products,
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arena-media-grid {
    min-height: 480px;
  }

  .coach-surface,
  .ai-surface {
    grid-template-columns: 1fr;
  }

  .revenue-panel,
  .ai-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  body {
    background-size: 48px 48px, 48px 48px, auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    min-height: auto;
    padding: 16px;
    gap: 10px;
    grid-template-columns: auto 1fr auto auto;
  }

  .brand-mark {
    font-size: 20px;
  }

  .brand-icon {
    width: 24px;
    height: 24px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--header) + 8px);
    left: 16px;
    right: 16px;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100dvh - var(--header) - 32px);
    padding: 12px;
    overflow: auto;
    border-radius: 18px;
    background: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    white-space: normal;
    padding: 12px 14px;
    font-size: 13px;
  }

  .nav-action {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .hero-section,
  .section-shell,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero-section {
    min-height: auto;
    gap: 28px;
    padding: 44px 0 20px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-lede {
    font-size: 17px;
  }

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

  .button {
    min-height: 48px;
  }

  .hero-metrics,
  .preview-strip,
  .arena-stats,
  .role-grid,
  .screen-link-grid,
  .screen-detail-grid,
  .marketplace-products,
  .governance-grid,
  .launch-section,
  .launch-signal,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .launch-section {
    margin-top: 76px;
    padding: 22px;
  }

  .preview-strip {
    margin-top: 24px;
  }

  .platform-section,
  .photo-band,
  .role-section,
  .intelligence-section,
  .arena-section,
  .commerce-section,
  .governance-section {
    padding-top: 76px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 0;
  }

  .feature-panel h3 {
    font-size: 24px;
  }

  .feature-screens,
  .wide-media,
  .commerce-media,
  .arena-media-grid,
  .screen-hero-media.product-surface {
    min-height: 360px;
  }

  .product-surface {
    padding: 12px;
  }

  .trainee-surface,
  .coach-surface,
  .gym-surface,
  .arena-surface,
  .ai-surface,
  .trainee-arena-card,
  .gym-feature-grid,
  .gym-ops-grid,
  .challenge-row,
  .arena-product-grid,
  .ai-capabilities,
  .revenue-panel {
    grid-template-columns: 1fr;
  }

  .trainee-arena-card,
  .revenue-panel,
  .ai-capabilities {
    grid-column: auto;
  }

  .microcycle-grid,
  .macro-grid,
  .revenue-metrics,
  .ai-specs div {
    grid-template-columns: repeat(2, 1fr);
  }

  .surface-rank-list {
    min-width: 0;
  }

  .ai-photo {
    min-height: 240px;
  }

  .feature-screen {
    min-height: 360px;
  }

  .screen-stage {
    min-height: 260px;
    padding: 10px;
  }

  .arena-media-grid {
    grid-template-columns: 1fr;
  }

  .lab-photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-tile,
  .photo-tile-wide,
  .lab-photo-grid figure {
    min-height: 260px;
  }

  .arena-copy,
  .commerce-copy,
  .detail-card,
  .coach-board,
  .ops-table {
    padding: 22px;
  }

  .screen-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .screen-hero-media {
    min-height: 360px;
  }

  .leaderboard-list li {
    grid-template-columns: 26px 1fr;
  }

  .leaderboard-list li b {
    grid-column: 2;
  }

  .footer-inner {
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
