:root {
  --bg: #07111f;
  --bg-soft: #0d1828;
  --surface: rgba(13, 24, 40, 0.72);
  --surface-strong: rgba(18, 34, 58, 0.92);
  --surface-lite: rgba(255, 255, 255, 0.08);
  --text: #eff4ff;
  --muted: #9eb0c9;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #67e8f9;
  --violet: #b794f6;
  --orange: #f97316;
  --lime: #6ee7b7;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(103, 232, 249, 0.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(183, 148, 246, 0.14), transparent 26%),
    radial-gradient(circle at 68% 78%, rgba(249, 115, 22, 0.12), transparent 26%),
    linear-gradient(180deg, #050d18 0%, #081220 55%, #091321 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

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

button,
input,
select {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
}

.glow-left {
  top: -10rem;
  left: -8rem;
  background: rgba(103, 232, 249, 0.2);
}

.glow-right {
  right: -10rem;
  top: 12rem;
  background: rgba(183, 148, 246, 0.22);
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 60px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  position: sticky;
  top: 16px;
  z-index: 10;
  background: rgba(7, 17, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(103, 232, 249, 0.18), rgba(183, 148, 246, 0.18)),
    linear-gradient(135deg, #102036, #162844);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.nav a,
.button,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small,
.nav a,
.hero-text,
.hero-proof span,
.discipline-card span,
.program-card p,
.program-card li,
.format-card p,
.results-list p,
.quote-meta span,
.join-copy p,
.form-note {
  color: var(--muted);
}

.brand-copy small {
  font-size: 0.8rem;
}

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

.nav a {
  font-size: 0.93rem;
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.28) 38%, transparent 56%);
  transform: translateX(-135%);
  animation: buttonSheen 5.2s ease-in-out infinite;
  pointer-events: none;
}

.button-solid {
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: white;
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.25);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 52px;
  align-items: start;
  padding: 72px 0 28px;
}

.eyebrow,
.micro-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--cyan);
  margin-bottom: 16px;
}

.micro-label {
  color: var(--lime);
}

h1,
h2,
h3,
blockquote {
  margin: 0;
}

h1 {
  font-size: clamp(2.9rem, 5.6vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 8.5ch;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 48ch;
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

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

.hero-proof div,
.discipline-card,
.program-card,
.format-card,
.ai-points article,
.results-panel,
.quote-card,
.join-form {
  background: linear-gradient(180deg, rgba(16, 29, 48, 0.82), rgba(10, 19, 33, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-proof div {
  padding: 18px;
  border-radius: 22px;
  animation: proofFloat 8s ease-in-out infinite;
}

.hero-proof div:nth-child(2) {
  animation-delay: -2.2s;
}

.hero-proof div:nth-child(3) {
  animation-delay: -4.4s;
}

.hero-proof div::before,
.discipline-card::before,
.program-card::before,
.ai-points article::before,
.results-panel::before,
.quote-card::before,
.join-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      180px circle at var(--pointer-x, 18%) var(--pointer-y, 18%),
      rgba(103, 232, 249, 0.16),
      transparent 55%
    ),
    radial-gradient(140px circle at 88% 16%, rgba(183, 148, 246, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.hero-proof div::after,
.discipline-card::after,
.program-card::after,
.format-card::after,
.ai-points article::after,
.results-panel::after,
.quote-card::after,
.join-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(103, 232, 249, 0.2), transparent 28%, transparent 72%, rgba(249, 115, 22, 0.18))
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
  z-index: 0;
}

.hero-proof div > *,
.discipline-card > *,
.program-card > *,
.format-card > *,
.ai-points article > *,
.results-panel > *,
.quote-card > *,
.join-form > * {
  position: relative;
  z-index: 1;
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-stage {
  position: relative;
  min-height: 930px;
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.stage-backdrop {
  position: absolute;
  inset: 40px 18px 18px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 22%, rgba(103, 232, 249, 0.14), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(183, 148, 246, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(16, 31, 51, 0.95), rgba(9, 17, 30, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-grid,
.stage-beam,
.stage-scanline,
.stage-ring,
.stage-spark,
.stage-particle {
  position: absolute;
}

.stage-grid {
  inset: 40px 18px 18px 18px;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
}

.stage-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: floatSpin 24s linear infinite;
}

.stage-beam {
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: beamFloat 7s ease-in-out infinite;
}

.beam-one {
  top: 106px;
  right: 78px;
  width: 180px;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.9), transparent);
}

.beam-two {
  left: 48px;
  bottom: 112px;
  width: 210px;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.85), transparent);
  animation-delay: -2.8s;
}

.stage-scanline {
  inset: 40px 18px 18px 18px;
  border-radius: 34px;
  overflow: hidden;
}

.stage-scanline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(103, 232, 249, 0.12) 48%, transparent 100%);
  transform: translateY(-100%);
  animation: scanStage 5.8s linear infinite;
}

.ring-one {
  width: 380px;
  height: 380px;
  top: 10px;
  right: 38px;
}

.ring-two {
  width: 520px;
  height: 520px;
  bottom: 16px;
  left: -32px;
  animation-duration: 30s;
  animation-direction: reverse;
}

.stage-spark {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.8;
  animation: pulseGlow 6s ease-in-out infinite;
}

.spark-one {
  top: 120px;
  left: 44px;
  background: rgba(103, 232, 249, 0.22);
}

.spark-two {
  right: 38px;
  bottom: 88px;
  background: rgba(249, 115, 22, 0.22);
  animation-delay: -2.5s;
}

.stage-particle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(103, 232, 249, 0.2));
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.45);
  opacity: 0.85;
  animation: particleDrift 11s linear infinite;
}

.particle-a {
  top: 132px;
  left: 80px;
}

.particle-b {
  top: 88px;
  right: 112px;
  width: 10px;
  height: 10px;
  animation-duration: 13s;
  animation-delay: -1.7s;
}

.particle-c {
  bottom: 164px;
  left: 196px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(249, 115, 22, 0.22));
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.42);
  animation-duration: 12s;
  animation-delay: -4.2s;
}

.particle-d {
  right: 164px;
  bottom: 118px;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(183, 148, 246, 0.22));
  box-shadow: 0 0 16px rgba(183, 148, 246, 0.42);
  animation-duration: 14s;
  animation-delay: -5.6s;
}

.stage-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.card-main {
  top: 72px;
  left: 0;
  width: calc(100% - 244px);
  max-width: 440px;
  padding: 24px;
  animation: cardFloat 7s ease-in-out infinite;
  z-index: 2;
}

.card-main h2 {
  margin: 12px 0 14px;
  max-width: 9.5ch;
  font-size: clamp(1.85rem, 2.8vw, 2.9rem);
  line-height: 1.04;
}

.card-main p {
  line-height: 1.7;
  font-size: 0.98rem;
  max-width: 34ch;
}

.motion-graphic {
  position: relative;
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.motion-graphic::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.08), transparent 42%, rgba(183, 148, 246, 0.08));
  animation: graphicShift 8s ease-in-out infinite;
}

.motion-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.08) 40%, transparent 56%);
  transform: translateX(-130%);
  animation: graphicSweep 6s ease-in-out infinite;
}

.motion-graphic svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.flow-line {
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: drawLine 2.8s ease forwards 0.45s;
}

.trail-line {
  opacity: 0.65;
  animation: trailPulse 3.8s ease-in-out infinite;
}

.glow-node {
  filter: drop-shadow(0 0 10px currentColor);
  animation: pulseNode 3s ease-in-out infinite;
}

.tiny-node {
  animation: tinyNodeDrift 4.2s ease-in-out infinite;
}

.node-two {
  animation-delay: -1.5s;
}

.gym-figure {
  transform-origin: 264px 180px;
  animation: figureFloat 6s ease-in-out infinite;
}

.card-side {
  top: 348px;
  right: 0;
  bottom: auto;
  width: 212px;
  padding: 20px;
  animation: cardFloat 8s ease-in-out infinite -1.8s;
  z-index: 2;
}

.stat-stack {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.stat-stack div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-stack span,
.floating-note span,
.ticker span,
.step-number {
  color: var(--muted);
  font-size: 0.84rem;
}

.stat-stack strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.floating-note {
  position: absolute;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-note strong {
  display: block;
  margin-top: 8px;
  line-height: 1.45;
}

.note-top {
  top: 22px;
  left: 220px;
}

.note-bottom {
  left: 0;
  bottom: 24px;
  max-width: 320px;
  z-index: 2;
}

.ticker {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  padding: 16px 24px;
  min-width: max-content;
  animation: slideTrack 18s linear infinite;
}

.ticker span::before {
  content: "+";
  color: var(--orange);
  margin-right: 10px;
}

.discipline-grid,
.program-grid,
.format-grid,
.ai-layout,
.results-layout,
.join-section {
  display: grid;
  gap: 24px;
}

.discipline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.discipline-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.discipline-card:hover,
.discipline-card.active {
  transform: translateY(-8px);
  border-color: rgba(103, 232, 249, 0.24);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.discipline-card.active {
  animation: activeCardPulse 2.8s ease-in-out infinite;
}

.hero-proof div:hover::after,
.discipline-card:hover::after,
.program-card:hover::after,
.format-card:hover::after,
.ai-points article:hover::after,
.results-panel:hover::after,
.quote-card:hover::after,
.join-form:hover::after {
  opacity: 1;
}

.discipline-card h3 {
  margin: 14px 0 12px;
  font-size: 1.18rem;
}

.section {
  padding-top: 92px;
}

.section-heading {
  margin-bottom: 30px;
  position: relative;
  max-width: 760px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(183, 148, 246, 0.65), transparent);
  animation: sectionLine 5s ease-in-out infinite;
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-card,
.format-card,
.results-panel,
.quote-card,
.join-form {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.program-card,
.format-card,
.ai-points article,
.results-panel,
.quote-card,
.join-form,
.hero-proof div {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.program-card {
  animation: contentFloat 9s ease-in-out infinite;
}

.program-card:nth-child(2) {
  animation-delay: -2.4s;
}

.program-card:nth-child(3) {
  animation-delay: -4.8s;
}

.format-card {
  animation: contentFloat 8.5s ease-in-out infinite;
}

.format-card:nth-child(2) {
  animation-delay: -1.8s;
}

.format-card:nth-child(3) {
  animation-delay: -3.6s;
}

.program-card:hover,
.format-card:hover,
.ai-points article:hover,
.results-panel:hover,
.quote-card:hover,
.join-form:hover,
.hero-proof div:hover {
  animation: none;
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.program-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.program-card li + li {
  margin-top: 10px;
}

.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-card {
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--orange));
  border-radius: 999px;
  background-size: 200% 100%;
  animation: lineTravel 4.4s linear infinite;
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
}

.ai-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.ai-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.ai-points article {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 29, 48, 0.82), rgba(10, 19, 33, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.ai-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.ai-points p,
.ai-caption span {
  color: var(--muted);
  line-height: 1.75;
}

.ai-visual {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16, 29, 48, 0.82), rgba(10, 19, 33, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.ai-screen {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(103, 232, 249, 0.16), transparent 22%),
    radial-gradient(circle at 78% 20%, rgba(183, 148, 246, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(10, 22, 36, 0.96), rgba(5, 15, 26, 0.96));
}

.ai-grid,
.ai-radar,
.ai-orbit,
.ai-point {
  position: absolute;
}

.ai-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 100%);
}

.ai-radar {
  width: 380px;
  height: 380px;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-radar::before,
.ai-radar::after {
  content: "";
  position: absolute;
  inset: 16% 16%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-radar::after {
  inset: 32% 32%;
}

.ai-radar::before {
  box-shadow: 0 0 120px rgba(103, 232, 249, 0.08);
}

.ai-radar::after {
  box-shadow: 0 0 100px rgba(183, 148, 246, 0.08);
}

.ai-radar::before,
.ai-radar::after {
  pointer-events: none;
}

.ai-radar::after,
.ai-radar::before {
  z-index: 1;
}

.ai-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(103, 232, 249, 0.24) 42deg, transparent 84deg);
  animation: radarSweep 5s linear infinite;
  transform-origin: center;
  mix-blend-mode: screen;
  pointer-events: none;
}

.ai-orbit {
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  animation: floatSpin 20s linear infinite;
}

.orbit-a {
  width: 250px;
  height: 250px;
  left: 74px;
  top: 62px;
}

.orbit-b {
  width: 180px;
  height: 180px;
  right: 72px;
  bottom: 128px;
  animation-direction: reverse;
  animation-duration: 16s;
}

.ai-point {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.6);
  animation: pulseNode 3s ease-in-out infinite;
}

.point-a {
  top: 120px;
  left: 146px;
}

.point-b {
  top: 212px;
  right: 132px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.6);
}

.point-c {
  bottom: 164px;
  left: 220px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(110, 231, 183, 0.56);
}

.ai-panel,
.ai-caption {
  position: absolute;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.ai-panel {
  top: 26px;
  right: 22px;
  width: 250px;
  padding: 18px;
  z-index: 2;
}

.ai-panel strong,
.ai-caption strong {
  display: block;
  margin-top: 8px;
  line-height: 1.45;
}

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

.ai-bars div {
  display: grid;
  gap: 8px;
}

.ai-bars span {
  font-size: 0.88rem;
  color: var(--muted);
}

.ai-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(103, 232, 249, 0.95), rgba(183, 148, 246, 0.9), rgba(249, 115, 22, 0.9));
  animation: barsLoad 4.2s ease-in-out infinite;
  transform-origin: left center;
}

.ai-bars div:nth-child(2) i {
  animation-delay: -1.1s;
}

.ai-bars div:nth-child(3) i {
  animation-delay: -2.1s;
}

.ai-caption {
  left: 22px;
  right: 22px;
  bottom: 24px;
  padding: 18px 20px;
  z-index: 2;
}

.results-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.results-list {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.results-list article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.results-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.results-list strong,
.quote-meta strong {
  font-size: 1.08rem;
}

.quote-card {
  background:
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(23, 34, 54, 0.92), rgba(11, 21, 36, 0.96));
}

blockquote {
  margin: 20px 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-family: "Sora", sans-serif;
}

.join-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
}

.join-form {
  display: grid;
  gap: 16px;
}

.join-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.join-form input,
.join-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.join-form input:focus,
.join-form select:focus {
  border-color: rgba(103, 232, 249, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.form-note {
  margin: 0;
  line-height: 1.7;
}

.is-submitted {
  color: var(--lime);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@keyframes buttonSheen {
  0%,
  78%,
  100% {
    transform: translateX(-135%);
  }

  18%,
  28% {
    transform: translateX(135%);
  }
}

@keyframes beamFloat {
  0%,
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.5;
  }

  50% {
    transform: translateX(14px) scaleX(1.08);
    opacity: 0.92;
  }
}

@keyframes proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes trailPulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.92;
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(0.9);
  }

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

@keyframes particlePulse {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 10px rgba(103, 232, 249, 0.32);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.58);
  }
}

@keyframes particleDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.55;
  }

  25% {
    transform: translate3d(18px, -20px, 0) scale(1.15);
    opacity: 0.9;
  }

  50% {
    transform: translate3d(-10px, -34px, 0) scale(1);
    opacity: 1;
  }

  75% {
    transform: translate3d(-20px, -12px, 0) scale(1.18);
    opacity: 0.85;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.55;
  }
}

@keyframes tinyNodeDrift {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-6px) scale(1.18);
    opacity: 1;
  }
}

@keyframes figureFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes activeCardPulse {
  0%,
  100% {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  }

  50% {
    box-shadow:
      0 34px 80px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(103, 232, 249, 0.2) inset;
  }
}

@keyframes contentFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes graphicShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.05) rotate(3deg);
    opacity: 0.95;
  }
}

@keyframes graphicSweep {
  0% {
    transform: translateX(-130%);
  }

  45%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes scanStage {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes barsLoad {
  0%,
  100% {
    transform: scaleX(0.62);
    opacity: 0.72;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes lineTravel {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes sectionLine {
  0%,
  100% {
    width: 120px;
    opacity: 0.82;
  }

  50% {
    width: 168px;
    opacity: 1;
  }
}

@keyframes slideTrack {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33%);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero,
  .program-grid,
  .format-grid,
  .ai-layout,
  .results-layout,
  .join-section,
  .discipline-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 840px;
  }

  .ai-screen {
    min-height: 460px;
  }
}

@media (max-width: 920px) {
  .hero-stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
  }

  .stage-backdrop,
  .stage-grid,
  .stage-scanline {
    inset: 0;
    bottom: 0;
    border-radius: 28px;
  }

  .stage-ring,
  .stage-beam,
  .stage-spark,
  .stage-particle {
    opacity: 0.7;
  }

  .card-main,
  .card-side,
  .note-bottom {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    animation: none;
  }

  .card-main {
    margin-top: 34px;
  }

  .card-side {
    width: min(100%, 320px);
    align-self: flex-end;
  }

  .note-bottom {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
    position: static;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.9rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero {
    padding-top: 40px;
  }

  .hero-stage {
    padding-top: 18px;
  }

  .beam-one {
    right: 24px;
    width: 140px;
  }

  .beam-two {
    left: 20px;
    width: 160px;
  }

  .card-main {
    margin-top: 28px;
  }

  .card-side {
    width: 100%;
    align-self: stretch;
  }

  .note-top,
  .note-bottom {
    max-width: none;
  }

  .ring-one {
    width: 260px;
    height: 260px;
    right: 12px;
  }

  .ring-two {
    width: 360px;
    height: 360px;
    left: -48px;
  }

  .ai-panel {
    right: 16px;
    left: 16px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 16px), var(--max-width));
    padding-top: 14px;
  }

  .topbar {
    padding: 14px;
    gap: 14px;
  }

  .hero-proof div:hover,
  .discipline-card:hover,
  .program-card:hover,
  .format-card:hover,
  .ai-points article:hover,
  .results-panel:hover,
  .quote-card:hover,
  .join-form:hover {
    transform: none;
  }

  .brand {
    width: 100%;
  }

  .button-ghost {
    width: 100%;
  }

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

  .hero-stage {
    padding-top: 14px;
  }

  .stage-backdrop,
  .stage-grid,
  .stage-scanline {
    inset: 0;
  }

  .card-main {
    margin-top: 44px;
  }

  .card-side {
    width: 100%;
    margin-top: 18px;
    align-self: stretch;
  }

  .note-bottom {
    max-width: none;
    margin-top: 16px;
  }

  .ticker-track {
    gap: 28px;
    padding: 14px 18px;
  }

  .program-card,
  .format-card,
  .results-panel,
  .quote-card,
  .join-form,
  .ai-visual {
    padding: 22px;
  }

  .ai-screen {
    min-height: 420px;
  }

  .ai-radar {
    width: 280px;
    height: 280px;
  }

  .orbit-a {
    width: 170px;
    height: 170px;
    left: 26px;
    top: 92px;
  }

  .orbit-b {
    width: 130px;
    height: 130px;
    right: 24px;
    bottom: 140px;
  }

  .point-a {
    left: 84px;
  }

  .point-b {
    right: 86px;
  }

  .point-c {
    left: 136px;
    bottom: 170px;
  }

  blockquote {
    font-size: clamp(1.45rem, 9vw, 2rem);
  }
}
