/* SIMPEXA / Quantum Systems Atelier / Interface 2500 */
:root {
  --bg: #03040a;
  --bg-soft: #070914;
  --panel: rgba(10, 13, 25, .78);
  --panel-2: rgba(15, 19, 36, .82);
  --line: rgba(153, 178, 255, .16);
  --line-strong: rgba(125, 241, 255, .42);
  --text: #f4f7ff;
  --muted: #9ca7bb;
  --muted-2: #69738a;
  --iris: #875cff;
  --iris-bright: #aa8cff;
  --signal: #d6ff72;
  --cyan: #6df5ff;
  --magenta: #ff5cca;
  --void: #020309;
  --glass: rgba(7, 10, 22, .67);
  --shadow: 0 42px 130px rgba(0, 0, 0, .54), 0 0 70px rgba(90, 68, 255, .06);
}

html { background: var(--void); }
body {
  background:
    radial-gradient(circle at 73% -8%, rgba(111, 75, 255, .22), transparent 31rem),
    radial-gradient(circle at 8% 37%, rgba(0, 219, 255, .095), transparent 34rem),
    radial-gradient(circle at 94% 77%, rgba(255, 41, 197, .075), transparent 31rem),
    linear-gradient(180deg, #03040a, #050710 48%, #020309);
}

body::before {
  z-index: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(108, 245, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 245, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 64%);
}

body::after {
  content: "";
  position: fixed;
  z-index: 99;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, rgba(155, 194, 255, .055) 4px);
  mix-blend-mode: screen;
}

#future-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .52;
}

.cursor-aura {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(93, 231, 255, .5), rgba(134, 87, 255, .13) 37%, transparent 68%);
  filter: blur(18px);
  transform: translate3d(-500px, -500px, 0);
  transition: opacity .3s ease;
}
.cursor-aura.visible { opacity: .16; }

.frame-corners { position: fixed; z-index: 90; inset: 13px; pointer-events: none; }
.frame-corners i { position: absolute; width: 22px; height: 22px; opacity: .42; }
.frame-corners i:nth-child(1) { top: 0; left: 0; border-top: 1px solid var(--cyan); border-left: 1px solid var(--cyan); }
.frame-corners i:nth-child(2) { top: 0; right: 0; border-top: 1px solid var(--cyan); border-right: 1px solid var(--cyan); }
.frame-corners i:nth-child(3) { bottom: 0; right: 0; border-right: 1px solid var(--magenta); border-bottom: 1px solid var(--magenta); }
.frame-corners i:nth-child(4) { bottom: 0; left: 0; border-bottom: 1px solid var(--magenta); border-left: 1px solid var(--magenta); }

.nav, main, footer { position: relative; z-index: 2; }
.nav {
  top: 10px;
  width: min(calc(100% - 28px), 1280px);
  margin-inline: auto;
  border: 1px solid rgba(158, 185, 255, .13);
  border-radius: 16px;
  background: rgba(4, 6, 14, .66);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(24px) saturate(145%);
}
.nav.scrolled { border-color: rgba(109, 245, 255, .24); }
.nav-inner { height: 66px; padding-inline: 15px; }
.brand { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .22em; }
.mark {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(24% 0, 76% 0, 100% 24%, 100% 76%, 76% 100%, 24% 100%, 0 76%, 0 24%);
  background: linear-gradient(145deg, rgba(109,245,255,.27), rgba(135,92,255,.35));
  color: #e8fdff;
  box-shadow: none;
}
.nav-links { gap: 24px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .75rem; letter-spacing: .055em; text-transform: uppercase; }

.button {
  position: relative;
  overflow: hidden;
  border-color: rgba(132, 240, 255, .36);
  background: linear-gradient(115deg, #d7fcff, #a5c8ff 54%, #bc9cff);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 12px 35px rgba(100, 120, 255, .14);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 18%, rgba(255,255,255,.65) 45%, transparent 72%);
  transform: translateX(-130%);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.button:hover::before { transform: translateX(130%); }
.button.secondary {
  border-color: rgba(139, 166, 225, .25);
  background: rgba(11, 15, 30, .62);
  box-shadow: inset 0 0 24px rgba(109,245,255,.035);
}
.button.secondary:hover { border-color: rgba(109,245,255,.55); background: rgba(21,31,54,.72); }
.beam-button { box-shadow: 0 0 34px rgba(109,245,255,.14), 0 0 70px rgba(135,92,255,.11); }

.eyebrow {
  color: var(--cyan);
  letter-spacing: .18em;
  text-shadow: 0 0 22px rgba(109,245,255,.38);
}
.eyebrow::before { background: linear-gradient(90deg, transparent, var(--cyan)); }
.eyebrow .pulse { width: 6px; height: 6px; box-shadow: 0 0 0 5px rgba(214,255,114,.065), 0 0 18px var(--signal); }

.future-hero {
  min-height: 100svh;
  padding: 112px 0 44px;
  isolation: isolate;
}
.future-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(86vw, 1060px);
  height: min(86vw, 1060px);
  right: -28vw;
  top: -22vw;
  border: 1px solid rgba(109,245,255,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 120px rgba(135,92,255,.015), 0 0 0 240px rgba(109,245,255,.012);
}
.hero-coordinates {
  position: absolute;
  top: 95px;
  right: max(24px, calc((100vw - 1240px)/2));
  display: flex;
  gap: 24px;
  color: rgba(148, 171, 210, .55);
  font: 600 .62rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
}
.future-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: 46px;
  align-items: center;
}
.future-hero-copy { position: relative; z-index: 4; padding-top: 42px; }
.future-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(4.1rem, 8.3vw, 8.6rem);
  line-height: .82;
  font-weight: 580;
  letter-spacing: -.075em;
}
.future-word {
  position: relative;
  display: inline-block;
  padding-right: .07em;
  color: transparent;
  background: linear-gradient(92deg, #fff 2%, #a8f9ff 29%, #b28cff 67%, #ff79d5);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 28px rgba(122,109,255,.15));
}
.future-word::before,
.future-word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  color: var(--cyan);
  transition: opacity .25s ease;
}
.future-word::before { transform: translateX(3px); color: var(--magenta); clip-path: inset(18% 0 58%); }
.future-word::after { transform: translateX(-3px); color: var(--cyan); clip-path: inset(62% 0 16%); }
.future-word:hover::before, .future-word:hover::after { opacity: .72; }
.future-hero .lede { max-width: 740px; color: #b9c4d8; font-size: clamp(1.1rem, 1.7vw, 1.34rem); }
.future-manifesto { max-width: 660px; margin: 0 0 30px; padding-left: 16px; border-left: 1px solid rgba(109,245,255,.65); color: #eef5ff; font-size: .96rem; }
.hero-signals { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-signals span { padding: 8px 11px; border: 1px solid rgba(142,166,214,.17); background: rgba(7,10,21,.5); color: #8490a6; font: 600 .64rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .05em; }
.hero-signals b { color: var(--cyan); font-weight: 700; }

.quantum-stage {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  min-height: 630px;
  border: 1px solid rgba(129, 169, 255, .17);
  border-radius: 44px 5px 44px 5px;
  background:
    radial-gradient(circle at 50% 48%, rgba(109,245,255,.1), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(135,92,255,.15), transparent 48%),
    rgba(4, 7, 16, .57);
  box-shadow: var(--shadow), inset 0 0 85px rgba(92,91,255,.04);
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .16s ease-out, border-color .3s ease;
}
.quantum-stage:hover { border-color: rgba(109,245,255,.38); }
.quantum-stage::before,
.quantum-stage::after { content: ""; position: absolute; pointer-events: none; }
.quantum-stage::before { inset: 18px; border: 1px solid rgba(124,151,209,.11); border-radius: 31px 2px 31px 2px; }
.quantum-stage::after { width: 150px; height: 1px; top: 18px; left: 18px; background: linear-gradient(90deg, var(--cyan), transparent); box-shadow: calc(100% + 180px) 594px 0 var(--magenta); }
.quantum-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(109,245,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(109,245,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black 13%, transparent 69%);
  transform: perspective(500px) rotateX(58deg) translateY(13%);
}
.scan-beam {
  position: absolute;
  z-index: 2;
  left: 11%;
  right: 11%;
  height: 1px;
  top: 18%;
  background: linear-gradient(90deg, transparent, rgba(109,245,255,.78), transparent);
  box-shadow: 0 0 19px var(--cyan), 0 8px 40px rgba(109,245,255,.16);
  animation: scan-stage 5.8s cubic-bezier(.4,0,.6,1) infinite alternate;
}
@keyframes scan-stage { to { top: 82%; } }
.orbit { position: absolute; z-index: 2; left: 50%; top: 47%; border: 1px solid rgba(135, 199, 255, .2); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit::before { content: ""; position: absolute; top: -4px; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.orbit-one { width: 230px; height: 230px; animation: orbit-one 15s linear infinite; }
.orbit-two { width: 370px; height: 370px; border-color: rgba(173,118,255,.2); animation: orbit-two 23s linear infinite reverse; }
.orbit-two::before { background: var(--magenta); box-shadow: 0 0 18px var(--magenta); }
.orbit-three { width: 500px; height: 500px; border-style: dashed; border-color: rgba(214,255,114,.13); animation: orbit-three 36s linear infinite; }
.orbit-three::before { background: var(--signal); box-shadow: 0 0 18px var(--signal); }
@keyframes orbit-one { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit-two { to { transform: translate(-50%,-50%) rotate(360deg) scaleY(.8); } }
@keyframes orbit-three { to { transform: translate(-50%,-50%) rotate(360deg) scaleX(.9); } }
.core-node {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 47%;
  width: 174px;
  height: 174px;
  padding: 32px 22px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(148,235,255,.45);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 27%, rgba(109,245,255,.22), rgba(99,72,198,.13) 45%, rgba(3,5,13,.92) 72%);
  box-shadow: 0 0 0 8px rgba(109,245,255,.025), 0 0 70px rgba(109,245,255,.13), inset 0 0 50px rgba(109,245,255,.09);
  transform: translate(-50%,-50%);
  text-align: center;
}
.core-node span { color: var(--cyan); font: 700 .62rem/1 ui-monospace, monospace; letter-spacing: .2em; }
.core-node strong { margin: 10px 0; font-size: 1.35rem; line-height: .92; letter-spacing: -.04em; }
.core-node small { color: var(--signal); font: 600 .52rem/1 ui-monospace, monospace; letter-spacing: .08em; }
.system-node {
  position: absolute;
  z-index: 6;
  padding: 8px 10px;
  border: 1px solid rgba(136,174,226,.2);
  background: rgba(5,8,18,.86);
  color: #aebad0;
  font: 650 .59rem/1 ui-monospace, monospace;
  letter-spacing: .1em;
  box-shadow: 0 9px 25px rgba(0,0,0,.24);
}
.system-node i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.node-web { top: 17%; left: 16%; }
.node-mobile { top: 27%; right: 8%; }
.node-ai { top: 57%; right: 10%; }
.node-ops { bottom: 15%; right: 29%; }
.node-data { bottom: 20%; left: 11%; }
.node-pay { top: 45%; left: 5%; }
.node-ai i, .node-ops i { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
.node-data i, .node-pay i { background: var(--signal); box-shadow: 0 0 8px var(--signal); }
.quantum-telemetry { position: absolute; z-index: 5; left: 22px; right: 22px; bottom: 22px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(133,159,212,.12); background: rgba(2,4,10,.66); backdrop-filter: blur(12px); }
.quantum-telemetry span { padding: 12px; color: #7c879c; font: 550 .57rem/1.2 ui-monospace, monospace; text-transform: uppercase; }
.quantum-telemetry span + span { border-left: 1px solid rgba(133,159,212,.12); }
.quantum-telemetry i { margin-right: 5px; color: var(--cyan); font-style: normal; }

.future-proof { margin-top: 68px; border-top: 1px solid var(--line); }
.future-proof > p { margin: 0; padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; color: #758097; font: 600 .69rem/1.2 ui-monospace, monospace; text-transform: uppercase; letter-spacing: .1em; }
.future-proof > p strong { color: var(--cyan); font-weight: 600; }
.proof-rail { display: grid; grid-template-columns: repeat(6,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-rail span { padding: 22px 12px; border-left: 1px solid var(--line); color: #afb8c8; text-align: center; font: 700 .75rem/1 ui-monospace, monospace; letter-spacing: .085em; }
.proof-rail span:first-child { border-left: 0; }

.section { padding-top: 130px; padding-bottom: 130px; }
.section-head h2, .impact-intro h2 { text-wrap: balance; }
.section-head p { color: #8f9ab0; }

.spectrum-shell {
  position: relative;
  border-color: rgba(122,154,219,.2);
  border-radius: 3px 30px 3px 30px;
  background: linear-gradient(145deg, rgba(12,17,34,.8), rgba(4,6,14,.72));
  box-shadow: inset 0 0 80px rgba(107,91,255,.025);
}
.spectrum-shell::before { content: "SPECTRUM / 01—03"; position: absolute; z-index: 4; right: 20px; top: -25px; color: #5e6a81; font: 600 .58rem/1 ui-monospace, monospace; letter-spacing: .12em; }
.spectrum-tab { background: rgba(3,5,12,.4); }
.spectrum-tab[aria-selected="true"] { background: linear-gradient(120deg, rgba(91,230,255,.085), rgba(135,92,255,.11)); }
.spectrum-tab[aria-selected="true"]::after { background: linear-gradient(90deg, var(--cyan), var(--iris), var(--magenta)); box-shadow: 0 0 18px var(--cyan); }
.deliverable { border-color: rgba(132,158,211,.14); border-radius: 2px 15px 2px 15px; background: rgba(3,6,14,.62); }
.deliverable b { color: #e9f5ff; }

.impact-section { isolation: isolate; }
.impact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 6% 0 2%;
  border-top: 1px solid rgba(109,245,255,.08);
  border-bottom: 1px solid rgba(255,92,202,.07);
  background:
    linear-gradient(110deg, rgba(109,245,255,.025), transparent 34%),
    linear-gradient(290deg, rgba(135,92,255,.045), transparent 40%);
}
.impact-intro { display: grid; grid-template-columns: 1.24fr .76fr; gap: 70px; align-items: end; margin-bottom: 52px; }
.impact-intro h2 { margin-bottom: 0; font-size: clamp(2.7rem, 5.9vw, 6.1rem); line-height: .9; }
.impact-thesis { padding: 23px 0 4px 25px; border-left: 1px solid rgba(109,245,255,.35); }
.impact-thesis p { color: #9da8bc; font-size: 1.02rem; }
.impact-thesis strong { color: var(--cyan); font: 650 .76rem/1.3 ui-monospace, monospace; letter-spacing: .09em; text-transform: uppercase; }
.impact-lab {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border: 1px solid rgba(113,194,255,.25);
  border-radius: 4px 38px 4px 38px;
  background: rgba(4,7,16,.72);
  box-shadow: 0 45px 120px rgba(0,0,0,.35), 0 0 80px rgba(68,172,255,.04);
  overflow: hidden;
}
.impact-lab::before { content: ""; position: absolute; z-index: 4; left: 0; top: 0; width: 180px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); box-shadow: 0 0 18px var(--cyan); }
.lab-controls { padding: 38px; border-right: 1px solid rgba(129,159,219,.16); }
.lab-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.lab-title-row span, .output-kicker span { color: var(--cyan); font: 650 .64rem/1 ui-monospace, monospace; letter-spacing: .14em; }
.lab-title-row h3 { margin: 10px 0 0; font-size: 1.65rem; }
.lab-title-row em { padding: 6px 9px; border: 1px solid rgba(214,255,114,.2); color: var(--signal); font: 600 .6rem/1 ui-monospace, monospace; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.drag-selector { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.drag-chip { padding: 9px 11px; border: 1px solid rgba(130,154,202,.18); border-radius: 2px 10px 2px 10px; background: rgba(12,16,29,.8); color: #7f899d; cursor: pointer; font-size: .76rem; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.drag-chip:hover { transform: translateY(-1px); border-color: rgba(109,245,255,.35); color: white; }
.drag-chip.active { border-color: rgba(109,245,255,.48); background: rgba(109,245,255,.075); color: #dcfbff; box-shadow: inset 0 0 18px rgba(109,245,255,.035); }
.range-stack { display: grid; gap: 24px; }
.range-control > span { margin-bottom: 9px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.range-control b { color: #b9c4d7; font-size: .83rem; font-weight: 570; }
.range-control output { color: var(--cyan); font: 700 .76rem/1 ui-monospace, monospace; }
.range-control input { width: 100%; height: 22px; margin: 0; appearance: none; background: transparent; cursor: pointer; }
.range-control input::-webkit-slider-runnable-track { height: 2px; background: linear-gradient(90deg, var(--cyan) 0 var(--fill, 50%), rgba(140,158,199,.18) var(--fill, 50%) 100%); }
.range-control input::-webkit-slider-thumb { width: 15px; height: 15px; margin-top: -6px; appearance: none; border: 2px solid #061018; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(109,245,255,.15), 0 0 17px var(--cyan); }
.range-control input::-moz-range-track { height: 2px; background: rgba(140,158,199,.18); }
.range-control input::-moz-range-progress { height: 2px; background: var(--cyan); }
.range-control input::-moz-range-thumb { width: 13px; height: 13px; border: 2px solid #061018; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(109,245,255,.15), 0 0 17px var(--cyan); }
.currency-control { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #7e899f; font-size: .76rem; }
.currency-control select { min-height: 38px; padding: 0 34px 0 11px; border: 1px solid rgba(129,157,210,.2); border-radius: 3px; background: #090d19; color: #dbe7f7; font: 650 .72rem/1 ui-monospace, monospace; }

.lab-output { position: relative; min-height: 660px; padding: 40px; display: flex; flex-direction: column; background: radial-gradient(circle at 71% 28%, rgba(135,92,255,.16), transparent 32%), linear-gradient(145deg, rgba(8,14,30,.82), rgba(3,5,13,.94)); overflow: hidden; }
.lab-output::before { content: ""; position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(109,245,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(109,245,255,.06) 1px, transparent 1px); background-size: 29px 29px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.lab-scanline { position: absolute; z-index: 2; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent); opacity: .55; box-shadow: 0 0 18px var(--cyan); animation: lab-scan 6s linear infinite; }
@keyframes lab-scan { 0% { top: 0; opacity: 0; } 8% { opacity: .55; } 92% { opacity: .55; } 100% { top: 100%; opacity: 0; } }
.output-kicker { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.output-kicker i { color: var(--signal); font: 650 .58rem/1 ui-monospace, monospace; font-style: normal; letter-spacing: .09em; }
.output-value { position: relative; z-index: 3; display: block; margin: 40px 0 12px; color: transparent; background: linear-gradient(90deg, #fff, var(--cyan) 52%, var(--iris-bright)); background-clip: text; -webkit-background-clip: text; font-size: clamp(3.4rem, 7.2vw, 7.6rem); line-height: .8; letter-spacing: -.075em; filter: drop-shadow(0 0 24px rgba(109,245,255,.12)); }
.output-explanation { position: relative; z-index: 3; max-width: 590px; color: #8e9bb0; font-size: .9rem; }
.output-metrics { position: relative; z-index: 3; margin-top: 24px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(126,160,219,.15); border-bottom: 1px solid rgba(126,160,219,.15); }
.output-metrics div { padding: 18px 14px; }
.output-metrics div + div { border-left: 1px solid rgba(126,160,219,.15); }
.output-metrics span { display: block; color: #e4faff; font-size: 1.25rem; font-weight: 650; }
.output-metrics small { display: block; margin-top: 4px; color: #657087; font-size: .64rem; line-height: 1.3; }
.blueprint { position: relative; z-index: 3; min-height: 180px; margin-top: 25px; display: grid; place-items: center; }
.blueprint::before { content: ""; position: absolute; left: 50%; top: 50%; width: 270px; height: 110px; border: 1px dashed rgba(109,245,255,.17); border-radius: 50%; transform: translate(-50%,-50%); animation: blueprint-orbit 18s linear infinite; }
@keyframes blueprint-orbit { to { transform: translate(-50%,-50%) rotate(360deg); } }
.blueprint-core { position: relative; z-index: 3; width: 120px; height: 120px; display: grid; place-content: center; border: 1px solid rgba(109,245,255,.39); border-radius: 50%; background: rgba(4,10,21,.9); box-shadow: 0 0 38px rgba(109,245,255,.09); text-align: center; }
.blueprint-core span { color: var(--cyan); font: 600 .55rem/1 ui-monospace, monospace; letter-spacing: .15em; }
.blueprint-core strong { margin-top: 7px; font-size: .87rem; line-height: 1.05; }
.blueprint-paths { position: absolute; inset: 0; }
.blueprint-paths i { position: absolute; left: 50%; top: 50%; width: 31%; height: 1px; background: linear-gradient(90deg, rgba(109,245,255,.55), transparent); transform-origin: left; }
.blueprint-paths i:nth-child(1) { transform: rotate(25deg); }
.blueprint-paths i:nth-child(2) { transform: rotate(155deg); }
.blueprint-paths i:nth-child(3) { transform: rotate(210deg); }
.blueprint-paths i:nth-child(4) { transform: rotate(335deg); }
.blueprint-modules { position: absolute; inset: 0; z-index: 4; }
.blueprint-modules span { position: absolute; padding: 6px 8px; border: 1px solid rgba(129,161,218,.21); background: rgba(5,8,17,.88); color: #9ca8bd; font: 600 .56rem/1 ui-monospace, monospace; text-transform: uppercase; letter-spacing: .07em; }
.blueprint-modules span:nth-child(1) { top: 11%; left: 3%; }
.blueprint-modules span:nth-child(2) { top: 15%; right: 4%; }
.blueprint-modules span:nth-child(3) { bottom: 10%; left: 13%; }
.blueprint-modules span:nth-child(4) { bottom: 7%; right: 9%; }
.blueprint-modules span:nth-child(5) { top: 44%; left: 0; }
.blueprint-modules span:nth-child(6) { top: 46%; right: 0; }
.lab-footer { position: relative; z-index: 3; margin-top: auto; padding-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(126,160,219,.15); }
.lab-footer p { max-width: 430px; margin: 0; color: #5f6a81; font-size: .68rem; }
.lab-link { flex: none; color: var(--cyan); font: 700 .68rem/1.2 ui-monospace, monospace; text-transform: uppercase; letter-spacing: .07em; }
.saved-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(114,146,206,.15); border: 1px solid rgba(114,146,206,.15); }
.saved-grid > div { min-height: 190px; padding: 25px; background: #070a13; }
.saved-grid span { color: var(--cyan); font: 650 .62rem/1 ui-monospace, monospace; }
.saved-grid strong { display: block; margin: 42px 0 9px; font-size: 1.05rem; }
.saved-grid p { margin: 0; color: #788399; font-size: .8rem; }

.cap-card {
  position: relative;
  border-color: rgba(135,163,220,.15);
  border-radius: 3px 21px 3px 21px;
  background: linear-gradient(145deg, rgba(12,17,33,.84), rgba(5,7,15,.77));
  overflow: hidden;
}
.cap-card::before { content: ""; position: absolute; left: 0; top: 0; width: 74px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
.cap-card:hover { border-color: rgba(109,245,255,.38); box-shadow: inset 0 0 46px rgba(109,245,255,.025), 0 22px 55px rgba(0,0,0,.22); }
.cap-no { color: var(--cyan); }
.cap-card h3 { color: #edf7ff; }

.case {
  border-color: rgba(127,161,222,.16);
  border-radius: 4px 44px 4px 44px;
  box-shadow: 0 36px 100px rgba(0,0,0,.28);
}
.case::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(109,245,255,.65), transparent); opacity: .45; }
.case-shield { background: radial-gradient(circle at 84% 20%, rgba(0,255,173,.09), transparent 30%), linear-gradient(140deg, #030d0a, #071511 58%, #030908); }
.case-noctiva { background: radial-gradient(circle at 82% 15%, rgba(184,89,255,.15), transparent 30%), linear-gradient(140deg, #0d0715, #1d0e31 57%, #08060d); }
.case-afrodise { background: radial-gradient(circle at 85% 18%, rgba(74,222,128,.11), transparent 30%), linear-gradient(140deg, #050806, #0b170e 60%, #040504); }
.case-royal { background: radial-gradient(circle at 85% 18%, rgba(219,180,92,.13), transparent 30%), linear-gradient(140deg, #0d0c09, #1c180f 60%, #090805); }
.tag { border-radius: 2px 8px 2px 8px; font-family: ui-monospace, monospace; letter-spacing: .08em; }
.product-ui { border-radius: 4px 24px 4px 24px; transform: perspective(1000px) rotateY(-5deg) rotateX(1deg); transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .3s ease; }
.case:nth-child(even) .product-ui { transform: perspective(1000px) rotateY(5deg) rotateX(1deg); }
.case:hover .product-ui { transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-5px); border-color: rgba(109,245,255,.3); }
.micro-card { position: relative; border-radius: 2px 18px 2px 18px; background: linear-gradient(145deg, rgba(12,16,31,.82), rgba(5,7,14,.86)); overflow: hidden; }
.micro-card::after { content: ""; position: absolute; width: 80px; height: 1px; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, var(--magenta)); }

.process-step { transition: padding-left .25s ease, background .25s ease; }
.process-step:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(109,245,255,.035), transparent); }
.step-no { color: var(--cyan); }
.principle { border-radius: 2px 18px 2px 18px; background: rgba(8,11,22,.67); }
summary::after { color: var(--cyan); }

.cta-shell {
  border-color: rgba(109,245,255,.29);
  border-radius: 5px 52px 5px 52px;
  background:
    radial-gradient(circle at 82% 25%, rgba(109,245,255,.13), transparent 24%),
    radial-gradient(circle at 25% 90%, rgba(255,92,202,.08), transparent 28%),
    linear-gradient(135deg, rgba(83,60,202,.2), rgba(5,12,26,.91) 58%, rgba(4,7,16,.96));
  box-shadow: 0 45px 120px rgba(0,0,0,.4), inset 0 0 80px rgba(109,245,255,.025);
}
.cta-shell::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(135,164,223,.1); border-radius: 2px 36px 2px 36px; }
.cta-shell::after { color: rgba(109,245,255,.025); }
footer { background: linear-gradient(to top, rgba(8,10,19,.72), transparent); }

@media (max-width: 1080px) {
  .future-hero-grid { grid-template-columns: 1fr; }
  .future-hero-copy { max-width: 920px; }
  .quantum-stage { width: min(100%, 690px); min-height: 590px; margin: 20px auto 0; }
  .impact-intro, .impact-lab { grid-template-columns: 1fr; }
  .impact-thesis { max-width: 700px; }
  .lab-controls { border-right: 0; border-bottom: 1px solid rgba(129,159,219,.16); }
  .saved-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { top: 7px; width: calc(100% - 14px); }
  .nav-inner { height: 60px; }
  .nav-links { top: 68px; }
  .future-hero { padding-top: 105px; }
  .hero-coordinates { top: 80px; left: 20px; right: 20px; justify-content: space-between; }
  .hero-coordinates span:first-child { display: none; }
  .future-hero-copy { padding-top: 24px; }
  .future-hero h1 { font-size: clamp(3.65rem, 18vw, 6.1rem); line-height: .83; }
  .future-manifesto { font-size: .88rem; }
  .hero-signals { display: grid; }
  .quantum-stage { min-height: 490px; border-radius: 28px 3px 28px 3px; }
  .orbit-one { width: 170px; height: 170px; }
  .orbit-two { width: 275px; height: 275px; }
  .orbit-three { width: 390px; height: 390px; }
  .core-node { width: 134px; height: 134px; }
  .core-node strong { font-size: 1.05rem; }
  .node-web { top: 16%; left: 9%; }
  .node-mobile { top: 24%; right: 4%; }
  .node-ai { top: 56%; right: 4%; }
  .node-ops { bottom: 17%; right: 20%; }
  .node-data { bottom: 19%; left: 6%; }
  .node-pay { top: 46%; left: 2%; }
  .quantum-telemetry { left: 10px; right: 10px; bottom: 10px; }
  .quantum-telemetry span { padding: 9px 6px; font-size: .49rem; }
  .future-proof > p { flex-direction: column; gap: 7px; }
  .proof-rail { grid-template-columns: repeat(2,1fr); }
  .proof-rail span { border-top: 1px solid var(--line); }
  .proof-rail span:nth-child(odd) { border-left: 0; }
  .section { padding-top: 92px; padding-bottom: 92px; }
  .impact-intro { gap: 28px; }
  .impact-intro h2 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  .impact-thesis { padding-left: 18px; }
  .impact-lab { border-radius: 3px 25px 3px 25px; }
  .lab-controls, .lab-output { padding: 25px 18px; }
  .lab-output { min-height: 620px; }
  .output-value { font-size: clamp(3.25rem, 15vw, 5.6rem); }
  .output-metrics { grid-template-columns: 1fr; }
  .output-metrics div + div { border-left: 0; border-top: 1px solid rgba(126,160,219,.15); }
  .output-metrics div { padding: 12px 4px; }
  .blueprint { margin-block: 10px; }
  .lab-footer { align-items: flex-start; flex-direction: column; }
  .saved-grid { grid-template-columns: 1fr; }
  .saved-grid > div { min-height: 155px; }
  .saved-grid strong { margin-top: 28px; }
  .case { border-radius: 3px 28px 3px 28px; }
  .cta-shell { border-radius: 3px 30px 3px 30px; }
}

@media (hover: none), (pointer: coarse) { .cursor-aura { display: none; } }

@media (prefers-reduced-motion: reduce) {
  #future-field { opacity: .18; }
  .cursor-aura { display: none; }
  .scan-beam, .orbit, .lab-scanline, .blueprint::before { animation: none !important; }
  .quantum-stage { transform: none !important; }
}
