:root {
  --bg: #03040a;
  --bg-2: #070a14;
  --panel: rgba(10, 12, 28, .66);
  --panel-strong: rgba(4, 5, 12, .86);
  --violet-void: #120822;
  --purple: #27105c;
  --violet: #5b36ff;
  --soft-violet: #9d7cff;
  --ink: #eae7ff;
  --muted: #a9a1c8;
  --gold: #d8ae62;
  --line: rgba(234, 231, 255, .14);
  --line-strong: rgba(234, 231, 255, .26);
  --shadow: 0 30px 120px rgba(0, 0, 0, .55);
  --scroll: 0;
  --cursor-x: 50%;
  --cursor-y: 22%;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

html[data-capture="true"] {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(91, 54, 255, .22), transparent 38%),
    linear-gradient(180deg, #02030a 0%, #070916 42%, #03040a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(157, 124, 255, .11), transparent 24%),
    radial-gradient(circle at 78% 68%, rgba(91, 54, 255, .13), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, .025), transparent 45%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(216, 174, 98, .12), transparent 0 18rem),
    radial-gradient(circle at calc(100% - var(--cursor-x)) calc(100% - var(--cursor-y)), rgba(91, 54, 255, .1), transparent 0 24rem);
  mix-blend-mode: screen;
  opacity: .74;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 60;
  background: var(--ink);
  color: #070914;
  padding: .75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.system-loader {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  gap: 1.1rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(91, 54, 255, .22), transparent 34%),
    #02030a;
  color: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}

.system-loader.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html[data-capture="true"] .system-loader {
  display: none;
}

.loader-mark {
  font-size: clamp(1.8rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: .46em;
  text-indent: .46em;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(157, 124, 255, .6);
}

.loader-core {
  position: relative;
  width: min(54vw, 420px);
  height: 2px;
  background: rgba(234, 231, 255, .14);
  overflow: hidden;
}

.loader-core span {
  display: block;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, var(--soft-violet), transparent);
  animation: loader-scan 1.1s ease-in-out infinite;
}

.loader-sequence {
  display: grid;
  gap: .42rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-align: center;
  text-transform: uppercase;
}

.loader-sequence span:nth-child(2) {
  color: #c6bfff;
}

.loader-sequence span:nth-child(3) {
  color: var(--gold);
}

.scroll-depth {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  z-index: 50;
  background: rgba(255, 255, 255, .06);
}

.scroll-depth span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--violet), var(--soft-violet), var(--gold));
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .76;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.2rem;
  padding: .95rem clamp(1rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(3, 4, 10, .84), rgba(3, 4, 10, 0));
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 4, 10, .78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.brand-mark {
  font-size: .95rem;
  font-weight: 800;
}

.brand small {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .25em;
}

.site-header nav {
  display: flex;
  gap: clamp(.75rem, 2vw, 1.6rem);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header nav a,
.hud-nav a {
  position: relative;
  transition: color .2s ease;
}

.site-header nav a::after,
.hud-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--soft-violet);
  transition: transform .2s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a.is-active::after,
.hud-nav a:hover::after,
.hud-nav a:focus-visible::after,
.hud-nav a.is-active::after {
  transform: scaleX(1);
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.site-header nav a.is-active {
  color: #fff;
}

.system-hud {
  position: fixed;
  z-index: 24;
  left: 50%;
  bottom: .35rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  width: min(84vw, 820px);
  padding: .48rem .75rem;
  transform: translateX(-50%);
  border: 1px solid rgba(234, 231, 255, .16);
  border-radius: 999px;
  background: rgba(4, 5, 12, .68);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
  transition: opacity .24s ease, transform .24s ease;
}

.hud-status,
.hud-nav,
.hud-signal {
  display: flex;
  align-items: center;
}

.hud-status {
  gap: .55rem;
  color: #d9d4ff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px var(--soft-violet);
}

.hud-nav {
  justify-content: center;
  gap: clamp(.65rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hud-nav a.is-active {
  color: #fff;
}

.hud-signal {
  width: 104px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(234, 231, 255, .12);
}

.hud-signal span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--violet), var(--gold));
}

body.is-hero-active .system-hud {
  opacity: 0;
  transform: translate(-50%, 140%);
  pointer-events: none;
}

.section {
  position: relative;
  min-height: 100svh;
  padding: clamp(5.4rem, 7vw, 7.2rem) clamp(1.25rem, 5vw, 6rem);
  isolation: isolate;
  scroll-margin-top: 4.75rem;
}

.section::before {
  content: none;
  position: absolute;
  z-index: 0;
  top: clamp(4.8rem, 8vw, 7.8rem);
  right: clamp(.2rem, 3.2vw, 4.5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 231, 255, .13);
  text-stroke: 1px rgba(234, 231, 255, .13);
  font-size: clamp(4.5rem, 13vw, 15rem);
  font-weight: 800;
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .42;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, -webkit-text-stroke-color .35s ease;
}

.section::after {
  content: attr(data-chapter);
  position: absolute;
  z-index: 1;
  left: clamp(1.25rem, 5vw, 6rem);
  top: clamp(4.8rem, 6.5vw, 6.8rem);
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: rgba(216, 174, 98, .72);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .64;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.section.is-current::before {
  -webkit-text-stroke-color: rgba(234, 231, 255, .19);
  text-stroke-color: rgba(234, 231, 255, .19);
  opacity: .72;
  transform: translate3d(0, -.05em, 0);
}

.section.is-current::after {
  opacity: 1;
  transform: translateX(.25rem);
}

.hero {
  z-index: 24;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(320px, .98fr) minmax(280px, .68fr);
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 3rem);
  min-height: 100svh;
  padding-top: clamp(5.8rem, 8vw, 7.4rem);
  padding-bottom: clamp(4.8rem, 8vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 30;
  max-width: 600px;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--soft-violet);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: #fff;
  font-weight: 300;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.35rem, 4vw, 4.35rem);
}

.section h2 {
  font-size: clamp(2.5rem, 5.7vw, 6.1rem);
}

.lede,
.section-copy p,
.transmission-copy p {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1rem;
}

.hero-direct-actions {
  margin-top: .75rem;
}

.hero-direct-actions .button {
  min-width: 9.5rem;
}

.lede-secondary {
  font-size: clamp(.94rem, 1.08vw, 1.04rem);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 3rem;
  padding: .85rem 1.15rem;
  border: 1px solid rgba(234, 231, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  box-shadow: inset 0 0 28px rgba(157, 124, 255, .05);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(234, 231, 255, .16) 46%, transparent 64%),
    radial-gradient(circle at 50% 50%, rgba(157, 124, 255, .18), transparent 62%);
  opacity: 0;
  transform: translateX(-32%);
  transition: opacity .25s ease, transform .35s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.015);
  border-color: rgba(157, 124, 255, .68);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 0 34px rgba(91, 54, 255, .22), inset 0 0 28px rgba(157, 124, 255, .08);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(22%);
}

.button-primary {
  background: linear-gradient(135deg, rgba(91, 54, 255, .9), rgba(39, 16, 92, .7));
  border-color: rgba(157, 124, 255, .7);
  color: #fff;
}

.hero-signals {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  gap: 1.45rem;
  color: var(--muted);
}

.hero-signals div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.hero-signals span {
  display: block;
  color: rgba(234, 231, 255, .42);
  font-size: .78rem;
}

.hero-signals strong {
  display: block;
  margin: .68rem 0 .35rem;
  color: #dcd5ff;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-signals small {
  font-size: .85rem;
  color: #8680a4;
}

.hero-insight {
  align-self: center;
  gap: .8rem;
  z-index: 30;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(234, 231, 255, .14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(12, 10, 24, .72), rgba(4, 5, 12, .58));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34), inset 0 0 32px rgba(157, 124, 255, .05);
  backdrop-filter: blur(16px);
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.hero-insight.is-active {
  border-color: rgba(216, 174, 98, .38);
  box-shadow: 0 26px 86px rgba(0, 0, 0, .42), 0 0 34px rgba(216, 174, 98, .1), inset 0 0 36px rgba(157, 124, 255, .08);
}

.hero-insight .insight-kicker {
  margin: 0;
  color: var(--gold);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-insight h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.hero-insight p {
  margin: 0;
  color: #a9a1c8;
  font-size: .84rem;
  line-height: 1.46;
}

.hero-insight p strong {
  color: #d8c28f;
}

.hero-insight ul {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  margin: .25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-insight li,
.insight-cta {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: .28rem .56rem;
  border: 1px solid rgba(234, 231, 255, .14);
  border-radius: 999px;
  color: #dcd5ff;
  background: rgba(255, 255, 255, .045);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-cta {
  width: max-content;
  border-color: rgba(216, 174, 98, .36);
  color: #fff;
  background: rgba(216, 174, 98, .08);
}

.monolith-stage {
  position: relative;
  z-index: 30;
  display: grid;
  place-items: center;
  min-height: min(68vh, 680px);
  perspective: 1200px;
}

.monolith {
  --mx: 50%;
  --my: 50%;
  --tiltX: 0deg;
  --tiltY: 0deg;
  --open-left: clamp(-58px, -6vw, -28px);
  --open-right: clamp(28px, 6vw, 58px);
  --open-left-mid: clamp(-68px, -7vw, -34px);
  --open-right-mid: clamp(34px, 7vw, 68px);
  --open-up: clamp(-30px, -3vw, -14px);
  --open-down: clamp(14px, 3vw, 32px);
  --open-depth: clamp(42px, 7vw, 78px);
  position: relative;
  width: min(37vw, 480px);
  min-width: 320px;
  height: min(67vh, 680px);
  overflow: visible;
  isolation: isolate;
  transform:
    rotateX(var(--tiltX))
    rotateY(var(--tiltY))
    translateY(calc(var(--scroll) * -24px))
    scale(calc(1 + var(--scroll) * .045));
  transform-style: preserve-3d;
  transition: transform .22s ease;
}

.monolith::before {
  content: "";
  position: absolute;
  inset: 4% 27%;
  z-index: 1;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(18, 8, 34, .92) 28%, rgba(4, 5, 12, .98) 60%, rgba(157, 124, 255, .16));
  box-shadow: inset 0 0 30px rgba(255, 255, 255, .06), 0 0 72px rgba(91, 54, 255, .24);
  clip-path: polygon(10% 0, 90% 0, 100% 5%, 100% 100%, 0 100%, 0 5%);
  pointer-events: none;
}

.monolith::after {
  content: "";
  position: absolute;
  inset: 7% 32%;
  z-index: 3;
  border: 1px solid rgba(157, 124, 255, .32);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(157, 124, 255, .36), transparent 18%),
    repeating-linear-gradient(125deg, rgba(157, 124, 255, .16) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  opacity: .42;
  transition: opacity .24s ease;
  pointer-events: none;
}

.monolith-glow {
  position: absolute;
  inset: 30% 18% 8%;
  z-index: 0;
  background: radial-gradient(circle at 50% 18%, rgba(234, 231, 255, .95), rgba(157, 124, 255, .72) 10%, rgba(91, 54, 255, .25) 28%, transparent 58%);
  filter: blur(13px);
  opacity: .16;
  transition: opacity .24s ease, filter .24s ease;
  pointer-events: none;
}

.core-beam {
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 3%;
  z-index: 2;
  width: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(157, 124, 255, .75), #fff, rgba(91, 54, 255, .9), transparent);
  box-shadow: 0 0 30px rgba(157, 124, 255, .9), 0 0 80px rgba(91, 54, 255, .55);
  opacity: .08;
  transition: opacity .24s ease, filter .24s ease;
  pointer-events: none;
}

.panel {
  position: absolute;
  z-index: 4;
  display: block;
  padding: 0;
  border: 1px solid rgba(234, 231, 255, .14);
  font: inherit;
  color: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, .12), rgba(12, 14, 30, .78) 28%, rgba(3, 4, 10, .92));
  box-shadow: inset 0 0 24px rgba(157, 124, 255, .12), 0 20px 45px rgba(0, 0, 0, .34);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  cursor: pointer;
  appearance: none;
  overflow: hidden;
  transform: translate3d(0, 0, 18px);
  transform-origin: center;
  transform-style: preserve-3d;
  opacity: .96;
  transition: transform .42s cubic-bezier(.2, .8, .2, 1), opacity .3s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.panel::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at 50% 50%, rgba(234, 231, 255, .55), rgba(157, 124, 255, .28) 28%, transparent 62%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.panel::before {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min-content;
  min-width: 5.4rem;
  transform: translate(-50%, -50%) scale(.86);
  color: rgba(234, 231, 255, .72);
  font-size: clamp(.48rem, .85vw, .66rem);
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}

.panel:hover::before,
.panel:focus-visible::before,
.panel.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.panel:hover,
.panel:focus-visible,
.panel.is-active {
  z-index: 8;
  border-color: rgba(234, 231, 255, .38);
  background: linear-gradient(110deg, rgba(255, 255, 255, .18), rgba(34, 26, 76, .8) 30%, rgba(5, 6, 14, .95));
  box-shadow: inset 0 0 28px rgba(157, 124, 255, .24), 0 24px 58px rgba(0, 0, 0, .42), 0 0 34px rgba(157, 124, 255, .24);
  opacity: 1;
  transform: var(--open-transform);
}

.panel:hover::after,
.panel:focus-visible::after,
.panel.is-active::after {
  opacity: 1;
}

.panel:focus-visible {
  outline: 1px solid rgba(234, 231, 255, .72);
  outline-offset: 4px;
}

.panel-b,
.panel-d,
.panel-f {
  clip-path: polygon(0 0, 86% 0, 100% 100%, 14% 100%);
}

.panel-a {
  left: 27%;
  top: 8%;
  width: 24%;
  height: 30%;
  transform-origin: 100% 52%;
  --open-transform: translate3d(var(--open-left), var(--open-up), var(--open-depth)) rotateX(16deg) rotateY(-24deg) scale(1.04);
}

.panel-b {
  right: 27%;
  top: 8%;
  width: 24%;
  height: 30%;
  transform-origin: 0 52%;
  --open-transform: translate3d(var(--open-right), var(--open-up), var(--open-depth)) rotateX(16deg) rotateY(24deg) scale(1.04);
}

.panel-c {
  left: 23%;
  top: 35%;
  width: 28%;
  height: 28%;
  transform-origin: 100% 50%;
  --open-transform: translate3d(var(--open-left-mid), 0, var(--open-depth)) rotateY(-30deg) scale(1.045);
}

.panel-d {
  right: 23%;
  top: 35%;
  width: 28%;
  height: 28%;
  transform-origin: 0 50%;
  --open-transform: translate3d(var(--open-right-mid), 0, var(--open-depth)) rotateY(30deg) scale(1.045);
}

.panel-e {
  left: 27%;
  bottom: 8%;
  width: 25%;
  height: 30%;
  transform-origin: 100% 38%;
  --open-transform: translate3d(var(--open-left), var(--open-down), var(--open-depth)) rotateX(-18deg) rotateY(-22deg) scale(1.04);
}

.panel-f {
  right: 27%;
  bottom: 8%;
  width: 25%;
  height: 30%;
  transform-origin: 0 38%;
  --open-transform: translate3d(var(--open-right), var(--open-down), var(--open-depth)) rotateX(-18deg) rotateY(22deg) scale(1.04);
}

.monolith.is-revealed::after {
  opacity: .86;
}

.monolith.is-revealed .monolith-glow {
  filter: blur(9px);
  opacity: .86;
}

.monolith.is-revealed .core-beam {
  filter: blur(.2px);
  opacity: .78;
}

.energy-node {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px #fff, 0 0 46px var(--soft-violet);
  opacity: .2;
  transform: translateX(-50%) scale(.72);
  transform-origin: center;
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}

.node-one { top: 24%; }
.node-two { top: 49%; width: 28px; height: 28px; }
.node-three { top: 75%; }

.monolith.is-revealed .energy-node {
  opacity: .82;
  transform: translateX(-50%) scale(1);
}

.plinth {
  position: absolute;
  bottom: 7%;
  width: min(38vw, 470px);
  height: 74px;
  border: 1px solid rgba(234, 231, 255, .16);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(91, 54, 255, .24), rgba(2, 3, 10, .78) 60%, transparent 70%);
  box-shadow: 0 0 80px rgba(91, 54, 255, .32);
}

.monolith-caption {
  position: absolute;
  bottom: .3rem;
  margin: 0;
  color: #7e789d;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intelligence {
  display: grid;
  grid-template-columns: minmax(270px, .7fr) minmax(340px, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  background: radial-gradient(circle at 68% 50%, rgba(91, 54, 255, .2), transparent 36%);
}

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

.section-copy-center {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-copy-center p {
  margin-left: auto;
  margin-right: auto;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: .55rem .7rem;
  border: 1px solid rgba(157, 124, 255, .22);
  border-radius: 999px;
  color: #d8d1ff;
  background: rgba(255, 255, 255, .025);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.singularity-field {
  --sx: 50%;
  --sy: 50%;
  position: relative;
  z-index: 2;
  min-height: min(68vh, 660px);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--sx) var(--sy), rgba(157, 124, 255, .18), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(157, 124, 255, .18), transparent 16%),
    radial-gradient(ellipse at 50% 50%, rgba(91, 54, 255, .18), transparent 38%);
}

.black-hole {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(120px, 16vw, 210px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #01010a 0 44%, rgba(255, 255, 255, .98) 47%, rgba(157, 124, 255, .72) 51%, transparent 58%);
  box-shadow: 0 0 80px rgba(157, 124, 255, .72), 0 0 180px rgba(91, 54, 255, .45);
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(234, 231, 255, .24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: orbit 18s linear infinite;
}

.orbit-one { width: 62%; height: 18%; }
.orbit-two { width: 84%; height: 30%; animation-duration: 26s; }
.orbit-three { width: 92%; height: 52%; animation-duration: 34s; animation-direction: reverse; }

.data-star,
.core-readout {
  position: absolute;
  color: #c9c0ff;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.data-star::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: .55rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px var(--soft-violet);
}

.singularity-field:hover .data-star,
.singularity-field:focus-within .data-star {
  color: #fff;
  text-shadow: 0 0 20px rgba(157, 124, 255, .7);
}

.star-a { left: 18%; top: 22%; }
.star-b { right: 12%; top: 30%; }
.star-c { right: 9%; bottom: 28%; }
.star-d { left: 24%; bottom: 22%; }

.core-readout {
  color: rgba(216, 174, 98, .74);
  font-size: .62rem;
}

.readout-a { left: 12%; top: 50%; }
.readout-b { right: 10%; bottom: 48%; }

.ventures {
  background: linear-gradient(180deg, rgba(7, 10, 20, 0), rgba(18, 8, 34, .62), rgba(3, 4, 10, 0));
}

.map-console {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1136px;
  margin: 0 auto 1.25rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(234, 231, 255, .13);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(157, 124, 255, .08), transparent 28%),
    rgba(4, 5, 12, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
  color: var(--muted);
}

.map-console::before {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 174, 98, .62), transparent);
  opacity: .72;
}

.map-console p {
  margin: 0;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
}

.map-filter {
  position: relative;
  overflow: hidden;
  min-height: 2rem;
  border: 1px solid rgba(234, 231, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: #cfc8f5;
  padding: .42rem .7rem;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.map-filter:hover,
.map-filter:focus-visible,
.map-filter.is-active {
  transform: translateY(-1px);
  background: rgba(157, 124, 255, .08);
  border-color: rgba(157, 124, 255, .62);
  color: #fff;
  box-shadow: 0 0 24px rgba(91, 54, 255, .18);
}

.constellation-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1.28fr) minmax(250px, .46fr);
  gap: 1.1rem;
  align-items: stretch;
  max-width: 1136px;
  margin: 0 auto;
}

.constellation {
  position: relative;
  min-height: min(62vh, 620px);
  border: 1px solid rgba(234, 231, 255, .13);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(234, 231, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(234, 231, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 48% 54%, rgba(91, 54, 255, .24), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .008));
  background-size: 56px 56px, 56px 56px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.constellation::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(157, 124, 255, .14);
  border-radius: 50%;
  filter: blur(.3px);
}

.constellation::after {
  content: "BUSINESS SYSTEMS MAP";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: rgba(234, 231, 255, .32);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.constellation-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.constellation-lines line {
  stroke: rgba(157, 124, 255, .18);
  stroke-width: 1;
  transition: opacity .2s ease, stroke .2s ease, stroke-width .2s ease;
}

.constellation-lines line.is-related {
  stroke: rgba(216, 174, 98, .72);
  stroke-width: 1.6;
}

.constellation-lines line.is-muted {
  opacity: .12;
}

.venture-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: .5rem;
  min-width: 128px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
  transition: opacity .2s ease, filter .2s ease;
}

.venture-node span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px #fff, 0 0 42px var(--soft-violet);
  transition: transform .2s ease, box-shadow .2s ease;
}

.venture-node strong {
  color: #cfc8f5;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.venture-node em {
  color: rgba(216, 174, 98, .72);
  font-size: .56rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.venture-node:hover span,
.venture-node:focus-visible span,
.venture-node.is-active span {
  transform: scale(1.35);
  box-shadow: 0 0 22px #fff, 0 0 58px var(--soft-violet), 0 0 96px var(--violet);
}

.venture-node.is-muted {
  opacity: .22;
  filter: grayscale(.35);
}

.constellation-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 1.5rem;
  border: 1px solid rgba(234, 231, 255, .12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    rgba(4, 5, 12, .28);
  box-shadow: var(--shadow);
}

.constellation-detail h3 {
  margin: .25rem 0 1rem;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.constellation-detail p:last-child {
  color: var(--muted);
}

.transmission {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, .9fr);
  align-items: center;
  gap: 2rem;
  min-height: 110svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(216, 174, 98, .18), transparent 22%),
    radial-gradient(circle at 50% 42%, rgba(91, 54, 255, .16), transparent 35%);
}

.transmission-array {
  grid-column: 1 / -1;
  position: absolute;
  left: max(10vw, calc(50% - 380px));
  top: 8%;
  width: min(80vw, 760px);
  aspect-ratio: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: .9;
}

.array-ring {
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(216, 174, 98, .36);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(216, 174, 98, .12);
}

.ring-b {
  inset: 13%;
  border-style: dashed;
  animation: orbit 28s linear infinite;
}

.ring-c {
  inset: 4%;
  border-color: rgba(234, 231, 255, .16);
  animation: orbit 42s linear infinite reverse;
}

.signal-beam {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 33%;
  width: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, #fff, var(--gold), transparent);
  box-shadow: 0 0 34px #fff, 0 0 90px var(--gold);
}

.transmission-copy {
  position: relative;
  z-index: 2;
  align-self: end;
}

.transmission-copy h2 {
  font-size: clamp(2.7rem, 5.3vw, 6rem);
}

.contact-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(216, 174, 98, .32);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(16, 14, 22, .86), rgba(4, 5, 12, .78));
  box-shadow: 0 30px 120px rgba(0, 0, 0, .62), inset 0 0 48px rgba(216, 174, 98, .05);
  backdrop-filter: blur(20px);
}

.contact-form.is-transmitting {
  box-shadow: 0 30px 120px rgba(0, 0, 0, .62), 0 0 54px rgba(216, 174, 98, .12), inset 0 0 48px rgba(216, 174, 98, .08);
}

.contact-form label {
  display: grid;
  gap: .45rem;
  color: #d8c28f;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-title,
.form-intro {
  grid-column: 1 / -1;
  margin: 0;
}

.form-title {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.form-intro {
  max-width: 44rem;
  color: var(--muted);
  font-size: .92rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(234, 231, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  padding: .95rem 1rem;
  outline: none;
  color: #fff;
  color-scheme: dark;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form select {
  background-color: #15111d;
  cursor: pointer;
}

.contact-form select option {
  background: #15111d;
  color: #f7f3ff;
}

.contact-form select option:checked,
.contact-form select option:hover {
  background: #5a2fe6;
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(216, 174, 98, .68);
  box-shadow: 0 0 0 3px rgba(216, 174, 98, .12);
}

.wide {
  grid-column: 1 / -1;
}

.form-trap,
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.hp-field input {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note,
.form-status,
.email-draft {
  grid-column: 1 / -1;
  margin: 0;
  color: #8e87a8;
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
}

.form-status {
  color: #d8c28f;
}

.email-draft {
  display: inline-flex;
  width: max-content;
  color: #fff;
  border-bottom: 1px solid var(--gold);
}

.email-draft[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem clamp(1.25rem, 5vw, 6rem) 5rem;
  border-top: 1px solid var(--line);
  color: #8f88a7;
  font-size: .82rem;
}

.site-footer strong {
  color: #fff;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer a {
  color: #d8c28f;
  border-bottom: 1px solid rgba(216, 174, 98, .35);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(216, 174, 98, .8);
}

.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(34px) scale(.985);
  transition: opacity .75s ease, filter .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

html[data-capture="true"] .reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

@keyframes orbit {
  to {
    transform: translate(-50%, -50%) rotate(342deg);
  }
}

@keyframes loader-scan {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@media (max-width:1050px) {
  .hero,
  .intelligence,
  .transmission,
  .constellation-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 7rem;
  }

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

  .hero-insight {
    grid-template-columns: 1fr;
    max-width: 760px;
    justify-self: center;
  }

  .monolith {
    width: min(62vw, 400px);
    height: 560px;
  }

  .transmission-copy {
    align-self: auto;
  }

  .contact-form {
    max-width: 760px;
  }

  .site-footer {
    display: grid;
  }

  .transmission-array {
    top: 12%;
  }
}

@media (max-width:820px) {
  .section::before {
    top: 5.1rem;
    right: .75rem;
    font-size: clamp(3.4rem, 18vw, 8rem);
    opacity: .32;
  }

  .section::after {
    top: 4.55rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 5.8rem;
  }

  .monolith-stage {
    order: -1;
    min-height: 360px;
  }

  .monolith {
    min-width: 250px;
    width: min(58vw, 340px);
    height: 360px;
  }

  .plinth {
    width: min(74vw, 420px);
    height: 54px;
  }

  .system-hud {
    left: 1rem;
    right: 1rem;
    bottom: .35rem;
    width: auto;
    transform: none;
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: .42rem .55rem;
  }

  .hud-status,
  .hud-signal {
    display: none;
  }

  .hud-nav {
    justify-content: space-between;
    gap: .45rem;
  }

  .hud-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    padding: .2rem .35rem;
    font-size: .62rem;
  }
}

@media (max-width:720px) {
  .site-header {
    align-items: center;
    min-height: 4.7rem;
    padding: .85rem 1rem;
  }

  .site-header nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .45rem .65rem;
    font-size: .68rem;
    letter-spacing: .13em;
  }

  .site-header nav a {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
  }

  .brand {
    letter-spacing: .24em;
  }

  .brand small {
    display: none;
  }

  .section {
    padding-inline: 1rem;
  }

  .section::before {
    top: 5rem;
    right: .6rem;
    font-size: clamp(3rem, 21vw, 6.7rem);
    opacity: .24;
  }

  .section::after {
    left: 1rem;
    top: 4.4rem;
    font-size: .58rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: .65rem;
    padding-top: 5.2rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.45rem);
  }

  .hero-actions {
    gap: .55rem;
    margin-top: .8rem;
  }

  .lede-secondary {
    font-size: .86rem;
    line-height: 1.42;
  }

  .hero-signals {
    grid-template-columns: 1fr;
  }

  .monolith-stage {
    order: -1;
    min-height: 220px;
    margin-top: .25rem;
  }

  .monolith {
    min-width: 170px;
    width: min(56vw, 225px);
    height: 235px;
  }

  .plinth {
    width: 62vw;
    height: 34px;
  }

  .monolith-caption {
    display: none;
  }

  .data-star,
  .core-readout {
    display: none;
  }

  .singularity-field {
    min-height: 420px;
  }

  .map-console {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-filters {
    justify-content: flex-start;
  }

  .map-filter {
    min-height: 2.35rem;
  }

  .constellation {
    min-height: 540px;
  }

  .venture-node {
    min-width: 98px;
  }

  .venture-node strong {
    font-size: .58rem;
  }

  .venture-node em {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .button {
    width: 100%;
    min-height: 2.7rem;
    padding: .72rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .monolith {
    transform: none;
  }

  body::after {
    opacity: .34;
  }

  .panel,
  .panel:hover,
  .panel:focus-visible,
  .panel.is-active {
    transform: translate3d(0, 0, 18px);
  }

  .panel:hover,
  .panel:focus-visible,
  .panel.is-active {
    border-color: rgba(234, 231, 255, .34);
    box-shadow: inset 0 0 24px rgba(157, 124, 255, .22), 0 20px 45px rgba(0, 0, 0, .34);
  }

  .monolith.is-revealed .core-beam {
    opacity: .42;
  }

  .monolith.is-revealed .monolith-glow {
    opacity: .72;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .orbit {
    transform: translate(-50%, -50%) rotate(-18deg);
  }
}


/* Optional, user-activated audio controls. The site stays silent until the visitor turns sound on. */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.8rem, 2vw, 1.25rem);
}

.sound-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  min-height: 2.25rem;
  padding: .5rem .72rem;
  border: 1px solid rgba(234, 231, 255, .18);
  border-radius: 999px;
  background: rgba(4, 5, 12, .54);
  color: var(--muted);
  box-shadow: inset 0 0 22px rgba(157, 124, 255, .04);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(157, 124, 255, .58);
  box-shadow: 0 0 24px rgba(91, 54, 255, .16), inset 0 0 22px rgba(157, 124, 255, .08);
}

.sound-toggle:focus-visible {
  outline: 1px solid rgba(234, 231, 255, .72);
  outline-offset: 3px;
}

.sound-toggle[aria-pressed="true"] {
  color: #fff;
  border-color: rgba(216, 174, 98, .54);
  background: rgba(216, 174, 98, .08);
}

.sound-toggle-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: rgba(169, 161, 200, .55);
  box-shadow: 0 0 0 rgba(157, 124, 255, 0);
  transition: background .2s ease, box-shadow .2s ease;
}

.sound-toggle[aria-pressed="true"] .sound-toggle-dot {
  background: #fff;
  box-shadow: 0 0 16px rgba(216, 174, 98, .72), 0 0 30px rgba(157, 124, 255, .42);
}

.sound-toggle.is-blocked {
  border-color: rgba(216, 174, 98, .36);
}

.sound-toggle.is-unavailable {
  opacity: .72;
}

@media (max-width:720px) {
  .header-actions {
    align-items: flex-end;
    flex-direction: column;
    gap: .5rem;
  }

  .sound-toggle {
    min-height: 1.9rem;
    padding: .35rem .55rem;
    font-size: .56rem;
    letter-spacing: .1em;
  }
}
