@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  color-scheme: dark;
  --ink: #030914;
  --ink-soft: #07111f;
  --navy: #06182e;
  --navy-bright: #0d2c4e;
  --paper: #f2f0e9;
  --paper-soft: #e8e6df;
  --white: #f9fafb;
  --gold: #d7ad51;
  --gold-bright: #f3d789;
  --cyan: #6bd8ff;
  --text: #172133;
  --muted: #697386;
  --line-dark: rgba(255, 255, 255, 0.11);
  --line-light: rgba(3, 9, 20, 0.12);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shell: min(1280px, calc(100vw - 80px));
  font-family: Inter, Avenir, "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.page-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--cyan));
  box-shadow: 0 0 18px rgba(243, 215, 137, .8);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px max(40px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: min-height .45s var(--ease), background .45s var(--ease), border-color .45s ease, box-shadow .45s ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0;
  background: rgba(3, 9, 20, .78);
  backdrop-filter: blur(22px) saturate(150%);
  transition: opacity .45s ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .2);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand {
  position: relative;
  display: block;
  width: 216px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(215, 173, 81, .25);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding: 14px 0;
  transition: color .25s ease;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav > a.is-active {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 20px;
  padding: 0 18px 0 20px;
  color: var(--ink);
  border: 1px solid var(--gold-bright);
  border-radius: 5px;
  background: var(--gold-bright);
  transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}

.nav-cta i {
  font-size: 17px;
  font-style: normal;
}

.nav-cta:hover {
  color: var(--gold-bright);
  background: transparent;
  box-shadow: 0 0 32px rgba(215, 173, 81, .16);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--white);
  transition: transform .35s var(--ease);
}

.menu-toggle span:first-child {
  transform: translate(-50%, -4px);
}

.menu-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  padding: 120px 28px 40px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(215, 173, 81, .15), transparent 30%),
    var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .35s ease, transform .45s var(--ease);
}

.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(32px, 9vw, 54px);
  font-weight: 650;
  letter-spacing: -.04em;
}

.mobile-menu a span {
  color: var(--gold);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  letter-spacing: .1em;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr);
  align-items: center;
  gap: 30px;
  padding: 146px max(40px, calc((100vw - 1280px) / 2)) 100px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(3, 9, 20, .98) 8%, rgba(5, 17, 34, .96) 52%, rgba(4, 21, 40, .98) 100%),
    var(--ink);
}

.network-canvas,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.network-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .55;
}

.hero-grid {
  z-index: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000 20%, rgba(0, 0, 0, .65) 65%, transparent 100%);
}

.hero-grid::after {
  position: absolute;
  inset: -20%;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(107, 216, 255, .07) 50%, transparent 51%);
  animation: scan 8s linear infinite;
}

.hero-glow {
  z-index: 0;
  filter: blur(18px);
}

.hero-glow-one {
  top: -25%;
  right: -8%;
  left: 50%;
  background: radial-gradient(circle, rgba(36, 104, 153, .24), transparent 63%);
}

.hero-glow-two {
  top: 45%;
  right: 25%;
  bottom: -30%;
  left: -10%;
  background: radial-gradient(circle, rgba(215, 173, 81, .1), transparent 65%);
}

.hero-copy,
.hero-system,
.hero-footer {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 840px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 23px;
  color: var(--gold);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .58);
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px var(--gold);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(243, 215, 137, .6);
  border-radius: inherit;
  animation: dotPulse 2.3s ease-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 104px);
  font-weight: 660;
  line-height: .92;
  letter-spacing: -.07em;
}

h1 em,
h2 em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 470;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  --mx: 0px;
  --my: 0px;
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 23px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 790;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translate(var(--mx), var(--my));
  transition: color .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .2s ease;
}

.button::before {
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease);
}

.button:hover::before {
  left: 150%;
}

.button i {
  font-size: 17px;
  font-style: normal;
  transition: transform .35s var(--ease);
}

.button:hover i {
  transform: translate(2px, -2px);
}

.button-primary {
  color: var(--ink);
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  box-shadow: 0 12px 36px rgba(215, 173, 81, .16);
}

.button-primary:hover {
  color: var(--gold-bright);
  background: transparent;
  box-shadow: 0 0 42px rgba(215, 173, 81, .18);
}

.button-ghost {
  color: rgba(255, 255, 255, .84);
  border-color: rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

.button-large {
  min-height: 64px;
  padding: 0 27px;
}

.hero-system {
  width: min(42vw, 540px);
  aspect-ratio: 1;
  justify-self: end;
  isolation: isolate;
  transform-style: preserve-3d;
}

.system-halo,
.system-axis,
.system-core,
.orbit-node,
.system-tag {
  position: absolute;
}

.system-halo {
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.system-halo::before,
.system-halo::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px rgba(243, 215, 137, .9);
}

.system-halo::before {
  top: 15%;
  left: 12%;
}

.system-halo::after {
  right: 7%;
  bottom: 24%;
}

.halo-one {
  width: 94%;
  height: 94%;
  border-style: dashed;
  animation: spinCentered 36s linear infinite;
}

.halo-two {
  width: 68%;
  height: 68%;
  border-color: rgba(215, 173, 81, .27);
  animation: spinReverseCentered 22s linear infinite;
}

.halo-three {
  width: 42%;
  height: 42%;
  border-color: rgba(107, 216, 255, .24);
  box-shadow: 0 0 70px rgba(30, 106, 161, .12), inset 0 0 38px rgba(18, 82, 130, .12);
  animation: breathe 4s ease-in-out infinite;
}

.system-axis {
  top: 50%;
  left: 50%;
  opacity: .3;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
}

.axis-x {
  width: 110%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.axis-y {
  width: 1px;
  height: 110%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: translate(-50%, -50%);
}

.system-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 25%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(243, 215, 137, .65);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(243, 215, 137, .2), transparent 45%),
    rgba(3, 9, 20, .78);
  box-shadow: 0 0 70px rgba(215, 173, 81, .2), inset 0 0 30px rgba(215, 173, 81, .08);
  transform: translate(-50%, -50%);
}

.core-label {
  color: var(--gold-bright);
  font-size: clamp(22px, 3vw, 39px);
  font-weight: 760;
  letter-spacing: .13em;
  text-indent: .13em;
}

.core-pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(243, 215, 137, .45);
  border-radius: 50%;
  animation: corePulse 3s ease-out infinite;
}

.orbit-node {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.node-one { top: 6%; left: 49%; }
.node-two { top: 49%; right: 5%; background: var(--gold-bright); box-shadow: 0 0 20px var(--gold); }
.node-three { right: 27%; bottom: 10%; }
.node-four { top: 52%; left: 15%; background: var(--gold-bright); box-shadow: 0 0 20px var(--gold); }

.system-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .56);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 3px;
  background: rgba(3, 9, 20, .74);
  backdrop-filter: blur(10px);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.system-tag span {
  color: var(--gold-bright);
}

.tag-one { top: 18%; left: -4%; animation: float 5s ease-in-out infinite; }
.tag-two { top: 46%; right: -5%; animation: float 5s .8s ease-in-out infinite; }
.tag-three { right: 5%; bottom: 14%; animation: float 5s 1.6s ease-in-out infinite; }

.hero-footer {
  position: absolute;
  right: max(40px, calc((100vw - 1280px) / 2));
  bottom: 28px;
  left: max(40px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, .38);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5ae49a;
  box-shadow: 0 0 10px #5ae49a;
}

.hero-footer a {
  justify-self: end;
}

.hero-footer b {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-bright);
  animation: bounce 1.8s ease-in-out infinite;
}

.signal-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  border-top: 1px solid rgba(3, 9, 20, .09);
  border-bottom: 1px solid rgba(3, 9, 20, .09);
  background: var(--gold-bright);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 13px 0;
  animation: marquee 30s linear infinite;
}

.signal-track span {
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .16em;
  white-space: nowrap;
}

.signal-track i {
  font-size: 10px;
  font-style: normal;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-index {
  color: #7a8493;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-index span {
  color: var(--gold);
}

.section-index.light {
  color: rgba(255, 255, 255, .38);
}

.intro {
  display: grid;
  grid-template-columns: .42fr 1.36fr .72fr;
  gap: 42px;
  align-items: start;
  padding-block: 140px 150px;
}

.intro-copy h2,
.section-top h2,
.approach h2,
.vision h2,
.contact h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 620;
  line-height: 1.01;
  letter-spacing: -.06em;
}

.intro-copy h2 em,
.section-top h2 em,
.vision h2 em {
  color: #a57921;
}

.intro-side {
  padding-top: 45px;
}

.intro-side > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.micro-metrics {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line-light);
}

.micro-metrics div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.micro-metrics strong {
  color: var(--navy);
  font-size: 26px;
  font-weight: 620;
  letter-spacing: -.04em;
}

.micro-metrics span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.solutions {
  padding-bottom: 150px;
}

.section-top {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 62px;
}

.section-top .section-index {
  margin-bottom: 27px;
}

.section-top > p {
  max-width: 490px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 390px;
  gap: 14px;
}

.solution-card {
  --spot-x: 50%;
  --spot-y: 50%;
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  position: relative;
  display: flex;
  min-height: 0;
  grid-column: span 2;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  background:
    radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(107, 216, 255, .1), transparent 42%),
    linear-gradient(145deg, #071525, #040d19);
  box-shadow: 0 24px 60px rgba(3, 9, 20, .13);
  isolation: isolate;
  transition: border-color .4s ease, transform .5s var(--ease), box-shadow .5s ease;
}

.solution-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(140deg, black, transparent 72%);
}

.solution-card:hover {
  --lift: -7px;
  z-index: 2;
  border-color: rgba(243, 215, 137, .35);
  box-shadow: 0 30px 80px rgba(3, 9, 20, .22), 0 0 40px rgba(215, 173, 81, .06);
}

.card-wide {
  grid-column: span 2;
}

.card-tall {
  grid-row: span 1;
}

.solution-card:nth-child(4),
.solution-card:nth-child(5) {
  grid-column: span 3;
}

.accent-card {
  color: var(--ink);
  border-color: rgba(3, 9, 20, .13);
  background:
    radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, .52), transparent 44%),
    linear-gradient(155deg, #f3d789, #bf8a2e);
}

.accent-card::before {
  opacity: .24;
  background-image:
    linear-gradient(rgba(3, 9, 20, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 9, 20, .13) 1px, transparent 1px);
}

.card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Consolas, "SFMono-Regular", monospace;
}

.card-number {
  color: rgba(255, 255, 255, .38);
  font-size: 9px;
  letter-spacing: .16em;
}

.accent-card .card-number {
  color: rgba(3, 9, 20, .48);
}

.card-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  font-size: 14px;
  transition: color .3s ease, background .3s ease, transform .4s var(--ease);
}

.accent-card .card-arrow {
  border-color: rgba(3, 9, 20, .18);
}

.solution-card:hover .card-arrow {
  color: var(--ink);
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.accent-card:hover .card-arrow {
  color: var(--gold-bright);
  background: var(--ink);
}

.card-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  letter-spacing: .16em;
}

.accent-card .card-kicker {
  color: rgba(3, 9, 20, .58);
}

.card-copy h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 610;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.card-copy > p:last-child {
  max-width: 500px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .53);
  font-size: 13px;
  line-height: 1.65;
}

.accent-card .card-copy > p:last-child {
  color: rgba(3, 9, 20, .66);
}

.code-window {
  position: absolute;
  top: 74px;
  right: 28px;
  width: min(55%, 360px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(1, 6, 13, .58);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
  transform: perspective(800px) rotateY(-7deg) rotateX(3deg);
  transition: transform .6s var(--ease);
}

.solution-card:hover .code-window {
  transform: perspective(800px) rotateY(0) rotateX(0) translateY(-4px);
}

.code-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .36);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  font-family: Consolas, monospace;
  font-size: 8px;
}

.code-head i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.code-head span {
  margin-left: auto;
}

.code-window code {
  display: block;
  padding: 20px;
  color: rgba(255, 255, 255, .58);
  font-family: Consolas, monospace;
  font-size: 10px;
  line-height: 2;
}

.code-window b { color: #7ac7ff; }
.code-window em { color: var(--gold-bright); font-style: normal; }
.code-window code span { color: #8ae6bd; }

.ai-orb {
  position: relative;
  display: grid;
  width: min(62%, 180px);
  aspect-ratio: 1;
  place-items: center;
  align-self: center;
  margin: 8px auto;
}

.ai-orb > span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(3, 9, 20, .2);
  border-radius: 43% 57% 52% 48% / 45% 42% 58% 55%;
  animation: organicSpin 12s linear infinite;
}

.ai-orb > span:nth-child(2) {
  inset: 20%;
  border-radius: 56% 44% 37% 63% / 56% 48% 52% 44%;
  animation-direction: reverse;
  animation-duration: 9s;
}

.ai-orb > span:nth-child(3) {
  inset: 30%;
  background: rgba(255, 255, 255, .22);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, .22), 0 18px 60px rgba(3, 9, 20, .16);
  animation-duration: 7s;
}

.ai-orb i {
  position: relative;
  z-index: 2;
  font-size: clamp(34px, 5vw, 66px);
  font-style: normal;
  font-weight: 720;
  letter-spacing: -.08em;
}

.cloud-stack {
  position: relative;
  width: 150px;
  height: 105px;
  align-self: center;
  margin: 26px 0;
  transform: rotateX(60deg) rotateZ(-36deg);
  transform-style: preserve-3d;
}

.cloud-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(107, 216, 255, .45);
  border-radius: 8px;
  background: rgba(107, 216, 255, .05);
  box-shadow: 0 0 25px rgba(107, 216, 255, .08);
  animation: stackFloat 4s ease-in-out infinite;
}

.cloud-stack span:nth-child(2) { transform: translateZ(30px); animation-delay: -.8s; }
.cloud-stack span:nth-child(3) { transform: translateZ(60px); animation-delay: -1.6s; border-color: rgba(243, 215, 137, .55); }

.lab-visual {
  position: relative;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-items: center;
  align-self: center;
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.lab-visual::before,
.lab-visual::after {
  position: absolute;
  width: 130%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
}

.lab-visual::after {
  transform: rotate(90deg);
}

.lab-visual i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold);
}

.lab-visual i:nth-child(1) { top: 8%; left: 46%; }
.lab-visual i:nth-child(2) { top: 47%; right: 7%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.lab-visual i:nth-child(3) { bottom: 9%; left: 47%; }
.lab-visual i:nth-child(4) { top: 47%; left: 7%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.lab-visual span {
  font-family: Consolas, monospace;
  font-size: 13px;
  letter-spacing: .1em;
}

.strategy-map {
  position: absolute;
  top: 54px;
  right: 34px;
  width: 46%;
  height: 160px;
  opacity: .8;
}

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(107, 216, 255, .2), var(--cyan), rgba(107, 216, 255, .2));
  transform-origin: left;
}

.line-a { top: 82%; left: 8%; width: 42%; transform: rotate(-34deg); }
.line-b { top: 56%; left: 44%; width: 40%; transform: rotate(20deg); }
.line-c { top: 50%; left: 43%; width: 49%; transform: rotate(-41deg); }

.map-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 16px rgba(243, 215, 137, .75);
}

.map-a { bottom: 10%; left: 5%; }
.map-b { top: 46%; left: 42%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.map-c { top: 61%; right: 8%; }
.map-d { top: 7%; right: 8%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }

.approach {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(17, 70, 111, .35), transparent 36%),
    radial-gradient(circle at 88% 72%, rgba(215, 173, 81, .09), transparent 30%),
    var(--ink);
}

.approach-noise {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 85%);
}

.approach-inner {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(60px, 9vw, 140px);
  padding-block: 145px;
}

.approach-title {
  position: sticky;
  top: 140px;
  align-self: start;
}

.approach-title .section-index {
  margin-bottom: 70px;
}

.approach-title .section-kicker {
  color: var(--gold-bright);
}

.approach-title h2 {
  font-size: clamp(48px, 5.1vw, 76px);
}

.process-list {
  border-top: 1px solid var(--line-dark);
}

.process-item {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 62px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding .45s var(--ease), background .4s ease;
}

.process-item::before {
  position: absolute;
  inset: 0 -22px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, rgba(215, 173, 81, .08), transparent);
  transition: opacity .4s ease;
}

.process-item:hover {
  padding-right: 12px;
  padding-left: 12px;
}

.process-item:hover::before {
  opacity: 1;
}

.process-number {
  position: relative;
  color: var(--gold);
  font-family: Consolas, monospace;
  font-size: 11px;
}

.process-item > div {
  position: relative;
}

.process-item h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 560;
  letter-spacing: -.045em;
}

.process-item p {
  max-width: 500px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  line-height: 1.65;
}

.process-item > i {
  position: relative;
  color: rgba(255, 255, 255, .28);
  font-size: 25px;
  font-style: normal;
  transition: color .3s ease, transform .4s var(--ease);
}

.process-item:hover > i {
  color: var(--gold-bright);
  transform: translateX(5px);
}

.vision {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  padding-block: 150px;
}

.vision-copy .section-index {
  margin-bottom: 78px;
}

.vision-copy h2 {
  font-size: clamp(47px, 5vw, 74px);
}

.vision-copy > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.vision-console {
  position: relative;
  min-height: 570px;
  padding: 20px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(3, 9, 20, .16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 45%, rgba(19, 82, 127, .32), transparent 35%),
    var(--ink-soft);
  box-shadow: 0 38px 90px rgba(3, 9, 20, .18);
}

.vision-console::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .4;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.console-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  color: rgba(255, 255, 255, .45);
  border-bottom: 1px solid var(--line-dark);
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: .15em;
}

.console-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ae49a;
  box-shadow: 0 0 12px #5ae49a;
}

.console-center {
  position: relative;
  z-index: 1;
  display: grid;
  width: 310px;
  max-width: 78%;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  margin: 34px auto 22px;
}

.console-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.console-ring::before,
.console-ring::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px var(--gold);
}

.console-ring::before { top: 9%; left: 28%; }
.console-ring::after { right: 6%; bottom: 35%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.ring-a { animation: spin 24s linear infinite; }
.ring-b { inset: 18%; border-style: dashed; animation: spinReverse 18s linear infinite; }

.console-center strong {
  position: relative;
  color: var(--gold-bright);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: .1em;
  text-indent: .1em;
}

.console-center > span {
  position: relative;
  margin-top: 9px;
  color: rgba(255, 255, 255, .38);
  font-family: Consolas, monospace;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: .18em;
  text-align: center;
}

.console-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.console-stats div {
  display: grid;
  gap: 9px;
  padding: 18px 10px 4px;
  border-right: 1px solid var(--line-dark);
}

.console-stats div:last-child {
  border-right: 0;
}

.console-stats i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold);
}

.console-stats span,
.console-stats b {
  font-family: Consolas, monospace;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: .1em;
}

.console-stats span {
  color: rgba(255, 255, 255, .46);
}

.console-stats b {
  color: #5ae49a;
}

.manifesto {
  padding: 90px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.manifesto-line {
  display: flex;
  width: var(--shell);
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-inline: auto;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto-line i {
  color: var(--gold);
  font-style: normal;
  font-weight: 300;
}

.line-left {
  transform: none;
}

.line-right {
  margin-top: 18px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(3, 9, 20, .35);
  transform: none;
}

.contact {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  padding: 120px 30px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(3, 9, 20, .9), rgba(3, 9, 20, .96)),
    var(--ink);
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.contact-glow {
  position: absolute;
  width: min(90vw, 950px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 173, 81, .14), rgba(22, 85, 132, .09) 38%, transparent 68%);
  filter: blur(8px);
  animation: breathe 7s ease-in-out infinite;
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  animation: spinCentered 46s linear infinite;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px dashed rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.contact-orbit::after {
  inset: 30%;
  border-color: rgba(215, 173, 81, .18);
}

.contact-orbit span {
  position: absolute;
  top: 12%;
  right: 16%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 18px var(--gold);
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.contact-content .section-kicker {
  color: var(--gold-bright);
}

.contact h2 {
  font-size: clamp(58px, 7.2vw, 106px);
  line-height: .94;
}

.contact > .contact-content > p:not(.section-kicker) {
  max-width: 680px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, .57);
  font-size: 16px;
  line-height: 1.75;
}

.contact .button {
  margin-top: 38px;
}

.site-footer {
  display: grid;
  width: 100%;
  padding: 62px max(40px, calc((100vw - 1280px) / 2)) 28px;
  color: rgba(255, 255, 255, .48);
  background: #01060d;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand {
  width: 200px;
  height: 58px;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 38px;
  padding: 34px 0;
  color: rgba(255, 255, 255, .72);
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
}

.footer-nav a {
  transition: color .25s ease;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

.solution-card.reveal.is-visible {
  transform: perspective(1100px) translateY(var(--lift)) rotateX(var(--rx)) rotateY(var(--ry));
}

.process-item.reveal:nth-child(2) { transition-delay: .08s; }
.process-item.reveal:nth-child(3) { transition-delay: .16s; }
.process-item.reveal:nth-child(4) { transition-delay: .24s; }

@keyframes scan {
  from { transform: translateY(-35%); }
  to { transform: translateY(35%); }
}

@keyframes dotPulse {
  0% { opacity: 1; transform: scale(.55); }
  70%, 100% { opacity: 0; transform: scale(1.9); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes spinCentered {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverseCentered {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes organicSpin {
  to { transform: rotate(360deg); }
}

@keyframes corePulse {
  0% { opacity: .8; transform: scale(.82); }
  75%, 100% { opacity: 0; transform: scale(1.55); }
}

@keyframes breathe {
  0%, 100% { opacity: .74; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes stackFloat {
  0%, 100% { filter: brightness(.8); }
  50% { filter: brightness(1.5); }
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 52px, 1060px); }

  .site-header {
    padding-inline: 26px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    padding-inline: 34px;
  }

  h1 {
    font-size: clamp(58px, 7vw, 82px);
  }

  .hero-footer {
    right: 34px;
    left: 34px;
  }

  .intro {
    grid-template-columns: .25fr 1fr .55fr;
    gap: 30px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 390px;
  }

  .solution-card,
  .solution-card:nth-child(4),
  .solution-card:nth-child(5),
  .card-wide {
    grid-column: span 1;
  }

  .solution-card:first-child {
    grid-column: span 2;
  }

  .site-footer {
    padding-inline: 26px;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 140px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-system {
    display: none;
  }

  .system-tag {
    display: none;
  }

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

  .hero-footer > span:first-child {
    display: none;
  }

  .hero-status {
    justify-self: start;
  }

  .intro,
  .section-top,
  .approach-inner,
  .vision {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 34px;
    padding-block: 105px;
  }

  .intro-side {
    max-width: 620px;
    padding-top: 0;
  }

  .section-top {
    gap: 28px;
  }

  .section-top > p {
    max-width: 650px;
  }

  .approach-inner {
    gap: 70px;
    padding-block: 105px;
  }

  .approach-title {
    position: static;
  }

  .approach-title .section-index,
  .vision-copy .section-index {
    margin-bottom: 50px;
  }

  .vision {
    gap: 70px;
    padding-block: 105px;
  }

  .vision-console {
    min-height: 540px;
  }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 36px); }

  .site-header {
    min-height: 76px;
    padding: 9px 18px;
  }

  .brand {
    width: 170px;
    height: 52px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 132px 20px 124px;
  }

  .hero-grid {
    background-size: 46px 46px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 69px);
    line-height: .94;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-system {
    top: 200px;
    right: -325px;
    width: 500px;
    opacity: .16;
  }

  .system-tag {
    display: none;
  }

  .hero-footer {
    right: 20px;
    bottom: 25px;
    left: 20px;
    font-size: 7px;
  }

  .signal-track {
    gap: 20px;
  }

  .intro-copy h2,
  .section-top h2,
  .approach h2,
  .vision h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .intro,
  .solutions,
  .vision {
    padding-block: 88px;
  }

  .solutions {
    padding-top: 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 415px;
  }

  .solution-card,
  .solution-card:first-child,
  .solution-card:nth-child(4),
  .solution-card:nth-child(5),
  .card-wide {
    grid-column: auto;
  }

  .solution-card {
    min-height: 0;
    padding: 24px;
  }

  .code-window,
  .strategy-map {
    top: 74px;
    right: 22px;
    width: calc(100% - 44px);
    opacity: .72;
  }

  .code-window code {
    font-size: 8px;
  }

  .card-copy h3 {
    font-size: 28px;
  }

  .approach-inner {
    padding-block: 90px;
  }

  .process-item {
    min-height: 155px;
    grid-template-columns: 38px 1fr;
  }

  .process-item > i {
    display: none;
  }

  .process-item h3 {
    font-size: 31px;
  }

  .vision-console {
    min-height: 480px;
    padding: 16px;
  }

  .console-center {
    max-width: 92%;
    margin-top: 32px;
  }

  .console-stats {
    grid-template-columns: 1fr;
  }

  .console-stats div {
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .manifesto {
    padding: 62px 0;
  }

  .manifesto-line {
    width: calc(100% - 36px);
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: clamp(36px, 12vw, 58px);
    line-height: .95;
    text-align: center;
  }

  .contact {
    min-height: 650px;
    padding-inline: 20px;
  }

  .contact h2 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .contact .button {
    max-width: 360px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand p {
    text-align: left;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (hover: none) {
  .magnetic {
    transform: none !important;
  }
}

@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;
  }

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

  .network-canvas {
    display: none;
  }
}
