:root {
  --bg: #06070b;
  --bg-soft: #0a0d14;
  --panel: rgba(15, 19, 29, 0.76);
  --panel-solid: #0d111a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f7fb;
  --muted: #b2bdcc;
  --cyan: #58e8ff;
  --blue: #7b8cff;
  --violet: #b879ff;
  --lime: #bcff75;
  --max: 1440px;
  --pad: clamp(24px, 5vw, 80px);
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --body: "DM Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--cyan) var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 5%, rgba(75, 93, 255, 0.12), transparent 35%),
    radial-gradient(circle at 10% 42%, rgba(68, 231, 255, 0.08), transparent 28%),
    var(--bg);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: #041014;
  background: var(--cyan);
}

#neural-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: .76;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(89, 232, 255, .13), rgba(105, 94, 255, .055) 36%, transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity .4s;
  mix-blend-mode: screen;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 14px var(--cyan);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .35s, border .35s, padding .35s;
}

.site-header.is-scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  border-color: var(--line);
  background: rgba(6, 7, 11, .76);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(88, 232, 255, .45);
  border-radius: 11px;
  color: var(--cyan);
  background: rgba(88, 232, 255, .07);
  box-shadow: inset 0 0 18px rgba(88, 232, 255, .08);
  font: 700 13px var(--display);
  letter-spacing: -.04em;
}

.brand-copy {
  font: 600 14px var(--display);
  letter-spacing: -.02em;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font: 500 10px var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 36px;
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 13, 20, .42);
  backdrop-filter: blur(12px);
}

.site-header nav a {
  position: relative;
  color: #cbd3df;
  font-size: 12px;
  font-weight: 600;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .25s;
}

.site-header nav a:hover::after { transform: scaleX(1); }

.header-cta {
  padding: 11px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  font: 600 12px var(--display);
  transition: border .25s, background .25s;
}

.header-cta:hover {
  border-color: var(--cyan);
  background: rgba(88, 232, 255, .08);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  max-width: 1680px;
  margin: auto;
  padding: clamp(130px, 15vh, 190px) var(--pad) 100px;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 48%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(88, 232, 255, .17), transparent);
}

.hero-beam {
  position: absolute;
  z-index: -2;
  width: 45vw;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(92, 118, 255, .1), transparent);
  filter: blur(12px);
  transform: rotate(-28deg);
}

.beam-one { top: 25%; right: -10%; }
.beam-two { bottom: 12%; left: -16%; transform: rotate(24deg); }

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font: 600 13px var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  animation: status-ping 2s infinite;
}

@keyframes status-ping {
  70%, 100% { transform: scale(2); opacity: 0; }
}

.hero-name {
  display: flex;
  margin: 18px 0 0;
  align-items: center;
  gap: 10px;
  color: #eef4fb;
  font: 600 clamp(22px, 2vw, 30px) var(--display);
  letter-spacing: -.035em;
}

.hero-name span {
  color: var(--cyan);
  font-size: .72em;
  letter-spacing: -.08em;
  text-shadow: 0 0 16px rgba(88,232,255,.4);
}

.hero h1 {
  max-width: 850px;
  margin: 20px 0 28px;
  font: 500 clamp(52px, 5.8vw, 88px)/.97 var(--display);
  letter-spacing: -.065em;
}

.gradient-type {
  display: block;
  min-height: 1em;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), #8ba2ff 48%, #d59cff);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 50px rgba(88, 232, 255, .16);
}

.gradient-type::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: .72em;
  margin-left: 8px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-lede {
  max-width: 660px;
  margin: 0;
  color: #aeb7c5;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.7;
}

.hero-lede strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.shipping-note {
  display: inline-flex;
  margin-top: 22px;
  padding: 9px 11px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(188,255,117,.16);
  border-radius: 9px;
  background: rgba(188,255,117,.025);
}

.shipping-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 7px;
  color: #071207;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(188,255,117,.18);
  font-size: 11px;
  font-weight: 800;
}

.shipping-note p { margin: 0; }
.shipping-note small {
  display: block;
  color: #98a4b5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.shipping-note strong {
  display: block;
  margin-top: 2px;
  font: 500 11px var(--display);
}

.shipping-note > i {
  margin-left: 7px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--lime);
  font: 600 9px var(--display);
  font-style: normal;
  letter-spacing: .12em;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 51px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 11px;
  font: 600 13px var(--display);
  letter-spacing: -.01em;
  transition: transform .25s, border .25s, background .25s;
}

.button::before {
  content: "";
  position: absolute;
  top: -200%;
  left: -40%;
  width: 35%;
  height: 500%;
  background: rgba(255,255,255,.22);
  transform: rotate(22deg);
  transition: left .6s ease;
}

.button:hover::before { left: 120%; }
.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #051115;
  background: linear-gradient(110deg, var(--cyan), #9bf0ff 56%, #ae9dff);
  box-shadow: 0 12px 45px rgba(88, 232, 255, .14);
}

.button-orb {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.14);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(88, 232, 255, .45);
  background: rgba(88, 232, 255, .06);
}

.hero-proof {
  display: grid;
  max-width: 780px;
  margin-top: clamp(34px, 5vh, 62px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.hero-proof div {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.hero-proof div:first-child { padding-left: 0; }
.hero-proof div:last-child { border: 0; }

.hero-proof strong {
  display: block;
  min-height: 27px;
  color: var(--text);
  font: 600 clamp(18px, 1.5vw, 25px) var(--display);
  letter-spacing: -.045em;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: #a4aebe;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  perspective: 1000px;
}

.portrait-orbit {
  position: relative;
  width: min(39vw, 580px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}

.portrait-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,232,255,.18), rgba(123,140,255,.06) 42%, transparent 68%);
  filter: blur(14px);
  animation: core-breathe 4s ease-in-out infinite;
}

@keyframes core-breathe {
  50% { transform: scale(1.08); filter: blur(23px); }
}

.portrait-frame {
  position: absolute;
  z-index: 3;
  inset: 11.5%;
  overflow: hidden;
  border: 1px solid rgba(88, 232, 255, .34);
  border-radius: 50%;
  background: #161c27;
  box-shadow:
    0 0 0 12px rgba(8, 12, 18, .9),
    0 0 0 13px rgba(255,255,255,.08),
    0 35px 100px rgba(0,0,0,.5),
    0 0 70px rgba(88,232,255,.1);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.08);
  transition: filter .5s, transform .8s;
}

.portrait-frame:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.portrait-scan {
  position: absolute;
  z-index: 2;
  top: -20%;
  left: 0;
  width: 100%;
  height: 14%;
  border-bottom: 1px solid rgba(88,232,255,.7);
  background: linear-gradient(transparent, rgba(88,232,255,.18));
  animation: portrait-scan 4.8s linear infinite;
  pointer-events: none;
}

@keyframes portrait-scan {
  to { top: 115%; }
}

.portrait-label {
  position: absolute;
  right: 8%;
  bottom: 9%;
  left: 8%;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  background: rgba(7, 10, 15, .75);
  backdrop-filter: blur(12px);
}

.portrait-label span {
  display: block;
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.portrait-label strong {
  display: block;
  margin-top: 3px;
  font: 500 11px var(--display);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(113, 172, 255, .23);
  border-radius: 50%;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.orbit-ring-one {
  inset: 2%;
  animation: spin 20s linear infinite;
}

.orbit-ring-two {
  inset: -8% 10%;
  transform: rotate(62deg);
  animation: spin-reverse 26s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-298deg); } }

.orbit-node {
  position: absolute;
  z-index: 4;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #dce5f3;
  background: rgba(10, 14, 22, .78);
  box-shadow: 0 10px 30px rgba(0,0,0,.3), inset 0 0 20px rgba(88,232,255,.04);
  font: 500 10px/1.3 var(--display);
  letter-spacing: .05em;
  text-align: center;
  backdrop-filter: blur(10px);
}

.node-one { top: 4%; right: 5%; animation: float 5s ease-in-out infinite; }
.node-two { bottom: 14%; left: -3%; animation: float 6s 1s ease-in-out infinite; }
.node-three { right: -5%; bottom: 25%; animation: float 5.5s .4s ease-in-out infinite; }

@keyframes float {
  50% { transform: translateY(-12px); }
}

.orbit-pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--violet);
  border-radius: 50%;
}

.orbit-pulse::before,
.orbit-pulse::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--violet);
  border-radius: inherit;
  animation: radar 3s infinite;
}

.orbit-pulse::after { animation-delay: 1.4s; }
.pulse-one { top: 30%; left: 1%; }
.pulse-two { right: 10%; bottom: 4%; }

@keyframes radar {
  to { transform: scale(5); opacity: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 27px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 15px;
  color: #919cab;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 80px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  background: var(--cyan);
  animation: scroll-line 2s infinite ease-in-out;
}

@keyframes scroll-line {
  from { left: -30%; }
  to { left: 100%; }
}

.signal-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  transform: rotate(-1deg) scale(1.02);
}

.signal-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.signal-track span {
  color: #c0c8d3;
  font: 500 12px var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.signal-track i {
  margin: 0 30px;
  color: var(--cyan);
  font-style: normal;
}

@keyframes marquee { to { transform: translateX(-50%); } }

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(100px, 13vw, 190px) var(--pad);
}

.manifesto-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(50px, 9vw, 140px);
}

.manifesto h2,
.section-heading h2,
.trajectory h2,
.contact h2 {
  margin: 0;
  font: 500 clamp(42px, 4.6vw, 68px)/1.04 var(--display);
  letter-spacing: -.055em;
}

.manifesto-copy p {
  margin: 0;
  color: #a7b0bd;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.manifesto-copy strong { color: var(--text); }

.affiliation-row {
  display: flex;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px 25px;
}

.affiliation-row span {
  color: #a2adbc;
  font: 600 10px var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.impact-grid {
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1200px;
}

.impact-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18,23,35,.86), rgba(8,11,17,.78));
  transform-style: preserve-3d;
  transition: border .35s, box-shadow .35s, transform .18s ease-out;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(88,232,255,.16), transparent 42%);
  transition: opacity .35s;
}

.impact-card:hover {
  border-color: rgba(88,232,255,.34);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.impact-card:hover::before { opacity: 1; }

.impact-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #788393;
  font: 500 11px var(--display);
}

.impact-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(88,232,255,.22);
  border-radius: 13px;
  color: var(--cyan);
  background: rgba(88,232,255,.06);
  font-size: 22px;
  transform: translateZ(25px);
}

.impact-card h3 {
  margin: 68px 0 13px;
  font: 600 23px var(--display);
  letter-spacing: -.035em;
  transform: translateZ(18px);
}

.impact-card p {
  margin: 0;
  color: #aeb8c6;
  font-size: 15px;
  line-height: 1.65;
  transform: translateZ(12px);
}

.impact-line {
  position: absolute;
  right: 30px;
  bottom: 25px;
  left: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(.16);
  transform-origin: left;
  transition: transform .5s;
}

.impact-card:hover .impact-line { transform: scaleX(1); }

.research {
  width: min(100%, 1600px);
  padding-top: 80px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2 { margin-top: 27px; }
.section-heading h2 span,
.contact h2 span { color: #6f7a8a; }

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: #acb6c4;
  font-size: 15px;
  line-height: 1.7;
}

.project-selector {
  display: grid;
  margin-top: 65px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.project-tab {
  position: relative;
  display: grid;
  min-height: 155px;
  padding: 22px 20px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11,14,22,.62);
  cursor: pointer;
  grid-template-columns: 32px 44px 1fr 20px;
  align-items: start;
  gap: 12px;
  text-align: left;
  transition: background .35s, border .35s, transform .35s;
}

.project-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, rgba(88,232,255,.08), transparent 50%, rgba(184,121,255,.08));
  transition: opacity .35s;
}

.project-tab:hover {
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}

.project-tab.is-active {
  border-color: rgba(88,232,255,.45);
  background: rgba(13,22,31,.84);
}

.project-tab.is-active::before { opacity: 1; }

.tab-count {
  color: #929dad;
  font: 500 10px var(--display);
}

.tab-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #8c97a7;
  background: rgba(255,255,255,.025);
  font-size: 17px;
}

.is-active .tab-icon {
  color: var(--cyan);
  border-color: rgba(88,232,255,.3);
  box-shadow: inset 0 0 20px rgba(88,232,255,.07);
}

.tab-copy { position: relative; }
.tab-copy small {
  display: block;
  color: #a6b0bf;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tab-copy strong {
  display: block;
  margin-top: 9px;
  font: 600 clamp(17px, 1.45vw, 22px) var(--display);
  letter-spacing: -.03em;
}

.tab-copy em {
  display: block;
  margin-top: 8px;
  color: #aeb8c6;
  font-size: 12px;
  font-style: normal;
}

.tab-arrow {
  color: #6a7483;
  transition: color .3s, transform .3s;
}

.project-tab:hover .tab-arrow,
.project-tab.is-active .tab-arrow {
  color: var(--cyan);
  transform: translate(2px, -2px);
}

.tab-progress {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
}

.project-tab.is-active .tab-progress {
  animation: tab-load .55s ease both;
}

@keyframes tab-load { to { transform: scaleX(1); } }

.project-stage {
  position: relative;
  display: grid;
  min-height: 680px;
  margin-top: 14px;
  padding: clamp(35px, 4.4vw, 68px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  outline: none;
  background:
    radial-gradient(circle at var(--stage-x, 70%) var(--stage-y, 35%), rgba(88,232,255,.08), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(101,96,255,.11), transparent 30%),
    linear-gradient(135deg, rgba(14,18,28,.97), rgba(7,9,14,.96));
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.project-stage::after {
  content: "";
  position: absolute;
  top: -15%;
  right: 5%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(88,232,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(88,232,255,.018), 0 0 0 140px rgba(88,232,255,.012);
  pointer-events: none;
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(88,232,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,232,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 80% 40%, black, transparent 58%);
}

.stage-copy,
.stage-visual { position: relative; z-index: 2; }

.stage-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cyan);
  font: 600 11px var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stage-kicker i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

.stage-copy h3 {
  margin: 23px 0 8px;
  font: 600 clamp(44px, 4.4vw, 66px)/.98 var(--display);
  letter-spacing: -.065em;
}

.stage-tagline {
  margin: 0;
  color: #c2cad6;
  font: 500 clamp(17px, 1.5vw, 22px)/1.35 var(--display);
  letter-spacing: -.02em;
}

.stage-description {
  max-width: 580px;
  margin: 25px 0 0;
  color: #adb7c5;
  font-size: 15px;
  line-height: 1.75;
}

.stage-metrics {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stage-metric {
  padding: 19px 12px 19px 0;
  border-right: 1px solid var(--line);
}

.stage-metric + .stage-metric { padding-left: 18px; }
.stage-metric:last-child { border: 0; }

.stage-metric strong {
  display: block;
  color: var(--text);
  font: 600 22px var(--display);
  letter-spacing: -.045em;
}

.stage-metric span {
  display: block;
  margin-top: 4px;
  color: #a8b3c2;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stage-tags {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 7px;
}

.stage-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: #d1d8e2;
  background: rgba(255,255,255,.045);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.stage-links {
  display: flex;
  margin-top: 31px;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: #b7c0cd;
  font: 600 12px var(--display);
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--cyan);
  transition: transform .25s;
}

.text-link:hover span { transform: translateX(5px); }

.stage-visual {
  min-width: 0;
  perspective: 1000px;
}

.visual-toolbar {
  display: flex;
  height: 41px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  background: rgba(4,6,10,.8);
}

.visual-toolbar > span { display: flex; gap: 5px; }
.visual-toolbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #35404f;
}

.visual-toolbar i:first-child { background: var(--violet); }
.visual-toolbar small {
  color: #99a4b3;
  font: 500 9px var(--display);
  letter-spacing: .12em;
}

.visual-toolbar b {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--lime);
  font: 600 9px var(--display);
  letter-spacing: .1em;
}

.visual-toolbar b::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 7px var(--lime);
}

.visual-stack {
  position: relative;
  min-height: 480px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 13px 13px;
  background: rgba(6,8,12,.72);
  transform-style: preserve-3d;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 55px rgba(0,0,0,.45);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .35s;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.visual-primary {
  z-index: 2;
  inset: 34px 10% 82px 5%;
  transform: rotateY(-4deg) rotateZ(-1deg);
}

.visual-secondary {
  z-index: 3;
  right: 0;
  bottom: 25px;
  width: 67%;
  height: 43%;
  transform: rotateY(-5deg) rotateZ(2deg);
}

.stage-visual:hover .visual-primary {
  transform: translate(-6px, -7px) rotateY(-1deg) rotateZ(-.5deg);
}

.stage-visual:hover .visual-secondary {
  transform: translate(5px, 8px) rotateY(0) rotateZ(.5deg);
}

.visual-coordinates {
  position: absolute;
  right: -4px;
  bottom: -22px;
  color: #8994a4;
  font: 500 9px var(--display);
  letter-spacing: .14em;
}

.project-stage.is-switching .stage-copy {
  animation: copy-switch .55s ease both;
}

.project-stage.is-switching .visual-card {
  animation: visual-switch .65s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes copy-switch {
  0% { opacity: 0; transform: translateY(18px); filter: blur(5px); }
  100% { opacity: 1; transform: none; filter: none; }
}

@keyframes visual-switch {
  0% { opacity: 0; transform: translateX(45px) rotateY(-12deg); }
  100% { opacity: 1; }
}

.trajectory {
  padding-top: 80px;
}

.trajectory-layout {
  display: grid;
  margin-top: 45px;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 10vw, 160px);
}

.trajectory-sticky {
  position: sticky;
  top: 150px;
  align-self: start;
}

.trajectory-sticky p {
  max-width: 430px;
  color: #8b95a4;
  font-size: 15px;
  line-height: 1.75;
}

.timeline {
  position: relative;
  border-top: 1px solid var(--line);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--violet), transparent);
  transform: scaleY(var(--timeline-progress, 0));
  transform-origin: top;
}

.timeline-item {
  position: relative;
  display: grid;
  min-height: 170px;
  padding: 36px 0 36px 38px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 1fr;
  gap: 25px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 14px rgba(88,232,255,.5);
}

.timeline-year {
  color: var(--cyan);
  font: 600 10px var(--display);
  letter-spacing: .1em;
}

.timeline-item h3 {
  margin: -5px 0 10px;
  font: 600 20px var(--display);
  letter-spacing: -.025em;
}

.timeline-item p {
  margin: 0;
  color: #adb7c5;
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  position: relative;
  width: min(calc(100% - 2 * var(--pad)), 1320px);
  margin-bottom: 60px;
  padding: clamp(70px, 9vw, 120px);
  overflow: hidden;
  border: 1px solid rgba(88,232,255,.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 50%, rgba(92,89,255,.16), transparent 34%),
    linear-gradient(135deg, #101722, #090b11);
}

.contact::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(88,232,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(88,232,255,.025), 0 0 0 140px rgba(88,232,255,.018);
  animation: contact-orbit 14s linear infinite;
}

@keyframes contact-orbit {
  to { transform: rotate(360deg) scale(1.08); }
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-pretitle {
  margin: 42px 0 18px;
  color: #7b8697;
  font: 500 12px var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-copy > p:not(.contact-pretitle) {
  max-width: 590px;
  margin: 27px 0;
  color: #929cab;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 0;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(88,232,255,.35);
  font: 500 clamp(17px, 2.2vw, 28px) var(--display);
}

.contact-email i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #031014;
  background: var(--cyan);
  font-style: normal;
  transition: transform .35s;
}

.contact-email:hover i { transform: rotate(45deg) scale(1.08); }

.contact-links {
  position: absolute;
  z-index: 2;
  right: clamp(50px, 8vw, 120px);
  bottom: clamp(70px, 9vw, 120px);
  display: grid;
  width: 250px;
}

.contact-links a {
  display: flex;
  padding: 13px 0;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #aab4c2;
  font-size: 11px;
  transition: color .25s, padding .25s;
}

.contact-links a:hover {
  padding-left: 8px;
  color: var(--cyan);
}

footer {
  display: flex;
  padding: 25px var(--pad) 35px;
  justify-content: space-between;
  color: #7f8a9a;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
    gap: 35px;
  }
  .hero-visual { min-height: 500px; }
  .portrait-orbit { width: min(43vw, 460px); }
  .hero-proof { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .hero-proof div:nth-child(2) { border: 0; }
  .project-stage { grid-template-columns: 1fr; }
  .stage-copy { max-width: 760px; }
  .stage-visual { width: min(100%, 760px); margin: 0 auto; }
  .contact-links { position: relative; right: auto; bottom: auto; margin-top: 55px; }
}

@media (max-width: 780px) {
  :root { --pad: 21px; }
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }
  #neural-field,
  .noise,
  .scroll-progress,
  .site-header {
    width: 100vw !important;
    max-width: 100vw;
  }
  .site-header nav { display: none; }
  .brand-copy { display: none; }
  .header-cta { padding: 9px 12px; font-size: 10px; }
  .hero {
    width: 100vw;
    max-width: 100vw;
    min-height: auto;
    padding-top: 130px;
    overflow: clip;
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero h1,
  .hero-lede,
  .hero-actions,
  .shipping-note,
  .hero-proof {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(44px, 12.5vw, 58px);
    letter-spacing: -.055em;
    overflow-wrap: break-word;
  }
  .hero-name {
    font-size: clamp(21px, 6vw, 25px);
  }
  .gradient-type {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-lede { font-size: 16px; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-visual { min-height: 390px; margin-top: 24px; }
  .portrait-orbit { width: min(92vw, 410px); }
  .node-one { right: 0; }
  .node-two { left: 0; }
  .node-three { right: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .shipping-note { width: 100%; }
  .hero-proof { margin-top: 48px; }
  .hero-proof div { min-width: 0; }
  .hero-proof strong { font-size: 19px; }
  .manifesto-grid,
  .trajectory-layout { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { min-height: 250px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 25px; }
  .project-selector {
    display: flex;
    max-width: calc(100vw - 2 * var(--pad));
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .project-tab { min-width: calc(100vw - 54px); scroll-snap-align: center; }
  .project-stage { padding: 28px 20px; border-radius: 17px; }
  .stage-copy h3 { font-size: 44px; }
  .stage-metrics { grid-template-columns: 1fr; }
  .stage-metric,
  .stage-metric + .stage-metric { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .stage-metric:last-child { border-bottom: 0; }
  .visual-stack { min-height: 350px; padding: 12px; }
  .visual-primary { inset: 28px 4% 75px 2%; }
  .visual-secondary { width: 72%; }
  .trajectory-sticky { position: relative; top: auto; }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .contact { width: calc(100% - 2 * var(--pad)); padding: 55px 24px; }
  .contact h2 { font-size: 40px; }
  .contact-email { max-width: 100%; font-size: 14px; word-break: break-all; }
  footer { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .header-cta { display: none; }
  .site-header { justify-content: flex-start; }
  .eyebrow,
  .section-index { font-size: 12px; }
  .hero-proof span { font-size: 10px; }
}

@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  #neural-field { display: none; }
  .reveal { opacity: 1; transform: none; }
}
