@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  font-family:
    "Archivo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #010303;
  --ink: #f4fbff;
  --muted: #b9c9cb;
  --cyan: #00dfff;
  --green: #9dff39;
  --amber: #ffba22;
  --hot: #ff2f7d;
  --edge: rgba(96, 242, 255, 0.23);
  --max: 1180px;
  --pad: clamp(1.15rem, 4vw, 4rem);
  --pointer-x: 72vw;
  --pointer-y: 38vh;
  --scroll-progress: 0;
  background: var(--bg);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #010303;
}

body::selection {
  color: #001315;
  background: var(--cyan);
}

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

svg {
  width: 1em;
  height: 1em;
  display: inline-block;
}

.site-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 223, 255, 0.17), transparent 35rem),
    linear-gradient(#010303, #010303);
}

.cursor-light {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle, rgba(0, 223, 255, 0.18), rgba(157, 255, 57, 0.07) 28%, transparent 64%);
  filter: blur(6px);
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0) translate(-50%, -50%);
}

.scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.scene-image {
  --scene-y: 0px;
  --scene-scale: 1.04;
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: translate3d(var(--parallax-x), calc(var(--scene-y) + var(--parallax-y)), 0) scale(var(--scene-scale));
  will-change: transform;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 3, 3, 0.96) 0%, rgba(1, 3, 3, 0.78) 32%, rgba(1, 3, 3, 0.23) 72%, rgba(1, 3, 3, 0.78) 100%),
    linear-gradient(180deg, rgba(1, 3, 3, 0.1), rgba(1, 3, 3, 0.62) 82%, #010303 100%);
}

.hero {
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 5.5rem var(--pad) 3rem;
}

.hero-image {
  filter: saturate(1.15) contrast(1.08);
  --scene-scale: 1.06;
  transform-origin: center;
  animation: image-breathe 12s ease-in-out infinite alternate;
}

.signal-canvas,
.scanline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.signal-canvas {
  z-index: -1;
  opacity: 0.78;
}

.scanline {
  z-index: 1;
  opacity: 0.42;
  mix-blend-mode: screen;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 5px),
    linear-gradient(105deg, transparent 0 34%, rgba(0, 223, 255, 0.14) 35%, transparent 46%);
  background-size: auto, 220% 100%;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 100%);
  animation: scan-sweep 5.4s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  mix-blend-mode: screen;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(0, 223, 255, 0.18) 39%, transparent 43%),
    linear-gradient(76deg, transparent 0 58%, rgba(157, 255, 57, 0.13) 59%, transparent 62%);
  background-size: 230% 100%, 260% 100%;
  animation: hero-blade 3.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero-reticle {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 9vw, 9rem);
  bottom: clamp(7rem, 13vw, 12rem);
  width: clamp(13rem, 25vw, 28rem);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.52;
  mix-blend-mode: screen;
}

.hero-reticle span {
  position: absolute;
  inset: calc(var(--ring, 0) * 13%);
  border: 1px solid rgba(0, 223, 255, 0.24);
  clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 0 100%);
  transform: rotate(calc(var(--ring, 0) * 17deg));
  animation: reticle-turn 14s linear infinite;
}

.hero-reticle span:nth-child(1) {
  --ring: 0;
}

.hero-reticle span:nth-child(2) {
  --ring: 1;
  animation-duration: 19s;
  animation-direction: reverse;
}

.hero-reticle span:nth-child(3) {
  --ring: 2;
  animation-duration: 24s;
}

.site-header {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem var(--pad);
  animation: reveal-down 700ms ease both;
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
}

.brand-glyph {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(0, 223, 255, 0.42);
  border-radius: 0.18rem;
  color: var(--cyan);
  background: rgba(0, 30, 32, 0.56);
  box-shadow:
    inset 0 0 1.2rem rgba(0, 223, 255, 0.18),
    0 0 1.4rem rgba(0, 223, 255, 0.16);
  animation: glyph-pulse 2.8s ease-in-out infinite;
}

.site-header nav {
  gap: clamp(0.9rem, 2.5vw, 2.7rem);
  color: rgba(244, 251, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 720;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: transform 180ms ease;
}

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

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(58rem, 100%);
  margin-top: 1.4rem;
}

.hero-copy h1 {
  position: relative;
  margin: 0;
  color: #fbfeff;
  font-size: clamp(3.75rem, 7.2vw, 7.6rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 0 2.6rem rgba(255, 255, 255, 0.21),
    0 0 4.5rem rgba(0, 223, 255, 0.14);
  animation: reveal-up 760ms cubic-bezier(0.19, 1, 0.22, 1) 80ms both;
}

.hero-copy h1::before,
.hero-copy h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-copy h1::before {
  color: var(--cyan);
  opacity: 0.28;
  clip-path: inset(0 0 58% 0);
  transform: translate3d(0.035em, -0.02em, 0);
  animation: headline-glitch-a 4.2s steps(1, end) infinite;
}

.hero-copy h1::after {
  color: var(--amber);
  opacity: 0.22;
  clip-path: inset(62% 0 0 0);
  transform: translate3d(-0.025em, 0.018em, 0);
  animation: headline-glitch-b 5.4s steps(1, end) infinite;
}

.hero-line {
  max-width: 14em;
  margin: 1.65rem 0 0;
  color: #f7fbff;
  font-size: clamp(2.1rem, 4.1vw, 4.35rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  animation: reveal-up 760ms cubic-bezier(0.19, 1, 0.22, 1) 190ms both;
}

.hero-body {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: rgba(227, 241, 244, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.26rem);
  line-height: 1.62;
  animation: reveal-up 760ms cubic-bezier(0.19, 1, 0.22, 1) 300ms both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1.9rem;
  animation: reveal-up 760ms cubic-bezier(0.19, 1, 0.22, 1) 410ms both;
}

.hero-manifesto {
  max-width: 31rem;
  margin: 0;
  color: rgba(244, 251, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.manifesto-belt {
  display: none;
}

.manifesto-belt span {
  display: block;
  padding: 0.62rem 1.05rem;
  border-top: 1px solid rgba(157, 255, 57, 0.34);
  border-bottom: 1px solid rgba(0, 223, 255, 0.24);
  background: rgba(1, 8, 9, 0.74);
  color: rgba(244, 251, 255, 0.76);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.button {
  --mx: 0px;
  --my: 0px;
  min-height: 3.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  padding: 0 1.45rem;
  border: 1px solid rgba(0, 223, 255, 0.72);
  border-radius: 0.18rem;
  background:
    linear-gradient(100deg, rgba(0, 223, 255, 0.24), rgba(157, 255, 57, 0.07)),
    rgba(0, 20, 22, 0.66);
  color: #effdff;
  font-weight: 820;
  font-family: "Archivo", ui-sans-serif, system-ui, sans-serif;
  transform: translate(var(--mx), var(--my));
  box-shadow:
    inset 0 0 1.6rem rgba(0, 223, 255, 0.18),
    0 0 2.4rem rgba(0, 223, 255, 0.14);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  overflow: hidden;
  position: relative;
}

.button::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  transform: translateX(-58%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0.5;
  animation: button-sheen 3.6s ease-in-out infinite;
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(157, 255, 57, 0.85);
  box-shadow:
    inset 0 0 2rem rgba(0, 223, 255, 0.22),
    0 0 3rem rgba(157, 255, 57, 0.15);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(244, 251, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.email-link svg {
  color: var(--cyan);
  filter: drop-shadow(0 0 0.8rem rgba(0, 223, 255, 0.65));
}

.hero-slab {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  right: var(--pad);
  bottom: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 39rem;
  border: 1px solid rgba(0, 223, 255, 0.18);
  background: rgba(0, 223, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 2.3rem) 0, 100% 100%, 0 100%);
  animation: reveal-up 740ms cubic-bezier(0.19, 1, 0.22, 1) 520ms both;
}

.hero-slab span {
  min-height: 2.75rem;
  display: grid;
  place-items: center;
  background: rgba(1, 8, 9, 0.8);
  color: rgba(232, 249, 252, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  position: relative;
  overflow: hidden;
}

.hero-slab span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  background: linear-gradient(90deg, transparent, rgba(0, 223, 255, 0.16), transparent);
  animation: slab-scan 4.8s ease-in-out infinite;
}

.hero-slab span:nth-child(2)::after {
  animation-delay: 0.35s;
}

.hero-slab span:nth-child(3)::after {
  animation-delay: 0.7s;
}

.transmission {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
  width: min(24rem, 42vw);
  pointer-events: none;
  color: rgba(244, 251, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.transmission span {
  display: block;
  padding: 0.42rem 0.7rem;
  border-left: 1px solid rgba(0, 223, 255, 0.42);
  background: linear-gradient(90deg, rgba(0, 223, 255, 0.1), transparent);
  transform-origin: left;
  animation: transmit 5.2s ease-in-out infinite;
}

.transmission span:nth-child(2) {
  animation-delay: 0.38s;
}

.transmission span:nth-child(3) {
  animation-delay: 0.76s;
}

.transmission span:nth-child(4) {
  animation-delay: 1.14s;
}

.section-wrap {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(3.25rem, 5.4vw, 5rem) var(--pad);
}

.section-wrap.compact {
  padding-top: clamp(3.25rem, 5.4vw, 5rem);
  padding-bottom: clamp(3.75rem, 6vw, 5.75rem);
}

.section-code {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.05rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.section-code::after {
  content: "";
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  transform-origin: left;
  animation: label-line 2.8s ease-in-out var(--label-delay, 0ms) infinite;
}

h2 {
  margin: 0;
  color: #f8fdff;
  font-size: clamp(2.45rem, 4.7vw, 5.2rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.46fr);
  gap: clamp(1.5rem, 4.5vw, 4rem);
  align-items: center;
}

.split-head p,
.method-copy p {
  margin: 0;
  color: rgba(217, 234, 237, 0.78);
  font-size: 1.05rem;
  line-height: 1.64;
}

.engagements {
  min-height: auto;
  margin-top: -1px;
  clip-path: none;
}

.engagements::before {
  background:
    linear-gradient(90deg, rgba(1, 3, 3, 0.9) 0%, rgba(1, 3, 3, 0.54) 38%, rgba(1, 3, 3, 0.2) 100%),
    linear-gradient(180deg, #010303, rgba(1, 3, 3, 0.38) 48%, #010303);
}

.terrain-image {
  filter: saturate(1.12) contrast(1.08);
}

.engagement-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  background: transparent;
}

.engagement-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 0;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) 0 0 clamp(0.95rem, 1.6vw, 1.2rem);
  background:
    linear-gradient(180deg, rgba(0, 223, 255, 0.11), transparent 58%),
    transparent;
  border: 0;
  border-top: 1px solid rgba(0, 223, 255, 0.32);
  backdrop-filter: none;
  opacity: 1;
  clip-path: none;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    background 180ms ease;
  position: relative;
  overflow: visible;
}

.engagement-card::before,
.outcome-grid p::before {
  content: "";
  position: absolute;
  inset: -85% -35%;
  opacity: 0.18;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 14px, rgba(0, 223, 255, 0.12) 14px 15px, transparent 15px 30px);
  transform: translateX(-25%);
  animation: card-current 8s linear infinite;
}

.engagement-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.engagement-card::after,
.stage-card::after,
.outcome-grid p::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.19), transparent 31%);
  transition: opacity 180ms ease;
}

.engagement-card:hover::after,
.stage-card:hover::after,
.outcome-grid p:hover::after {
  opacity: 1;
}

.card-signal,
.stage-signal {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(157, 255, 57, 0.32);
  background: rgba(157, 255, 57, 0.06);
  color: var(--green);
  padding: 0.38rem 0.52rem;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 1rem rgba(157, 255, 57, 0.42);
}

.engagement-card h3,
.stage-card h3 {
  margin: 1.1rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.engagement-card p,
.stage-card p {
  margin: 1rem 0 0;
  color: rgba(218, 235, 238, 0.76);
  line-height: 1.58;
}

.engagement-card:nth-child(1) {
  border-top-color: rgba(255, 47, 125, 0.62);
}

.engagement-card:nth-child(1) .card-signal {
  border-color: rgba(255, 47, 125, 0.48);
  background: rgba(255, 47, 125, 0.08);
  color: var(--hot);
  text-shadow: 0 0 1rem rgba(255, 47, 125, 0.4);
}

.engagement-card:nth-child(2) {
  border-top-color: rgba(157, 255, 57, 0.5);
}

.engagement-card:nth-child(3) {
  border-top-color: rgba(0, 223, 255, 0.5);
}

.stamp {
  display: none;
}

.engagement-card:nth-child(2) .stamp {
  color: rgba(157, 255, 57, 0.16);
}

.engagement-card:nth-child(3) .stamp {
  color: rgba(0, 223, 255, 0.16);
}

.method {
  position: relative;
  display: block;
  padding: clamp(3.25rem, 5.4vw, 5.25rem) var(--pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(157, 255, 57, 0.1), transparent 28rem),
    #010303;
}

.method::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 223, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(0, 223, 255, 0.04) 1px, transparent 1px);
  background-size: 4.8rem 4.8rem;
  mask-image: radial-gradient(circle at 58% 45%, #000, transparent 66%);
}

.method-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  clip-path: none;
  border: 0;
  box-shadow: none;
  opacity: 0.34;
}

.method-media img {
  --scene-y: 0px;
  --scene-scale: 1.04;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(1.12) contrast(1.08);
  transform: translate3d(0, var(--scene-y), 0) scale(var(--scene-scale));
  will-change: transform;
}

.method-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.method-copy.in-view {
  opacity: 1;
  transform: translateY(0);
}

.method-copy p:not(.section-code) {
  max-width: 42rem;
  margin-top: 1.1rem;
}

.stage-track {
  --track-progress: 0%;
  --rail: clamp(1.25rem, 3vw, 2.2rem);
  position: relative;
  z-index: 2;
  display: block;
  margin-top: clamp(2rem, 3.5vw, 2.7rem);
  padding-left: var(--rail);
  background: transparent;
  border: 0;
  overflow: visible;
}

.stage-track::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0.5rem;
  width: 2px;
  height: var(--track-progress);
  max-height: calc(100% - 1rem);
  background: linear-gradient(180deg, var(--cyan), var(--green), var(--amber));
  box-shadow: 0 0 1.5rem rgba(0, 223, 255, 0.55);
  transition: height 120ms linear;
  transform: none;
}

.stage-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.2rem) 0 clamp(1.1rem, 2vw, 1.35rem);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 223, 255, 0.22);
  clip-path: none;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 520ms ease calc(var(--i) * 70ms),
    transform 520ms ease calc(var(--i) * 70ms),
    background 220ms ease,
    box-shadow 220ms ease;
}

.stage-card:last-child {
  border-bottom: 1px solid rgba(0, 223, 255, 0.18);
}

.stage-card::before {
  content: "";
  position: absolute;
  left: calc(var(--rail) * -1 - 0.32rem);
  top: 1.28rem;
  width: 0.64rem;
  height: 0.64rem;
  background: #010303;
  border: 1px solid rgba(0, 223, 255, 0.64);
  box-shadow: 0 0 1rem rgba(0, 223, 255, 0.24);
  transform: rotate(45deg);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.stage-card.in-view {
  opacity: 1;
  transform: translateX(0);
}

.stage-card.is-active {
  background: transparent;
  box-shadow: none;
}

.stage-card.is-active::before {
  background: var(--amber);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 0 1.1rem rgba(255, 186, 34, 0.48),
    0 0 2rem rgba(0, 223, 255, 0.24);
}

.stage-card.is-active .stage-signal {
  color: var(--amber);
  text-shadow: 0 0 1.4rem rgba(255, 186, 34, 0.4);
}

.stage-card .stage-signal {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.stage-card h3 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(1.75rem, 3.1vw, 3.15rem);
}

.stage-card p {
  grid-column: 2;
  margin: 0.65rem 0 0;
  max-width: 44rem;
}

.outcomes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 15%, rgba(0, 223, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, #010303, #041012 52%, #010303);
}

.outcome-marquee {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  padding-top: 1.35rem;
  color: rgba(0, 223, 255, 0.11);
  font-size: clamp(3.5rem, 9vw, 10rem);
  line-height: 0.8;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
}

.outcomes h2 {
  max-width: 13em;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: transparent;
}

.outcome-grid p {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 7.4rem;
  display: flex;
  align-items: end;
  margin: 0;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(0, 223, 255, 0.1), rgba(1, 5, 5, 0.52)),
    rgba(1, 5, 5, 0.42);
  border-top: 1px solid rgba(157, 255, 57, 0.38);
  color: #effdff;
  font-size: clamp(1.18rem, 2.15vw, 2rem);
  line-height: 1.1;
  font-weight: 780;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 500ms ease calc(var(--i) * 70ms),
    transform 500ms ease calc(var(--i) * 70ms),
    color 220ms ease;
}

.outcome-grid p.in-view {
  opacity: 1;
  transform: translateY(0);
}

.outcome-grid p:hover {
  color: #ffffff;
}

.contact {
  min-height: 82svh;
  display: grid;
  align-items: center;
  padding: clamp(4rem, 7vw, 6.5rem) var(--pad);
}

.contact::before {
  background:
    linear-gradient(90deg, rgba(1, 3, 3, 0.96), rgba(1, 3, 3, 0.74) 33%, rgba(1, 3, 3, 0.13) 72%, rgba(1, 3, 3, 0.28)),
    linear-gradient(180deg, #010303, rgba(1, 3, 3, 0.22) 45%, #010303);
}

.contact-image {
  filter: saturate(1.12) contrast(1.1);
}

.contact-panel {
  position: relative;
  z-index: 3;
  width: min(50rem, 100%);
  padding: clamp(1.15rem, 3vw, 2.2rem);
  border: 1px solid rgba(0, 223, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(0, 223, 255, 0.12), rgba(1, 7, 8, 0.72) 42%, rgba(1, 7, 8, 0.42)),
    rgba(1, 8, 9, 0.62);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 2.4rem rgba(0, 223, 255, 0.08),
    0 2rem 5rem rgba(0, 0, 0, 0.38);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent, rgba(0, 223, 255, 0.52), rgba(157, 255, 57, 0.32), transparent 42%);
  opacity: 0.55;
  animation: contact-orbit 7s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 1px, 0 1px, 0 0, 1px 0, 1px 100%, 0 100%);
}

.contact-panel.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-panel h2 {
  margin-bottom: 2rem;
}

.contact-copy {
  max-width: 37rem;
  margin: -0.5rem 0 1.7rem;
  color: rgba(223, 239, 242, 0.78);
  font-size: 1.06rem;
  line-height: 1.72;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.45rem;
}

.enquiry-form label.full,
.enquiry-form button,
.form-note {
  grid-column: 1 / -1;
}

.enquiry-form label span {
  color: rgba(244, 251, 255, 0.68);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 223, 255, 0.28);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(0, 223, 255, 0.06), rgba(1, 8, 9, 0.62)),
    rgba(1, 8, 9, 0.72);
  color: #f8fdff;
  font: inherit;
  font-size: 1rem;
  outline: none;
  padding: 0.95rem 1rem;
  box-shadow: inset 0 0 1.2rem rgba(0, 223, 255, 0.04);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.enquiry-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: rgba(157, 255, 57, 0.8);
  background:
    radial-gradient(circle at 0 0, rgba(157, 255, 57, 0.1), transparent 38%),
    rgba(1, 8, 9, 0.82);
  box-shadow:
    inset 0 0 1.5rem rgba(0, 223, 255, 0.08),
    0 0 1.5rem rgba(157, 255, 57, 0.11);
  transform: translateY(-1px);
}

.enquiry-form .button {
  margin-top: 0.4rem;
  cursor: pointer;
}

.form-note {
  min-height: 1.3rem;
  margin: 0;
  color: rgba(157, 255, 57, 0.84);
  font-size: 0.94rem;
}

.enquiry-form.is-sent {
  animation: form-sent 700ms ease;
}

@keyframes image-breathe {
  from {
    filter: saturate(1.05) contrast(1.06) brightness(0.92);
  }
  to {
    filter: saturate(1.28) contrast(1.12) brightness(1.02);
  }
}

@keyframes scan-sweep {
  from {
    background-position: 0 0, -120% 0;
  }
  to {
    background-position: 0 20px, 120% 0;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.6rem);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes reveal-down {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glyph-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 1.2rem rgba(0, 223, 255, 0.18),
      0 0 1.4rem rgba(0, 223, 255, 0.16);
  }
  50% {
    box-shadow:
      inset 0 0 1.8rem rgba(0, 223, 255, 0.3),
      0 0 2.2rem rgba(157, 255, 57, 0.18);
  }
}

@keyframes reticle-turn {
  to {
    transform: rotate(calc(360deg + var(--ring, 0) * 17deg));
  }
}

@keyframes button-sheen {
  0%,
  42% {
    transform: translateX(-58%) rotate(18deg);
  }
  65%,
  100% {
    transform: translateX(58%) rotate(18deg);
  }
}

@keyframes slab-scan {
  0%,
  34% {
    transform: translateX(-105%);
  }
  64%,
  100% {
    transform: translateX(105%);
  }
}

@keyframes transmit {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.86) translateX(0);
  }
  45%,
  58% {
    opacity: 1;
    transform: scaleX(1) translateX(-0.35rem);
  }
}

@keyframes hero-blade {
  0%,
  24% {
    background-position: -160% 0, 180% 0;
  }
  48%,
  100% {
    background-position: 160% 0, -180% 0;
  }
}

@keyframes belt-run {
  to {
    transform: translateX(-50%) rotate(-2deg);
  }
}

@keyframes card-current {
  to {
    transform: translateX(25%);
  }
}

@keyframes label-line {
  0%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.46;
    transform: scaleX(0.34);
  }
}

@keyframes headline-glitch-a {
  0%,
  78%,
  100% {
    transform: translate3d(0.02em, -0.01em, 0);
    clip-path: inset(0 0 58% 0);
  }
  79% {
    transform: translate3d(-0.018em, 0.012em, 0);
    clip-path: inset(18% 0 44% 0);
  }
  80% {
    transform: translate3d(0.04em, -0.018em, 0);
    clip-path: inset(4% 0 72% 0);
  }
  81% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 58% 0);
  }
}

@keyframes headline-glitch-b {
  0%,
  66%,
  100% {
    transform: translate3d(-0.02em, 0.012em, 0);
    clip-path: inset(62% 0 0 0);
  }
  67% {
    transform: translate3d(0.018em, -0.012em, 0);
    clip-path: inset(52% 0 22% 0);
  }
  68% {
    transform: translate3d(-0.035em, 0.02em, 0);
    clip-path: inset(72% 0 5% 0);
  }
  69% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(62% 0 0 0);
  }
}

@keyframes contact-orbit {
  to {
    transform: rotate(1turn);
  }
}

@keyframes form-sent {
  0%,
  100% {
    filter: none;
  }
  45% {
    filter: drop-shadow(0 0 1.8rem rgba(157, 255, 57, 0.28));
  }
}

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

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

  .hero-copy h1 {
    font-size: clamp(3.25rem, 12vw, 5.4rem);
    line-height: 0.9;
  }

  .split-head {
    grid-template-columns: 1fr;
  }

  .engagement-list {
    grid-template-columns: 1fr;
  }

  .stage-track {
    display: block;
  }

  .stage-card {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .stage-card .stage-signal,
  .stage-card h3,
  .stage-card p {
    grid-column: 1;
    grid-row: auto;
  }

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

  .method-media {
    opacity: 0.28;
  }
}

@media (max-width: 1100px) {
  .transmission {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding-top: 1rem;
  }

  .brand span:last-child {
    display: none;
  }

  .site-header nav {
    gap: 0.82rem;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 88svh;
    padding-bottom: 4.2rem;
  }

  .hero-copy {
    margin-top: 0.6rem;
  }

  .hero-line {
    font-size: clamp(1.85rem, 8.5vw, 2.8rem);
  }

  .hero-body {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-panel .email-link {
    align-items: stretch;
    flex-direction: column;
    margin-left: 0;
  }

  .hero-manifesto {
    max-width: none;
  }

  .button {
    width: 100%;
  }

  .hero-slab {
    right: var(--pad);
    grid-template-columns: 1fr;
    max-width: none;
  }

  .transmission {
    display: none;
  }

  .manifesto-belt {
    bottom: 2.5rem;
  }

  .hero-slab span {
    min-height: 2.1rem;
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .section-wrap,
  .section-wrap.compact,
  .method,
  .contact {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .section-wrap,
  .section-wrap.compact {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .engagements {
    clip-path: none;
  }

  .method-media {
    clip-path: none;
  }

  .stage-track,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 1rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
