:root {
  color-scheme: light dark;
  --page: #fff;
  --text: #000;
  --muted: #666;
  --faint: #9d9d9c;
  --line: #dfdfdc;
  --panel: #f4f4f1;
  --accent: #1436f5;
  --frame: #1436f5;
  --frame-width: clamp(6px, 0.8vw, 12px);
  --hero-frame-width: clamp(7px, 0.78vw, 12px);
  --fs-kicker: clamp(0.74rem, calc(0.7rem + 0.12vw), 0.82rem);
  --fs-ui: clamp(0.92rem, calc(0.86rem + 0.18vw), 1rem);
  --fs-body: clamp(1.0625rem, calc(0.98rem + 0.42vw), 1.5rem);
  --fs-fact: clamp(2.6rem, calc(1.9rem + 3.2vw), 5rem);
  --fs-day: clamp(2rem, calc(1.42rem + 2.15vw), 3.75rem);
  --fs-section: clamp(2rem, calc(1.2rem + 3.9vw), 6rem);
  --fs-hero: clamp(2rem, calc(0.85rem + 6.1vw), 9rem);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-touch: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-fast: 180ms;
  --motion-mid: 280ms;
  --motion-slow: 620ms;
  --focus-ring: 2px solid currentColor;
  --touch-lift: translate3d(0, -2px, 0);
  color: var(--text);
  background: var(--page);
  font-family: proxima-nova, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #232323;
    --text: #fff;
    --muted: #c8c8c4;
    --faint: #9d9d9c;
    --line: #444;
    --panel: #000;
    --accent: #8598ff;
    --frame: #8598ff;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  --scroll-progress: 0;
  --hero-drift: 0px;
  --hero-tilt: 0deg;
  --depth-opacity: 0;
  --depth-x: 0;
  --depth-y: 0;
}

body {
  min-height: 100dvh;
  margin: 0;
  background: var(--page);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  border: var(--frame-width) solid var(--frame);
  pointer-events: none;
  animation: frame-grow var(--motion-slow) var(--ease-premium) both;
  transition: border-width var(--motion-slow) var(--ease-premium);
}

.academy-page::before {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 100svh;
  box-sizing: border-box;
  z-index: 1000;
  border-color: #fff;
  animation: academy-frame-in 1s var(--ease-premium) both;
  transition: none;
}

.academy-page::after {
  content: "";
  position: fixed;
  inset: 0;
  box-sizing: border-box;
  z-index: 999;
  border: var(--frame-width) solid var(--frame);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.academy-page.is-scrolled::after {
  opacity: 1;
}

.academy-page {
  --frame: #1436f5;
}

.depth-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: var(--depth-opacity);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity var(--motion-mid) var(--ease-touch);
}

.academy-page main {
  position: relative;
}

.academy-page .site-footer {
  position: relative;
  z-index: 1;
}

.academy-page.depth-ready main {
  perspective: 1400px;
}

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

h1,
h2,
h3,
p,
li {
  overflow-wrap: break-word;
}

.site-header > *,
.academy-hero > *,
.statement > *,
.program > *,
.audience > *,
.signup > *,
.section-copy > *,
.signup-panel > *,
.signup-form > *,
.program-content > *,
.days > *,
.day > * {
  min-width: 0;
}

.center-stage,
.academy-hero,
.statement,
.facts,
.program,
.audience,
.signup,
.site-footer {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.center-stage {
  min-height: 100dvh;
  padding: clamp(24px, 7vw, 96px);
}

.center-stage {
  display: grid;
  place-items: center;
}

.home-noodles {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  overflow: hidden;
  background: #1436f5;
  cursor: grab;
}

.home-noodles:active {
  cursor: grabbing;
}

.home-noodles .noodles-canvas {
  z-index: 0;
}

.home-noodles .brand-gateway {
  position: relative;
  z-index: 2;
}

.brand-gateway {
  display: inline-flex;
  border-radius: 4px;
  transform: translateZ(0);
  transition:
    opacity var(--motion-mid) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.brand-gateway:hover {
  opacity: 0.88;
  transform: scale(0.985);
}

.brand-gateway:active {
  transform: scale(0.965);
}

.brand-logo {
  width: min(86vw, 1120px);
  height: auto;
  display: block;
}

.home-page {
  --page: #1436f5;
  --frame: #fff;
  --text: #fff;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: clamp(14px, 2.2vw, 28px) clamp(20px, 4vw, 52px);
}

.brand-link {
  display: inline-flex;
  min-width: 0;
  border-radius: 4px;
  transition:
    opacity var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.brand-gateway:focus-visible,
.brand-link:focus-visible,
.hero-brand-link:focus-visible,
.hero-scroll:focus-visible,
.academy-nav a:focus-visible,
.version-nav summary:focus-visible,
.version-nav a:focus-visible,
.text-action:focus-visible,
.signup-form button:focus-visible,
.signup-form input:focus-visible,
.choice-field label:focus-within,
.consent:focus-within,
.site-footer a:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 6px;
}

.brand-link:hover,
.hero-brand-link:hover {
  opacity: 0.86;
}

.brand-link:active {
  transform: scale(0.98);
}

.hero-brand-link:active {
  transform: translateX(-50%) scale(0.98);
}

.header-logo {
  width: min(42vw, 300px);
}

.academy-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
}

.academy-nav a,
.site-footer a,
.text-action {
  color: var(--muted);
  font-size: var(--fs-ui);
  line-height: 1.2;
  text-decoration: none;
  transition:
    color var(--motion-fast) var(--ease-touch),
    opacity var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.academy-nav a:hover,
.site-footer a:hover,
.text-action:hover {
  color: var(--text);
}

.academy-page .site-header {
  position: relative;
  z-index: 10;
  width: min(100%, 1440px);
  background: var(--page);
}

.academy-page .header-logo {
  filter: none;
}

.academy-page .academy-nav a {
  color: var(--muted);
}

.academy-page .academy-nav a:hover {
  color: var(--accent);
}

.version-nav {
  position: fixed;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  z-index: 120;
  color: #fff;
  font-size: var(--fs-ui);
  text-align: left;
}

.version-nav summary {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(0, 8, 255, 0.24);
  backdrop-filter: blur(14px);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  list-style: none;
  opacity: 0.24;
  text-transform: uppercase;
  transition:
    background-color var(--motion-fast) var(--ease-touch),
    border-color var(--motion-fast) var(--ease-touch),
    opacity var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.version-nav summary::-webkit-details-marker {
  display: none;
}

.version-nav:hover summary,
.version-nav:focus-within summary,
.version-nav[open] summary {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 8, 255, 0.54);
  opacity: 1;
}

.version-nav summary:active {
  transform: scale(0.98);
}

.version-nav nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(76vw, 240px);
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 8px;
  background: rgba(5, 12, 50, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.version-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color var(--motion-fast) var(--ease-touch),
    color var(--motion-fast) var(--ease-touch);
}

.version-nav a:hover,
.version-nav a:focus-visible,
.version-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.academy-hero {
  position: relative;
  z-index: 30;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 9vw, 128px);
  background: #0008ff;
  color: #fff;
  text-align: center;
}

.academy-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 26%, rgba(190, 204, 255, 0.42) 0 9%, transparent 27%),
    radial-gradient(ellipse at 42% 44%, rgba(133, 152, 255, 0.5) 0 12%, transparent 34%),
    radial-gradient(ellipse at 76% 58%, rgba(211, 219, 255, 0.4) 0 10%, transparent 31%),
    radial-gradient(ellipse at 66% 18%, rgba(83, 90, 219, 0.52) 0 14%, transparent 38%),
    linear-gradient(125deg, #0008ff 0%, #1436f5 45%, #535adb 72%, #7581ff 100%);
  filter: saturate(1.3) contrast(1.08);
  transform: translate3d(calc(-1.4% + var(--hero-drift)), 0, 0) rotate(var(--hero-tilt)) scale(1.08);
  animation: hero-shader 22s ease-in-out infinite alternate;
  opacity: 1;
  transition: opacity var(--motion-slow) var(--ease-premium);
}

.js .academy-page.sequence-loading:not(.sequence-clouds) .academy-hero::before,
.js .academy-page.sequence-loading:not(.sequence-clouds) .hero-shader {
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vw, 64px);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transform: translateX(-50%);
  animation: scroll-cue 1.8s var(--ease-premium) infinite;
  opacity: 0.82;
}

.js .academy-page.sequence-loading:not(.sequence-content) .hero-scroll {
  animation: none;
  opacity: 0;
  pointer-events: none;
}

.hero-scroll::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: clamp(10px, 1vw, 14px);
  height: clamp(10px, 1vw, 14px);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}

.academy-hero > *:not(.hero-scroll):not(.hero-shader):not(.hero-flight):not(.hero-flight-front):not(.hero-flight-fallback):not(.hero-brand-link) {
  position: relative;
  z-index: 2;
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms var(--ease-premium);
}

.academy-hero.shader-loaded::before {
  opacity: 0;
}

.academy-hero.shader-loaded .hero-shader {
  opacity: 1;
}

.hero-flight {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
  transition: opacity var(--motion-fast) linear;
}

.hero-flight-front {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-fast) linear;
}

.hero-flight-fallback {
  position: absolute;
  top: 36%;
  left: -34vw;
  z-index: 1;
  width: clamp(220px, 28vw, 420px);
  height: auto;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  transition: opacity var(--motion-mid) var(--ease-premium);
}

.sequence-flight .hero-flight-fallback {
  animation: fallback-flight 10s var(--ease-premium) 400ms infinite;
  opacity: 0.92;
}

.flight-webgl-ready .hero-flight-fallback {
  opacity: 0;
}

.fallback-plane {
  transform-origin: center;
}

.fallback-body,
.fallback-banner,
.fallback-tail,
.fallback-wing-white {
  fill: #fff;
}

.fallback-wing-blue,
.fallback-nose,
.fallback-spinner {
  fill: #1436f5;
}

.fallback-cockpit {
  fill: rgba(180, 194, 255, 0.72);
}

.fallback-line,
.fallback-strut,
.fallback-gear {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fallback-wheel {
  fill: #111;
  stroke: #fff;
  stroke-width: 2;
}

.fallback-prop {
  fill: rgba(17, 17, 17, 0.76);
  transform-origin: 222px 70px;
  animation: fallback-prop 180ms linear infinite;
}

.js .academy-page.sequence-loading:not(.sequence-flight) .hero-flight,
.js .academy-page.sequence-loading:not(.sequence-flight) .hero-flight-front,
.js .academy-page.sequence-loading:not(.sequence-flight) .hero-flight-fallback {
  opacity: 0;
}

.hero-brand-link {
  display: inline-flex;
  position: absolute;
  top: clamp(52px, 8svh, 92px);
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  width: min(37.2vw, 216px);
  min-width: 0;
  border-radius: 4px;
  transform: translateX(-50%) translate3d(calc(var(--magnet-x, 0) * 1px), calc(var(--magnet-y, 0) * 1px), 0);
  transition:
    opacity var(--motion-mid) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.hero-logo {
  width: 100%;
  filter: invert(1);
}

.hero-copy,
.statement p,
.day p,
.audience li {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 clamp(20px, 3vw, 40px);
  color: var(--faint);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.academy-hero .eyebrow {
  color: #fff;
}

h1 {
  margin: 0;
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 48rem;
  margin: clamp(28px, 4vw, 56px) 0 0;
  color: #fff;
}

.text-action {
  width: fit-content;
  margin-top: 32px;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}

.text-action:hover {
  transform: var(--touch-lift);
}

.text-action:active {
  transform: translate3d(0, 0, 0);
}

.academy-hero .text-action {
  color: #fff;
}

.statement,
.program,
.audience,
.signup {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 96px);
  padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.statement {
  border-top: 0;
}

.statement h2,
.program h2,
.audience h2,
.signup h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--accent);
  font-size: var(--fs-section);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
}

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

.program-content {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
}

.statement p,
.audience ul {
  justify-self: start;
  width: min(100%, 52rem);
}

.statement p {
  max-width: 42rem;
  margin: clamp(24px, 4vw, 48px) 0 0;
}

.section-kicker,
.day-number {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.12;
  text-transform: uppercase;
}

.statement > .section-kicker,
.program > .section-kicker,
.audience > .section-kicker,
.signup > .section-kicker {
  position: sticky;
  top: 32px;
  z-index: 1;
  align-self: start;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--text);
  font-size: var(--fs-body);
  background: var(--page);
  transition:
    opacity var(--motion-mid) var(--ease-touch),
    transform var(--motion-slow) var(--ease-premium);
}

.story-ready .statement:not(.is-active) > .section-kicker,
.story-ready .program:not(.is-active) > .section-kicker,
.story-ready .audience:not(.is-active) > .section-kicker,
.story-ready .signup:not(.is-active) > .section-kicker {
  opacity: 0.58;
  transform: translateY(10px);
}

.signup-panel {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

.signup-form {
  display: grid;
  gap: 22px;
  width: min(100%, 42rem);
}

.field,
.consent,
.captcha-field {
  display: grid;
  gap: 10px;
}

.captcha-field[hidden] {
  display: none;
}

.field label,
.field legend,
.captcha-field label,
.consent {
  color: var(--text);
  font-size: var(--fs-ui);
  font-weight: 700;
  line-height: 1.25;
}

.field input[type="text"],
.field input[type="email"],
.captcha-field input[type="text"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
  background: var(--page);
  color: var(--text);
  font: inherit;
  font-size: var(--fs-body);
  transition:
    background-color var(--motion-fast) var(--ease-touch),
    border-color var(--motion-fast) var(--ease-touch),
    box-shadow var(--motion-mid) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.field input[type="text"]:hover,
.field input[type="email"]:hover,
.captcha-field input[type="text"]:hover {
  border-color: color-mix(in srgb, var(--text) 42%, var(--line));
}

.field input[type="text"]:focus,
.field input[type="email"]:focus,
.captcha-field input[type="text"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent);
}

.field input[type="text"]:user-invalid,
.field input[type="email"]:user-invalid,
.captcha-field input[type="text"]:user-invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent);
}

.field input[type="text"]:active,
.field input[type="email"]:active,
.captcha-field input[type="text"]:active {
  transform: scale(0.995);
}

.choice-field {
  gap: 0;
  margin: clamp(6px, 1vw, 12px) 0 0;
  border: 1px solid var(--line);
  padding: 0;
}

.choice-field legend {
  padding: 0 0 12px;
}

.choice-field label,
.consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  font-weight: 500;
  transition:
    background-color var(--motion-fast) var(--ease-touch),
    color var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium),
    border-color var(--motion-fast) var(--ease-touch);
}

.choice-field label {
  min-height: 64px;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transform: translate3d(calc(var(--magnet-x, 0) * 0.35px), calc(var(--magnet-y, 0) * 0.35px), 0);
}

.choice-field label:first-of-type {
  border-top: 0;
}

.choice-field label:has(input:checked) {
  background: var(--accent);
  color: #fff;
}

.choice-field label:hover {
  background: color-mix(in srgb, var(--accent) 8%, var(--page));
}

.choice-field label:has(input:checked):hover {
  background: color-mix(in srgb, var(--accent) 92%, #000);
}

.choice-field label:active,
.consent:active {
  transform: scale(0.992);
}

.choice-field input,
.consent input {
  width: 18px;
  height: 18px;
  margin: 0.2em 0 0;
  accent-color: var(--accent);
}

.choice-field input {
  justify-self: center;
  margin: 0;
}

.signup-form button {
  width: fit-content;
  min-height: 48px;
  border: 1px solid var(--accent);
  border-radius: 0;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: var(--fs-ui);
  font-weight: 700;
  transform: translate3d(calc(var(--magnet-x, 0) * 0.45px), calc(var(--magnet-y, 0) * 0.45px), 0);
  transition:
    background-color var(--motion-fast) var(--ease-touch),
    border-color var(--motion-fast) var(--ease-touch),
    color var(--motion-fast) var(--ease-touch),
    opacity var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.signup-form button:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translate3d(calc(var(--magnet-x, 0) * 0.45px), calc(var(--magnet-y, 0) * 0.45px - 2px), 0);
}

.signup-form button:active {
  transform: scale(0.97);
}

.signup-form button[disabled] {
  cursor: progress;
  opacity: 0.62;
  transform: none;
}

.signup-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.signup-form[aria-busy="true"] button::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.72em;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: button-spin 720ms linear infinite;
  vertical-align: -0.08em;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-ui);
  line-height: 1.35;
  transition:
    color var(--motion-fast) var(--ease-touch),
    opacity var(--motion-mid) var(--ease-touch);
}

.form-status:not(:empty) {
  border-left: 4px solid currentColor;
  padding: 12px 0 12px 16px;
}

.form-status[data-state="success"] {
  color: var(--text);
}

.form-status[data-state="error"] {
  color: var(--accent);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  padding: clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line);
  transition:
    background-color var(--motion-mid) var(--ease-touch),
    transform var(--motion-slow) var(--ease-premium);
}

.facts div:hover {
  background: color-mix(in srgb, var(--accent) 5%, var(--page));
  transform: translate3d(0, -3px, 0);
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  color: var(--text);
  font-size: var(--fs-section);
  line-height: 0.9;
}

.facts span {
  color: var(--muted);
  font-size: var(--fs-body);
}

.days {
  display: grid;
  grid-template-columns: 1fr;
}

.day {
  display: grid;
  grid-template-columns: clamp(76px, 9vw, 120px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(28px, 4vw, 56px) 0;
  border-top: 1px solid var(--line);
  transition:
    opacity var(--motion-mid) var(--ease-touch),
    transform var(--motion-slow) var(--ease-premium);
}

.day:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.day .day-number {
  color: var(--text);
  font-size: var(--fs-body);
  line-height: 1.12;
}

.day h3 {
  max-width: 28ch;
  margin: 0;
  color: var(--text);
  font-size: var(--fs-day);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.day p:not(.day-number) {
  max-width: 45rem;
  margin: 20px 0 0;
}

.audience ul {
  display: grid;
  gap: 22px;
  margin: clamp(24px, 4vw, 48px) 0 0;
  padding: 0;
  list-style: none;
}

.audience li {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  transition:
    color var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.audience li:hover {
  color: var(--text);
  transform: translate3d(6px, 0, 0);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 72px);
  color: var(--muted);
  border-top: clamp(4px, 0.5vw, 8px) solid var(--frame);
}

.footer-logo {
  width: min(42vw, 300px);
  height: auto;
  display: block;
}

.noodles-page {
  --noodles-blue: #1436f5;
  --noodles-ink: #fff;
}

.noodles-nav-page {
  --frame: #1436f5;
}

.noodles-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(78px, 9vw, 136px) clamp(22px, 8vw, 120px);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.2), transparent 22%),
    radial-gradient(circle at 78% 72%, rgba(133, 152, 255, 0.42), transparent 34%),
    linear-gradient(128deg, #0008ff 0%, #1436f5 46%, #111a68 100%);
  color: var(--noodles-ink);
  text-align: center;
}

.noodles-hero::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 0;
  background:
    radial-gradient(circle at 36% 42%, rgba(255, 255, 255, 0.22), transparent 19%),
    radial-gradient(circle at 64% 56%, rgba(255, 217, 61, 0.14), transparent 24%);
  opacity: 0.82;
  transform: rotate(-8deg);
}

.noodles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms var(--ease-premium);
}

.noodles-ready .noodles-canvas {
  opacity: 1;
}

.noodles-hero > *:not(.noodles-canvas):not(.hero-brand-link):not(.noodles-topbar):not(.noodles-hero-rail):not(.hero-scroll):not(.noodles-frame):not(.noodles-nav-cta):not(.noodles-side):not(.noodles-bottom) {
  position: relative;
  z-index: 2;
}

.noodles-hero .hero-brand-link {
  position: absolute;
  top: clamp(52px, 8svh, 92px);
  left: 50%;
  z-index: 4;
  width: min(37.2vw, 216px);
  transform: translateX(-50%);
}

.noodles-hero .hero-logo,
.noodles-topbar .header-logo {
  filter: invert(1);
}

.noodles-hero-copy {
  display: grid;
  justify-items: center;
  width: min(100%, 72rem);
}

.noodles-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.noodles-hero-copy h1 {
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.noodles-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(26px, 4vw, 48px);
}

.noodles-actions .text-action,
.noodles-hero .hero-copy {
  color: #fff;
}

.noodles-hero--orbit .noodles-canvas {
  mix-blend-mode: screen;
}

.noodles-hero--nav {
  min-height: 100svh;
  place-items: center;
  padding: clamp(96px, 10vw, 152px) clamp(28px, 7vw, 104px);
  background: var(--noodles-blue);
  border: 0;
  box-shadow: none;
  text-align: center;
}

.noodles-hero--nav::before {
  inset: 0;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.04), transparent 36%);
  opacity: 1;
  transform: none;
}

.noodles-hero--nav .noodles-canvas {
  opacity: 0;
}

.noodles-hero--nav.noodles-ready .noodles-canvas {
  opacity: 1;
}

.noodles-hero--nav .noodles-hero-copy {
  position: relative;
  z-index: 3;
  isolation: isolate;
  justify-items: center;
  width: min(100%, 76rem);
}

.noodles-hero--nav .noodles-hero-copy::before {
  content: "";
  position: absolute;
  inset: -28% -18% -36%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(20, 54, 245, 0.92) 0%, rgba(20, 54, 245, 0.72) 38%, rgba(20, 54, 245, 0) 70%);
  pointer-events: none;
}

.noodles-hero--nav h1 {
  color: #fff;
  font-size: clamp(2.5rem, calc(1.25rem + 6vw), 9.5rem);
  line-height: 0.82;
  text-align: center;
  text-shadow: 0 26px 70px rgba(20, 54, 245, 0.5);
}

.noodles-topbar {
  position: absolute;
  top: clamp(34px, 4vw, 64px);
  left: clamp(42px, 5vw, 88px);
  right: clamp(42px, 5vw, 88px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.noodles-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: clamp(0.9rem, 1.25vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.noodles-mark span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: currentColor;
}

.noodles-topbar .academy-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.15vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.noodles-topbar .academy-nav a:hover {
  color: #fff;
}

.noodles-mark:focus-visible,
.noodles-nav-cta:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 6px;
}

.noodles-nav-cta {
  position: absolute;
  top: clamp(104px, 10vw, 148px);
  right: clamp(54px, 5vw, 100px);
  z-index: 4;
  min-width: 150px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  font-size: var(--fs-ui);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color var(--motion-fast) var(--ease-touch),
    color var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.noodles-nav-cta:hover {
  background: #fff;
  color: #10173e;
  transform: translateY(-2px);
}

.noodles-divider {
  width: clamp(42px, 5vw, 82px);
  height: 2px;
  margin: clamp(22px, 3vw, 36px) 0 clamp(18px, 2.6vw, 30px);
  background: rgba(255, 255, 255, 0.76);
}

.noodles-hero--nav .hero-copy {
  margin: 0;
  color: rgba(237, 240, 246, 0.72);
  font-size: clamp(0.86rem, 1.25vw, 1.28rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1.35;
  text-transform: uppercase;
}

.noodles-frame {
  position: absolute;
  z-index: 4;
  width: clamp(42px, 5vw, 74px);
  height: clamp(42px, 5vw, 74px);
  pointer-events: none;
}

.noodles-frame--tl {
  top: clamp(34px, 4vw, 62px);
  left: clamp(34px, 4vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.86);
  border-left: 1px solid rgba(255, 255, 255, 0.86);
}

.noodles-frame--br {
  right: clamp(34px, 4vw, 62px);
  bottom: clamp(34px, 4vw, 62px);
  border-right: 1px solid rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.86);
}

.noodles-side {
  position: absolute;
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-ui);
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.45;
  text-transform: uppercase;
}

.noodles-side--left {
  left: clamp(48px, 5vw, 92px);
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.noodles-side--right {
  right: clamp(48px, 5vw, 92px);
  top: 50%;
  text-align: left;
  transform: translateY(-50%);
}

.noodles-bottom {
  position: absolute;
  left: clamp(54px, 5vw, 100px);
  right: clamp(54px, 5vw, 100px);
  bottom: clamp(46px, 4vw, 76px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: clamp(28px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.noodles-bottom span:nth-child(2) {
  text-align: center;
}

.noodles-bottom span:nth-child(3) {
  text-align: right;
}

.noodles-hero--omma {
  min-height: 100svh;
  place-items: center;
  padding: clamp(118px, 12vw, 176px) clamp(22px, 4.8vw, 84px) clamp(112px, 9vw, 150px);
  border: 0;
  box-shadow: none;
  background: #1436f5;
  color: #fff;
  cursor: grab;
  text-align: center;
}

.noodles-hero--omma:active {
  cursor: grabbing;
}

.noodles-hero--omma::before {
  inset: 0;
  background: #1436f5;
  opacity: 1;
  transform: none;
}

.noodles-hero--omma::after {
  display: none;
}

.noodles-hero--omma .noodles-canvas {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.noodles-hero--omma.noodles-ready .noodles-canvas {
  opacity: 1;
}

.noodles-hero--omma .noodles-hero-copy {
  z-index: 3;
  width: min(100%, 80rem);
  isolation: isolate;
}

.noodles-hero--omma .noodles-hero-copy::before {
  display: none;
}

.noodles-hero--omma h1 {
  max-width: min(92vw, 1400px);
  color: #fff;
  font-size: clamp(2.35rem, 7vw, 8.15rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
}

.noodles-hero--omma h1 span {
  white-space: nowrap;
}

.noodles-hero--scroll {
  align-content: end;
  padding-bottom: clamp(118px, 13vw, 176px);
  border-color: #fff;
  box-shadow: none;
}

.noodles-hero--scroll .noodles-hero-copy {
  transform: translateY(clamp(8px, 2vw, 24px));
}

.noodles-hero-rail {
  position: absolute;
  left: clamp(26px, 5vw, 72px);
  right: clamp(26px, 5vw, 72px);
  bottom: clamp(70px, 8vw, 108px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.liquid-canvas-hero {
  position: relative;
  z-index: 30;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  overflow: hidden;
  background: #1436f5;
  color: #fff;
  text-align: center;
}

.liquid-canvas,
.liquid-canvas-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.liquid-canvas {
  z-index: 1;
  display: block;
  background: #1436f5;
}

.liquid-canvas-title {
  position: absolute;
  left: var(--liquid-title-x, 50%);
  top: var(--liquid-title-y, 50%);
  z-index: 3;
  width: min(92vw, 1280px);
  color: #fff;
  font-size: clamp(2rem, 9.2vw, 8.8rem);
  line-height: 0.86;
  opacity: 1;
  pointer-events: none;
  text-shadow: none;
  transform: translate(-50%, -50%);
}

.liquid-canvas-fallback {
  z-index: 2;
  display: none;
  place-items: center;
  align-content: center;
  gap: clamp(14px, 2vw, 22px);
  padding: calc(50svh + clamp(96px, 13vw, 180px)) clamp(24px, 9vw, 128px) 0;
  background: #1436f5;
  pointer-events: none;
}

.liquid-canvas-fallback.active {
  display: grid;
}

.liquid-canvas-fallback p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.liquid-canvas-hero .hero-brand-link {
  z-index: 4;
}

.liquid-canvas-hero .hero-logo {
  filter: invert(1);
}

.liquid-canvas-hero .hero-scroll {
  z-index: 4;
}

.liquid-canvas-controls[hidden] {
  display: none !important;
}

.singularity-page {
  --singularity-blue: #1436f5;
  --singularity-ink: #fff;
  --singularity-deep: #0008ff;
  --singularity-night: #020513;
}

.glass-page {
  --page: #1436f5;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.24);
  --panel: #1436f5;
  --frame: #1436f5;
  background: var(--page);
}

.glass-page main {
  background: #fff;
}

.glass-page .statement,
.glass-page .facts,
.glass-page .program,
.glass-page .audience,
.glass-page .signup,
.glass-page .site-footer {
  --page: #fff;
  --text: #000;
  --muted: #666;
  --faint: #9d9d9c;
  --line: #dfdfdc;
  --panel: #f4f4f1;
  --accent: #1436f5;
  --frame: #1436f5;
  background: var(--page);
  color: var(--text);
}

.glass-page .version-nav {
  color: var(--text);
}

.glass-page .version-nav summary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.glass-page .version-nav:hover summary,
.glass-page .version-nav:focus-within summary,
.glass-page .version-nav[open] summary {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.glass-page .version-nav nav {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 101, 0.62);
  box-shadow: 0 18px 54px rgba(0, 0, 101, 0.22);
}

.glass-page .version-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.glass-page .version-nav a:hover,
.glass-page .version-nav a:focus-visible,
.glass-page .version-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.glass-hero {
  position: relative;
  z-index: 30;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  overflow: hidden;
  background: #1436f5;
  color: #fff;
  cursor: crosshair;
}

.glass-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.glass-static::before {
  opacity: 1;
  background:
    radial-gradient(circle at 42% 34%, rgb(255 255 255 / 0.82) 0 6.2%, rgb(255 255 255 / 0.2) 7%, transparent 8.6%),
    radial-gradient(circle at 50% 38%, rgb(128 186 255 / 0.98) 0 8.6%, rgb(50 94 255 / 0.3) 10.3%, transparent 12%),
    radial-gradient(circle at 57% 42%, rgb(255 18 58 / 0.98) 0 8.2%, rgb(120 0 28 / 0.28) 9.8%, transparent 11.8%),
    radial-gradient(circle at 46% 48%, rgb(194 255 24 / 0.98) 0 9.6%, rgb(45 160 0 / 0.28) 11.3%, transparent 13.2%),
    radial-gradient(circle at 55% 54%, rgb(255 158 122 / 0.98) 0 11.3%, rgb(245 68 31 / 0.26) 13.1%, transparent 15.1%),
    radial-gradient(circle at 39% 56%, rgb(0 214 40 / 1) 0 7.9%, rgb(0 74 24 / 0.32) 9.5%, transparent 11.3%),
    radial-gradient(circle at 62% 58%, rgb(255 255 255 / 0.68) 0 7%, rgb(245 127 90 / 0.48) 8.4%, transparent 10.3%),
    radial-gradient(circle at 50% 50%, rgb(8 22 160 / 0.2), transparent 36%);
  filter: saturate(1.92) brightness(1.02);
}

.glass-canvas,
.glass-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.glass-canvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 780ms var(--ease-premium);
}

.glass-ready .glass-canvas {
  opacity: 1;
}

.glass-vignette {
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

.glass-brand-link {
  position: absolute;
  top: clamp(24px, 3vw, 42px);
  left: clamp(24px, 3vw, 42px);
  z-index: 4;
  width: min(38vw, 172px);
  border-radius: 4px;
  transition:
    opacity var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.glass-brand-link:hover {
  opacity: 0.76;
}

.glass-brand-link:active {
  transform: scale(0.98);
}

.glass-logo {
  width: 100%;
  height: auto;
  display: block;
}

.glass-brand-link:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 6px;
}

.glass-hero-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  gap: 8px;
  justify-items: center;
  width: min(88vw, 70rem);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.glass-hero-copy h1 {
  max-width: 15ch;
  color: #fff;
  font-size: clamp(2.4rem, calc(1.45rem + 3.7vw), 6.1rem);
  line-height: 0.84;
  text-align: center;
  text-shadow: 0 20px 70px rgba(0, 0, 101, 0.34);
}

.glass-hero .hero-scroll::before {
  border-color: rgba(255, 255, 255, 0.82);
}

.glass-hero .hero-scroll {
  bottom: clamp(24px, 3vw, 42px);
  opacity: 0.64;
}

.singularity-hero {
  position: relative;
  z-index: 30;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(84px, 9vw, 144px) clamp(24px, 8vw, 112px);
  background:
    radial-gradient(ellipse at 50% 98%, rgba(20, 54, 245, 0.58), transparent 48%),
    radial-gradient(circle at 72% 30%, rgba(20, 54, 245, 0.3), transparent 34%),
    linear-gradient(180deg, #030a32 0%, var(--singularity-night) 58%, #00020a 100%);
  box-shadow: inset 0 -28svh 24svh rgba(0, 0, 0, 0.42);
  color: var(--singularity-ink);
  text-align: center;
}

.singularity-hero::before {
  content: "";
  position: absolute;
  inset: 22% -8% -9%;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 78%, rgba(133, 152, 255, 0.78) 0 2.1%, rgba(20, 54, 245, 0.86) 2.2% 4.9%, rgba(0, 3, 22, 0.92) 5.2% 7.4%, transparent 7.6%),
    radial-gradient(circle at 42% 70%, rgba(133, 152, 255, 0.66) 0 1.9%, rgba(20, 54, 245, 0.76) 2% 4.5%, rgba(0, 3, 22, 0.88) 4.7% 7%, transparent 7.2%),
    radial-gradient(circle at 61% 69%, rgba(133, 152, 255, 0.62) 0 1.7%, rgba(20, 54, 245, 0.76) 1.9% 4.4%, rgba(0, 3, 22, 0.9) 4.6% 6.8%, transparent 7%),
    radial-gradient(circle at 32% 60%, rgba(71, 98, 255, 0.72) 0 1.6%, rgba(20, 54, 245, 0.78) 1.8% 4.1%, rgba(0, 3, 22, 0.88) 4.3% 6.4%, transparent 6.6%),
    radial-gradient(circle at 72% 58%, rgba(71, 98, 255, 0.68) 0 1.5%, rgba(20, 54, 245, 0.76) 1.7% 3.9%, rgba(0, 3, 22, 0.88) 4.1% 6.2%, transparent 6.4%),
    radial-gradient(circle at 48% 48%, rgba(133, 152, 255, 0.58) 0 1.2%, rgba(20, 54, 245, 0.76) 1.4% 3.2%, rgba(0, 3, 22, 0.82) 3.4% 5%, transparent 5.2%),
    radial-gradient(circle at 58% 40%, rgba(133, 152, 255, 0.58) 0 1.1%, rgba(20, 54, 245, 0.72) 1.3% 3%, rgba(0, 3, 22, 0.8) 3.2% 4.8%, transparent 5%),
    radial-gradient(circle at 40% 38%, rgba(71, 98, 255, 0.54) 0 1%, rgba(20, 54, 245, 0.7) 1.2% 2.8%, rgba(0, 3, 22, 0.8) 3% 4.5%, transparent 4.7%),
    repeating-radial-gradient(ellipse at 50% 90%, rgba(20, 54, 245, 0.74) 0 7px, rgba(0, 3, 22, 0.96) 8px 14px, transparent 15px 27px);
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    clamp(46px, 4vw, 78px) clamp(24px, 2.4vw, 44px);
  background-position:
    center,
    center,
    center,
    center,
    center,
    center,
    center,
    center,
    center bottom;
  border-radius: 50% 50% 0 0 / 36% 36% 0 0;
  opacity: 0.92;
  transform: perspective(780px) rotateX(58deg) translateY(9%) scale(1.16);
  transform-origin: center bottom;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.singularity-canvas,
.singularity-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.singularity-canvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 780ms var(--ease-premium);
}

.singularity-ready .singularity-canvas {
  opacity: 1;
}

.singularity-static .singularity-canvas {
  display: none;
}

.singularity-vignette {
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(20, 54, 245, 0) 0%, rgba(20, 54, 245, 0.08) 48%, rgba(0, 2, 12, 0.7) 94%),
    linear-gradient(180deg, rgba(1, 3, 13, 0.18) 0%, rgba(1, 3, 13, 0) 38%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0.52));
}

.singularity-hero > *:not(.singularity-canvas):not(.singularity-vignette):not(.singularity-frame):not(.singularity-topbar):not(.singularity-nav-cta):not(.singularity-side):not(.singularity-bottom):not(.hero-scroll):not(.hero-brand-link) {
  position: relative;
  z-index: 3;
}

.singularity-hero .hero-brand-link {
  position: absolute;
  top: clamp(52px, 8svh, 92px);
  left: 50%;
  z-index: 4;
  width: min(37.2vw, 216px);
  transform: translateX(-50%);
}

.singularity-hero .hero-logo {
  filter: invert(1);
}

.singularity-hero-copy {
  display: grid;
  justify-items: center;
  width: min(100%, 72rem);
}

.singularity-hero-copy .eyebrow,
.singularity-hero .hero-copy,
.singularity-actions .text-action {
  color: rgba(255, 255, 255, 0.84);
}

.singularity-hero-copy h1 {
  color: #fff;
  text-shadow:
    0 0 42px rgba(255, 255, 255, 0.2),
    0 26px 74px rgba(0, 0, 0, 0.3);
}

.singularity-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(26px, 4vw, 48px);
}

.singularity-hero--orbit .singularity-hero-copy {
  transform: translateY(clamp(8px, 2vw, 24px));
}

.singularity-hero--protocol {
  place-items: center;
  padding: clamp(104px, 10vw, 156px) clamp(28px, 7vw, 104px) clamp(116px, 12vw, 176px);
  background:
    radial-gradient(ellipse at 50% 98%, rgba(20, 54, 245, 0.62), transparent 50%),
    radial-gradient(circle at 70% 28%, rgba(20, 54, 245, 0.26), transparent 32%),
    linear-gradient(180deg, #030a32 0%, var(--singularity-night) 56%, #00020a 100%);
  box-shadow: none;
}

.singularity-hero--protocol .singularity-vignette {
  background:
    radial-gradient(ellipse at 50% 46%, rgba(20, 54, 245, 0) 0%, rgba(20, 54, 245, 0.1) 48%, rgba(0, 2, 12, 0.72) 94%),
    linear-gradient(180deg, rgba(1, 3, 13, 0.2) 0%, rgba(1, 3, 13, 0) 36%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0.54));
}

.singularity-topbar {
  position: absolute;
  top: clamp(34px, 4vw, 64px);
  left: clamp(42px, 5vw, 88px);
  right: clamp(42px, 5vw, 88px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.singularity-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: clamp(0.9rem, 1.25vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.singularity-mark span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: currentColor;
}

.singularity-topbar .academy-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.15vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.singularity-topbar .academy-nav a:hover {
  color: #fff;
}

.singularity-mark:focus-visible,
.singularity-nav-cta:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 6px;
}

.singularity-nav-cta {
  position: absolute;
  top: clamp(104px, 10vw, 148px);
  right: clamp(54px, 5vw, 100px);
  z-index: 4;
  min-width: 150px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  font-size: var(--fs-ui);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color var(--motion-fast) var(--ease-touch),
    color var(--motion-fast) var(--ease-touch),
    transform var(--motion-mid) var(--ease-premium);
}

.singularity-nav-cta:hover {
  background: #fff;
  color: var(--singularity-deep);
  transform: translateY(-2px);
}

.singularity-frame {
  position: absolute;
  z-index: 4;
  width: clamp(42px, 5vw, 74px);
  height: clamp(42px, 5vw, 74px);
  pointer-events: none;
}

.singularity-frame--tl {
  top: clamp(34px, 4vw, 62px);
  left: clamp(34px, 4vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.86);
  border-left: 1px solid rgba(255, 255, 255, 0.86);
}

.singularity-frame--br {
  right: clamp(34px, 4vw, 62px);
  bottom: clamp(34px, 4vw, 62px);
  border-right: 1px solid rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.86);
}

.singularity-hero--protocol .singularity-hero-copy {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: min(100%, 58rem);
}

.singularity-hero--protocol .singularity-hero-copy::before {
  content: "";
  position: absolute;
  inset: -28% -18% -36%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(20, 54, 245, 0.28) 0%, rgba(0, 5, 105, 0.18) 42%, rgba(0, 8, 255, 0) 72%);
  pointer-events: none;
}

.singularity-hero--protocol h1 {
  color: #fff;
  font-size: var(--fs-hero);
  text-shadow:
    0 0 42px rgba(255, 255, 255, 0.2),
    0 26px 74px rgba(0, 0, 0, 0.3);
}

.singularity-divider {
  width: clamp(42px, 5vw, 82px);
  height: 2px;
  margin: clamp(22px, 3vw, 36px) 0 clamp(18px, 2.6vw, 30px);
  background: rgba(255, 255, 255, 0.76);
}

.singularity-hero--protocol .hero-copy {
  margin: 0;
  font-size: clamp(0.86rem, 1.25vw, 1.28rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1.35;
  text-transform: uppercase;
}

.singularity-side {
  position: absolute;
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-ui);
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.45;
  text-transform: uppercase;
}

.singularity-side--left {
  left: clamp(48px, 5vw, 92px);
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.singularity-side--right {
  right: clamp(48px, 5vw, 92px);
  top: 50%;
  text-align: left;
  transform: translateY(-50%);
}

.singularity-bottom {
  position: absolute;
  left: clamp(54px, 5vw, 100px);
  right: clamp(54px, 5vw, 100px);
  bottom: clamp(46px, 4vw, 76px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: clamp(28px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.singularity-bottom span:nth-child(2) {
  text-align: center;
}

.singularity-bottom span:nth-child(3) {
  text-align: right;
}

@keyframes hero-shader {
  0% {
    transform: translate3d(calc(-1.4% + var(--hero-drift)), 0, 0) rotate(var(--hero-tilt)) scale(1.08);
  }

  50% {
    transform: translate3d(calc(1.2% + var(--hero-drift)), -1.8%, 0) rotate(calc(4deg + var(--hero-tilt))) scale(1.13);
  }

  100% {
    transform: translate3d(calc(-0.6% + var(--hero-drift)), 1.1%, 0) rotate(calc(-3deg + var(--hero-tilt))) scale(1.1);
  }
}

@keyframes frame-grow {
  from {
    border-width: 1px;
  }
}

@keyframes academy-frame-in {
  from {
    border-width: 0;
  }
}

.story-loader {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: #0008ff;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 1px transparent;
  opacity: 1;
  transition:
    opacity 620ms var(--ease-premium),
    transform 700ms var(--ease-premium);
}

.story-loader.is-framed {
  border-width: var(--frame-width);
  border-color: #fff;
  animation: frame-grow var(--motion-slow) var(--ease-premium) both;
}

.story-loader.is-clearing,
.story-loader.is-done {
  opacity: 0;
  transform: scale(1.006);
  pointer-events: none;
}

.story-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms var(--ease-premium) var(--reveal-delay, 0ms),
    transform 700ms var(--ease-premium) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.story-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-ready .academy-hero [data-reveal] {
  transform: translateY(18px) scale(0.98);
}

.story-ready .academy-hero [data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

.story-ready .academy-hero .hero-brand-link[data-reveal] {
  transform: translateX(-50%) translateY(18px) scale(0.98);
}

.story-ready .academy-hero .hero-brand-link[data-reveal].is-visible {
  transform: translateX(-50%) translate3d(calc(var(--magnet-x, 0) * 1px), calc(var(--magnet-y, 0) * 1px), 0) scale(1);
}

.js .academy-page.sequence-loading:not(.sequence-content) .academy-hero [data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
}

.js .academy-page.sequence-loading:not(.sequence-content) .academy-hero .hero-brand-link[data-reveal] {
  transform: translateX(-50%) translateY(18px) scale(0.98);
}

.story-ready .facts [data-reveal],
.story-ready .facts [data-reveal].is-visible {
  transform: none;
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-50%) translateY(-3px);
  }

  50% {
    opacity: 0.92;
    transform: translateX(-50%) translateY(5px);
  }
}

@keyframes fallback-flight {
  0% {
    transform: translate3d(0, 8vh, 0) rotate(-7deg) scale(0.82);
  }

  28% {
    transform: translate3d(43vw, -2vh, 0) rotate(4deg) scale(0.98);
  }

  56% {
    transform: translate3d(82vw, 5vh, 0) rotate(-3deg) scale(0.9);
  }

  100% {
    transform: translate3d(140vw, -8vh, 0) rotate(5deg) scale(0.8);
  }
}

@keyframes fallback-prop {
  to {
    transform: rotate(1turn);
  }
}

@keyframes button-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-color-scheme: dark) {
  .header-logo {
    filter: invert(1);
  }

  .academy-page .header-logo {
    filter: invert(1);
  }

  .depth-field {
    mix-blend-mode: screen;
  }
}

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

  .academy-hero::before {
    animation: none;
  }

  .hero-scroll,
  .signup-form[aria-busy="true"] button::after {
    animation: none;
  }

  body::before,
  .academy-page::after,
  .depth-field,
  .singularity-canvas,
  .hero-flight,
  .hero-flight-front,
  .hero-flight-fallback,
  .academy-hero,
  .singularity-hero,
  .statement > .section-kicker,
  .program > .section-kicker,
  .audience > .section-kicker,
  .signup > .section-kicker,
  .story-loader,
  .story-ready [data-reveal] {
    animation: none;
    transition: none;
  }

  .depth-field {
    display: none;
  }

  .noodles-canvas {
    display: none;
  }

  .singularity-canvas {
    display: none;
  }

  .liquid-canvas {
    display: none;
  }

  .hero-flight {
    display: none;
  }

  .hero-flight-front {
    display: none;
  }

  .hero-flight-fallback {
    display: none;
  }

  .glass-hero {
    cursor: default;
  }

  .story-ready [data-reveal],
  .story-ready .academy-hero [data-reveal],
  .story-ready .day[data-reveal],
  .story-ready .academy-hero .hero-brand-link[data-reveal],
  .story-ready .statement:not(.is-active) > .section-kicker,
  .story-ready .program:not(.is-active) > .section-kicker,
  .story-ready .audience:not(.is-active) > .section-kicker,
  .story-ready .signup:not(.is-active) > .section-kicker {
    opacity: 1;
    transform: none;
  }

  .hero-brand-link,
  .story-ready .academy-hero .hero-brand-link[data-reveal],
  .story-ready .academy-hero .hero-brand-link[data-reveal].is-visible {
    transform: translateX(-50%);
  }
}

@media (hover: none), (pointer: coarse) {
  .facts div:hover,
  .audience li:hover,
  .text-action:hover,
  .signup-form button:hover,
  .choice-field label:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: min(88vw, 420px);
  }

  .site-header {
    align-items: center;
  }

  .header-logo {
    width: min(54vw, 220px);
  }

  .academy-nav {
    gap: 12px;
  }

  .statement,
  .program,
  .audience,
  .signup {
    grid-template-columns: 1fr;
  }

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

  .facts div:nth-child(2) {
    border-right: 0;
  }

  .facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    position: static;
  }

  .statement > .section-kicker,
  .program > .section-kicker,
  .audience > .section-kicker,
  .signup > .section-kicker {
    position: static;
  }

  .day {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .noodles-hero {
    min-height: 92svh;
    padding-inline: clamp(20px, 7vw, 48px);
  }

  .noodles-hero .hero-brand-link {
    width: min(46vw, 190px);
  }

  .noodles-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .noodles-topbar .academy-nav {
    justify-content: flex-start;
    gap: 12px;
    margin-left: 0;
  }

  .noodles-topbar .header-logo {
    width: min(54vw, 210px);
  }

  .noodles-hero--nav {
    min-height: 100svh;
    padding-top: 168px;
    padding-bottom: 96px;
  }

  .noodles-hero--nav h1 {
    font-size: clamp(2.45rem, 14vw, 4.25rem);
  }

  .noodles-hero--omma {
    min-height: 100svh;
    padding: 146px 18px 118px;
  }

  .noodles-hero--omma h1 {
    max-width: 92vw;
    font-size: clamp(1.85rem, 9.2vw, 3.15rem);
  }

  .noodles-hero--scroll {
    padding-bottom: 154px;
  }

  .noodles-hero-rail {
    justify-content: flex-start;
    bottom: 74px;
  }

  .singularity-hero {
    min-height: 100svh;
    padding-inline: clamp(20px, 7vw, 48px);
  }

  .version-nav {
    top: 10px;
    right: 10px;
  }

  .version-nav summary {
    padding-inline: 12px;
    letter-spacing: 0.08em;
  }

  .singularity-hero .hero-brand-link {
    width: min(46vw, 190px);
  }

  .singularity-actions {
    gap: 16px;
  }

  .singularity-hero--orbit h1 {
    font-size: clamp(2rem, 10.2vw, 2.8rem);
  }

  .singularity-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    left: clamp(28px, 8vw, 42px);
    right: clamp(28px, 8vw, 42px);
  }

  .singularity-topbar .academy-nav {
    justify-content: flex-start;
    gap: 12px;
    margin-left: 0;
  }

  .singularity-nav-cta,
  .singularity-side {
    display: none;
  }

  .singularity-hero--protocol {
    min-height: 100svh;
    padding-top: 178px;
    padding-bottom: 122px;
  }

  .singularity-hero--protocol h1 {
    font-size: clamp(2rem, 10.2vw, 3.1rem);
  }

  .singularity-hero--protocol .hero-copy {
    max-width: 18rem;
    letter-spacing: 0.2em;
  }

  .singularity-bottom {
    left: clamp(28px, 8vw, 42px);
    right: clamp(28px, 8vw, 42px);
    bottom: 46px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px;
    letter-spacing: 0.16em;
    text-align: left;
  }

  .singularity-bottom span,
  .singularity-bottom span:nth-child(2),
  .singularity-bottom span:nth-child(3) {
    text-align: left;
  }

  .glass-hero {
    min-height: 100svh;
  }

  .glass-brand-link {
    width: min(46vw, 186px);
  }

  .glass-hero-copy {
    left: 50%;
    right: auto;
    top: 50%;
    width: min(86vw, 34rem);
  }

  .glass-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 10.5vw, 3.1rem);
  }

  .glass-hero .hero-scroll {
    left: 50%;
    right: auto;
    bottom: clamp(34px, 8vw, 52px);
    transform: translateX(-50%);
  }
}
