@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #02070a;
  --white: #ffffff;
  --cyan: #25d9e7;
  --cyan-soft: #a8f5f7;
  --muted: rgba(255, 255, 255, 0.58);
  --quiet: rgba(255, 255, 255, 0.36);
  --line: rgba(168, 245, 247, 0.14);
  --header-height: 72px;
  --page-gutter: clamp(18px, 4vw, 48px);
  --content-width: 1340px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Manrope", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--page-gutter);
  border-bottom: 1px solid rgba(168, 245, 247, 0.11);
  background: rgba(2, 7, 10, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 245, 247, 0.34);
  border-radius: 7px;
  color: var(--cyan);
  background: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy > span {
  display: block;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 750;
  line-height: 1.1;
}

.brand-copy > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  font-weight: 500;
}

.header-context {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-signal {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(37, 217, 231, 0.72);
  animation: signal-pulse 2.6s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 245, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 245, 247, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 48%, transparent 88%);
}

.hero-glow {
  position: absolute;
  inset: -20% -14% -18% 30%;
  z-index: -3;
  opacity: 0.75;
  pointer-events: none;
  background:
    radial-gradient(circle at 67% 48%, rgba(37, 217, 231, 0.1), transparent 21%),
    radial-gradient(circle at 72% 48%, rgba(37, 217, 231, 0.035), transparent 47%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(80px, 14vh, 150px)) 0 clamp(56px, 8vh, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  width: min(1120px, 100%);
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(58px, 7.25vw, 116px);
  font-weight: 790;
  line-height: 0.98;
  letter-spacing: -0.048em;
  text-wrap: nowrap;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(34px);
}

.hero-line--secondary {
  margin-top: 0.08em;
}

.hero-accent {
  color: var(--cyan-soft);
}

.is-ready .hero-line {
  animation: line-enter 900ms var(--ease-out) forwards;
}

.is-ready .hero-line--secondary {
  animation-delay: 110ms;
}

.hero-action {
  width: fit-content;
  min-height: 54px;
  margin-top: clamp(38px, 6vh, 64px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px 0 24px;
  border-radius: 10px;
  color: #031014;
  background: var(--cyan);
  font-size: 15px;
  font-weight: 760;
  opacity: 0;
  transform: translateY(20px);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 220ms var(--ease-out);
}

.is-ready .hero-action {
  animation: action-enter 760ms 260ms var(--ease-out) forwards;
}

.hero-action:hover {
  background: var(--cyan-soft);
  transform: translateY(-2px);
}

.hero-action:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(168, 245, 247, 0.62);
  outline-offset: 4px;
}

.hero-action-arrow {
  font-size: 19px;
  line-height: 1;
  transition: transform 220ms var(--ease-out);
}

.hero-action:hover .hero-action-arrow {
  transform: translate(3px, 3px);
}

.hero-index {
  position: absolute;
  left: 0;
  bottom: clamp(28px, 5vh, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-index span:first-child {
  color: var(--cyan-soft);
}

.hero-edge {
  position: absolute;
  z-index: 5;
  right: var(--page-gutter);
  bottom: clamp(26px, 5vh, 46px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-edge-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--cyan), transparent);
}

.orbital-scene {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 76%;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
  will-change: transform;
}

.is-ready .orbital-scene {
  animation: scene-enter 1400ms 130ms var(--ease-out) forwards;
}

.orbital-field {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbital-rings ellipse {
  fill: none;
  stroke: url("#orbitStroke");
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.orbital-rings .orbit-inner {
  stroke: rgba(168, 245, 247, 0.16);
  stroke-dasharray: 3 7;
}

.orbital-axis {
  opacity: 0.16;
}

.orbital-axis line {
  stroke: var(--cyan-soft);
  stroke-width: 0.65;
  stroke-dasharray: 1 11;
}

.core-halo {
  opacity: 0.28;
  animation: core-breathe 4.8s ease-in-out infinite;
}

.core-ring {
  fill: rgba(2, 7, 10, 0.84);
  stroke: rgba(168, 245, 247, 0.28);
  stroke-width: 1;
}

.core {
  fill: var(--cyan-soft);
  filter: url("#planetGlow");
}

.planet-body {
  fill: #d7fdff;
  filter: url("#planetGlow");
}

.planet-halo {
  fill: rgba(37, 217, 231, 0.1);
  stroke: rgba(168, 245, 247, 0.16);
  stroke-width: 0.75;
}

.planet--two .planet-body,
.planet--three .planet-body {
  fill: var(--cyan);
}

.orbit-points {
  fill: rgba(168, 245, 247, 0.58);
}

.routes-section {
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
  padding: clamp(92px, 11vw, 148px) var(--page-gutter) clamp(104px, 12vw, 164px);
  color: #101820;
  background:
    linear-gradient(rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    #edf3f4;
  background-size: 84px 84px;
}

.routes-section::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -260px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(8, 127, 146, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.routes-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.routes-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
  margin-bottom: clamp(58px, 7vw, 92px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 0;
  color: #66757b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker span:first-child {
  color: #087f92;
}

.section-kicker::after {
  content: "";
  width: 64px;
  height: 1px;
  margin-left: 4px;
  background: rgba(8, 127, 146, 0.34);
}

.routes-heading h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(46px, 5.4vw, 82px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.has-js .routes-heading {
  opacity: 0;
  transform: translateY(24px);
}

.has-js .routes-section.is-visible .routes-heading {
  animation: routes-heading-enter 760ms var(--ease-out) forwards;
}

.routes-browser {
  display: grid;
  grid-template-columns: minmax(300px, 0.39fr) minmax(0, 0.61fr);
  column-gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.route-entry {
  display: contents;
}

.route-trigger {
  position: relative;
  grid-column: 1;
  scroll-margin-top: calc(var(--header-height) + 12px);
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 28px 24px;
  gap: 14px;
  align-items: center;
  padding: 20px 18px;
  border: 0;
  border-top: 1px solid rgba(16, 24, 32, 0.16);
  color: #59676d;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    padding 240ms var(--ease-out);
}

.route-entry:nth-child(1) .route-trigger {
  grid-row: 1;
}

.route-entry:nth-child(2) .route-trigger {
  grid-row: 2;
}

.route-entry:nth-child(3) .route-trigger {
  grid-row: 3;
}

.route-entry:nth-child(4) .route-trigger {
  grid-row: 4;
  border-bottom: 1px solid rgba(16, 24, 32, 0.16);
}

.route-trigger::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 999px;
  background: #0da8bd;
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease-out);
}

.route-trigger:hover {
  color: #101820;
  background: rgba(255, 255, 255, 0.38);
}

.route-entry.is-active .route-trigger {
  padding-left: 26px;
  color: #101820;
  background: rgba(255, 255, 255, 0.76);
}

.route-entry.is-active .route-trigger::before {
  opacity: 1;
  transform: scaleY(1);
}

.route-trigger:focus-visible {
  z-index: 2;
  outline: 3px solid rgba(8, 127, 146, 0.32);
  outline-offset: 3px;
}

.route-number,
.route-count {
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.route-number {
  color: #087f92;
}

.route-count {
  color: #8a979b;
  text-align: right;
}

.route-title {
  max-width: 330px;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 680;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.route-trigger-arrow {
  color: #087f92;
  font-size: 18px;
  line-height: 1;
  transition: transform 240ms var(--ease-out);
}

.route-entry.is-active .route-trigger-arrow {
  transform: rotate(90deg);
}

.route-panel {
  grid-column: 2;
  grid-row: 1 / span 4;
  min-width: 0;
}

.route-panel[hidden] {
  display: none;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 24px;
  color: #101820;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(46, 67, 72, 0.035);
  transform-origin: center bottom;
  transition:
    transform 240ms var(--ease-out),
    border-color 220ms ease,
    box-shadow 240ms ease;
}

.route-panel:not([hidden]) .program-card {
  animation: program-card-enter 540ms var(--ease-out) both;
}

.route-panel:not([hidden]) .program-card:nth-child(2) {
  animation-delay: 55ms;
}

.route-panel:not([hidden]) .program-card:nth-child(3) {
  animation-delay: 110ms;
}

.route-panel:not([hidden]) .program-card:nth-child(4) {
  animation-delay: 165ms;
}

.program-card--link {
  display: block;
}

.program-card--link:hover,
.program-card--link:focus-visible {
  z-index: 1;
  border-color: rgba(8, 127, 146, 0.46);
  box-shadow: 0 22px 58px rgba(41, 88, 96, 0.09);
  transform: translateY(-4px);
}

.program-card--link:focus-visible {
  outline: 3px solid rgba(8, 127, 146, 0.24);
  outline-offset: 3px;
}

.program-card--soon {
  background:
    linear-gradient(135deg, rgba(37, 217, 231, 0.055), transparent 48%),
    rgba(255, 255, 255, 0.82);
}

.program-card--wide {
  grid-column: 1 / -1;
  min-height: 350px;
}

.program-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.program-number {
  color: #078fa4;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #31404d;
  background: #e7edef;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.program-card h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.program-card p {
  max-width: 600px;
  margin: 22px 0 0;
  padding-right: 60px;
  color: #687682;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 480;
  line-height: 1.52;
}

.program-card-note {
  position: absolute;
  left: clamp(24px, 2.6vw, 34px);
  bottom: 28px;
  color: #087f92;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.program-glyph {
  position: absolute;
  right: 27px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  color: #55aebc;
  opacity: 0.84;
}

.program-glyph i,
.program-glyph::before,
.program-glyph::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.program-glyph--frame i:nth-child(1) {
  inset: 5px;
  border: 1px solid currentColor;
}

.program-glyph--frame i:nth-child(2) {
  inset: 20px;
  border: 1px solid currentColor;
}

.program-glyph--frame i:nth-child(3) {
  top: 5px;
  bottom: 5px;
  left: 50%;
  width: 1px;
  background: currentColor;
}

.program-glyph--frame::after {
  top: 50%;
  right: 5px;
  left: 5px;
  height: 1px;
  background: currentColor;
}

.program-glyph--nodes::before,
.program-glyph--nodes::after {
  top: 50%;
  left: 10px;
  width: 52px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.program-glyph--nodes::after {
  transform: rotate(-45deg);
}

.program-glyph--nodes i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.program-glyph--nodes i:nth-child(1) {
  top: 6px;
  left: 6px;
}

.program-glyph--nodes i:nth-child(2) {
  top: 6px;
  right: 6px;
}

.program-glyph--nodes i:nth-child(3) {
  right: 6px;
  bottom: 6px;
}

.program-glyph--nodes i:nth-child(4) {
  bottom: 6px;
  left: 6px;
}

.program-glyph--orbit i:nth-child(1) {
  inset: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: scaleY(0.42) rotate(-18deg);
}

.program-glyph--orbit i:nth-child(2) {
  top: 29px;
  left: 29px;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.program-glyph--orbit i:nth-child(3) {
  top: 17px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.program-glyph--path::before {
  top: 35px;
  left: 10px;
  width: 52px;
  height: 1px;
  background: currentColor;
  transform: rotate(-24deg);
}

.program-glyph--path i,
.program-glyph--launch i {
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.program-glyph--path i:nth-child(1) {
  bottom: 13px;
  left: 6px;
}

.program-glyph--path i:nth-child(2) {
  top: 26px;
  left: 31px;
}

.program-glyph--path i:nth-child(3) {
  top: 10px;
  right: 4px;
  background: currentColor;
}

.program-glyph--launch::before {
  inset: 9px 20px 14px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.program-glyph--launch i:nth-child(1) {
  right: 8px;
  bottom: 8px;
}

.program-glyph--launch i:nth-child(2) {
  bottom: 8px;
  left: 8px;
}

.program-glyph--launch i:nth-child(3) {
  top: 5px;
  left: 31px;
  background: currentColor;
}

.program-glyph--axis::before,
.program-glyph--axis::after {
  top: 35px;
  left: 6px;
  width: 60px;
  height: 1px;
  background: currentColor;
}

.program-glyph--axis::after {
  transform: rotate(90deg);
}

.program-glyph--axis i:nth-child(1) {
  top: 25px;
  left: 25px;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.program-glyph--axis i:nth-child(2),
.program-glyph--axis i:nth-child(3) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.program-glyph--axis i:nth-child(2) {
  top: 6px;
  left: 32px;
}

.program-glyph--axis i:nth-child(3) {
  right: 6px;
  bottom: 32px;
}

.program-glyph--layers i {
  right: 7px;
  left: 7px;
  height: 24px;
  border: 1px solid currentColor;
  transform: skewX(-28deg);
}

.program-glyph--layers i:nth-child(1) {
  top: 7px;
}

.program-glyph--layers i:nth-child(2) {
  top: 24px;
}

.program-glyph--layers i:nth-child(3) {
  top: 41px;
}

.program-glyph--network::before,
.program-glyph--network::after {
  top: 35px;
  left: 8px;
  width: 56px;
  height: 1px;
  background: currentColor;
  transform: rotate(42deg);
}

.program-glyph--network::after {
  transform: rotate(-42deg);
}

.program-glyph--network i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
}

.program-glyph--network i:nth-child(1) {
  top: 5px;
  left: 5px;
}

.program-glyph--network i:nth-child(2) {
  top: 5px;
  right: 5px;
}

.program-glyph--network i:nth-child(3) {
  top: 30px;
  left: 30px;
}

.program-glyph--network i:nth-child(4) {
  right: 5px;
  bottom: 5px;
}

.program-glyph--network i:nth-child(5) {
  bottom: 5px;
  left: 5px;
}

.program-glyph--steps i {
  bottom: 8px;
  width: 12px;
  border: 1px solid currentColor;
}

.program-glyph--steps i:nth-child(1) {
  left: 5px;
  height: 14px;
}

.program-glyph--steps i:nth-child(2) {
  left: 22px;
  height: 27px;
}

.program-glyph--steps i:nth-child(3) {
  left: 39px;
  height: 40px;
}

.program-glyph--steps i:nth-child(4) {
  left: 56px;
  height: 54px;
  background: rgba(85, 174, 188, 0.08);
}

.founder-section {
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
  padding: clamp(96px, 11vw, 156px) var(--page-gutter) clamp(112px, 12vw, 176px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 35%, rgba(37, 217, 231, 0.075), transparent 26%),
    #050b0f;
}

.founder-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 245, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 245, 247, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 54%, transparent 100%);
}

.founder-section::after {
  content: "";
  position: absolute;
  top: 23%;
  right: -290px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(168, 245, 247, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.founder-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.founder-heading {
  margin-bottom: clamp(52px, 7vw, 92px);
}

.section-kicker--dark {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.5);
}

.section-kicker--dark span:first-child {
  color: var(--cyan);
}

.section-kicker--dark::after {
  background: rgba(168, 245, 247, 0.28);
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(360px, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 0.79;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.18);
  background: #10161b;
}

.founder-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(2, 7, 10, 0.78) 100%),
    linear-gradient(135deg, rgba(37, 217, 231, 0.08), transparent 34%);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(168, 245, 247, 0.12);
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 900ms var(--ease-out);
}

.founder-section.is-visible .founder-portrait img {
  transform: scale(1.025);
}

.founder-portrait figcaption {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 30px;
  left: 34px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy {
  padding: 20px 0;
}

.founder-role {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin: 0;
  font-size: clamp(52px, 5.7vw, 88px);
  font-weight: 770;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.founder-description {
  max-width: 790px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 480;
  line-height: 1.48;
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(52px, 6vw, 76px) 0 0;
  border-top: 1px solid rgba(168, 245, 247, 0.18);
  border-bottom: 1px solid rgba(168, 245, 247, 0.18);
}

.founder-facts div {
  min-width: 0;
  padding: 26px clamp(16px, 2.1vw, 30px) 28px 0;
}

.founder-facts div + div {
  padding-left: clamp(16px, 2.1vw, 30px);
  border-left: 1px solid rgba(168, 245, 247, 0.12);
}

.founder-facts dt,
.founder-facts dd {
  margin: 0;
}

.founder-facts dt {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.035em;
}

.founder-facts dd {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.founder-credentials span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(168, 245, 247, 0.2);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(168, 245, 247, 0.035);
  font-size: 12px;
  font-weight: 650;
}

.founder-mission {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(38px, 6vw, 92px);
  margin-top: clamp(96px, 12vw, 168px);
  padding-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid rgba(168, 245, 247, 0.2);
}

.founder-mission-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 6px 0 0;
  padding-right: 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-mission blockquote {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(30px, 3.25vw, 50px);
  font-weight: 560;
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.journal-section {
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
  padding: clamp(104px, 11vw, 158px) var(--page-gutter) clamp(116px, 12vw, 174px);
  color: var(--white);
  border-top: 1px solid rgba(168, 245, 247, 0.14);
  background: #08121a;
}

.journal-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 245, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 245, 247, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 70%, transparent 100%);
}

.journal-section::before {
  content: "";
  position: absolute;
  top: -330px;
  right: -170px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(168, 245, 247, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.journal-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.journal-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
  margin-bottom: clamp(62px, 8vw, 104px);
}

.journal-heading-copy h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 780;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.journal-heading-copy > p {
  max-width: 850px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 470;
  line-height: 1.48;
}

.journal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.journal-card {
  position: relative;
  min-height: 392px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.2vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(168, 245, 247, 0.025), transparent 46%),
    rgba(7, 16, 24, 0.76);
}

.journal-card::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(168, 245, 247, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.journal-category {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(37, 217, 231, 0.105);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.journal-card h3 {
  max-width: 720px;
  margin: 32px 0 0;
  font-size: clamp(25px, 2.45vw, 36px);
  font-weight: 690;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.journal-summary {
  max-width: 730px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 470;
  line-height: 1.52;
}

.journal-read {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 36px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 720;
}

.journal-read b {
  font-size: 18px;
  font-weight: 500;
}

.journal-placeholder-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.events-section {
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
  padding: clamp(104px, 11vw, 158px) var(--page-gutter) clamp(116px, 13vw, 184px);
  color: #101820;
  background: #cfeaed;
}

.events-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 127, 146, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 146, 0.07) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.62) 70%, transparent 100%);
}

.events-section::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -280px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(8, 127, 146, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.events-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.events-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
}

.events-heading-copy h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(52px, 6.1vw, 94px);
  font-weight: 760;
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.events-heading-copy > p {
  max-width: 720px;
  margin: 30px 0 0;
  color: #557076;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 480;
  line-height: 1.5;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(76px, 9vw, 126px);
  border-top: 1px solid rgba(16, 24, 32, 0.2);
  border-bottom: 1px solid rgba(16, 24, 32, 0.2);
}

.event-item {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4vw, 54px);
}

.event-item + .event-item {
  border-left: 1px solid rgba(16, 24, 32, 0.2);
}

.event-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.event-number {
  color: #087f92;
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.event-meta > div {
  display: grid;
  gap: 7px;
  color: #567177;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.event-meta > div span:first-child {
  color: #087f92;
}

.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: clamp(58px, 7vw, 96px);
}

.event-type {
  margin: 0;
  color: #087f92;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-content h3 {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(28px, 2.65vw, 40px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.event-description {
  max-width: 640px;
  margin: 28px 0 0;
  color: #52676d;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 470;
  line-height: 1.55;
}

.event-audience {
  max-width: 640px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 24, 32, 0.15);
  color: #52676d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.event-audience span {
  display: block;
  margin-bottom: 8px;
  color: #101820;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-status {
  width: fit-content;
  margin-top: auto;
  padding-top: 38px;
  color: #087f92;
  font-size: 12px;
  font-weight: 720;
}

.collaboration-section {
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
  padding: clamp(104px, 11vw, 158px) var(--page-gutter) clamp(116px, 13vw, 184px);
  color: #101820;
  background: #edf3f4;
}

.collaboration-grid {
  position: absolute;
  inset: 0;
  opacity: 0.66;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.7) 58%, transparent 100%);
}

.collaboration-section::after {
  content: "";
  position: absolute;
  right: -280px;
  bottom: -390px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(8, 127, 146, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.collaboration-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.collaboration-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
}

.collaboration-heading h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(52px, 6.1vw, 94px);
  font-weight: 760;
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.collaboration-content {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
  margin-top: clamp(72px, 10vw, 142px);
}

.collaboration-intro > p {
  max-width: 450px;
  margin: 0;
  color: #64747a;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 480;
  line-height: 1.55;
}

.collaboration-action {
  width: min(100%, 390px);
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding: 0 22px;
  border: 1px solid #101820;
  color: var(--white);
  background: #101820;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
  opacity: 1;
}

.collaboration-action:focus-visible {
  outline: 3px solid rgba(8, 127, 146, 0.28);
  outline-offset: 4px;
}

.collaboration-action span:last-child {
  color: var(--cyan);
  font-size: 20px;
  line-height: 1;
}

.collaboration-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(16, 24, 32, 0.17);
}

.collaboration-list li {
  min-height: 116px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  padding: 24px 8px;
  border-top: 1px solid rgba(16, 24, 32, 0.17);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 630;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.collaboration-number {
  color: #087f92;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.collaboration-arrow {
  color: #087f92;
  font-size: 18px;
  text-align: right;
}

.has-js .founder-heading,
.has-js .founder-portrait,
.has-js .founder-copy,
.has-js .founder-mission {
  opacity: 0;
  transform: translateY(28px);
}

.has-js .founder-section.is-visible .founder-heading,
.has-js .founder-section.is-visible .founder-portrait,
.has-js .founder-section.is-visible .founder-copy,
.has-js .founder-section.is-visible .founder-mission {
  animation: founder-enter 800ms var(--ease-out) forwards;
}

.has-js .founder-section.is-visible .founder-portrait {
  animation-delay: 80ms;
}

.has-js .founder-section.is-visible .founder-copy {
  animation-delay: 160ms;
}

.has-js .founder-section.is-visible .founder-mission {
  animation-delay: 240ms;
}

.has-js .journal-heading,
.has-js .journal-card,
.has-js .journal-placeholder-note {
  opacity: 0;
  transform: translateY(28px);
}

.has-js .journal-section.is-visible .journal-heading,
.has-js .journal-section.is-visible .journal-card,
.has-js .journal-section.is-visible .journal-placeholder-note {
  animation: founder-enter 780ms var(--ease-out) forwards;
}

.has-js .journal-section.is-visible .journal-card:nth-child(1) {
  animation-delay: 80ms;
}

.has-js .journal-section.is-visible .journal-card:nth-child(2) {
  animation-delay: 140ms;
}

.has-js .journal-section.is-visible .journal-card:nth-child(3) {
  animation-delay: 200ms;
}

.has-js .journal-section.is-visible .journal-card:nth-child(4) {
  animation-delay: 260ms;
}

.has-js .journal-section.is-visible .journal-placeholder-note {
  animation-delay: 320ms;
}

.has-js .events-heading,
.has-js .event-item {
  opacity: 0;
  transform: translateY(28px);
}

.has-js .events-section.is-visible .events-heading,
.has-js .events-section.is-visible .event-item {
  animation: founder-enter 780ms var(--ease-out) forwards;
}

.has-js .events-section.is-visible .event-item:nth-child(1) {
  animation-delay: 90ms;
}

.has-js .events-section.is-visible .event-item:nth-child(2) {
  animation-delay: 170ms;
}

.has-js .collaboration-heading,
.has-js .collaboration-intro,
.has-js .collaboration-list li {
  opacity: 0;
  transform: translateY(28px);
}

.has-js .collaboration-section.is-visible .collaboration-heading,
.has-js .collaboration-section.is-visible .collaboration-intro,
.has-js .collaboration-section.is-visible .collaboration-list li {
  animation: founder-enter 780ms var(--ease-out) forwards;
}

.has-js .collaboration-section.is-visible .collaboration-intro {
  animation-delay: 80ms;
}

.has-js .collaboration-section.is-visible .collaboration-list li:nth-child(1) {
  animation-delay: 110ms;
}

.has-js .collaboration-section.is-visible .collaboration-list li:nth-child(2) {
  animation-delay: 170ms;
}

.has-js .collaboration-section.is-visible .collaboration-list li:nth-child(3) {
  animation-delay: 230ms;
}

.has-js .collaboration-section.is-visible .collaboration-list li:nth-child(4) {
  animation-delay: 290ms;
}

@keyframes routes-heading-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes founder-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes program-card-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes line-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes action-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scene-enter {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes core-breathe {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.94);
    transform-origin: center;
  }
  50% {
    opacity: 0.4;
    transform: scale(1.08);
    transform-origin: center;
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .routes-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .routes-heading h2 {
    max-width: 720px;
  }

  .routes-browser {
    display: block;
  }

  .route-entry {
    display: block;
  }

  .route-trigger {
    min-height: 102px;
  }

  .route-entry:last-child .route-trigger {
    border-bottom: 1px solid rgba(16, 24, 32, 0.16);
  }

  .route-panel {
    padding: 18px 0 34px;
  }

  .route-entry.is-active + .route-entry .route-trigger {
    border-top-color: rgba(16, 24, 32, 0.08);
  }

  .program-card {
    min-height: 300px;
  }

  .program-card--wide {
    min-height: 330px;
  }

  .founder-profile {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .founder-portrait {
    width: min(72vw, 560px);
  }

  .founder-copy {
    max-width: 840px;
    padding: 0;
  }

  .founder-mission {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .founder-mission-label {
    max-width: 240px;
  }

  .journal-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .journal-heading-copy {
    max-width: 820px;
  }

  .events-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .events-heading-copy {
    max-width: 880px;
  }

  .collaboration-heading,
  .collaboration-content {
    grid-template-columns: 1fr;
  }

  .collaboration-heading {
    gap: 30px;
  }

  .collaboration-content {
    gap: 58px;
  }

  .collaboration-intro > p {
    max-width: 720px;
  }
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: clamp(52px, 7.5vw, 82px);
  }

  .orbital-scene {
    left: 81%;
    width: min(82vw, 820px);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --page-gutter: 18px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-copy > span,
  .header-context span:last-child {
    display: none;
  }

  .header-context {
    gap: 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-grid {
    background-size: 54px 54px;
    opacity: 0.25;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 66%, transparent 100%);
  }

  .hero-inner {
    width: calc(100% - 36px);
    min-height: 100svh;
    padding-top: calc(var(--header-height) + clamp(112px, 19vh, 178px));
    padding-bottom: 74px;
    justify-content: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(39px, 10vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: nowrap;
  }

  .hero-line--secondary {
    margin-top: 0.1em;
  }

  .hero-action {
    width: 100%;
    min-height: 54px;
    margin-top: clamp(36px, 7vh, 56px);
    justify-content: space-between;
  }

  .orbital-scene {
    top: 65%;
    left: 77%;
    width: min(132vw, 660px);
    opacity: 0;
  }

  .hero-glow {
    inset: 18% -50% -20% 10%;
  }

  .hero-index {
    left: 0;
    bottom: 25px;
  }

  .hero-edge {
    display: none;
  }

  .routes-section {
    padding-top: 82px;
    padding-bottom: 110px;
    background-size: 54px 54px;
  }

  .routes-heading {
    margin-bottom: 48px;
  }

  .section-kicker {
    margin-top: 0;
  }

  .routes-heading h2 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.04;
  }

  .route-trigger {
    grid-template-columns: 30px minmax(0, 1fr) 24px 20px;
    gap: 10px;
    min-height: 92px;
    padding: 17px 12px;
  }

  .route-entry.is-active .route-trigger {
    padding-left: 18px;
  }

  .route-title {
    max-width: none;
    font-size: 17px;
  }

  .route-panel {
    padding-top: 14px;
    padding-bottom: 30px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .program-card,
  .program-card--wide {
    min-height: 294px;
    padding: 24px 24px 96px;
    border-radius: 20px;
  }

  .program-card-top {
    margin-bottom: 34px;
  }

  .program-card h3 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .program-card p {
    margin-top: 18px;
    padding-right: 44px;
    font-size: 16px;
  }

  .program-card-note {
    left: 24px;
    right: 96px;
    bottom: 23px;
    line-height: 1.35;
  }

  .program-glyph {
    right: 20px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    transform: scale(0.86);
    transform-origin: right bottom;
  }

  .founder-section {
    padding-top: 82px;
    padding-bottom: 112px;
  }

  .founder-grid {
    background-size: 54px 54px;
  }

  .founder-heading {
    margin-bottom: 44px;
  }

  .founder-profile {
    gap: 46px;
  }

  .founder-portrait {
    width: 100%;
    aspect-ratio: 0.82;
  }

  .founder-portrait::after {
    inset: 12px;
  }

  .founder-portrait figcaption {
    right: 24px;
    bottom: 22px;
    left: 24px;
    font-size: 9px;
  }

  .founder-role {
    margin-bottom: 14px;
  }

  .founder-copy h2 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 1;
  }

  .founder-description {
    margin-top: 26px;
    font-size: 18px;
  }

  .founder-facts {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .founder-facts div,
  .founder-facts div + div {
    min-height: 76px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    padding: 18px 0;
    border-left: 0;
  }

  .founder-facts div + div {
    border-top: 1px solid rgba(168, 245, 247, 0.12);
  }

  .founder-facts dd {
    margin-top: 0;
    font-size: 13px;
  }

  .founder-credentials {
    margin-top: 18px;
  }

  .founder-mission {
    gap: 28px;
    margin-top: 92px;
    padding-top: 36px;
  }

  .founder-mission blockquote {
    font-size: clamp(28px, 7.8vw, 38px);
    line-height: 1.3;
  }

  .journal-section {
    padding-top: 84px;
    padding-bottom: 112px;
  }

  .journal-grid {
    background-size: 54px 54px;
  }

  .journal-heading {
    gap: 28px;
    margin-bottom: 52px;
  }

  .journal-heading-copy h2 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .journal-heading-copy > p {
    margin-top: 26px;
    font-size: 19px;
  }

  .journal-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .journal-card {
    min-height: 354px;
    padding: 26px 24px;
    border-radius: 19px;
  }

  .journal-category {
    min-height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .journal-card h3 {
    margin-top: 28px;
    font-size: clamp(25px, 7.6vw, 32px);
  }

  .journal-summary {
    margin-top: 20px;
    font-size: 16px;
  }

  .journal-placeholder-note {
    margin-top: 22px;
    text-align: left;
  }

  .events-section {
    padding-top: 84px;
    padding-bottom: 116px;
  }

  .events-grid {
    background-size: 54px 54px;
  }

  .events-heading {
    gap: 28px;
  }

  .events-heading-copy h2 {
    font-size: clamp(42px, 12vw, 60px);
    line-height: 1.03;
  }

  .events-heading-copy > p {
    margin-top: 24px;
    font-size: 18px;
  }

  .events-list {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .event-item {
    min-height: 600px;
    padding: 32px 24px 38px;
  }

  .event-item + .event-item {
    border-top: 1px solid rgba(16, 24, 32, 0.2);
    border-left: 0;
  }

  .event-number {
    font-size: 58px;
  }

  .event-content {
    margin-top: 54px;
  }

  .event-content h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .event-description {
    font-size: 16px;
  }

  .collaboration-section {
    padding-top: 84px;
    padding-bottom: 116px;
  }

  .collaboration-grid {
    background-size: 54px 54px;
  }

  .collaboration-heading {
    gap: 28px;
  }

  .collaboration-heading h2 {
    font-size: clamp(42px, 12vw, 60px);
    line-height: 1.03;
  }

  .collaboration-content {
    gap: 54px;
    margin-top: 64px;
  }

  .collaboration-intro > p {
    font-size: 18px;
  }

  .collaboration-action {
    width: 100%;
    min-height: 58px;
    margin-top: 34px;
  }

  .collaboration-list li {
    min-height: 104px;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 20px 4px;
    font-size: 18px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(31px, 9.8vw, 38px);
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 108px);
  }

  .routes-heading h2 {
    font-size: 38px;
  }

  .route-trigger {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
  }

  .route-count {
    display: none;
  }

  .program-tag {
    min-height: 31px;
    padding: 0 11px;
    font-size: 11px;
  }

  .founder-description {
    font-size: 17px;
  }

  .founder-mission blockquote {
    font-size: 27px;
  }

  .journal-heading-copy > p {
    font-size: 18px;
  }

  .journal-card {
    min-height: 370px;
  }

  .events-heading-copy > p {
    font-size: 17px;
  }

  .event-item {
    min-height: 640px;
  }

  .event-content h3 {
    font-size: 28px;
  }

  .collaboration-heading h2 {
    font-size: 41px;
  }

  .collaboration-list li {
    font-size: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-line,
  .hero-action,
  .orbital-scene {
    opacity: 1;
    transform: none;
  }

  .has-js .routes-heading,
  .has-js .founder-heading,
  .has-js .founder-portrait,
  .has-js .founder-copy,
  .has-js .founder-mission,
  .has-js .journal-heading,
  .has-js .journal-card,
  .has-js .journal-placeholder-note,
  .has-js .events-heading,
  .has-js .event-item,
  .has-js .collaboration-heading,
  .has-js .collaboration-intro,
  .has-js .collaboration-list li {
    opacity: 1;
    transform: none;
  }

  .route-panel:not([hidden]) .program-card {
    animation: none;
  }

  .orbital-scene {
    transform: translate(-50%, -50%);
  }
}
