:root {
  --black: #050606;
  --charcoal: #070807;
  --panel: #0e0f0f;
  --panel-soft: #111212;
  --ivory: #e8e1d4;
  --muted: rgba(232, 225, 212, 0.54);
  --quiet: rgba(232, 225, 212, 0.34);
  --gold: #b99b63;
  --gold-dim: rgba(185, 155, 99, 0.62);
  --line: rgba(255, 255, 255, 0.052);
  --line-faint: rgba(255, 255, 255, 0.018);
  --max: 1360px;
  --serif: Didot, "Bodoni 72", "Cormorant Garamond", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --nexus-drift-x: 0px;
  --nexus-drift-y: 0px;
  --nexus-drift-rotate: 0deg;
  --sphere-scroll-scale: 1;
  --sphere-scroll-y: 0px;
  --sphere-scroll-opacity: 1;
  color: var(--ivory);
  background: var(--black);
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ivory);
  background: linear-gradient(180deg, #050606 0%, #070807 48%, #050606 100%);
}

@media (hover: hover) and (pointer: fine) {
  body.has-node-cursor,
  body.has-node-cursor a,
  body.has-node-cursor button {
    cursor: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 18% 9%, rgba(255, 255, 255, 0.034) 0 1px, transparent 1px),
    radial-gradient(circle at 73% 41%, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px);
  background-size: 5px 5px, 8px 8px;
  mix-blend-mode: soft-light;
}

.node-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 420ms ease, transform 420ms ease;
  mix-blend-mode: normal;
}

.node-cursor::before,
.node-cursor::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.node-cursor::before {
  width: 10px;
  height: 10px;
  background: rgba(232, 225, 212, 0.48);
  box-shadow:
    0 0 8px rgba(232, 225, 212, 0.12),
    0 0 19px rgba(185, 155, 99, 0.068);
}

.node-cursor::after {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(232, 225, 212, 0.046) 0%, rgba(185, 155, 99, 0.034) 48%, transparent 78%);
  filter: blur(2.5px);
  animation: cursorNodeBreath 4.2s ease-in-out infinite;
}

.node-cursor.is-visible {
  opacity: 0.46;
}

.node-cursor.is-hovering {
  transform: translate(-50%, -50%) scale(1.12);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
  background: transparent;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  height: 72px;
  padding: 0 clamp(22px, 4.6vw, 66px);
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.88), rgba(5, 6, 6, 0.62) 68%, rgba(5, 6, 6, 0)),
    rgba(5, 6, 6, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.034);
  backdrop-filter: blur(16px);
}

.brand-mark,
.connect-link,
.nav-links a,
.hero-enter,
.eyebrow,
.corridors,
.text-link {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-type {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: none;
  color: #8b847c;
}

.brand-type::before {
  content: none;
  position: absolute;
  inset: -11px -13px -8px -10px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.54;
  background:
    radial-gradient(ellipse at 46% 50%, rgba(145, 137, 128, 0.16), transparent 58%),
    radial-gradient(ellipse at 58% 38%, rgba(185, 155, 99, 0.055), transparent 44%);
  filter: blur(8px);
}

.brand-letter {
  display: inline-block;
  transform: translateY(0);
}

.brand-x {
  width: 9px;
  height: 16px;
  margin-left: -2px;
  transform: translateY(-7px);
  overflow: visible;
}

.brand-x .x-cut,
.hero-svg-x .x-cut {
  fill: rgba(198, 167, 125, 0.72);
  stroke: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(38px, 5.8vw, 82px);
}

.nav-links a,
.connect-link {
  color: rgba(232, 225, 212, 0.68);
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.connect-link:hover,
.text-link:hover {
  color: rgba(232, 225, 212, 0.96);
}

.connect-link {
  justify-self: end;
}

.connect-link::after,
.text-link i {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  margin-left: 18px;
  vertical-align: middle;
  background: rgba(185, 155, 99, 0.58);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 84px 3.2vw 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(232, 225, 212, 0.012), transparent 31rem),
    #050606;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 46%, transparent 0 24%, rgba(5, 6, 6, 0.42) 62%, rgba(5, 6, 6, 0.78) 96%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.28), rgba(5, 6, 6, 0.16) 35%, rgba(5, 6, 6, 0.34) 76%, rgba(5, 6, 6, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  z-index: 4;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.64;
  mask-image:
    radial-gradient(ellipse at 50% 55%, black 0 70%, rgba(0, 0, 0, 0.88) 88%, transparent 125%),
    linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(ellipse at 50% 55%, black 0 70%, rgba(0, 0, 0, 0.88) 88%, transparent 125%),
    linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-composite: source-in;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.6), rgba(5, 6, 6, 0.14) 24%, rgba(5, 6, 6, 0.16) 56%, rgba(5, 6, 6, 0.28) 88%, rgba(5, 6, 6, 0.48)),
    radial-gradient(ellipse at 50% 50%, transparent 0 42%, rgba(5, 6, 6, 0.22) 78%, rgba(5, 6, 6, 0.54));
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: -320px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.24;
  transform: translate3d(calc(var(--nexus-drift-x) * 1.02), calc(var(--nexus-drift-y) * 0.66), 0) rotate(calc(var(--nexus-drift-rotate) * 1.18));
  transform-origin: 58% 52%;
  transition: transform 220ms linear;
  background:
    linear-gradient(34deg, transparent 0 48.9%, rgba(185, 155, 99, 0.015) 49%, transparent 49.36%),
    linear-gradient(146deg, transparent 0 57.5%, rgba(232, 225, 212, 0.01) 57.62%, transparent 57.98%);
  mix-blend-mode: screen;
}

.city-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  opacity: 0;
  filter: grayscale(0.38) brightness(0.55) contrast(0.98) saturate(0.42);
  transform: scale(1.1);
  transition: opacity 2400ms ease, transform 9800ms ease;
}

.city-backdrop.active {
  opacity: 1;
  transform: scale(1.04) translate3d(-0.8%, 0, 0);
}

.word-stage {
  position: relative;
  z-index: 3;
  width: min(94vw, 1500px);
  max-width: 100%;
  margin-top: clamp(8px, 2.6vh, 34px);
}

.word-mask {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.mask-text,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.mask-text {
  fill: white;
  font-size: 372px;
  letter-spacing: 0;
}

.city-plate {
  opacity: 0;
  filter: brightness(0.86) contrast(1.02);
  mix-blend-mode: multiply;
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity 2600ms ease;
}

.city-plate.active {
  opacity: 0.42;
  animation: cityScan 10s ease-in-out forwards;
}

.letter-gradient {
  fill: url("#champagneLetterGradient");
  pointer-events: none;
}

.hero-svg-x {
  opacity: 0.82;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.72));
  transform-box: fill-box;
  transform-origin: center;
  animation: heroCelestialDrift 22s ease-in-out infinite;
}

.hero-svg-x .x-cut {
  fill: rgba(198, 167, 125, 0.66);
}

.hero-copy {
  position: relative;
  z-index: 4;
  margin-top: clamp(-76px, -5.2vw, -42px);
  text-align: center;
}

.hero-line {
  margin: 0;
  color: rgba(232, 225, 212, 0.94);
  font-family: var(--serif);
  font-size: clamp(21px, 1.75vw, 28px);
  letter-spacing: 0.12em;
}

em {
  color: rgba(185, 155, 99, 0.86);
  font-style: italic;
}

.hero-subline {
  max-width: 900px;
  margin: 17px auto 0;
  color: rgba(232, 225, 212, 0.58);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.39em;
  text-transform: uppercase;
}

.hero-enter {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-top: clamp(32px, 4.3vh, 50px);
  color: rgba(232, 225, 212, 0.68);
}

.hero-enter span {
  width: 1px;
  height: 33px;
  background: rgba(185, 155, 99, 0.54);
}

.hero-enter i {
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(185, 155, 99, 0.58);
  border-bottom: 1px solid rgba(185, 155, 99, 0.58);
  transform: rotate(45deg);
}

.section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.006) 1px, transparent 1px);
  background-size: 210px 210px;
}

.section::before {
  content: "";
  position: absolute;
  inset: -320px;
  pointer-events: none;
  transform: none;
  transform-origin: 58% 48%;
  background:
    linear-gradient(34deg, transparent 0 48.9%, rgba(185, 155, 99, 0.011) 49%, transparent 49.38%),
    linear-gradient(146deg, transparent 0 57.5%, rgba(232, 225, 212, 0.005) 57.62%, transparent 57.98%),
    linear-gradient(180deg, rgba(232, 225, 212, 0.002), transparent 42%);
  background-attachment: fixed;
}

.doctrine-section::after,
.themes-section::after {
  content: none;
}

.leadership-section::before {
  content: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 56px));
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 30px;
  color: rgba(232, 225, 212, 0.5);
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: rgba(185, 155, 99, 0.52);
}

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

h2,
h3 {
  margin-bottom: 0;
  color: var(--ivory);
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 300;
}

.doctrine-section {
  min-height: 74vh;
  display: grid;
  align-items: center;
  padding: clamp(66px, 7.4vw, 100px) 0;
}

.doctrine-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(460px, 1fr);
  gap: clamp(64px, 8vw, 136px);
  align-items: center;
}

.doctrine-copy {
  max-width: 510px;
}

.doctrine-copy h2,
.network-copy h2,
.themes-feature h2,
.signals-layout h2,
.leadership-layout h2 {
  font-size: clamp(46px, 5.7vw, 76px);
  line-height: 0.98;
}

.doctrine-copy p {
  max-width: 410px;
  margin-top: 30px;
}

.doctrine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.doctrine-list li {
  position: relative;
  z-index: 0;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.doctrine-toggle {
  appearance: none;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.doctrine-toggle:focus-visible {
  outline: 1px solid rgba(185, 155, 99, 0.42);
  outline-offset: 9px;
}

.doctrine-list li > p {
  display: none;
}

.doctrine-list li::before {
  content: none;
  position: absolute;
  inset: 0 auto 0 -34px;
  width: 86px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 42px 50%, rgba(232, 225, 212, 0.052), transparent 0.62rem),
    radial-gradient(ellipse at 42px 50%, rgba(185, 155, 99, 0.082), transparent 1.18rem),
    radial-gradient(ellipse at 42px 50%, rgba(185, 155, 99, 0.032), transparent 2.1rem);
  filter: blur(4px);
  transform: scale(0.94);
  transition: opacity 460ms ease, transform 460ms cubic-bezier(.22, 1, .36, 1);
}

.doctrine-list li:hover::before {
  opacity: 0;
  transform: scale(1);
}

.doctrine-list li:first-child:hover::before {
  background: none;
}

.doctrine-list li:hover strong {
  color: rgba(232, 225, 212, 0.9);
}

.doctrine-list span,
.theme-grid article span {
  color: rgba(185, 155, 99, 0.68);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
}

.doctrine-list span {
  position: relative;
  width: max-content;
  transition: color 320ms ease, text-shadow 320ms ease;
}

.doctrine-list span::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(232, 225, 212, 0.13) 0 6%, rgba(198, 167, 125, 0.13) 24%, rgba(185, 155, 99, 0.045) 43%, transparent 70%);
  filter: blur(6px);
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 480ms ease, transform 480ms cubic-bezier(.22, 1, .36, 1);
}

.doctrine-list li:hover span {
  color: rgba(207, 179, 135, 0.92);
  text-shadow: 0 0 10px rgba(185, 155, 99, 0.12);
}

.doctrine-list li:hover span::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.doctrine-list strong {
  color: rgba(232, 225, 212, 0.88);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.12;
}

.doctrine-list em {
  color: inherit;
}

.network-section {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: clamp(76px, 8vw, 114px) 0;
  overflow: hidden;
}

.network-section::after {
  content: none;
  position: absolute;
  left: 44%;
  top: 39%;
  z-index: 0;
  width: 48%;
  height: 45%;
  pointer-events: none;
  opacity: 0.72;
  background:
    linear-gradient(38deg, transparent 0 49.15%, rgba(185, 155, 99, 0.032) 49.35%, transparent 49.72%),
    linear-gradient(143deg, transparent 0 50.05%, rgba(232, 225, 212, 0.019) 50.24%, transparent 50.58%),
    radial-gradient(ellipse at 51% 50%, rgba(185, 155, 99, 0.034), transparent 28%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 0 48%, rgba(0, 0, 0, 0.42) 68%, transparent 83%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0 48%, rgba(0, 0, 0, 0.42) 68%, transparent 83%);
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.network-copy {
  position: relative;
  z-index: 2;
}

.network-copy h2 {
  font-size: clamp(41px, 4.5vw, 64px);
  line-height: 1.04;
}

.network-copy p:not(.corridors) {
  max-width: 315px;
  margin-top: 30px;
}

.corridors {
  display: grid;
  gap: 10px;
  max-width: 390px;
  margin-top: 30px;
  color: rgba(232, 225, 212, 0.56);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.26em;
  word-spacing: 0.18em;
  white-space: nowrap;
}

.network-map {
  position: relative;
  width: calc(100% + 18px);
  min-height: 330px;
  margin-left: -6px;
  aspect-ratio: 644 / 308;
  overflow: visible;
}

.network-map::before {
  content: none;
  position: absolute;
  inset: -9% -4%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 53% 50%, rgba(232, 225, 212, 0.012), transparent 50%),
    radial-gradient(ellipse at 74% 55%, rgba(185, 155, 99, 0.018), transparent 26rem);
}

.network-map svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.continent-texture {
  opacity: 0.9;
  filter: brightness(0.96) contrast(1.08) saturate(0.62);
}

.landmass path {
  display: none;
}

.corridor-lines path {
  fill: none;
  stroke: rgba(185, 155, 99, 0.36);
  stroke-width: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: none;
  animation: none;
}

.corridor-lines path:nth-child(2n) {
  animation: none;
}

.corridor-lines path:nth-child(3n) {
  animation: none;
}

.corridor-nexus {
  opacity: 0.075;
}

.corridor-nexus use,
.orbit-nexus-marks path {
  fill: rgba(198, 167, 125, 0.72);
}

.corridor-nexus use {
  stroke: none;
}

.map-nodes .node {
  opacity: 0.92;
}

.node-glow {
  fill: rgba(198, 167, 125, 0.12);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  filter: none;
  animation: none;
}

.node-mark {
  fill: rgba(232, 225, 212, 0.82);
  opacity: 0.74;
  transform-box: fill-box;
  transform-origin: center;
  filter: none;
  animation: none;
}

.map-nodes .node:nth-child(2) .node-glow,
.map-nodes .node:nth-child(2) .node-mark { animation-delay: -3.8s; animation-duration: 13.4s; }
.map-nodes .node:nth-child(3) .node-glow,
.map-nodes .node:nth-child(3) .node-mark { animation-delay: -7.2s; animation-duration: 10.8s; }
.map-nodes .node:nth-child(4) .node-glow,
.map-nodes .node:nth-child(4) .node-mark { animation-delay: -1.4s; animation-duration: 12.6s; }
.map-nodes .node:nth-child(5) .node-glow,
.map-nodes .node:nth-child(5) .node-mark { animation-delay: -9.6s; animation-duration: 11.2s; }
.map-nodes .node:nth-child(6) .node-glow,
.map-nodes .node:nth-child(6) .node-mark { animation-delay: -5.1s; animation-duration: 14.2s; }
.map-nodes .node:nth-child(7) .node-glow,
.map-nodes .node:nth-child(7) .node-mark { animation-delay: -10.8s; animation-duration: 13s; }
.map-nodes .node:nth-child(8) .node-glow,
.map-nodes .node:nth-child(8) .node-mark { animation-delay: -2.5s; animation-duration: 12.1s; }
.map-nodes .node:nth-child(9) .node-glow,
.map-nodes .node:nth-child(9) .node-mark { animation-delay: -8.7s; animation-duration: 10.4s; }
.map-nodes .node:nth-child(10) .node-glow,
.map-nodes .node:nth-child(10) .node-mark { animation-delay: -6.3s; animation-duration: 13.8s; }

.map-nodes text {
  fill: rgba(232, 225, 212, 0.72);
  font-family: var(--sans);
  font-size: 6.6px;
  letter-spacing: 0.22em;
  dominant-baseline: middle;
  paint-order: stroke;
  stroke: rgba(5, 6, 6, 0.48);
  stroke-width: 2px;
  stroke-linejoin: round;
}

.themes-section {
  min-height: 74vh;
  display: grid;
  align-items: center;
  padding: clamp(62px, 6.8vw, 92px) 0;
}

.themes-layout {
  display: grid;
  grid-template-columns: minmax(295px, 390px) 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 18, 18, 0.1);
}

.themes-feature {
  position: relative;
  min-height: 374px;
  padding: 52px clamp(30px, 3.6vw, 52px);
  overflow: hidden;
}

.themes-feature::after {
  content: none;
  position: absolute;
  left: 50px;
  right: 24px;
  bottom: 0;
  height: 208px;
  opacity: 0.1;
  background:
    linear-gradient(100deg, transparent 42%, rgba(232, 225, 212, 0.11) 43%, transparent 44%),
    linear-gradient(100deg, transparent 56%, rgba(185, 155, 99, 0.13) 57%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(232, 225, 212, 0.032) 0 1px, transparent 1px 34px);
}

.themes-feature h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(41px, 4.2vw, 58px);
}

.themes-feature p {
  position: relative;
  z-index: 1;
  max-width: 305px;
  margin-top: 30px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.theme-grid article {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  padding: 34px 30px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 360ms ease, border-color 360ms ease;
}

.theme-grid article::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 22% 30%, rgba(232, 225, 212, 0.03), transparent 3.8rem),
    radial-gradient(ellipse at 26% 32%, rgba(185, 155, 99, 0.048), transparent 7rem),
    linear-gradient(120deg, transparent 0 42%, rgba(185, 155, 99, 0.018) 49%, transparent 58%);
  filter: blur(0.15px);
  transition: opacity 420ms cubic-bezier(.22, 1, .36, 1);
}

.theme-grid article:hover {
  background-color: rgba(232, 225, 212, 0.011);
  border-color: rgba(255, 255, 255, 0.084);
}

.theme-grid article:hover::before {
  opacity: 0.94;
}

.theme-grid article > * {
  position: relative;
  z-index: 1;
}

.theme-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.theme-grid h3 {
  margin: 18px 0 11px;
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.02;
}

.theme-grid p {
  margin-bottom: 0;
  color: rgba(232, 225, 212, 0.48);
  font-size: 14px;
  line-height: 1.48;
}

.signals-section {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  overflow: visible;
  clip-path: inset(0 -120vw -62vh -120vw);
  min-height: clamp(250px, 33vh, 310px);
  padding: 0;
  background:
    radial-gradient(ellipse at 73% 78%, rgba(185, 155, 99, 0.026), transparent 25rem),
    radial-gradient(ellipse at 26% 42%, rgba(232, 225, 212, 0.012), transparent 20rem),
    #070807;
}

.signals-section::before,
.signals-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signals-section::before {
  z-index: 0;
  inset: -320px -320px 0;
  opacity: 0.48;
  transform: none;
  transform-origin: 58% 48%;
  background-image:
    linear-gradient(34deg, transparent 0 48.9%, rgba(185, 155, 99, 0.011) 49%, transparent 49.38%),
    linear-gradient(146deg, transparent 0 57.5%, rgba(232, 225, 212, 0.007) 57.62%, transparent 57.98%),
    radial-gradient(circle at 20% 42%, rgba(255, 255, 255, 0.022) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 69% 64%, rgba(255, 255, 255, 0.018) 0 0.8px, transparent 0.9px);
  background-size: auto, auto, auto, 7px 7px, 11px 11px;
  background-attachment: scroll, scroll, scroll, scroll, scroll;
  mix-blend-mode: soft-light;
}

.signals-section::after {
  z-index: 1;
  background:
    radial-gradient(ellipse at 76% 92%, transparent 0 22%, rgba(5, 6, 6, 0.18) 58%, rgba(5, 6, 6, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 8, 7, 0.1) 0%, transparent 42%, rgba(7, 8, 7, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.28), transparent 38%, rgba(7, 8, 7, 0.5));
}

.continuum-sphere {
  position: absolute;
  right: max(-960px, -64vw);
  top: clamp(180px, 16vw, 300px);
  z-index: 2;
  width: min(1480px, 108vw);
  height: min(1480px, 108vw);
  pointer-events: none;
  opacity: calc(0.8 * var(--sphere-scroll-opacity));
  transform: translate3d(0, var(--sphere-scroll-y), 0) scale(var(--sphere-scroll-scale));
  transform-origin: 50% 50%;
  animation: sphereContinuumDrift 34s ease-in-out infinite;
}

.continuum-sphere::before,
.continuum-sphere::after,
.continuum-sphere span,
.continuum-sphere i {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.continuum-sphere::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 225, 212, 0.04), transparent 11%, transparent 74%);
  filter: blur(0.4px);
  transform: scale(1);
}

.continuum-sphere::after {
  inset: 0;
  background:
    radial-gradient(ellipse at 36% 48%, rgba(232, 225, 212, 0.046), transparent 15%),
    radial-gradient(ellipse at 42% 56%, rgba(185, 155, 99, 0.038), transparent 25%);
  transform: rotate(-0.6deg) scale(1);
}

.continuum-sphere span {
  --ring-size: 78%;
  --ring-expand-mid: 1.035;
  --ring-expand: 1.08;
  --ring-expand-end: 1.135;
  inset: auto;
  left: 50%;
  top: 50%;
  width: var(--ring-size);
  height: var(--ring-size);
  border: 1.65px solid rgba(232, 225, 212, 0.135);
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%) scale(1);
}

.continuum-sphere span::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: inherit;
  border-radius: inherit;
  opacity: 0;
  filter: drop-shadow(0 0 0 rgba(232, 225, 212, 0));
  transform: scale(0.99);
  transform-origin: 50% 50%;
  animation: sphereRingRipple 12.8s cubic-bezier(.25, .1, .18, 1) infinite;
  animation-delay: -1.3s;
}

.continuum-sphere span:nth-child(2) {
  --ring-size: 114%;
  --ring-expand-mid: 1.032;
  --ring-expand: 1.07;
  --ring-expand-end: 1.118;
  border-color: rgba(185, 155, 99, 0.132);
}

.continuum-sphere span:nth-child(2)::after {
  animation-delay: -0.55s;
}

.continuum-sphere span:nth-child(3) {
  --ring-size: 152%;
  --ring-expand-mid: 1.028;
  --ring-expand: 1.058;
  --ring-expand-end: 1.1;
  border-color: rgba(232, 225, 212, 0.108);
}

.continuum-sphere span:nth-child(3)::after {
  animation-delay: 0.2s;
}

.continuum-sphere span:nth-child(4) {
  --ring-size: 192%;
  left: 49%;
  top: 50%;
  border-color: rgba(185, 155, 99, 0.046);
  animation: none;
  opacity: 0.36;
}

.continuum-sphere span:nth-child(4)::after {
  animation: none;
}

.continuum-sphere i {
  inset: 14% -2% 13% -4%;
  opacity: 0.105;
  background:
    conic-gradient(from 248deg, transparent 0deg, transparent 25deg, rgba(232, 225, 212, 0.155) 31deg, rgba(185, 155, 99, 0.095) 36deg, transparent 48deg, transparent 360deg);
  transform: rotate(15deg) scaleX(1.42);
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 42%, black 50% 67%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0 42%, black 50% 67%, transparent 74%);
  animation: sonarSignalPass 12.8s cubic-bezier(.25, .1, .18, 1) infinite;
  animation-delay: -0.8s;
}

.continuum-sphere i:nth-of-type(2) {
  inset: 6% -8% 18% -1%;
  background:
    conic-gradient(from 198deg, transparent 0deg, transparent 18deg, rgba(232, 225, 212, 0.108) 24deg, rgba(185, 155, 99, 0.078) 31deg, transparent 43deg, transparent 360deg);
  transform: rotate(-18deg) scaleX(1.56);
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 34%, black 43% 58%, transparent 66%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0 34%, black 43% 58%, transparent 66%);
  animation-duration: 12.8s;
  animation-delay: 0s;
}

.continuum-sphere i:nth-of-type(3) {
  inset: 25% 2% 3% -10%;
  background:
    conic-gradient(from 292deg, transparent 0deg, transparent 22deg, rgba(232, 225, 212, 0.096) 29deg, rgba(185, 155, 99, 0.07) 35deg, transparent 46deg, transparent 360deg);
  transform: rotate(34deg) scaleX(1.28);
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 55%, black 63% 78%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0 55%, black 63% 78%, transparent 84%);
  animation-duration: 12.8s;
  animation-delay: 0.8s;
}

.signals-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
  min-height: clamp(250px, 33vh, 310px);
  padding-top: clamp(28px, 3.4vw, 44px);
  padding-bottom: clamp(28px, 3.2vw, 40px);
}

.signals-orbit {
  display: none;
  position: absolute;
  right: max(-128px, -9vw);
  bottom: -56px;
  z-index: 0;
  width: min(900px, 66vw);
  height: 285px;
  pointer-events: none;
  opacity: 0.86;
  transform-origin: 58% 88%;
  animation: orbitSystemBreath 34s cubic-bezier(.45, 0, .3, 1) infinite;
}

.signals-orbit::before,
.signals-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signals-orbit::before {
  background:
    radial-gradient(ellipse at 56% 88%, rgba(232, 225, 212, 0.1), transparent 30%),
    radial-gradient(ellipse at 72% 60%, rgba(185, 155, 99, 0.055), transparent 36%);
  filter: blur(10px);
  opacity: 0.62;
  animation: orbitDiffusion 29s ease-in-out infinite;
}

.signals-orbit::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.7) 0%, transparent 18%, transparent 70%, rgba(7, 8, 7, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.28), transparent 32%, rgba(7, 8, 7, 0.48));
}

.signals-orbit svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit-bloom {
  fill: url("#orbitBloom");
  opacity: 0.62;
  animation: orbitBloomBreath 37s ease-in-out infinite;
}

.orbit-layer {
  fill: none;
  stroke: url("#orbitLineFade");
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: 62% 84%;
}

.orbit-layer path {
  opacity: 0.64;
}

.orbit-layer .orbit-crossing {
  opacity: 0.24;
  stroke: rgba(198, 167, 125, 0.16);
}

.orbit-back {
  stroke-width: 0.72;
  opacity: 0.5;
  animation: orbitBackDrift 38s ease-in-out infinite;
}

.orbit-mid {
  stroke-width: 0.88;
  opacity: 0.66;
  animation: orbitMidDrift 31s ease-in-out infinite;
}

.orbit-front {
  stroke-width: 0.96;
  opacity: 0.78;
  animation: orbitFrontDrift 23s ease-in-out infinite;
}

.orbit-pulse-path {
  stroke: rgba(232, 225, 212, 0.28);
  stroke-width: 1.1;
  stroke-dasharray: 28 510;
  stroke-dashoffset: 420;
  opacity: 0;
  animation: orbitSignalPulse 28s cubic-bezier(.35, 0, .2, 1) infinite;
  animation-delay: -9s;
}

.orbit-intersections circle {
  fill: rgba(232, 225, 212, 0.34);
  filter: url("#orbitSoftGlow");
  opacity: 0.32;
  animation: orbitIntersectionGlow 26s ease-in-out infinite;
}

.orbit-intersections circle:nth-child(2) {
  animation-delay: -11s;
}

.orbit-intersections circle:nth-child(3) {
  animation-delay: -19s;
}

.orbit-nexus-marks {
  opacity: 0.32;
  filter: url("#orbitSoftGlow");
  animation: orbitIntersectionGlow 31s ease-in-out infinite;
  animation-delay: -7s;
}

.orbit-nexus-marks path {
  stroke-width: 0.72;
}

.signals-layout h2 {
  max-width: 470px;
  font-size: clamp(40px, 4.1vw, 54px);
  line-height: 1.02;
}

.signals-layout > p {
  position: relative;
  z-index: 1;
  grid-column: 5 / 8;
  grid-row: 1;
  align-self: start;
  max-width: 315px;
  margin: clamp(62px, 6vw, 78px) 0 0;
  color: rgba(232, 225, 212, 0.48);
  transform: none;
}

.signals-layout > div:first-child {
  position: relative;
  z-index: 1;
  grid-column: 1 / 6;
  grid-row: 1;
  transform: none;
}

.leadership-section {
  position: relative;
  z-index: 1;
  min-height: clamp(292px, 35vh, 390px);
  display: grid;
  align-items: center;
  overflow: visible;
  padding: clamp(30px, 3.4vw, 48px) 0 clamp(22px, 2.6vw, 36px);
}

.leadership-section::after {
  content: none;
  position: absolute;
  right: -6vw;
  top: -62%;
  z-index: 0;
  width: min(1120px, 78vw);
  height: min(1120px, 78vw);
  pointer-events: none;
  opacity: 0.08;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(232, 225, 212, 0.022) 42.2% 42.45%, transparent 42.8%),
    radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(185, 155, 99, 0.024) 58.25% 58.55%, transparent 58.9%),
    radial-gradient(circle at 50% 50%, rgba(232, 225, 212, 0.03), transparent 12%, transparent 68%),
    linear-gradient(34deg, transparent 0 49.05%, rgba(185, 155, 99, 0.02) 49.22%, transparent 49.58%),
    linear-gradient(146deg, transparent 0 50.2%, rgba(232, 225, 212, 0.012) 50.38%, transparent 50.72%);
  filter: blur(0.15px);
  transform: translate3d(calc(var(--nexus-drift-x) * -0.62), calc(var(--nexus-drift-y) * -0.42), 0) rotate(calc(-8deg + (var(--nexus-drift-rotate) * -0.7)));
  animation: globalFieldDrift 42s ease-in-out infinite;
  mask-image: radial-gradient(circle at 50% 50%, black 0 52%, rgba(0, 0, 0, 0.42) 70%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0 52%, rgba(0, 0, 0, 0.42) 70%, transparent 82%);
}

.leadership-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(300px, 360px) minmax(380px, 1.15fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
}

.leadership-layout h2 {
  max-width: 500px;
  font-size: clamp(36px, 3.45vw, 50px);
  line-height: 1.05;
}

.leadership-copy {
  align-self: center;
  transform: translateY(6px);
}

.leadership-copy p {
  max-width: 365px;
  margin-bottom: 18px;
  color: rgba(232, 225, 212, 0.48);
}

.leadership-copy .closing-line {
  margin: 24px 0 28px;
  color: rgba(198, 167, 125, 0.7);
  font-family: var(--serif);
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.18;
}

.text-link {
  color: rgba(232, 225, 212, 0.72);
}

.portal-panel {
  display: none;
  position: absolute;
  right: max(-128px, -9vw);
  top: -104px;
  overflow: hidden;
  z-index: 0;
  width: min(900px, 66vw);
  height: 460px;
  min-height: 0;
  margin-top: 0;
  opacity: 0.22;
  background: transparent;
  filter: saturate(0.8);
  mask-image: linear-gradient(180deg, transparent 0%, black 4%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 4%, black 86%, transparent 100%);
}

.portal-panel::before,
.portal-panel::after {
  content: none;
}

.portal-panel::after {
  content: none;
}

.leadership-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.42;
  transform: none;
  transform-origin: 58% 12%;
  animation: orbitSystemBreath 34s cubic-bezier(.45, 0, .3, 1) infinite;
}

.leadership-orbit path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.leadership-orbit-back,
.leadership-orbit-mid,
.leadership-orbit-front {
  fill: none;
  transform-box: fill-box;
  transform-origin: 62% 84%;
}

.leadership-orbit-back {
  animation: orbitBackDrift 38s ease-in-out infinite;
}

.leadership-orbit-mid {
  animation: orbitMidDrift 31s ease-in-out infinite;
}

.leadership-orbit-front {
  animation: orbitFrontDrift 23s ease-in-out infinite;
}

.leadership-orbit-back path {
  stroke: rgba(232, 225, 212, 0.042);
  stroke-width: 0.72;
}

.leadership-orbit-mid path {
  stroke: rgba(185, 155, 99, 0.068);
  stroke-width: 0.84;
}

.leadership-orbit-front path {
  stroke: rgba(232, 225, 212, 0.086);
  stroke-width: 0.95;
}

.leadership-orbit-nexus {
  opacity: 0.38;
  animation: orbitIntersectionGlow 31s ease-in-out infinite;
}

.leadership-orbit-nexus path {
  stroke: rgba(198, 167, 125, 0.42);
  stroke-width: 0.76;
}

@keyframes cityScan {
  0% {
    transform: scale(1.065) translate3d(-1.8%, 0, 0);
  }
  100% {
    transform: scale(1.02) translate3d(1.6%, 0, 0);
  }
}

@keyframes nodeSignalPulse {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.82) rotate(-0.42deg);
  }
  58% {
    opacity: 0.14;
    transform: scale(0.92) rotate(-0.1deg);
  }
  68% {
    opacity: 0.52;
    transform: scale(1.58) rotate(0.48deg);
  }
  78% {
    opacity: 0.24;
    transform: scale(1.1) rotate(0.1deg);
  }
  90% {
    opacity: 0.16;
    transform: scale(0.94) rotate(-0.14deg);
  }
}

@keyframes nodeSignalFocus {
  0%,
  100% {
    opacity: 0.68;
    filter: drop-shadow(0 0 2px rgba(232, 225, 212, 0.08));
    transform: scale(0.96) rotate(-0.35deg);
  }
  58% {
    opacity: 0.72;
    filter: drop-shadow(0 0 3px rgba(232, 225, 212, 0.1));
    transform: scale(0.98) rotate(-0.08deg);
  }
  68% {
    opacity: 0.96;
    filter: drop-shadow(0 0 9px rgba(198, 167, 125, 0.26));
    transform: scale(1.16) rotate(0.38deg);
  }
  78% {
    opacity: 0.78;
    filter: drop-shadow(0 0 5px rgba(232, 225, 212, 0.12));
    transform: scale(1.04) rotate(0.02deg);
  }
  90% {
    opacity: 0.7;
    filter: drop-shadow(0 0 3px rgba(232, 225, 212, 0.09));
    transform: scale(0.98) rotate(-0.12deg);
  }
}

@keyframes corridorLineCurrent {
  0%,
  100% {
    opacity: 0.64;
    stroke-dashoffset: 0;
  }
  50% {
    opacity: 0.96;
    stroke-dashoffset: -82;
  }
  99% {
    opacity: 0.7;
    stroke-dashoffset: -166;
  }
}

@keyframes heroCelestialDrift {
  0%,
  100% {
    opacity: 0.76;
    transform: translate(1478px, 105px) rotate(-0.35deg);
  }
  48% {
    opacity: 0.88;
    transform: translate(1479.2px, 104.2px) rotate(1.1deg);
  }
  72% {
    opacity: 0.8;
    transform: translate(1477.6px, 105.6px) rotate(0.25deg);
  }
}

@keyframes cursorNodeBreath {
  0%,
  100% {
    opacity: 0.44;
    transform: translate(-50%, -50%) scale(0.72);
  }
  50% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.22);
  }
}

@keyframes orbitSystemBreath {
  0%,
  100% {
    opacity: 0.7;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  48% {
    opacity: 0.82;
    transform: translate3d(-1px, 1px, 0) rotate(0.35deg) scale(1.004);
  }
}

@keyframes orbitDiffusion {
  0%,
  100% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(0.996);
  }
  52% {
    opacity: 0.68;
    transform: translate3d(1px, -1px, 0) scale(1.006);
  }
}

@keyframes orbitBloomBreath {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.996);
  }
  45% {
    opacity: 0.64;
    transform: scale(1.006);
  }
}

@keyframes orbitBackDrift {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(0, 0, 0) rotate(-0.2deg) scale(1);
  }
  50% {
    opacity: 0.46;
    transform: translate3d(1px, -1px, 0) rotate(0.55deg) scale(1.003);
  }
}

@keyframes orbitMidDrift {
  0%,
  100% {
    opacity: 0.5;
    transform: translate3d(0, 0, 0) rotate(0.1deg) scale(0.998);
  }
  44% {
    opacity: 0.64;
    transform: translate3d(-2px, 1px, 0) rotate(-0.72deg) scale(1.006);
  }
}

@keyframes orbitFrontDrift {
  0%,
  100% {
    opacity: 0.62;
    transform: translate3d(0, 0, 0) rotate(0.18deg) scale(1);
  }
  53% {
    opacity: 0.76;
    transform: translate3d(1px, 0, 0) rotate(0.88deg) scale(1.004);
  }
}

@keyframes orbitSignalPulse {
  0%,
  70% {
    opacity: 0;
    stroke-dashoffset: 450;
  }
  75% {
    opacity: 0.03;
  }
  82% {
    opacity: 0.2;
  }
  90% {
    opacity: 0.04;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 120;
  }
}

@keyframes orbitIntersectionGlow {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.92);
  }
  47% {
    opacity: 0.42;
    transform: scale(1.14);
  }
}

@keyframes globalFieldDrift {
  0%,
  100% {
    opacity: 0.38;
    transform: translate3d(calc(var(--nexus-drift-x) * -0.62), calc(var(--nexus-drift-y) * -0.42), 0) rotate(calc(-8deg + (var(--nexus-drift-rotate) * -0.7))) scale(1);
  }
  46% {
    opacity: 0.54;
    transform: translate3d(calc((var(--nexus-drift-x) * -0.62) - 3px), calc((var(--nexus-drift-y) * -0.42) + 2px), 0) rotate(calc(-7.1deg + (var(--nexus-drift-rotate) * -0.7))) scale(1.012);
  }
  74% {
    opacity: 0.44;
    transform: translate3d(calc((var(--nexus-drift-x) * -0.62) + 2px), calc((var(--nexus-drift-y) * -0.42) - 2px), 0) rotate(calc(-8.6deg + (var(--nexus-drift-rotate) * -0.7))) scale(0.996);
  }
}

@keyframes sphereOrbPulse {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(0.998);
  }
  12% {
    opacity: 0.92;
    transform: scale(1.012);
  }
  36% {
    opacity: 0.76;
    transform: scale(1.004);
  }
}

@keyframes sphereRingRipple {
  0%,
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(232, 225, 212, 0));
    transform: scale(0.985);
  }
  8% {
    opacity: 0.64;
    filter: drop-shadow(0 0 8px rgba(232, 225, 212, 0.085));
    transform: scale(1);
  }
  30% {
    opacity: 0.56;
    filter: drop-shadow(0 0 7px rgba(185, 155, 99, 0.048));
    transform: scale(var(--ring-expand-mid));
  }
  58% {
    opacity: 0.34;
    filter: drop-shadow(0 0 0 rgba(232, 225, 212, 0));
    transform: scale(var(--ring-expand));
  }
  82% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(232, 225, 212, 0));
    transform: scale(var(--ring-expand-end));
  }
  92% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(232, 225, 212, 0));
    transform: scale(0.985);
  }
}

@keyframes sphereBloomPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.996);
    filter: blur(0.35px);
  }
  12% {
    opacity: 0.96;
    transform: scale(1.022);
    filter: blur(0.12px);
  }
  38% {
    opacity: 0.66;
    transform: scale(1.003);
    filter: blur(0.24px);
  }
}

@keyframes sphereAtmospherePulse {
  0%,
  100% {
    opacity: 0.46;
    transform: rotate(-0.6deg) scale(0.998);
  }
  12% {
    opacity: 0.92;
    transform: rotate(-0.5deg) scale(1.02);
  }
  38% {
    opacity: 0.54;
    transform: rotate(-0.58deg) scale(1.003);
  }
}

@keyframes arcOrbPulse {
  0%,
  100% {
    opacity: 0.42;
    filter: drop-shadow(0 0 0 rgba(232, 225, 212, 0));
    transform: rotate(var(--arc-rotate)) scaleX(var(--arc-scale)) scaleY(0.998);
  }
  12% {
    opacity: 1;
    filter: drop-shadow(0 0 7px rgba(232, 225, 212, 0.08));
    transform: rotate(var(--arc-rotate)) scaleX(calc(var(--arc-scale) + 0.052)) scaleY(1.014);
  }
  38% {
    opacity: 0.54;
    filter: drop-shadow(0 0 2px rgba(185, 155, 99, 0.035));
    transform: rotate(var(--arc-rotate)) scaleX(calc(var(--arc-scale) + 0.01)) scaleY(1.002);
  }
}

@keyframes globalArcBreath {
  0%,
  100% {
    opacity: 0.6;
    transform: translate3d(0, 0, 0) rotate(var(--arc-rotate)) scaleX(var(--arc-scale));
  }
  34% {
    opacity: 0.86;
    transform: translate3d(calc(var(--arc-drift-x) * 0.7), calc(var(--arc-drift-y) * 0.62), 0) rotate(calc(var(--arc-rotate) + (var(--arc-swing) * 0.7))) scaleX(calc(var(--arc-scale) + 0.028));
  }
  52% {
    opacity: 1;
    transform: translate3d(var(--arc-drift-x), var(--arc-drift-y), 0) rotate(calc(var(--arc-rotate) + var(--arc-swing))) scaleX(calc(var(--arc-scale) + 0.046));
  }
  78% {
    opacity: 0.72;
    transform: translate3d(calc(var(--arc-drift-x) * -0.5), calc(var(--arc-drift-y) * -0.6), 0) rotate(calc(var(--arc-rotate) - (var(--arc-swing) * 0.55))) scaleX(calc(var(--arc-scale) - 0.018));
  }
}

@keyframes sphereSurfaceBreath {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(1) rotate(0deg);
  }
  46% {
    opacity: 1;
    transform: scale(1.018) rotate(1.1deg);
  }
  76% {
    opacity: 0.94;
    transform: scale(0.992) rotate(-0.7deg);
  }
}

@keyframes sphereFieldDrift {
  0%,
  100% {
    opacity: 0.88;
    transform: translate3d(0, 0, 0) rotate(-0.6deg) scale(1);
  }
  43% {
    opacity: 1;
    transform: translate3d(-9px, 6px, 0) rotate(0.9deg) scale(1.022);
  }
  71% {
    opacity: 0.86;
    transform: translate3d(6px, -7px, 0) rotate(-1.55deg) scale(0.992);
  }
}

@keyframes sphereContinuumDrift {
  0%,
  100% {
    opacity: calc(0.82 * var(--sphere-scroll-opacity));
    transform: translate3d(calc(var(--nexus-drift-x) * -0.32), calc(var(--sphere-scroll-y) + (var(--nexus-drift-y) * -0.22)), 0) rotate(calc(var(--nexus-drift-rotate) * -0.28)) scale(var(--sphere-scroll-scale));
  }
  48% {
    opacity: calc(0.98 * var(--sphere-scroll-opacity));
    transform: translate3d(calc((var(--nexus-drift-x) * -0.32) - 8px), calc(var(--sphere-scroll-y) + (var(--nexus-drift-y) * -0.22) + 6px), 0) rotate(calc((var(--nexus-drift-rotate) * -0.28) + 1.65deg)) scale(calc(var(--sphere-scroll-scale) + 0.024));
  }
  78% {
    opacity: calc(0.88 * var(--sphere-scroll-opacity));
    transform: translate3d(calc((var(--nexus-drift-x) * -0.32) + 5px), calc(var(--sphere-scroll-y) + (var(--nexus-drift-y) * -0.22) - 6px), 0) rotate(calc((var(--nexus-drift-rotate) * -0.28) - 1.15deg)) scale(calc(var(--sphere-scroll-scale) - 0.01));
  }
}

@keyframes sonarSignalPass {
  0%,
  100% {
    opacity: 0;
  }
  14% {
    opacity: 0.18;
  }
  34% {
    opacity: 0.08;
  }
  62% {
    opacity: 0.025;
  }
  82% {
    opacity: 0;
  }
}

@keyframes leadershipOrbitContinuation {
  0%,
  100% {
    opacity: 0.68;
    transform: translate3d(calc(var(--nexus-drift-x) * -0.4), calc(var(--nexus-drift-y) * -0.25), 0) rotate(calc(0.3deg + (var(--nexus-drift-rotate) * -0.42))) scaleY(1.42);
  }
  48% {
    opacity: 0.82;
    transform: translate3d(calc((var(--nexus-drift-x) * -0.4) - 2px), calc((var(--nexus-drift-y) * -0.25) + 2px), 0) rotate(calc(-0.35deg + (var(--nexus-drift-rotate) * -0.42))) scaleY(1.435);
  }
  76% {
    opacity: 0.72;
    transform: translate3d(calc((var(--nexus-drift-x) * -0.4) + 1px), calc((var(--nexus-drift-y) * -0.25) - 1px), 0) rotate(calc(0.72deg + (var(--nexus-drift-rotate) * -0.42))) scaleY(1.414);
  }
}

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

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

  .node-cursor {
    display: none;
  }
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .connect-link {
    grid-column: 2;
  }

  .doctrine-layout,
  .network-layout,
  .themes-layout,
  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .doctrine-section,
  .network-section,
  .themes-section,
  .leadership-section {
    min-height: auto;
  }

  .network-map {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .themes-feature {
    min-height: 290px;
  }

  .leadership-copy {
    transform: none;
  }

  .portal-panel {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .word-stage {
    width: min(98vw, 830px);
  }

  .hero-copy {
    margin-top: -18px;
  }

  .hero-line {
    max-width: 86vw;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .hero-subline {
    max-width: 78vw;
    letter-spacing: 0.27em;
  }

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

  .theme-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .theme-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .theme-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .signals-layout {
    grid-template-columns: 1fr;
    min-height: 270px;
    padding-top: 48px;
    padding-bottom: 46px;
  }

  .signals-layout > p {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    max-width: 430px;
    margin: 10px 0 0;
    transform: none;
  }

  .signals-layout > div:first-child {
    transform: none;
  }

  .signals-orbit {
    right: -42%;
    left: auto;
    bottom: -30%;
    width: 118vw;
    opacity: 0.58;
  }
}

@media (max-width: 680px) {
  .topbar {
    height: 68px;
    padding: 0 18px;
  }

  .brand-type {
    font-size: 28px;
  }

  .connect-link {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .connect-link::after {
    width: 24px;
    margin-left: 10px;
  }

  .hero {
    min-height: 94svh;
    padding: 82px 0 34px;
  }

  .hero-backdrop {
    bottom: 24vh;
    height: 42vh;
  }

  .word-stage {
    width: 126vw;
    margin-top: 0;
  }

  .hero-subline {
    max-width: 84vw;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .section-inner {
    width: min(100% - 34px, var(--max));
  }

  .doctrine-copy h2,
  .themes-feature h2,
  .signals-layout h2,
  .leadership-layout h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .network-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.6vw, 39px);
    line-height: 1.08;
  }

  .network-copy p:not(.corridors) {
    max-width: 330px;
  }

  .corridors {
    max-width: 320px;
    white-space: normal;
    letter-spacing: 0.2em;
    word-spacing: 0.12em;
  }

  .network-map {
    width: 116%;
    margin: 10px 0 0 -8%;
  }

  .continuum-sphere {
    right: max(-760px, -158vw);
    top: 138px;
    width: 980px;
    height: 980px;
    opacity: 0.66;
  }

  .doctrine-list li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .doctrine-list strong {
    font-size: clamp(22px, 7vw, 29px);
  }

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

  .theme-grid article {
    min-height: 160px;
    border-left: 0;
  }

  .theme-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .theme-grid article:last-child {
    border-bottom: 0;
  }

  .themes-layout {
    border-left: 0;
    border-right: 0;
  }

  .portal-panel {
    min-height: 260px;
  }
}

@media (hover: none), (pointer: coarse) {
  .doctrine-list li:hover strong {
    color: rgba(232, 225, 212, 0.88);
  }

  .doctrine-list li:hover span {
    color: rgba(185, 155, 99, 0.68);
    text-shadow: none;
  }

  .doctrine-list li:hover span::before {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }

  .theme-grid article:hover {
    background-color: transparent;
    border-color: var(--line);
  }

  .theme-grid article:hover::before {
    opacity: 0;
  }

  .doctrine-toggle:focus-visible {
    outline: 0;
  }

  .doctrine-toggle:focus {
    outline: 0;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  body {
    background: linear-gradient(180deg, #050606 0%, #070807 52%, #050606 100%);
  }

  p {
    color: rgba(232, 225, 212, 0.6);
    font-size: 15px;
    line-height: 1.56;
  }

  .topbar {
    height: 64px;
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .hero {
    min-height: 90svh;
    padding-top: 74px;
    padding-bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  }

  .hero-backdrop {
    opacity: 0.6;
  }

  .word-stage {
    width: min(118vw, 680px);
    margin-top: 0;
  }

  .hero-copy {
    width: min(100%, 340px);
    margin-top: -16px;
  }

  .hero-line {
    max-width: 92vw;
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.24;
    letter-spacing: 0.07em;
  }

  .hero-subline {
    max-width: 86vw;
    margin-top: 13px;
    color: rgba(232, 225, 212, 0.56);
    font-size: 8.8px;
    line-height: 1.72;
    letter-spacing: 0.18em;
  }

  .hero-enter {
    gap: 10px;
    margin-top: clamp(20px, 4.6vh, 32px);
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .hero-enter span {
    height: 25px;
  }

  .hero-enter i {
    width: 11px;
    height: 11px;
  }

  .section {
    scroll-margin-top: 64px;
    background-size: 168px 168px;
  }

  .section-inner {
    width: min(100% - 36px, var(--max));
  }

  .doctrine-section,
  .network-section,
  .themes-section {
    padding-top: clamp(54px, 11vw, 72px);
    padding-bottom: clamp(54px, 11vw, 72px);
  }

  .doctrine-layout,
  .network-layout,
  .themes-layout,
  .leadership-layout {
    gap: clamp(30px, 8vw, 44px);
  }

  .eyebrow {
    gap: 13px;
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .eyebrow span {
    width: 30px;
  }

  .doctrine-copy h2,
  .themes-feature h2,
  .signals-layout h2,
  .leadership-layout h2 {
    font-size: clamp(34px, 11.2vw, 48px);
    line-height: 0.99;
  }

  .network-copy h2 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.04;
  }

  .doctrine-copy p,
  .network-copy p:not(.corridors),
  .themes-feature p,
  .leadership-copy p {
    max-width: 340px;
    margin-top: 24px;
  }

  .doctrine-list {
    border-top-color: rgba(255, 255, 255, 0.06);
  }

  .doctrine-list li {
    padding: 0;
  }

  .doctrine-toggle {
    min-height: 58px;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    align-items: center;
    padding: 18px 0;
    -webkit-tap-highlight-color: transparent;
  }

  .doctrine-list span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .doctrine-list span::before {
    width: 42px;
    height: 42px;
    filter: blur(6px);
  }

  .doctrine-list strong {
    font-size: clamp(20px, 6.2vw, 25px);
    line-height: 1.1;
  }

  .doctrine-list li > p {
    display: block;
    max-height: 0;
    max-width: 292px;
    margin: 0 0 0 57px;
    overflow: hidden;
    color: rgba(232, 225, 212, 0.54);
    font-size: 13px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      max-height 560ms cubic-bezier(.22, 1, .36, 1),
      opacity 420ms ease,
      transform 560ms cubic-bezier(.22, 1, .36, 1),
      margin-bottom 560ms cubic-bezier(.22, 1, .36, 1);
  }

  .doctrine-list li.is-active span {
    color: rgba(207, 179, 135, 0.92);
    text-shadow: 0 0 10px rgba(185, 155, 99, 0.11);
  }

  .doctrine-list li.is-active span::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .doctrine-list li.is-active strong {
    color: rgba(232, 225, 212, 0.92);
  }

  .doctrine-list li.is-active > p {
    max-height: 96px;
    margin-bottom: 19px;
    opacity: 1;
    transform: translateY(0);
  }

  .themes-feature {
    min-height: 0;
    padding: 42px 0 22px;
  }

  .themes-layout {
    background: transparent;
  }

  .theme-grid article {
    min-height: 152px;
    padding: 28px 0;
  }

  .theme-grid h3 {
    font-size: clamp(21px, 6.4vw, 26px);
    line-height: 1.04;
  }

  .theme-grid p {
    color: rgba(232, 225, 212, 0.54);
    font-size: 14px;
    line-height: 1.5;
  }

  .signals-section {
    clip-path: inset(0 -120vw -78vh -120vw);
    min-height: 330px;
  }

  .signals-layout {
    min-height: 330px;
    padding-top: 50px;
    padding-bottom: 58px;
  }

  .signals-layout h2 {
    max-width: 335px;
    font-size: clamp(35px, 10.8vw, 47px);
    line-height: 1.01;
  }

  .signals-layout > p {
    max-width: 310px;
    margin-top: 20px;
    color: rgba(232, 225, 212, 0.56);
  }

  .continuum-sphere {
    right: max(-760px, -174vw);
    top: 74px;
    width: 1040px;
    height: 1040px;
    opacity: 0.7;
  }

  .leadership-section {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: max(72px, calc(env(safe-area-inset-bottom) + 54px));
    overflow: hidden;
  }

  .leadership-layout h2 {
    max-width: 350px;
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.02;
  }

  .leadership-copy {
    align-self: start;
  }

  .leadership-copy p {
    margin-top: 0;
    margin-bottom: 17px;
    color: rgba(232, 225, 212, 0.58);
  }

  .leadership-copy .closing-line {
    margin: 22px 0 22px;
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.16;
  }

  .text-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    font-size: 9.5px;
    letter-spacing: 0.31em;
  }

  .text-link i {
    width: 36px;
    margin-left: 16px;
  }

  .portal-panel {
    right: max(-560px, -140vw);
    top: -146px;
    width: 980px;
    height: 650px;
    opacity: 0.28;
    mask-image: linear-gradient(180deg, transparent 0%, black 7%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 7%, black 92%, transparent 100%);
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 88svh;
    padding-top: 70px;
  }

  .word-stage {
    width: 116vw;
  }

  .hero-copy {
    margin-top: -12px;
  }

  .hero-line {
    font-size: clamp(17px, 5.1vw, 20px);
  }

  .hero-enter {
    margin-top: 18px;
  }

  .doctrine-copy h2,
  .themes-feature h2,
  .signals-layout h2,
  .leadership-layout h2 {
    font-size: clamp(33px, 10.7vw, 43px);
  }

  .doctrine-list strong {
    font-size: clamp(19px, 6vw, 23px);
  }

  .leadership-section {
    padding-bottom: max(78px, calc(env(safe-area-inset-bottom) + 58px));
  }
}
