/* ============================================================
   ATHRIX v2 — "Every club is a universe"
   Obsidian world · court-flame gradient · Unbounded display
   ============================================================ */

:root {
  /* World */
  --void: #05060a;
  --void-2: #0a0c14;
  --void-3: #10131f;
  --ivory: #f4f1ea;
  --ivory-dim: #b8b6ae;
  --ivory-mute: #7d7c76;

  /* Court flame */
  --flame-1: #ff5a3c;
  --flame-2: #ff2e9a;
  --flame-3: #7b2eff;
  --plasma: #4de8ff;

  --gradient-flame: linear-gradient(100deg, var(--flame-1), var(--flame-2) 48%, var(--flame-3));

  --hairline: rgba(244, 241, 234, 0.1);
  --hairline-soft: rgba(244, 241, 234, 0.05);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Google Sans Code", ui-monospace, monospace;

  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--flame-2); color: var(--void); }

img, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.v2-container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -100%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: v2-grain 7s steps(9) infinite;
}

@keyframes v2-grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
}

/* ---------- Typography ---------- */

.v2-display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  /* capped against viewport height too, so 3 hero lines + lede + CTAs
     always fit inside 100svh on short/wide screens */
  font-size: clamp(38px, min(6.4vw, 8.6vh), 92px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.v2-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.v2-serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  background: var(--gradient-flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* serif sits smaller than Unbounded caps at same size — bump it */
  font-size: 1.12em;
}

.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.v2-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gradient-flame);
}

.v2-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */

.v2-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo);
  will-change: transform;
}

.v2-btn-flame {
  background: var(--gradient-flame);
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 46, 154, 0);
}

.v2-btn-flame:hover {
  box-shadow: 0 12px 48px -8px rgba(255, 46, 154, 0.55);
}

.v2-btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(8px);
}

.v2-btn-ghost:hover { border-color: rgba(244, 241, 234, 0.3); }

/* ---------- Nav ---------- */

.v2-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.v2-nav.is-scrolled {
  background: rgba(5, 6, 10, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline-soft);
}

.v2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.v2-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.v2-logo img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255, 90, 60, 0.35));
}

.v2-nav-links { display: flex; gap: 6px; }

.v2-nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ivory-dim);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.v2-nav-links a:hover { color: var(--ivory); background: rgba(244, 241, 234, 0.06); }

.v2-nav .v2-btn { height: 44px; padding: 0 24px; font-size: 14px; }

/* ---------- Hero ---------- */

.v2-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* soft radial vignettes over the 3D */
.v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(95deg, rgba(5, 6, 10, 0.85) 10%, rgba(5, 6, 10, 0.45) 42%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 72% 38%, rgba(123, 46, 255, 0.12), transparent 70%),
    radial-gradient(ellipse 80% 70% at 50% 112%, rgba(5, 6, 10, 0.95), transparent 60%);
}

.v2-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  /* clear the fixed nav above and the marquee bar below */
  padding-top: 118px;
  padding-bottom: 132px;
}

.v2-hero .v2-eyebrow { margin-bottom: 28px; }

.v2-hero h1 { max-width: 12ch; margin-bottom: 28px; }

.v2-hero h1 .line {
  display: block;
  overflow: hidden;
}

.v2-hero h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: v2-rise 1.1s var(--ease-expo) forwards;
}

.v2-hero h1 .line:nth-child(2) span { animation-delay: 0.12s; }
.v2-hero h1 .line:nth-child(3) span { animation-delay: 0.24s; }

@keyframes v2-rise { to { transform: translateY(0); } }

.v2-hero .v2-lede { margin-bottom: 38px; max-width: 44ch; }

.v2-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.v2-hero-scroll {
  position: absolute;
  bottom: 108px;
  right: 28px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}

.v2-hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--flame-2), transparent);
  animation: v2-drip 2.2s ease-in-out infinite;
}

@keyframes v2-drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ticker ---------- */

.v2-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid var(--hairline-soft);
  background: rgba(5, 6, 10, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 18px 0;
}

.v2-marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: v2-marquee 28s linear infinite;
}

.v2-marquee span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}

.v2-marquee span::after {
  content: "✦";
  color: var(--flame-2);
  font-size: 11px;
}

@keyframes v2-marquee { to { transform: translateX(-50%); } }

/* ---------- Story (video scrub) ---------- */

.v2-story { position: relative; height: 420vh; }

.v2-story-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.v2-story-media { position: absolute; inset: 0; }

.v2-story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* pull the white footage into the obsidian world */
  filter: saturate(1.25) contrast(1.08);
}

.v2-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(5, 6, 10, 0.72) 8%, rgba(5, 6, 10, 0.3) 42%, transparent 64%),
    linear-gradient(rgba(5, 6, 10, 0.58), rgba(5, 6, 10, 0.58)),
    radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, var(--void) 100%);
}

/* the sticky is a flex row and the stages are absolutely positioned,
   so both wrappers need explicit width or they collapse to zero */
.v2-story-sticky .v2-container { width: 100%; }

.v2-story-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  min-height: 380px;
}

.v2-story-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
  pointer-events: none;
}

.v2-story-stage.is-active { opacity: 1; transform: translateY(0); }

.v2-story-stage .v2-eyebrow { margin-bottom: 24px; }
.v2-story-stage h2 { margin-bottom: 22px; }
.v2-story-stage p { color: var(--ivory-dim); max-width: 46ch; font-size: 17px; line-height: 1.7; }

.v2-story-progress {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.v2-story-progress span {
  width: 40px;
  height: 2px;
  background: var(--hairline);
  transition: background-color 0.3s ease;
}

.v2-story-progress span.is-active { background: var(--flame-2); box-shadow: 0 0 12px rgba(255, 46, 154, 0.8); }

/* ---------- Systems grid ---------- */

.v2-section { padding: 150px 0; position: relative; }

.v2-section-head { max-width: 800px; margin-bottom: 80px; }
.v2-section-head .v2-eyebrow { margin-bottom: 26px; }
.v2-section-head .v2-lede { margin-top: 24px; }

.v2-sys-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
}

.v2-sys-card {
  position: relative;
  background: var(--void);
  padding: 44px 36px 52px;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.v2-sys-card:hover { background: var(--void-2); }

.v2-sys-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--gradient-flame);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-expo);
}

.v2-sys-card:hover::before { transform: scaleX(1); }

.v2-sys-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--flame-2);
  display: block;
  margin-bottom: 52px;
}

.v2-sys-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.v2-sys-card p { font-size: 15px; color: var(--ivory-dim); line-height: 1.65; }

/* ---------- Athlete interlude ---------- */

.v2-athlete {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.v2-athlete img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 20%;
  /* duotone: obsidian shadows, flame highlights */
  filter: grayscale(1) contrast(1.15) brightness(0.8);
}

.v2-athlete::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, var(--void) 18%, rgba(5, 6, 10, 0.62) 50%, rgba(123, 46, 255, 0.28)),
    linear-gradient(rgba(255, 46, 154, 0.12), rgba(5, 6, 10, 0.4));
  mix-blend-mode: normal;
}

.v2-athlete-content { position: relative; z-index: 2; max-width: 700px; }

.v2-athlete-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.18;
  margin: 26px 0 30px;
}

.v2-athlete-content blockquote em {
  font-style: italic;
  background: var(--gradient-flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.v2-athlete-content cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}

/* ---------- App orbit ---------- */

.v2-app { background: var(--void-2); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }

.v2-app-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.v2-app-copy .v2-eyebrow { margin-bottom: 26px; }
.v2-app-copy h2 { margin-bottom: 22px; }
.v2-app-copy .v2-lede { margin-bottom: 38px; }

.v2-store-row { display: flex; gap: 14px; flex-wrap: wrap; }

.v2-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  background: rgba(244, 241, 234, 0.04);
  transition: border-color 0.3s ease, transform 0.5s var(--ease-expo);
}

.v2-store-btn:hover { border-color: rgba(244, 241, 234, 0.35); transform: translateY(-2px); }
.v2-store-btn img { height: 24px; width: 24px; object-fit: contain; }
.v2-store-btn .invert { filter: brightness(0) invert(1); }
.v2-store-btn small { display: block; font-size: 10.5px; color: var(--ivory-mute); line-height: 1.2; }
.v2-store-btn strong { display: block; font-size: 14.5px; line-height: 1.3; }

.v2-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  perspective: 1200px;
}

.v2-phones img {
  width: 220px;
  border-radius: 28px;
  border: 1px solid var(--hairline);
  box-shadow: 0 48px 90px -40px rgba(0, 0, 0, 0.9), 0 0 80px -30px rgba(123, 46, 255, 0.4);
  transition: transform 0.8s var(--ease-expo);
}

.v2-phones img:nth-child(1) { transform: rotateY(14deg) translateY(28px); }
.v2-phones img:nth-child(2) { z-index: 1; transform: translateY(-12px) scale(1.06); }
.v2-phones img:nth-child(3) { transform: rotateY(-14deg) translateY(28px); }

.v2-phones:hover img { transform: none; }

/* ---------- Roles orbit ---------- */

.v2-orbit-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas:
    "directors hub coaches"
    ". parents .";
  align-items: center;
  gap: 56px 64px;
}

.v2-role-directors { grid-area: directors; justify-self: end; }
.v2-role-coaches { grid-area: coaches; }
.v2-role-parents { grid-area: parents; justify-self: center; }

.v2-orbit-hub {
  grid-area: hub;
  position: relative;
  width: 320px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-orbit-hub::before,
.v2-orbit-hub::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  animation: v2-spin 26s linear infinite;
}

.v2-orbit-hub::after {
  inset: -48px;
  border-color: var(--hairline-soft);
  border-style: dashed;
  animation-duration: 60s;
  animation-direction: reverse;
}

@keyframes v2-spin { to { transform: rotate(360deg); } }

.v2-orbit-core {
  width: 216px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 90, 60, 0.22), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(123, 46, 255, 0.25), transparent 55%),
    var(--void-3);
  border: 1px solid var(--hairline);
  box-shadow: 0 0 90px -30px rgba(255, 46, 154, 0.5);
}

.v2-orbit-core strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.v2-orbit-core span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  max-width: 17ch;
}

.v2-role-card {
  max-width: 330px;
  padding: 28px;
  border: 1px solid var(--hairline-soft);
  border-radius: 20px;
  background: rgba(244, 241, 234, 0.025);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, transform 0.5s var(--ease-expo);
}

.v2-role-card:hover { border-color: var(--hairline); transform: translateY(-4px); }

.v2-role-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.v2-role-card p { font-size: 14.5px; color: var(--ivory-dim); }

/* ---------- Anatomy (annotated exploded ball) ---------- */

.v2-anatomy-stage {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, 0.9), 0 0 110px -50px rgba(123, 46, 255, 0.35);
}

.v2-anatomy-stage img { width: 100%; display: block; }

.v2-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-hotspot i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  color: var(--ivory);
  border: 1px solid rgba(244, 241, 234, 0.3);
  transition: transform 0.4s var(--ease-expo), background 0.3s ease;
}

.v2-hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 154, 0.65);
  animation: v2-pulse 2.4s ease-out infinite;
}

@keyframes v2-pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.v2-hotspot:hover i,
.v2-hotspot.is-active i {
  background: var(--gradient-flame);
  transform: scale(1.12);
  border-color: transparent;
}

.v2-anatomy-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.v2-anatomy-item {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 20px;
  transition: border-color 0.3s ease;
}

.v2-anatomy-item.is-active { border-top-color: var(--flame-2); }

.v2-anatomy-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flame-2);
  margin-bottom: 12px;
}

.v2-anatomy-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.v2-anatomy-item p { font-size: 14px; color: var(--ivory-dim); line-height: 1.65; }

/* ---------- Film ---------- */

.v2-film-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, 0.9), 0 0 110px -50px rgba(255, 46, 154, 0.3);
  aspect-ratio: 16 / 9;
  background: var(--void-2);
}

.v2-film-frame video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA ---------- */

.v2-cta {
  position: relative;
  padding: 190px 0;
  text-align: center;
  overflow: hidden;
}

.v2-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 120px;
  background: linear-gradient(var(--flame-2), transparent);
}

.v2-cta::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 90%;
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(123, 46, 255, 0.22), transparent 65%);
  pointer-events: none;
}

.v2-cta .v2-eyebrow { justify-content: center; margin-bottom: 30px; }
.v2-cta .v2-eyebrow::before { display: none; }
.v2-cta h2 { max-width: 17ch; margin: 0 auto 26px; }
.v2-cta .v2-lede { margin: 0 auto 46px; }
.v2-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Footer ---------- */

.v2-footer {
  border-top: 1px solid var(--hairline-soft);
  padding: 44px 0;
}

.v2-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.v2-footer p { font-size: 13.5px; color: var(--ivory-mute); }

.v2-footer-links { display: flex; gap: 26px; }

.v2-footer-links a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  transition: color 0.2s ease;
}

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

/* ---------- Demo page ---------- */

.v2-demo { padding: 176px 0 130px; min-height: 100svh; position: relative; }

.v2-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 45% 40% at 82% 8%, rgba(123, 46, 255, 0.14), transparent 70%);
}

.v2-demo-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: start;
}

.v2-demo-intro .v2-eyebrow { margin-bottom: 26px; }
.v2-demo-intro h1 { margin-bottom: 24px; }
.v2-demo-intro .v2-lede { margin-bottom: 52px; }

.v2-demo-point {
  border-top: 1px solid var(--hairline-soft);
  padding: 24px 0;
  display: flex;
  gap: 22px;
  align-items: baseline;
}

.v2-demo-point strong {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--flame-2);
  letter-spacing: 0.2em;
}

.v2-demo-point h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.v2-demo-point p { font-size: 14.5px; color: var(--ivory-dim); }

.v2-demo-alt { margin-top: 40px; font-size: 14.5px; color: var(--ivory-mute); }
.v2-demo-alt a {
  color: var(--ivory);
  font-weight: 550;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form card */

.v2-form-card {
  background: var(--void-2);
  border: 1px solid var(--hairline-soft);
  border-radius: 26px;
  padding: 46px 42px;
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, 0.9), 0 0 90px -50px rgba(255, 46, 154, 0.35);
}

.v2-form-card h2 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.v2-form-card > form > p { font-size: 14.5px; color: var(--ivory-dim); margin-bottom: 30px; }

.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.v2-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

.v2-field span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}

.v2-field input,
.v2-field select,
.v2-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ivory);
  background: var(--void-3);
  border: 1px solid var(--hairline-soft);
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
}

.v2-field input::placeholder,
.v2-field textarea::placeholder { color: var(--ivory-mute); }

.v2-field textarea { resize: vertical; min-height: 92px; }

.v2-field input:focus,
.v2-field select:focus,
.v2-field textarea:focus {
  border-color: var(--flame-2);
  box-shadow: 0 0 0 3px rgba(255, 46, 154, 0.18);
}

.v2-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%237d7c76' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.v2-form-card .v2-btn { width: 100%; margin-top: 8px; }

.v2-form-note { margin-top: 16px; font-size: 13px; color: var(--ivory-mute); text-align: center; }
.v2-form-note.is-error { color: var(--flame-1); }

.v2-field-hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.v2-form-success { display: none; text-align: center; padding: 48px 12px; }
.v2-form-card.is-submitted form { display: none; }
.v2-form-card.is-submitted .v2-form-success { display: block; }

.v2-form-success-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-flame);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 0 50px -10px rgba(255, 46, 154, 0.7);
}

.v2-form-success h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.v2-form-success p { font-size: 15px; color: var(--ivory-dim); max-width: 40ch; margin: 0 auto; }

/* Booking calendar */

.v2-cal {
  border: 1px solid var(--hairline-soft);
  border-radius: 18px;
  background: var(--void-3);
  padding: 20px;
  margin-bottom: 24px;
}

.v2-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.v2-cal-head strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.v2-cal-head button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ivory);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.v2-cal-head button:hover:not(:disabled) { background: rgba(244, 241, 234, 0.07); }
.v2-cal-head button:disabled { opacity: 0.3; cursor: default; }

.v2-cal-weekdays,
.v2-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.v2-cal-weekdays span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  text-align: center;
  padding-bottom: 6px;
}

.v2-cal-grid button,
.v2-cal-grid span {
  aspect-ratio: 1;
  min-height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
}

.v2-cal-grid button {
  border: none;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.15s ease;
}

.v2-cal-grid button:hover:not(:disabled) { background: rgba(244, 241, 234, 0.08); }
.v2-cal-grid button:disabled { color: var(--ivory-mute); opacity: 0.3; cursor: default; }

.v2-cal-grid button.is-selected {
  background: var(--gradient-flame);
  color: #fff;
  box-shadow: 0 0 24px -6px rgba(255, 46, 154, 0.8);
}

.v2-slot-block { margin-top: 16px; }

.v2-slot-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 10px;
}

.v2-slot-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

.v2-slot-row button {
  padding: 10px 0;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 550;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.v2-slot-row button:hover { border-color: rgba(244, 241, 234, 0.4); }

.v2-slot-row button.is-selected {
  background: var(--gradient-flame);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 24px -6px rgba(255, 46, 154, 0.7);
}

.v2-cal-hint { margin-top: 14px; font-size: 13px; color: var(--ivory-dim); text-align: center; }

/* ---------- Legal pages ---------- */

.v2-legal { padding: 176px 0 110px; }
.v2-legal-head { max-width: 800px; margin-bottom: 26px; }
.v2-legal-head .v2-eyebrow { margin-bottom: 26px; }
.v2-legal-head h1 { margin-bottom: 24px; }
.v2-legal-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 70px; }

.v2-chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.v2-prose { max-width: 800px; }

.v2-prose section {
  border-top: 1px solid var(--hairline-soft);
  padding: 38px 0;
}

.v2-prose h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.v2-prose p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ivory-dim);
  margin-bottom: 14px;
}

.v2-prose p:last-child { margin-bottom: 0; }

.v2-prose a {
  color: var(--ivory);
  font-weight: 550;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v2-prose ol {
  margin: 0 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-prose ol li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ivory-dim);
  padding-left: 6px;
}

.v2-prose ol li::marker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--flame-2);
}

.v2-prose-callout {
  margin-top: 22px;
  border: 1px solid var(--hairline-soft);
  border-radius: 20px;
  background: var(--void-2);
  padding: 30px;
}

.v2-prose-callout h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 10px;
}

.v2-prose-callout > p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 22px;
}

.v2-callout-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Cursor glow (fine pointers only) ---------- */

.v2-cursor {
  position: fixed;
  z-index: 95;
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 46, 154, 0.07), transparent 60%);
  transition: opacity 0.4s ease;
  opacity: 0;
}

@media (pointer: fine) { .v2-cursor { opacity: 1; } }

/* ---------- Reveals ---------- */

.v2-reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
}

.v2-reveal.in-view { opacity: 1; transform: none; }
.v2-reveal[data-delay="1"] { transition-delay: 0.1s; }
.v2-reveal[data-delay="2"] { transition-delay: 0.2s; }
.v2-reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .v2-reveal, .v2-story-stage { transition: opacity 0.3s ease; transform: none; }
  .v2-reveal { opacity: 1; }
  .v2-hero h1 .line span { animation: none; transform: none; }
  .v2-marquee-track { animation: none; }
  .v2-orbit-hub::before, .v2-orbit-hub::after { animation: none; }
  .v2-hero-scroll::after { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .v2-sys-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-anatomy-legend { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-app-grid { grid-template-columns: 1fr; }
  .v2-orbit-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "hub" "directors" "coaches" "parents";
    justify-items: center;
  }
  .v2-role-directors { justify-self: center; }
  .v2-role-card { max-width: 480px; width: 100%; }
}

@media (max-width: 900px) { .v2-nav-links { display: none; } }

@media (max-width: 1080px) and (min-width: 681px) {
  .v2-demo-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 680px) {
  .v2-section { padding: 100px 0; }
  .v2-demo { padding: 130px 0 90px; }
  .v2-anatomy-legend { grid-template-columns: 1fr; gap: 24px; }
  .v2-hotspot { width: 36px; height: 36px; }
  .v2-hotspot i { width: 26px; height: 26px; font-size: 10px; }
  .v2-demo-grid { grid-template-columns: 1fr; gap: 52px; }
  .v2-form-card { padding: 32px 24px; }
  .v2-form-row { grid-template-columns: 1fr; gap: 0; }
  .v2-slot-row { grid-template-columns: repeat(2, 1fr); }
  .v2-cal { padding: 14px; }
  .v2-legal { padding: 130px 0 80px; }
  .v2-sys-grid { grid-template-columns: 1fr; }
  .v2-phones img { width: 30vw; }
  .v2-hero-scroll { display: none; }
  .v2-orbit-hub { width: 260px; }
  .v2-orbit-core { width: 180px; }
  .v2-story-copy { min-height: 420px; }
}
