:root {
  --bg-dark: #050506;
  --bg-graphite: #0d1013;
  --bg-accent: #12090a;
  --page-bg: var(--bg-dark);
  --page-glow: rgba(212, 110, 72, 0.12);
  --text-primary: #f4efe8;
  --text-secondary: rgba(244, 239, 232, 0.74);
  --text-muted: rgba(244, 239, 232, 0.46);
  --line-strong: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --signal: #d46e48;
  --signal-soft: rgba(212, 110, 72, 0.18);
  --steel: #c1b5a8;
  --display: "Google Sans Flex", sans-serif;
  --body: "Google Sans Flex", sans-serif;
  --mono: "Google Sans Code", monospace;
  --header-h: 5.25rem;
  --max-width: 88rem;
  --shadow-glow: 0 0 7.5rem rgba(212, 110, 72, 0.08);
  --panel-radius: 1.4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text-primary);
  font-family: var(--body);
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 13rem 13rem, 19rem 19rem, 5rem 5rem, 5rem 5rem;
  opacity: 0.04;
}

body::after {
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.028) 0,
    rgba(255, 255, 255, 0.028) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.025;
}

.ambient-glow {
  position: fixed;
  inset: -20vmax;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.06), transparent 22%),
    radial-gradient(circle at 78% 2%, var(--page-glow), transparent 24%),
    radial-gradient(circle at 55% 78%, rgba(255, 255, 255, 0.03), transparent 20%);
  filter: blur(1.25rem);
  opacity: 0.48;
}

.terminal-stream {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.96) 12%, rgba(0, 0, 0, 0.96) 88%, transparent);
}

.terminal-stream::before,
.terminal-stream::after {
  content: "";
  position: absolute;
  inset: 0;
}

.terminal-stream::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.92)),
    radial-gradient(circle at 14% 16%, rgba(111, 255, 204, 0.08), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(212, 110, 72, 0.09), transparent 22%);
  z-index: 2;
}

.terminal-stream::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.68));
  z-index: 2;
}

.terminal-stream__scanline {
  position: absolute;
  inset: -18rem 0 auto;
  height: 18rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(111, 255, 204, 0.02) 30%,
    rgba(111, 255, 204, 0.11) 50%,
    rgba(212, 110, 72, 0.04) 70%,
    transparent 100%
  );
  filter: blur(0.35rem);
  animation: terminal-scan 15s linear infinite;
  z-index: 1;
}

.terminal-stream__columns {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 6rem 2.25rem 2rem;
}

.terminal-column {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.03);
}

.terminal-column::before {
  content: attr(data-label);
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
  z-index: 1;
}

.terminal-column__track {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 1rem;
  padding: 3.5rem 1rem 0;
  transform: translateY(0);
  animation: terminal-drift var(--duration, 30s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

.terminal-batch {
  display: grid;
  gap: 0.3rem;
}

.terminal-line {
  display: block;
  width: max-content;
  max-width: 100%;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.32;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0.34;
  text-shadow: 0 0 0.6rem currentColor;
}

.terminal-line.tone-command {
  color: rgba(212, 110, 72, 0.65);
}

.terminal-line.tone-success {
  color: rgba(111, 255, 204, 0.56);
}

.terminal-line.tone-meta {
  color: rgba(200, 214, 222, 0.44);
}

.terminal-line.tone-alert {
  color: rgba(255, 185, 145, 0.48);
}

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

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

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

::selection {
  background: rgba(212, 110, 72, 0.28);
  color: var(--text-primary);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: #111214;
  color: var(--text-primary);
  border: 1px solid var(--line-strong);
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 1rem 4vw;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.96), rgba(5, 5, 6, 0.78) 72%, rgba(5, 5, 6, 0.28));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0.875rem);
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-compact {
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3.75rem;
  height: auto;
  filter: drop-shadow(0 0 1.25rem rgba(212, 110, 72, 0.16));
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-variation-settings: "wght" 650, "wdth" 98, "ROND" 40;
}

.brand-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-primary);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.nav-cta {
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line-strong);
  color: var(--text-primary);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: rgba(10, 10, 12, 0.72);
  color: var(--text-primary);
}

.nav-toggle span {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:first-child {
  top: 1.15rem;
}

.nav-toggle span:last-child {
  top: 1.8rem;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(0.33rem) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-0.33rem) rotate(-45deg);
}

.section {
  padding: 7rem 4vw;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--signal);
}

.section-label::after {
  content: "";
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), transparent);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
  font-variation-settings: "wght" 620, "wdth" 98, "ROND" 40;
}

h2 {
  font-size: clamp(2.9rem, 4.7vw, 4.8rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  line-height: 0.97;
}

p {
  color: var(--text-secondary);
  font-variation-settings: "wght" 430, "wdth" 98, "ROND" 40;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.35rem;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
  border-radius: 999px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-primary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.button-secondary {
  background: transparent;
  color: var(--steel);
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 2.5rem);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.eyebrow {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero-title {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-variation-settings: "wght" 680, "wdth" 92, "ROND" 40;
}

.title-line {
  display: block;
  overflow: hidden;
}

.muted-line {
  color: rgba(244, 239, 232, 0.55);
}

.signal-line {
  color: var(--text-primary);
  text-shadow: 0 0 1rem rgba(212, 110, 72, 0.12);
}

.hero-body {
  max-width: 37rem;
  margin-top: 1.65rem;
  font-size: clamp(1rem, 1.28vw, 1.08rem);
}

.hero-manifesto {
  max-width: 34rem;
  margin-top: 1.1rem;
  color: var(--steel);
  font-size: 0.98rem;
  font-variation-settings: "wght" 470, "wdth" 97, "ROND" 40;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.35rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 1px;
  background: var(--signal);
}

.hero-visual {
  min-height: 34rem;
}

.intel-panel {
  display: grid;
  gap: 1.25rem;
  min-height: 34rem;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
    rgba(8, 9, 10, 0.72);
  border-radius: var(--panel-radius);
}

.intel-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.intel-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.intel-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
}

.intel-card-label,
.research-note-label,
.ai-panel-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}

.intel-card-value {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.intel-stream {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.intel-stream-line {
  min-height: 1.2em;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.intel-stream-line.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.58ch;
  height: 1em;
  margin-left: 0.22rem;
  vertical-align: -0.12em;
  background: currentColor;
  animation: intel-cursor 0.85s steps(1, end) infinite;
}

.intel-stream-line.is-fresh {
  animation: intel-line-flash 0.5s ease-out;
}

.tone-command {
  color: rgba(244, 239, 232, 0.66);
}

.tone-success {
  color: rgba(193, 181, 168, 0.92);
}

.tone-meta {
  color: rgba(244, 239, 232, 0.46);
}

.tone-alert {
  color: rgba(212, 110, 72, 0.82);
}

.signal-strip {
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.signal-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.signal-strip-item::before {
  content: "";
  width: 0.45rem;
  height: 1px;
  background: rgba(212, 110, 72, 0.82);
}

.research-note {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 32%),
    rgba(8, 9, 10, 0.68);
  border-radius: var(--panel-radius);
}

.research-note-grid {
  display: grid;
  gap: 0.8rem;
}

.research-note-item {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.research-note-item strong {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  font-weight: 620;
  font-variation-settings: "wght" 620, "wdth" 98, "ROND" 40;
}

.research-note-item span,
.research-note-foot,
.ai-panel-note {
  color: var(--text-secondary);
}

.ai-visual {
  position: relative;
  min-height: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    rgba(8, 7, 8, 0.78);
  overflow: hidden;
  border-radius: var(--panel-radius);
}

.ai-panel {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
}

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

.ai-panel-grid span {
  display: grid;
  place-items: center;
  min-height: 7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
}

.radar-frame {
  position: relative;
  min-height: 40rem;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    rgba(8, 9, 10, 0.76);
  box-shadow: var(--shadow-glow);
}

.hero-mark-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(10rem, 28%, 14rem);
  transform: translate(-50%, -52%);
  opacity: 0.16;
  filter: drop-shadow(0 0 2rem rgba(212, 110, 72, 0.22));
  mix-blend-mode: screen;
}

.radar-frame::before,
.radar-frame::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.radar-frame::after {
  inset: auto 0 0;
  height: 8rem;
  border: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
}

.radar-ring,
.crosshair,
.radar-sweep,
.radar-core,
.signal-node,
.scan-caption,
.signal-band {
  position: absolute;
  z-index: 1;
}

.radar-ring,
.crosshair,
.radar-sweep,
.radar-core {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.radar-ring {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ring-1 {
  width: 82%;
  aspect-ratio: 1;
}

.ring-2 {
  width: 56%;
  aspect-ratio: 1;
}

.ring-3 {
  width: 30%;
  aspect-ratio: 1;
}

.crosshair {
  width: 82%;
  aspect-ratio: 1;
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.crosshair::after {
  inset: 0 auto 0 50%;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.radar-sweep {
  width: 84%;
  aspect-ratio: 1;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 300deg,
      rgba(212, 110, 72, 0.28) 338deg,
      rgba(255, 255, 255, 0.04) 360deg
    );
  filter: blur(0.35rem);
  mix-blend-mode: screen;
  animation: sweep 9s linear infinite;
}

.radar-core {
  width: 1rem;
  aspect-ratio: 1;
  background: var(--signal);
  box-shadow:
    0 0 0 0.5rem rgba(212, 110, 72, 0.14),
    0 0 2rem rgba(212, 110, 72, 0.34);
}

.signal-node,
.scan-caption,
.signal-band {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signal-node {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--steel);
  background: rgba(6, 6, 7, 0.44);
}

.node-web {
  top: 15%;
  right: 14%;
}

.node-infra {
  top: 31%;
  left: 9%;
}

.node-human {
  right: 11%;
  bottom: 27%;
}

.node-ai {
  left: 20%;
  bottom: 16%;
}

.node-device {
  top: 51%;
  left: 63%;
}

.scan-caption {
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
}

.scan-caption strong {
  font-weight: 500;
  color: var(--text-primary);
}

.signal-band {
  left: 2rem;
  top: 2rem;
  color: var(--signal);
}

.marquee {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(4.5rem, 12vw, 12rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
}

.marquee-track span:nth-child(odd) {
  color: rgba(212, 110, 72, 0.22);
}

.capability-grid,
.research-grid,
.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.section-intro p,
.proof-header p,
.research-copy p,
.ai-copy p,
.cta-inner p {
  max-width: 39rem;
  margin-top: 1.15rem;
  font-size: 1.04rem;
}

.capability-list {
  display: grid;
}

.capability-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.15rem 1.5rem;
  padding: 1.55rem 0 1.6rem;
  border-top: 1px solid var(--line-soft);
}

.capability-row:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.cap-index,
.cap-tags,
.step-kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cap-index,
.step-kicker {
  color: var(--signal);
}

.cap-main p {
  margin-top: 0.75rem;
  max-width: 43rem;
}

.cap-tags {
  justify-self: end;
  align-self: start;
  color: var(--text-muted);
  text-align: right;
}

.engagement {
  padding-block: 7rem;
}

.engagement-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 7vw, 8rem);
  min-height: auto;
  align-items: start;
}

.engagement-panel {
  position: relative;
  padding-right: 2rem;
}

.engagement-panel p {
  max-width: 31rem;
  margin-top: 1.25rem;
}

.engagement-progress {
  position: absolute;
  left: -1.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--line-soft);
}

.engagement-progress-fill {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--signal), rgba(212, 110, 72, 0));
  transform-origin: top;
  transform: scaleY(0);
}

.engagement-steps {
  display: grid;
  gap: 2.2rem;
}

.engagement-step {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}

.engagement-step p:last-child {
  margin-top: 0.75rem;
  max-width: 38rem;
}

.proof-header {
  display: grid;
  justify-items: end;
  text-align: right;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.stat {
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
}

.stat-number {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  color: var(--text-primary);
}

.stat-suffix {
  color: var(--signal);
}

.stat-label {
  margin-top: 0.9rem;
  max-width: 14rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.proof-rail p {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.tool-list {
  display: grid;
  margin-top: 2.5rem;
}

.tool-item {
  padding: 1.2rem 0 1.4rem;
  border-top: 1px solid var(--line-soft);
}

.tool-item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.tool-item p {
  margin-top: 0.65rem;
  max-width: 35rem;
}

.tool-wall {
  position: relative;
  min-height: 41rem;
  overflow: hidden;
}

.tool-wall::before,
.tool-wall::after {
  content: "";
  position: absolute;
  inset: 0;
}

.tool-wall::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 68% 34%, rgba(212, 110, 72, 0.18), transparent 26%);
  z-index: 1;
}

.tool-wall::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 6rem 6rem;
  opacity: 0.08;
}

.tool-wall-track {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 0.6rem;
}

.tool-wall-track span {
  display: block;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.1);
}

.tool-wall-track span:nth-child(3n) {
  color: rgba(212, 110, 72, 0.16);
}

.ai {
  overflow: hidden;
}

.ai-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.ai-visual {
  position: relative;
  min-height: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    rgba(8, 7, 8, 0.78);
  overflow: hidden;
}

.ai-visual::before,
.ai-visual::after {
  display: none;
}

.ai-core {
  position: absolute;
  inset: 12%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-core::before,
.ai-core::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
}

.ai-core::after {
  inset: 28%;
  border-color: rgba(212, 110, 72, 0.18);
}

.ai-core span {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.ai-core span:nth-child(1) {
  top: 12%;
}

.ai-core span:nth-child(2) {
  right: 12%;
}

.ai-core span:nth-child(3) {
  bottom: 12%;
}

.ai-core span:nth-child(4) {
  left: 12%;
}

.ai-list {
  display: grid;
  margin-top: 2rem;
}

.ai-list p {
  padding: 1.05rem 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.ai-list p:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta-inner h2 {
  max-width: 12ch;
  margin-top: 1rem;
}

.cta-inner p {
  max-width: 40rem;
  margin-top: 1.25rem;
}

.cta-inner .button {
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-primary);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 0 4vw 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer p {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes terminal-drift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes terminal-scan {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(100vh + 18rem));
  }
}

@keyframes intel-cursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@keyframes intel-line-flash {
  0% {
    opacity: 0.38;
    filter: brightness(1.14);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
  }
}

@media (min-width: 56.3125rem) {
  .engagement {
    height: auto;
  }
}

@media (max-width: 75rem) {
  .terminal-stream__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .proof-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56.25rem) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.4rem);
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--line-soft);
    background: rgba(7, 7, 8, 0.97);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .capability-grid,
  .research-grid,
  .ai-grid,
  .engagement-shell {
    grid-template-columns: 1fr;
  }

  .intel-panel,
  .research-note,
  .ai-panel {
    padding: 1.1rem;
  }

  .intel-panel-header {
    flex-direction: column;
  }

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

  .terminal-stream__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 1rem;
  }

  .hero-visual,
  .radar-frame,
  .tool-wall,
  .ai-visual {
    min-height: 28rem;
  }

  .intel-panel {
    min-height: 28rem;
  }

  .capability-row {
    grid-template-columns: 1fr;
  }

  .cap-tags {
    justify-self: start;
    text-align: left;
  }

  .proof-header {
    justify-items: start;
    text-align: left;
  }

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

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

@media (max-width: 43.75rem) {
  .terminal-stream {
    opacity: 0.48;
  }

  .terminal-stream__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .terminal-column:nth-child(n + 2) {
    display: none;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand-tag {
    display: none;
  }

  .brand-mark {
    width: 3.2rem;
  }

  .section {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 1.6rem);
  }

  .hero-title {
    font-size: clamp(3.9rem, 18vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  h3 {
    font-size: clamp(1.7rem, 11vw, 2.8rem);
  }

  .button {
    width: 100%;
  }

  .signal-strip-inner {
    display: grid;
    gap: 0.7rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .radar-frame::before,
  .radar-frame::after,
  .ai-visual::before,
  .ai-visual::after {
    inset: 0.75rem;
  }

  .scan-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
  }

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

  .signal-band {
    left: 1rem;
    top: 1rem;
  }

  .site-footer {
    padding-inline: 1rem;
  }
}

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

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

  .terminal-stream {
    display: none;
  }
}
