:root {
  --ink: #060708;
  --ink-soft: #0b0d10;
  --panel: #101317;
  --panel-2: #15191f;
  --paper: #0b0d10;
  --paper-soft: #101317;
  --white: #f3f4f6;
  --muted: #9aa0aa;
  --faint: #777e89;
  --dark-muted: #9aa0aa;
  --decorative: #646a74;
  --line: rgba(243, 244, 246, 0.1);
  --line-strong: rgba(243, 244, 246, 0.18);
  --dark-line: rgba(243, 244, 246, 0.1);
  --copper: #c6f24e;
  --copper-light: #dcff78;
  --copper-wash: rgba(198, 242, 78, 0.12);
  --success: #c6f24e;
  --blue: #6fa0ff;
  --blue-wash: rgba(111, 160, 255, 0.12);
  --sans: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --shell: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% -8%, rgba(111, 160, 255, 0.09), transparent 30rem),
    radial-gradient(circle at 86% 0%, rgba(198, 242, 78, 0.045), transparent 24rem),
    var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.2vw + 0.96rem, 1.08rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: soft-light;
}

::selection {
  color: var(--ink);
  background: var(--copper-light);
}

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

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

button {
  border: 0;
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}

:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 6rem;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.announcement {
  min-height: 2.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem var(--gutter);
  color: var(--muted);
  background: #050607;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.77rem;
  text-align: center;
}

.announcement a {
  color: var(--white);
}

.announcement a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.nav {
  position: sticky;
  z-index: 80;
  isolation: isolate;
  top: 0;
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
  background: rgba(6, 7, 8, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.1);
  transition: background 0.25s, min-height 0.25s;
}

.nav.is-scrolled {
  min-height: 4.15rem;
  background: rgba(6, 7, 8, 0.95);
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.glyph {
  width: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.glyph i {
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 1rem;
  transform-origin: left;
  transition: width 0.3s var(--ease);
}

.glyph i:nth-child(1) { width: 1.2rem; }
.glyph i:nth-child(2) { width: 0.86rem; opacity: 0.68; }
.glyph i:nth-child(3) { width: 0.52rem; opacity: 0.38; }
.brand:hover .glyph i { width: 1.2rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}

.nav-menu > a:not(.button) {
  color: var(--muted);
  font-size: 0.87rem;
  transition: color 0.2s;
}

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

.menu-toggle {
  position: relative;
  z-index: 3;
  width: 2.7rem;
  height: 2.7rem;
  display: none;
  place-content: center;
  gap: 0.38rem;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.35rem;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.22rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.22rem) rotate(-45deg);
}

.motion-toggle {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.motion-toggle:hover,
.motion-toggle[aria-pressed="true"] {
  color: var(--white);
  background: rgba(198, 242, 78, 0.075);
  border-color: rgba(198, 242, 78, 0.3);
}

.motion-toggle:disabled {
  opacity: 0.62;
  cursor: default;
}

.motion-icon {
  color: var(--copper-light);
  font-size: 0.68rem;
  letter-spacing: -0.16em;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.button span {
  transition: transform 0.25s var(--ease);
}

.button:hover span {
  transform: translateX(0.25rem);
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: #fff;
  box-shadow: 0 0.8rem 3rem rgba(255, 255, 255, 0.12);
}

.button-quiet {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-strong);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.36);
}

.button-quiet:hover span {
  transform: translateY(0.2rem);
}

.scroll-progress {
  height: 2px;
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  pointer-events: none;
  background: transparent;
}

.scroll-progress i {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--copper));
  box-shadow: 0 0 1rem rgba(198, 242, 78, 0.22);
  transform: scaleX(0);
  transform-origin: left;
}

.cinema-section,
.hero,
.process,
.audit {
  isolation: isolate;
  overflow: hidden;
}

.cinema-media,
.cinema-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cinema-media {
  z-index: -4;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 28%, rgba(111, 160, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 18% 68%, rgba(198, 242, 78, 0.08), transparent 28rem),
    var(--ink-soft);
}

.cinema-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.88) contrast(1.06) brightness(0.72);
  transform: scale(1.035);
  transition: opacity 0.9s var(--ease);
}

.cinema-video.is-ready {
  opacity: 0.72;
}

.cinema-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.88), rgba(6, 7, 8, 0.36) 52%, rgba(6, 7, 8, 0.72)),
    linear-gradient(180deg, rgba(6, 7, 8, 0.55), rgba(6, 7, 8, 0.28) 44%, rgba(6, 7, 8, 0.92));
}

.hero .cinema-video.is-ready {
  opacity: 0.78;
}

.hero-video-scrim {
  background:
    radial-gradient(circle at 50% 32%, rgba(6, 7, 8, 0.18), rgba(6, 7, 8, 0.76) 70%),
    linear-gradient(180deg, rgba(6, 7, 8, 0.32), rgba(6, 7, 8, 0.52) 48%, var(--ink) 96%);
}

.approach .cinema-video.is-ready,
.process .cinema-video.is-ready,
.audit .cinema-video.is-ready {
  opacity: 0.56;
}

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.2rem, 7vw, 7.5rem) 0 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 8, 0.14), var(--ink) 96%),
    radial-gradient(70rem 32rem at 50% 12%, rgba(111, 160, 255, 0.17), transparent 66%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 7rem 7rem;
  mask-image: linear-gradient(to bottom, black, transparent 64%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(198, 242, 78, 0.17);
  border-radius: 50%;
  filter: blur(0.2px);
  animation: orbitDrift 18s ease-in-out infinite alternate;
}

.orbit-one {
  width: 48rem;
  height: 20rem;
  top: 4rem;
  left: calc(50% - 24rem);
  transform: rotate(-8deg);
}

.orbit-two {
  width: 68rem;
  height: 28rem;
  top: -2rem;
  left: calc(50% - 34rem);
  opacity: 0.55;
  transform: rotate(12deg);
  animation-delay: -8s;
}

@keyframes orbitDrift {
  to { transform: rotate(4deg) translateY(1rem) scale(1.04); }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot,
.status-dot {
  width: 0.42rem;
  height: 0.42rem;
  display: inline-block;
  flex: none;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(198, 242, 78, 0.4);
  animation: livePulse 2.6s infinite;
}

@keyframes livePulse {
  65% { box-shadow: 0 0 0 0.48rem rgba(198, 242, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 242, 78, 0); }
}

.hero h1 {
  max-width: 17ch;
  margin-top: 1.9rem;
  font-size: clamp(3.1rem, 7.1vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.92;
}

.hero h1 em {
  color: #c5cad1;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 67ch;
  margin-top: 2rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.hero-note {
  margin-top: 1.65rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.025em;
}

.intro {
  opacity: 0;
  transform: translateY(1.35rem);
  filter: blur(7px);
  animation: introRise 0.95s var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes introRise {
  to { opacity: 1; transform: none; filter: blur(0); }
}

.hero-system {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.system-bar,
.system-feed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 1rem;
  color: var(--faint);
  background: rgba(11, 13, 16, 0.94);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.system-bar {
  border-radius: 0.65rem 0.65rem 0 0;
}

.system-title,
.system-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.system-title {
  color: #c8ccd3;
}

.brand-mark {
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--copper);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--ink);
  background: var(--copper);
}

.system-canvas {
  position: relative;
  height: clamp(23rem, 38vw, 29rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 50%, rgba(111, 160, 255, 0.11), transparent 26rem),
    #090b0e;
  border-inline: 1px solid var(--line);
}

.canvas-grid {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}

.system-route {
  position: absolute;
  inset: 6% 2%;
  width: 96%;
  height: 88%;
  overflow: visible;
}

.route-base,
.route-signal {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.route-base {
  stroke: rgba(243, 244, 246, 0.13);
  stroke-width: 1;
  stroke-dasharray: 5 7;
}

.route-signal {
  stroke: var(--copper);
  stroke-width: 1.3;
  stroke-dasharray: 44 950;
  stroke-linecap: round;
  animation: routeLine 6s linear infinite;
}

.moving-signal {
  fill: var(--copper-light);
}

@keyframes routeLine {
  to { stroke-dashoffset: -994; }
}

.flow-node {
  position: absolute;
  width: min(13rem, 22%);
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  background: rgba(16, 19, 23, 0.9);
  border: 1px solid rgba(243, 244, 246, 0.16);
  border-radius: 0.45rem;
  box-shadow: 0 1rem 3.5rem rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.flow-node:hover {
  border-color: rgba(198, 242, 78, 0.48);
  transform: translateY(-3px);
}

.node-inbox { top: 36%; left: 2.5%; }
.node-classify { top: 11%; left: 30.5%; }
.node-approve { top: 56%; left: 57.2%; }
.node-sync { top: 56%; right: 2.5%; }

.node-label {
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flow-node strong {
  margin-top: 0.65rem;
  color: #e3e6eb;
  font-size: 0.78rem;
  font-weight: 500;
}

.flow-node small {
  margin-top: 0.2rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.node-state {
  width: fit-content;
  margin-top: auto;
  padding: 0.24rem 0.42rem;
  color: #afb5bf;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.54rem;
}

.node-state.processed,
.node-state.approved {
  color: var(--copper-light);
  background: var(--copper-wash);
  border-color: rgba(198, 242, 78, 0.26);
}

.node-state.done {
  color: var(--success);
  background: rgba(198, 242, 78, 0.08);
  border-color: rgba(198, 242, 78, 0.22);
}

.system-feed {
  justify-content: flex-start;
  gap: 2rem;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 0 0 0.65rem 0.65rem;
}

.system-feed span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.system-feed i {
  width: 0.3rem;
  height: 0.3rem;
  background: var(--success);
  border-radius: 50%;
}

.stack-strip {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink-soft);
}

.stack-head {
  width: min(100%, var(--shell));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  padding-inline: var(--gutter);
}

.stack-head p {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.stack-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
}

.stack-track {
  width: max-content;
  display: flex;
  animation: stackMove 36s linear infinite;
}

.stack-set {
  display: flex;
  align-items: center;
  gap: clamp(2.4rem, 5vw, 5rem);
  padding-right: clamp(2.4rem, 5vw, 5rem);
}

.stack-set span {
  color: #89919d;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.stack-strip.is-paused .stack-track,
body.motion-paused .stack-track {
  animation-play-state: paused;
}

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

.section {
  position: relative;
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-intro {
  max-width: 55rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-intro h2,
.routing-head h2,
.ownership-copy h2,
.audit h2 {
  margin-top: 1.15rem;
  font-size: clamp(2.5rem, 5.1vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro h2 em,
.routing-head h2 em,
.ownership-copy h2 em,
.audit h2 em {
  color: #b7bdc6;
}

.section-intro > p:not(.eyebrow):not(.simulation-note),
.routing-head > p:last-child,
.ownership-copy > p,
.audit-inner > p {
  max-width: 62ch;
  margin-top: 1.45rem;
  color: var(--muted);
  line-height: 1.7;
}

.simulation-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.simulation-note span {
  width: 0.35rem;
  height: 0.35rem;
  flex: none;
  background: var(--copper);
  border-radius: 50%;
}

.section-intro.compact {
  max-width: 44rem;
}

.section-intro.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.55fr);
  align-items: end;
  gap: 4rem;
}

.section-intro.split > p {
  margin-bottom: 0.45rem;
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow::after {
  width: 2rem;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.eyebrow span {
  color: var(--copper-light);
}

.approach {
  min-height: 48rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 35%, rgba(111, 160, 255, 0.11), transparent 34rem),
    var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.approach .shell {
  width: min(100%, var(--shell));
}

.approach-scrim {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.92), rgba(6, 7, 8, 0.54) 58%, rgba(6, 7, 8, 0.7)),
    linear-gradient(180deg, rgba(6, 7, 8, 0.76), rgba(6, 7, 8, 0.36) 48%, rgba(6, 7, 8, 0.92));
}

.approach .section-intro {
  margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.approach-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line-strong);
  border-radius: 0.7rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.approach-grid article,
.comparison-card {
  min-height: 18rem;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  background: rgba(11, 13, 16, 0.82);
}

.approach-grid .approach-featured,
.comparison-card.is-featured,
.comparison-card.featured {
  background:
    linear-gradient(145deg, rgba(198, 242, 78, 0.1), rgba(111, 160, 255, 0.07)),
    rgba(16, 19, 23, 0.92);
  box-shadow: inset 0 2px var(--copper);
}

.approach-label,
.comparison-card > span:first-child {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.approach-featured .approach-label,
.comparison-card.is-featured > span:first-child,
.comparison-card.featured > span:first-child {
  color: var(--copper-light);
}

.approach-grid ul,
.comparison-card ul {
  margin-top: 2rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.approach-grid li,
.comparison-card li {
  position: relative;
  padding: 0.82rem 0 0.82rem 1.2rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  line-height: 1.5;
}

.approach-grid li::before,
.comparison-card li::before {
  position: absolute;
  left: 0;
  content: "↳";
  color: var(--decorative);
  font-family: var(--mono);
}

.approach-featured li::before,
.comparison-card.is-featured li::before,
.comparison-card.featured li::before {
  color: var(--copper);
}

.systems {
  background:
    radial-gradient(circle at 84% 26%, rgba(111, 160, 255, 0.075), transparent 24rem),
    var(--ink);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.system-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  background: var(--panel);
  transition: background 0.35s, box-shadow 0.35s;
}

.system-card:hover {
  position: relative;
  z-index: 1;
  background: var(--panel-2);
  box-shadow: inset 0 0 0 1px rgba(198, 242, 78, 0.25);
}

.card-ui {
  height: 17rem;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #090b0e;
  background-size: 2rem 2rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
}

.ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  color: #c1c6ce;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.59rem;
}

.ui-top b {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--faint);
  font-weight: 400;
}

.ui-top b i {
  width: 0.3rem;
  height: 0.3rem;
  background: var(--success);
  border-radius: 50%;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.1rem 1rem;
  margin-top: 0.72rem;
  padding: 0.72rem;
  color: #b9c0ca;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.3rem;
  font-size: 0.7rem;
}

.ticket.active {
  border-color: rgba(198, 242, 78, 0.25);
  box-shadow: inset 2px 0 var(--copper);
}

.ticket small {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.ticket b {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 0.22rem 0.4rem;
  color: var(--success);
  background: rgba(198, 242, 78, 0.08);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.51rem;
  font-weight: 400;
}

.ticket b.warm {
  color: var(--copper-light);
  background: var(--copper-wash);
}

.pipeline {
  padding: 1.15rem 0 0.7rem;
}

.pipeline > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.35rem 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.pipeline span,
.pipeline small {
  color: #b9c0ca;
  font-size: 0.66rem;
}

.pipeline small {
  grid-column: 2;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.52rem;
}

.pipeline b {
  height: 0.3rem;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
}

.pipeline b::after {
  width: var(--w);
  height: 100%;
  display: block;
  content: "";
  background: linear-gradient(90deg, var(--copper), var(--blue));
  border-radius: inherit;
}

.automation-chip {
  padding: 0.65rem;
  color: var(--copper-light);
  background: var(--copper-wash);
  border: 1px solid rgba(198, 242, 78, 0.2);
  border-radius: 0.3rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  text-align: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  background: var(--line);
  gap: 1px;
}

.metric-row div {
  padding: 0.65rem;
  background: var(--panel);
}

.metric-row small,
.metric-row strong {
  display: block;
}

.metric-row small {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.49rem;
}

.metric-row strong {
  margin-top: 0.25rem;
  color: #d5d9df;
  font-size: 0.68rem;
  font-weight: 500;
}

.mini-chart {
  height: 6rem;
  display: flex;
  align-items: end;
  gap: 0.35rem;
  padding: 1rem 0.2rem 0;
  border-bottom: 1px solid var(--line);
}

.mini-chart i {
  height: var(--h);
  flex: 1;
  background: #4f5762;
  border-radius: 2px 2px 0 0;
  transition: height 0.8s var(--ease), background 0.3s;
}

.system-card:hover .mini-chart i {
  height: min(100%, calc(var(--h) + 4%));
}

.mini-chart i.accent {
  background: var(--copper);
}

.chart-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.52rem;
}

.chart-note span {
  width: 0.3rem;
  height: 0.3rem;
  background: var(--copper);
  border-radius: 50%;
}

.chat-row {
  width: fit-content;
  max-width: 83%;
  margin-top: 0.75rem;
  padding: 0.55rem 0.7rem;
  color: #c7ccd4;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 0.55rem 0.55rem 0.55rem 0.1rem;
  font-size: 0.63rem;
}

.chat-row.agent {
  margin-left: auto;
  color: var(--copper-light);
  background: var(--copper-wash);
  border: 1px solid rgba(198, 242, 78, 0.16);
  border-radius: 0.55rem 0.55rem 0.1rem 0.55rem;
}

.choice-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.choice-row span {
  padding: 0.28rem 0.45rem;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.48rem;
}

.qualified {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.5rem;
}

.qualified i {
  color: var(--success);
  font-style: normal;
}

.card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 0.45rem 0.45rem;
}

.card-number,
.card-example {
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-copy h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.card-copy p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card-example {
  margin-top: 2rem;
  color: var(--faint);
  letter-spacing: 0.02em;
  text-transform: none;
}

.routing {
  overflow: clip;
  background:
    radial-gradient(circle at 85% 28%, rgba(111, 160, 255, 0.1), transparent 25rem),
    var(--ink-soft);
  border-block: 1px solid var(--line);
}

.routing-head {
  max-width: 48rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.routing-head h2 {
  max-width: 12ch;
}

.routing-head > p:last-child {
  max-width: 58ch;
}

.routing-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(31rem, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.routing-steps {
  padding-bottom: 22vh;
}

.route-step {
  min-height: 46vh;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1.4rem;
  align-content: center;
  opacity: 0.32;
  transition: opacity 0.45s, transform 0.45s var(--ease);
}

.route-step.is-active {
  opacity: 1;
  transform: translateX(0.35rem);
}

.route-step > span {
  padding-top: 0.18rem;
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.route-step h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.route-step p {
  max-width: 38ch;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.routing-demo-wrap {
  position: sticky;
  top: 7rem;
}

.routing-demo {
  overflow: hidden;
  background: #090b0e;
  border: 1px solid var(--line-strong);
  border-radius: 0.65rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.demo-top,
.demo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  color: var(--faint);
  background: var(--panel);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.demo-top {
  border-bottom: 1px solid var(--line);
}

.demo-top strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #bdc3cc;
  font-weight: 400;
}

.demo-top i {
  width: 0.35rem;
  height: 0.35rem;
  background: var(--copper);
  border-radius: 50%;
}

.demo-body {
  min-height: 33rem;
  padding: clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 2.7rem 2.7rem;
}

.demo-source,
.demo-detail {
  padding: 1rem;
  background: rgba(16, 19, 23, 0.92);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
}

.demo-source small,
.detail-head small,
.detail-grid small,
.demo-action small {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.54rem;
}

.demo-source > p {
  max-width: 37rem;
  margin-top: 0.6rem;
  color: #d6dae0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.source-meta span {
  padding: 0.2rem 0.4rem;
  color: var(--faint);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.48rem;
}

.demo-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  padding: 2rem 0.4rem;
}

.demo-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--decorative);
  transition: color 0.35s;
}

.demo-node i {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.54rem;
  font-style: normal;
  transition: color 0.35s, background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.demo-node span {
  font-family: var(--mono);
  font-size: 0.62rem;
}

.demo-node.active,
.demo-node.done {
  color: #c7ccd4;
}

.demo-node.active i {
  color: var(--ink);
  background: var(--copper-light);
  border-color: var(--copper-light);
  box-shadow: 0 0 0 0.35rem rgba(198, 242, 78, 0.09);
}

.demo-node.done i {
  color: var(--success);
  border-color: rgba(198, 242, 78, 0.3);
}

.demo-segment {
  height: 1px;
  position: relative;
  overflow: hidden;
  background: var(--line);
}

.demo-segment::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.demo-segment.done::after {
  transform: scaleX(1);
}

.demo-detail {
  min-height: 13.8rem;
}

.detail-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.detail-head > span {
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0.9rem;
  background: var(--line);
}

.detail-grid > div {
  min-width: 0;
  padding: 0.65rem;
  background: var(--panel-2);
}

.detail-grid small,
.detail-grid strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-grid strong {
  margin-top: 0.23rem;
  color: #c9ced6;
  font-size: 0.64rem;
  font-weight: 500;
}

.demo-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.68rem;
  color: #c9ced6;
  background: var(--copper-wash);
  border: 1px solid rgba(198, 242, 78, 0.2);
  border-radius: 0.3rem;
}

.action-icon {
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  color: var(--copper-light);
  background: rgba(198, 242, 78, 0.12);
  border-radius: 0.25rem;
}

.demo-action small,
.demo-action strong {
  display: block;
}

.demo-action strong {
  margin-top: 0.15rem;
  font-size: 0.63rem;
  font-weight: 500;
}

.action-state {
  padding: 0.25rem 0.4rem;
  color: var(--copper-light);
  background: rgba(6, 7, 8, 0.34);
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 0.48rem;
}

.demo-foot {
  justify-content: flex-start;
  gap: 1.5rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  white-space: nowrap;
}

.outcomes {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(198, 242, 78, 0.07), transparent 28rem),
    radial-gradient(circle at 92% 58%, rgba(111, 160, 255, 0.09), transparent 30rem),
    var(--ink-soft);
  border-block: 1px solid var(--line);
}

.outcomes .eyebrow {
  color: var(--faint);
}

.outcomes .eyebrow::after {
  background: var(--line-strong);
}

.outcomes .section-intro h2 em {
  color: #b7bdc6;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

.outcome-grid article {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: rgba(16, 19, 23, 0.56);
  border-right: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}

.outcome-grid article:hover {
  background: rgba(21, 25, 31, 0.88);
  box-shadow: inset 0 2px var(--blue);
}

.outcome-grid article:last-child {
  border-right: 0;
}

.outcome-grid article > span {
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.outcome-grid h3 {
  margin-top: 3rem;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.outcome-grid p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.outcome-grid small {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ownership {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  margin-top: clamp(6rem, 10vw, 10rem);
}

.ownership-copy h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.ownership-copy h2 em {
  color: #b7bdc6;
}

.ownership-copy > p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.8rem;
  color: var(--copper-light);
  border-bottom: 1px solid rgba(198, 242, 78, 0.45);
  font-size: 0.88rem;
  font-weight: 500;
}

.text-link span {
  transition: transform 0.2s;
}

.text-link:hover span {
  transform: translateX(0.2rem);
}

.ownership-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  overflow: hidden;
}

.ownership-table th,
.ownership-table td {
  width: 50%;
  padding: 1rem;
  text-align: left;
  font-size: 0.79rem;
  font-weight: 400;
  vertical-align: top;
}

.ownership-table th {
  color: #c4cad2;
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.ownership-table td {
  color: var(--muted);
  background: rgba(6, 7, 8, 0.5);
}

.ownership-table th + th,
.ownership-table td + td {
  border-left: 1px solid var(--line);
}

.ownership-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
}

.ownership-table td:nth-child(2) {
  color: #d7dbe1;
  background: rgba(111, 160, 255, 0.055);
}

.ownership-table td:nth-child(2)::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--copper);
  font-family: var(--mono);
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(14rem, 0.82fr) repeat(2, minmax(0, 1fr));
  margin-top: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  background: rgba(16, 19, 23, 0.45);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

.fit-title,
.fit-column {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.fit-title h3 {
  max-width: 15ch;
  margin-top: 1.2rem;
  color: var(--white);
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.fit-column {
  border-left: 1px solid var(--line);
}

.fit-label {
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fit-label.no {
  color: var(--faint);
}

.fit-column ul {
  margin-top: 1.3rem;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding: 0.62rem 0 0.62rem 1.1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.79rem;
  line-height: 1.5;
}

.fit-column li::before {
  position: absolute;
  left: 0;
  content: "↳";
  color: var(--blue);
  font-family: var(--mono);
}

.proof {
  background:
    radial-gradient(circle at 82% 40%, rgba(111, 160, 255, 0.08), transparent 25rem),
    var(--ink);
}

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

.work-card {
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.work-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(198, 242, 78, 0.34);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.25);
}

.work-visual {
  height: clamp(20rem, 36vw, 29rem);
  position: relative;
  overflow: hidden;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}

.work-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.browser-chrome {
  height: 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 0.75rem;
  color: var(--faint);
  background: rgba(6, 7, 8, 0.5);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.48rem;
}

.browser-chrome i {
  width: 0.35rem;
  height: 0.35rem;
  background: #59616d;
  border-radius: 50%;
}

.browser-chrome span {
  margin-left: auto;
}

.work-visual > p {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: 8%;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-style: italic;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.work-visual > small {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 8%;
  color: #b9c0ca;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.labs-visual {
  background:
    radial-gradient(circle at 72% 60%, rgba(111, 160, 255, 0.23), transparent 17rem),
    #121a27;
}

.ring-orbit {
  width: 15rem;
  height: 15rem;
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 7%;
  border: 1px solid rgba(111, 160, 255, 0.38);
  border-radius: 50%;
  animation: ringFloat 8s ease-in-out infinite alternate;
}

.ring-orbit::before,
.ring-orbit::after {
  position: absolute;
  inset: 16%;
  content: "";
  border: 1px solid rgba(243, 244, 246, 0.14);
  border-radius: 50%;
}

.ring-orbit::after {
  inset: 34%;
  background: radial-gradient(circle at 35% 25%, white, #b9c7cc 18%, #5d6a70 45%, transparent 48%);
  box-shadow: 0 0 2.5rem rgba(220, 235, 241, 0.3);
  transform: rotate(25deg);
}

.ring-orbit span {
  width: 40%;
  height: 40%;
  position: absolute;
  right: -6%;
  bottom: 5%;
  border: 0.7rem solid rgba(198, 242, 78, 0.48);
  border-radius: 50%;
  transform: rotateX(65deg);
}

@keyframes ringFloat {
  to { transform: translateY(-0.6rem) rotate(4deg); }
}

.thermal-visual {
  background:
    radial-gradient(circle at 68% 58%, rgba(111, 160, 255, 0.24), transparent 15rem),
    #101722;
}

.thermal-target {
  width: 15rem;
  height: 15rem;
  position: absolute;
  right: 2%;
  bottom: 7%;
  border: 1px solid rgba(111, 160, 255, 0.48);
  border-radius: 50%;
  box-shadow: inset 0 0 4rem rgba(111, 160, 255, 0.18);
}

.thermal-target::before,
.thermal-target::after {
  position: absolute;
  content: "";
  background: rgba(111, 160, 255, 0.52);
}

.thermal-target::before {
  width: 1px;
  inset-block: -2rem;
  left: 50%;
}

.thermal-target::after {
  height: 1px;
  inset-inline: -2rem;
  top: 50%;
}

.thermal-target span {
  width: 4rem;
  height: 7rem;
  position: absolute;
  top: 28%;
  left: 37%;
  background: radial-gradient(circle at 50% 20%, #f8ffbc, #c6f24e 32%, #6fa0ff 64%, #172139 82%);
  border-radius: 48% 48% 40% 40%;
  filter: blur(2px);
  animation: thermalPulse 3.2s ease-in-out infinite;
}

.thermal-target i {
  width: 0.45rem;
  height: 0.45rem;
  position: absolute;
  top: calc(50% - 0.225rem);
  left: calc(50% - 0.225rem);
  background: #f6ffd4;
  border-radius: 50%;
  box-shadow: 0 0 1rem var(--copper);
}

@keyframes thermalPulse {
  50% { filter: blur(3px) brightness(1.2); transform: scale(1.03); }
}

.work-copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.work-copy > span {
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin-top: 0.8rem;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.work-copy p {
  max-width: 48ch;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.work-copy b {
  display: inline-flex;
  gap: 0.35rem;
  margin-top: 1.8rem;
  color: #d4d9e0;
  font-size: 0.8rem;
  font-weight: 500;
}

.work-copy b span {
  transition: transform 0.2s;
}

.work-card:hover .work-copy b span {
  transform: translate(0.15rem, -0.15rem);
}

.process {
  background:
    linear-gradient(180deg, rgba(6, 7, 8, 0.76), rgba(6, 7, 8, 0.9)),
    var(--ink-soft);
  border-top: 1px solid var(--line);
}

.process-list {
  list-style: none;
  border-top: 1px solid var(--line);
  background: rgba(6, 7, 8, 0.28);
  backdrop-filter: blur(12px);
}

.process-list li {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), background 0.35s;
}

.process-list li:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(198, 242, 78, 0.075), rgba(111, 160, 255, 0.025) 45%, transparent);
}

.process-list li > span {
  padding-top: 0.25rem;
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.process-list div {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(16rem, 1fr);
  gap: 3rem;
}

.process-list h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.process-video-scrim {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.91), rgba(6, 7, 8, 0.52) 62%, rgba(6, 7, 8, 0.8)),
    linear-gradient(180deg, rgba(6, 7, 8, 0.86), rgba(6, 7, 8, 0.56) 48%, rgba(6, 7, 8, 0.92));
}

.engagements {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 18%, rgba(111, 160, 255, 0.075), transparent 27rem),
    radial-gradient(circle at 88% 82%, rgba(198, 242, 78, 0.045), transparent 24rem),
    var(--ink-soft);
  border-top: 1px solid var(--line);
}

.engagements .eyebrow {
  color: var(--faint);
}

.engagements .eyebrow::after {
  background: var(--line-strong);
}

.engagements .section-intro h2 em {
  color: #b7bdc6;
}

.engagements .section-intro.split > p {
  color: var(--muted);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.engagement-grid article {
  min-height: 29rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 19, 23, 0.82);
  transition: background 0.3s, box-shadow 0.3s;
}

.engagement-grid article.featured {
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(198, 242, 78, 0.09), rgba(111, 160, 255, 0.07)),
    var(--panel-2);
  box-shadow: inset 0 2px var(--copper);
}

.engagement-grid article:not(.featured):hover {
  background: var(--panel-2);
}

.engagement-label {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .engagement-label {
  color: var(--copper-light);
}

.engagement-grid h3 {
  margin-top: 1.1rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.engagement-grid p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.featured p {
  color: var(--muted);
}

.engagement-grid ul {
  margin-top: 2rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.featured ul {
  border-color: var(--line);
}

.engagement-grid li {
  padding: 0.65rem 0;
  color: #b0b7c1;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.featured li {
  color: #c1c7d0;
  border-color: var(--line);
}

.engagement-grid li::before {
  content: "↳";
  margin-right: 0.55rem;
  color: var(--copper);
  font-family: var(--mono);
}

.engagement-grid article > a {
  display: inline-flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
}

.featured > a {
  color: var(--white) !important;
}

.engagement-grid article > a span {
  transition: transform 0.2s;
}

.engagement-grid article > a:hover span {
  transform: translateX(0.2rem);
}

.faq {
  background:
    radial-gradient(circle at 15% 24%, rgba(111, 160, 255, 0.075), transparent 28rem),
    var(--ink);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(31rem, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq .section-intro {
  margin-bottom: 0;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.45rem 3.25rem 1.45rem 0;
  color: #d9dde3;
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  font-weight: 500;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover,
.faq-list details[open] summary {
  color: var(--white);
}

.faq-list summary > span {
  width: 1.7rem;
  height: 1.7rem;
  position: absolute;
  top: 1.3rem;
  right: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  width: 0.62rem;
  height: 1px;
  position: absolute;
  top: calc(50% - 0.5px);
  left: calc(50% - 0.31rem);
  content: "";
  background: var(--copper-light);
}

.faq-list summary > span::after {
  transform: rotate(90deg);
  transition: transform 0.25s;
}

.faq-list details[open] summary > span {
  background: rgba(198, 242, 78, 0.08);
  border-color: rgba(198, 242, 78, 0.3);
  transform: rotate(180deg);
}

.faq-list details[open] summary > span::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 58ch;
  padding: 0 3.25rem 1.55rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.audit {
  min-height: 47rem;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(111, 160, 255, 0.13), transparent 32rem),
    var(--ink);
  border-top: 1px solid var(--line);
}

.audit-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.audit-signal {
  position: absolute;
  z-index: -1;
  width: 38rem;
  height: 14rem;
  border: 1px solid rgba(198, 242, 78, 0.18);
  border-radius: 50%;
  animation: auditOrbit 14s ease-in-out infinite alternate;
}

.signal-a {
  top: 14%;
  left: calc(50% - 19rem);
  transform: rotate(-8deg);
}

.signal-b {
  top: 16%;
  left: calc(50% - 19rem);
  opacity: 0.55;
  transform: rotate(15deg);
  animation-delay: -7s;
}

@keyframes auditOrbit {
  to { transform: rotate(3deg) scale(1.08); }
}

.audit-video-scrim {
  background:
    radial-gradient(circle at 50% 48%, rgba(6, 7, 8, 0.34), rgba(6, 7, 8, 0.8) 72%),
    linear-gradient(180deg, rgba(6, 7, 8, 0.72), rgba(6, 7, 8, 0.38) 45%, rgba(6, 7, 8, 0.88));
}

.audit-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.audit h2 {
  max-width: 16ch;
}

.audit-inner > p {
  max-width: 58ch;
}

.button-large {
  min-height: 3.5rem;
  margin-top: 2.1rem;
  padding-inline: 1.55rem;
}

.audit-inner > small {
  margin-top: 1.3rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.footer {
  padding: 4.5rem 0 1.5rem;
  color: var(--white);
  background: #050607;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(28rem, 1.3fr);
  gap: 5rem;
  padding-bottom: 4rem;
}

.footer-main > div:first-child > p {
  max-width: 24rem;
  margin-top: 1.2rem;
  color: var(--faint);
  font-size: 0.87rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links span {
  margin-bottom: 0.45rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.59rem;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    background: rgba(6, 7, 8, 0.98);
    border-bottom: 1px solid transparent;
    transition:
      max-height 0.35s var(--ease),
      border-color 0.35s,
      visibility 0s linear 0.35s;
  }

  .nav-menu.is-open {
    max-height: 28rem;
    visibility: visible;
    pointer-events: auto;
    border-bottom-color: var(--line);
    transition-delay: 0s;
  }

  .nav-menu > a:not(.button) {
    display: block;
    padding: 1rem var(--gutter);
    border-top: 1px solid var(--line);
  }

  .nav-menu .nav-cta {
    margin: 0.8rem var(--gutter) 1.1rem;
  }

  .nav-menu .motion-toggle {
    align-self: flex-start;
    justify-content: center;
    margin: 0.75rem var(--gutter) 0;
  }

  .flow-node {
    width: 23%;
  }

  .routing-layout {
    grid-template-columns: minmax(15rem, 0.65fr) minmax(27rem, 1.35fr);
    gap: 2.5rem;
  }

  .demo-body {
    padding: 1rem;
  }

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

  .outcome-grid article:nth-child(2) {
    border-right: 0;
  }

  .outcome-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--dark-line);
  }

  .ownership {
    grid-template-columns: 1fr;
  }

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

  .engagement-grid article {
    min-height: 0;
  }

  .engagement-grid article > a {
    margin-top: 2.5rem;
  }
}

@media (max-width: 780px) {
  .announcement span {
    display: none;
  }

  .nav {
    min-height: 4.2rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.5vw, 5.3rem);
  }

  .hero-lead {
    max-width: 37rem;
  }

  .hero-system {
    margin-top: 4rem;
  }

  .system-canvas {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
  }

  .system-route {
    display: none;
  }

  .flow-node {
    width: auto;
    min-height: 8.4rem;
    position: relative;
    inset: auto;
  }

  .system-feed {
    overflow-x: auto;
  }

  .system-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .approach {
    min-height: 0;
  }

  .approach-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid article,
  .comparison-card {
    min-height: 0;
  }

  .section-intro.split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .routing-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .routing-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    background: var(--line);
    border: 1px solid var(--line);
  }

  .route-step {
    min-height: 0;
    display: block;
    padding: 1.25rem;
    opacity: 1;
    background: var(--panel-2);
    transform: none !important;
  }

  .route-step > span {
    display: block;
    margin-bottom: 1.2rem;
  }

  .route-step h3 {
    font-size: 1.25rem;
  }

  .routing-demo-wrap {
    width: 100%;
    position: relative;
    top: auto;
  }

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

  .outcome-grid article {
    min-height: 15rem;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .outcome-grid article:nth-child(3) {
    border-bottom: 1px solid var(--dark-line);
  }

  .outcome-grid article:last-child {
    border-bottom: 0;
  }

  .ownership {
    margin-top: 6rem;
  }

  .fit-panel {
    grid-template-columns: 1fr;
  }

  .fit-column {
    border-top: 1px solid var(--dark-line);
    border-left: 0;
  }

  .process-list li {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    max-width: 30ch;
  }

  .system-bar {
    align-items: flex-start;
  }

  .system-title {
    max-width: 13rem;
  }

  .system-meta {
    max-width: 8.5rem;
    justify-content: flex-end;
    font-size: 0.5rem;
    line-height: 1.35;
    text-align: right;
  }

  .system-meta .status-dot {
    font-size: initial;
  }

  .system-canvas {
    grid-template-columns: 1fr;
  }

  .stack-strip {
    padding-block: 3rem;
  }

  .section {
    padding-block: 5.5rem;
  }

  .card-ui {
    height: 15.5rem;
  }

  .approach-grid article,
  .comparison-card {
    padding: 1.25rem;
  }

  .routing-steps {
    grid-template-columns: 1fr;
  }

  .demo-body {
    min-height: 0;
  }

  .demo-route {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .demo-segment {
    display: none;
  }

  .demo-node span {
    font-size: 0.7rem;
  }

  .demo-top,
  .demo-foot {
    font-size: 0.65rem;
  }

  .demo-source small,
  .detail-head small,
  .detail-grid small,
  .demo-action small {
    font-size: 0.64rem;
  }

  .detail-head > span {
    font-size: 0.67rem;
  }

  .detail-grid strong,
  .demo-action strong {
    font-size: 0.72rem;
  }

  .action-state {
    font-size: 0.62rem;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .demo-action {
    grid-template-columns: auto 1fr;
  }

  .action-state {
    grid-column: 2;
    width: fit-content;
  }

  .demo-foot span:nth-child(2) {
    display: none;
  }

  .ownership-table th,
  .ownership-table td {
    padding: 0.75rem;
    font-size: 0.68rem;
  }

  .work-visual {
    height: 20rem;
  }

  .ring-orbit,
  .thermal-target {
    width: 11rem;
    height: 11rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bar {
    flex-direction: column;
  }

  .faq-list summary {
    padding-right: 2.7rem;
  }

  .faq-list details > p {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .intro,
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .moving-signal,
  .route-signal {
    display: none;
  }

  .cinema-video {
    display: none;
  }

  .stack-track {
    width: 100%;
    flex-wrap: wrap;
    animation: none;
  }

  .stack-set {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stack-set[aria-hidden="true"] {
    display: none;
  }

}
