:root {
  --bg: #06111c;
  --bg-deep: #03070d;
  --panel: rgba(8, 20, 33, 0.82);
  --text: #ecf5ff;
  --muted: #9db5c9;
  --line: rgba(157, 181, 201, 0.18);
  --line-strong: rgba(157, 181, 201, 0.32);
  --accent: #7cf7d4;
  --accent-strong: #29e6bb;
  --accent-soft: rgba(124, 247, 212, 0.18);
  --glow: rgba(41, 230, 187, 0.28);
  --mono: "IBM Plex Mono", monospace;
  --sans: "Space Grotesk", sans-serif;
  --content-width: 1180px;
  --header-height: 92px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 73, 116, 0.5), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(34, 138, 122, 0.25), transparent 24%),
    linear-gradient(180deg, #08131f 0%, #03070d 56%, #07121d 100%);
  overflow-x: hidden;
}

section[id],
main[id],
header[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

body::before {
  background:
    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: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 90%);
}

body::after {
  background:
    radial-gradient(circle at center, rgba(124, 247, 212, 0.06), transparent 34%),
    radial-gradient(circle at 20% 10%, rgba(41, 230, 187, 0.08), transparent 24%);
  opacity: 0.9;
}

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

button,
input,
textarea {
  font: inherit;
}

:where(a, button, input, textarea):focus-visible {
  outline: 3px solid #d8fff5;
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.85rem 1rem;
  background: #f4fff9;
  color: #041017;
  border-radius: 0.55rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  transform-origin: left;
  transform: scaleX(var(--progress, 0));
  background: linear-gradient(90deg, var(--accent-strong), #9dffe9);
  z-index: 30;
}

.site-header,
.section,
.intro-band,
.proof-band,
.site-footer {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
  padding: 1.25rem 0;
  background: linear-gradient(180deg, rgba(3, 7, 13, 0.9), rgba(3, 7, 13, 0.46));
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-lockup {
  width: clamp(188px, 23vw, 298px);
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 22px rgba(41, 230, 187, 0.12));
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.site-nav a,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.site-nav .nav-cta {
  padding: 0 1rem;
  border: 1px solid rgba(124, 247, 212, 0.26);
  border-radius: 999px;
  color: var(--text);
  background: rgba(124, 247, 212, 0.08);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: rgba(124, 247, 212, 0.44);
  background: rgba(124, 247, 212, 0.14);
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero {
  width: min(calc(100% - 48px), calc(var(--content-width) + 80px));
  min-height: calc(100svh - 24px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: 2.5rem;
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.hero h1 span {
  font-size: clamp(4.4rem, 13vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.hero h1 small {
  font-family: var(--mono);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-lead {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.3;
}

.hero-body {
  max-width: 30rem;
  margin: 1.2rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: #041017;
  background: linear-gradient(135deg, var(--accent), #b1ffef);
  box-shadow: 0 18px 35px rgba(124, 247, 212, 0.22);
}

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

.signal-list {
  display: grid;
  gap: 0.8rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.65;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.65rem;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--glow);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-theater {
  position: relative;
  width: min(100%, 640px);
  min-height: 620px;
  padding: 1.2rem 0 0;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease-out;
}

.visual-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  isolation: isolate;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease-out;
}

.hero-core-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: clamp(150px, 22vw, 220px);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.38));
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  padding: 0.9rem 1rem 0.9rem 0.2rem;
  background: linear-gradient(90deg, rgba(3, 7, 13, 0.88), rgba(3, 7, 13, 0));
}

.hero-overlay-primary {
  left: 1.25rem;
  bottom: 1.35rem;
  width: min(58%, 270px);
}

.hero-overlay-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-overlay-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.35rem;
}

.hero-overlay-brand-icon {
  width: 2rem;
  height: 2rem;
  display: block;
  flex-shrink: 0;
}

.hero-overlay .hero-overlay-subtitle {
  margin: 0.16rem 0 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 245, 255, 0.58);
}

.engagement-story h3,
.spotlight-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.15;
}

.hero-overlay-caption {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 245, 255, 0.74);
}

.visual-grid,
.halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.visual-grid {
  inset: 10%;
  background:
    radial-gradient(circle at center, rgba(124, 247, 212, 0.12), transparent 58%),
    repeating-radial-gradient(circle at center, transparent 0 46px, rgba(157, 181, 201, 0.08) 46px 47px);
  filter: blur(0.4px);
}

.halo {
  border: 1px solid rgba(124, 247, 212, 0.08);
}

.halo-one {
  transform: scale(1.08);
  background: radial-gradient(circle at 28% 30%, rgba(124, 247, 212, 0.24), transparent 18%);
  animation: halo-drift 12s ease-in-out infinite;
}

.halo-two {
  inset: 12%;
  border-color: rgba(157, 181, 201, 0.1);
  animation: halo-drift 16s ease-in-out infinite reverse;
}

.system-orbit {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  overflow: visible;
  opacity: 0.82;
  filter: drop-shadow(0 0 18px rgba(124, 247, 212, 0.06));
  animation: orbit-spin 36s linear infinite;
}

.orbit,
.connector,
.pulse,
.core-ring {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbit {
  stroke: rgba(157, 181, 201, 0.15);
  stroke-width: 1.2;
}

.connector {
  stroke: rgba(157, 181, 201, 0.24);
  stroke-width: 1.35;
}

.pulse {
  stroke: rgba(124, 247, 212, 0.72);
  stroke-width: 1.7;
  stroke-dasharray: 14 22;
}

.pulse-one {
  animation: pulse-slide 3.4s linear infinite;
}

.pulse-two {
  animation: pulse-slide 4.2s linear infinite reverse;
}

.core-ring {
  stroke: rgba(124, 247, 212, 0.5);
  stroke-width: 1.6;
}

.node {
  fill: var(--accent);
  filter: drop-shadow(0 0 10px rgba(124, 247, 212, 0.7));
}

.node-core {
  fill: #dffff6;
}

.node-minor {
  fill: rgba(124, 247, 212, 0.75);
}

.scroll-prompt {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-prompt span {
  width: 3.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.brand-stream {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.brand-stream::before,
.brand-stream::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12vw;
  pointer-events: none;
  z-index: 1;
}

.brand-stream::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 7, 13, 0.92), transparent);
}

.brand-stream::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 7, 13, 0.92), transparent);
}

.brand-stream-marquee {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.brand-stream-track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-right: 1.1rem;
}

.brand-stream-track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.brand-stream-track span::after {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1.8rem 0 0.6rem;
}

.proof-item {
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--line);
}

.proof-item span {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.intro-band {
  padding: 2.4rem 0 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 360px);
  gap: 1.8rem;
  align-items: end;
}

.intro-band p {
  max-width: 52rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.4;
}

.signal-panel {
  position: relative;
  min-height: 250px;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    rgba(7, 18, 29, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
}

.signal-panel-head,
.signal-panel-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-panel-screen {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 142px;
  margin: 1.1rem 0 1rem;
  padding: 0.8rem 0.2rem 0.2rem;
  border-top: 1px solid rgba(157, 181, 201, 0.16);
  border-bottom: 1px solid rgba(157, 181, 201, 0.16);
}

.signal-panel-screen span {
  flex: 1 1 0;
  display: block;
  min-width: 12px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(177, 255, 239, 0.95), rgba(41, 230, 187, 0.18));
  box-shadow: 0 0 22px rgba(124, 247, 212, 0.16);
  animation: signal-wave 4.6s ease-in-out infinite;
}

.signal-panel-screen span:nth-child(1) {
  height: 34%;
  animation-delay: -0.3s;
}

.signal-panel-screen span:nth-child(2) {
  height: 52%;
  animation-delay: -0.6s;
}

.signal-panel-screen span:nth-child(3) {
  height: 68%;
  animation-delay: -1.3s;
}

.signal-panel-screen span:nth-child(4) {
  height: 44%;
  animation-delay: -1.1s;
}

.signal-panel-screen span:nth-child(5) {
  height: 82%;
  animation-delay: -1.8s;
}

.signal-panel-screen span:nth-child(6) {
  height: 58%;
  animation-delay: -0.9s;
}

.signal-panel-screen span:nth-child(7) {
  height: 90%;
  animation-delay: -1.5s;
}

.signal-panel-screen span:nth-child(8) {
  height: 48%;
  animation-delay: -1.9s;
}

.signal-panel-screen span:nth-child(9) {
  height: 74%;
  animation-delay: -1.2s;
}

.signal-panel-screen span:nth-child(10) {
  height: 42%;
  animation-delay: -0.7s;
}

.signal-panel-screen span:nth-child(11) {
  height: 62%;
  animation-delay: -1.4s;
}

.signal-panel-screen span:nth-child(12) {
  height: 36%;
  animation-delay: -0.5s;
}

.signal-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(124, 247, 212, 0.18), transparent);
  mix-blend-mode: screen;
  animation: scan-sweep 4s linear infinite;
}

.spotlight-section {
  padding-top: 3rem;
}

.spotlight-heading-block {
  max-width: 58rem;
}

.spotlight-shell {
  margin-top: 2.6rem;
}

.spotlight-tablist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.spotlight-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.spotlight-tab:hover,
.spotlight-tab:focus-visible {
  color: var(--text);
  border-color: rgba(124, 247, 212, 0.36);
}

.spotlight-tab.is-active {
  color: #041017;
  background: linear-gradient(135deg, var(--accent), #b1ffef);
  border-color: transparent;
}

.spotlight-panels {
  position: relative;
}

.spotlight-panel[hidden] {
  display: none;
}

.spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 2rem 3rem;
  align-items: center;
}

.spotlight-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.spotlight-copy > p,
.spotlight-points li {
  color: var(--muted);
  line-height: 1.8;
}

.spotlight-points {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.spotlight-panel-label,
.engagement-label {
  margin: 0 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.spotlight-points li {
  position: relative;
  padding-left: 1.5rem;
}

.spotlight-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.65rem;
  height: 1px;
  background: var(--accent);
}

.spotlight-console {
  position: relative;
  min-height: 520px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease-out;
}

.console-shell {
  position: relative;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 247, 212, 0.12), transparent 18%),
    radial-gradient(circle at 80% 78%, rgba(17, 73, 116, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 20%),
    rgba(7, 18, 29, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.console-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 28px 28px;
  opacity: 0.5;
}

.console-header,
.console-module-head,
.console-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.console-header {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.console-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.console-module {
  min-height: 150px;
  padding: 0.95rem;
  border: 1px solid rgba(157, 181, 201, 0.16);
  background: rgba(2, 10, 18, 0.6);
}

.console-module-primary {
  min-height: 210px;
}

.console-lines {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.console-lines span {
  display: block;
  height: 10px;
  width: 100%;
  background: linear-gradient(90deg, rgba(124, 247, 212, 0.9), rgba(124, 247, 212, 0.12));
  animation: line-shift 5s ease-in-out infinite;
}

.console-lines span:nth-child(2) {
  width: 86%;
  animation-delay: -1s;
}

.console-lines span:nth-child(3) {
  width: 72%;
  animation-delay: -2s;
}

.console-lines span:nth-child(4) {
  width: 58%;
  animation-delay: -3s;
}

.console-bars {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  height: 90px;
  margin-top: 1.2rem;
}

.console-bars span {
  flex: 1 1 0;
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(177, 255, 239, 0.95), rgba(41, 230, 187, 0.16));
  animation: signal-wave 4.6s ease-in-out infinite;
}

.console-bars span:nth-child(1) {
  height: 52%;
}

.console-bars span:nth-child(2) {
  height: 84%;
  animation-delay: -1.2s;
}

.console-bars span:nth-child(3) {
  height: 64%;
  animation-delay: -0.8s;
}

.console-orb {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 1.1rem auto 0;
  border-radius: 50%;
  border: 1px solid rgba(124, 247, 212, 0.18);
  box-shadow:
    inset 0 0 0 18px rgba(124, 247, 212, 0.04),
    inset 0 0 0 36px rgba(124, 247, 212, 0.02),
    0 0 28px rgba(124, 247, 212, 0.08);
}

.console-orb::before,
.console-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.console-orb::before {
  inset: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  background: #dffff6;
}

.console-orb::after {
  inset: 14px;
  border: 1px dashed rgba(124, 247, 212, 0.22);
  animation: orbit-spin 18s linear infinite;
}

.console-footer {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.statement-break {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-break p {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 46rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-list {
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(190px, 230px);
  gap: 1.5rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(124, 247, 212, 0.11), transparent 65%);
  opacity: 0;
  transform: translateX(-10%);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.service-row:hover::before,
.service-row:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

.service-row > * {
  position: relative;
  z-index: 1;
}

.service-index {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  color: var(--accent);
}

.service-content h3,
.process-step h3 {
  margin: 0;
  font-size: 1.42rem;
}

.service-content p,
.service-meta,
.standard-item p,
.process-step p,
.contact-copy p,
.site-footer p,
.form-status,
label {
  color: var(--muted);
}

.service-content p,
.standard-item p,
.process-step p,
.contact-copy p,
.contact-points li,
.site-footer p {
  line-height: 1.8;
}

.service-meta {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.topology-section {
  padding-top: 1.25rem;
}

.topology-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 2rem 3rem;
  align-items: center;
  margin-top: 3rem;
}

.topology-board {
  position: relative;
  min-height: 520px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 247, 212, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    rgba(6, 17, 28, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 220ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.topology-board:hover,
.topology-board:focus-within {
  border-color: rgba(124, 247, 212, 0.3);
}

.board-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(12px);
}

.board-glow-a {
  inset: 8% auto auto 4%;
  width: 220px;
  height: 220px;
  background: rgba(41, 230, 187, 0.18);
}

.board-glow-b {
  inset: auto 4% 8% auto;
  width: 180px;
  height: 180px;
  background: rgba(17, 73, 116, 0.28);
}

.topology-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 23 / 14;
}

.topology-frame,
.topology-sector,
.topology-link,
.topology-trace,
.topology-core {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topology-frame {
  stroke: rgba(157, 181, 201, 0.24);
  stroke-width: 2;
}

.topology-sector {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(157, 181, 201, 0.15);
  stroke-width: 1.5;
}

.topology-core {
  stroke: rgba(124, 247, 212, 0.34);
  stroke-width: 2;
}

.topology-link {
  stroke: rgba(157, 181, 201, 0.34);
  stroke-width: 2.2;
}

.topology-link-strong {
  stroke: rgba(124, 247, 212, 0.62);
}

.topology-trace {
  stroke: rgba(124, 247, 212, 0.86);
  stroke-width: 2.4;
  stroke-dasharray: 16 18;
  animation: trace-run 6s linear infinite;
}

.topology-trace-delay {
  animation-delay: -2.2s;
}

.topology-node,
.topology-node-core {
  fill: var(--accent);
  filter: drop-shadow(0 0 10px rgba(124, 247, 212, 0.5));
}

.topology-node-core {
  fill: #dffff6;
}

.topology-node-minor {
  fill: rgba(124, 247, 212, 0.75);
}

.board-tag {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(157, 181, 201, 0.18);
  background: rgba(3, 7, 13, 0.72);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.board-tag-a {
  top: 1.4rem;
  left: 1.4rem;
}

.board-tag-b {
  top: 1.4rem;
  right: 1.4rem;
}

.board-tag-c {
  bottom: 1.4rem;
  left: 1.4rem;
}

.board-tag-d {
  bottom: 1.4rem;
  right: 1.4rem;
}

.topology-copy p,
.topology-points li {
  color: var(--muted);
  line-height: 1.8;
}

.topology-points {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.topology-points li {
  position: relative;
  padding-left: 1.5rem;
}

.topology-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.65rem;
  height: 1px;
  background: var(--accent);
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem 3.2rem;
  align-items: start;
}

.ai-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.ai-copy > p {
  max-width: 35rem;
  color: var(--muted);
  line-height: 1.8;
}

.ai-focus-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.ai-focus-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.8;
}

.ai-focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.65rem;
  height: 1px;
  background: var(--accent);
}

.ai-visual {
  position: relative;
  min-height: 320px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%),
    rgba(7, 18, 29, 0.78);
  overflow: hidden;
}

.ai-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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: 30px 30px;
}

.ai-ring,
.ai-node {
  position: absolute;
  border-radius: 50%;
}

.ai-ring {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(124, 247, 212, 0.16);
}

.ai-ring-outer {
  width: 220px;
  height: 220px;
}

.ai-ring-middle {
  width: 150px;
  height: 150px;
}

.ai-ring-inner {
  width: 86px;
  height: 86px;
  background: radial-gradient(circle, rgba(124, 247, 212, 0.1), transparent 72%);
}

.ai-node {
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(124, 247, 212, 0.36);
}

.ai-node-core {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: #dffff6;
}

.ai-node-a {
  top: calc(50% - 110px);
  left: calc(50% - 7px);
}

.ai-node-b {
  top: calc(50% - 7px);
  right: calc(50% - 110px);
}

.ai-node-c {
  bottom: calc(50% - 110px);
  left: calc(50% - 7px);
}

.ai-node-d {
  top: calc(50% - 7px);
  left: calc(50% - 110px);
}

.ai-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.ai-label-a {
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.ai-label-b {
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.ai-label-c {
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.ai-label-d {
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

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

.ai-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.ai-index {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.ai-row h3 {
  margin: 0;
  font-size: 1.32rem;
}

.ai-row p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.engagement-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 2rem 2.4rem;
  margin-top: 2.8rem;
  align-items: start;
}

.engagement-story {
  min-height: 100%;
  padding: 1.3rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    rgba(7, 18, 29, 0.78);
  box-shadow: var(--shadow);
}

.engagement-story p:last-child,
.engagement-card p {
  color: var(--muted);
  line-height: 1.8;
}

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

.engagement-card {
  min-height: 200px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    rgba(8, 20, 33, 0.52);
  box-shadow: var(--shadow);
}

.engagement-card span {
  display: inline-block;
  margin-bottom: 3.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem 4rem;
  margin-top: 3rem;
  align-items: start;
}

.standards-quote {
  padding: 0.4rem 0 0;
}

.standards-quote p {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.standards-schematic {
  position: relative;
  min-height: 220px;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    rgba(8, 20, 33, 0.55);
  overflow: hidden;
}

.standards-schematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.schematic-rings {
  position: absolute;
  inset: 12% auto auto 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(124, 247, 212, 0.16);
  box-shadow:
    inset 0 0 0 28px rgba(124, 247, 212, 0.03),
    inset 0 0 0 56px rgba(124, 247, 212, 0.02);
}

.schematic-grid {
  position: absolute;
  inset: auto 1rem 1.2rem auto;
  width: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.schematic-grid span {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, rgba(124, 247, 212, 0.12) 65%, transparent 72%);
  opacity: 0.82;
  animation: node-pulse 3.8s ease-in-out infinite;
}

.schematic-grid span:nth-child(2),
.schematic-grid span:nth-child(5),
.schematic-grid span:nth-child(8) {
  animation-delay: -1.2s;
}

.schematic-grid span:nth-child(3),
.schematic-grid span:nth-child(6),
.schematic-grid span:nth-child(9) {
  animation-delay: -2.3s;
}

.schematic-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.standard-item {
  display: grid;
  gap: 0.7rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.standard-item span {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.2rem;
}

.process-rail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 247, 212, 0.55), rgba(157, 181, 201, 0.16));
}

.process-rail span {
  position: relative;
  padding-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.process-rail span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(124, 247, 212, 0.28);
}

.process-step {
  position: relative;
  min-height: 300px;
  padding: 1.6rem 1.35rem 1.5rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(8, 20, 33, 0.5);
  box-shadow: var(--shadow);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 54px;
  height: 54px;
  border-top: 1px solid rgba(124, 247, 212, 0.22);
  border-right: 1px solid rgba(124, 247, 212, 0.22);
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.process-step:hover::after,
.process-step:focus-within::after {
  transform: scaleX(1);
}

.step-number {
  display: inline-block;
  margin-bottom: 4.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.88fr);
  gap: 2rem 3.2rem;
  align-items: start;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.launch-option {
  display: grid;
  gap: 1rem;
  min-height: 280px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(124, 247, 212, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%),
    rgba(7, 18, 29, 0.78);
  box-shadow: var(--shadow);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.launch-option:hover,
.launch-option:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(124, 247, 212, 0.42);
}

.launch-option-index {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.launch-option h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.12;
}

.launch-option p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.launch-option strong {
  align-self: end;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.contact-copy > p {
  max-width: 34rem;
}

.contact-points {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.4rem;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.55rem;
  height: 1px;
  background: var(--accent);
}

.contact-flow {
  display: grid;
  gap: 0.2rem;
  margin-top: 2.1rem;
  border-top: 1px solid var(--line);
}

.contact-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(157, 181, 201, 0.12);
}

.contact-step span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-form {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-form::before,
.contact-form::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-form::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.38;
}

.contact-form::after {
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 247, 212, 0.2), transparent 65%);
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-intro {
  margin-bottom: 1.25rem;
}

.form-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

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

.form-row label {
  margin-bottom: 0;
}

.contact-form label {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(2, 10, 18, 0.8);
  color: var(--text);
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #dffcf5 50%),
    linear-gradient(135deg, #dffcf5 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  resize: none;
}

.contact-form option {
  color: #041017;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c8d8e6;
  opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(124, 247, 212, 0.5);
  border-color: rgba(124, 247, 212, 0.48);
}

.contact-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-actions {
  display: grid;
  gap: 0.85rem;
}

.form-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.brief-preview {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(124, 247, 212, 0.14);
  background: rgba(2, 10, 18, 0.72);
}

.brief-preview-title {
  margin: 0 0 0.7rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.brief-preview pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.8;
  color: #dffcf5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem 3rem;
  padding: 1.4rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-brand-name {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand-lockup {
  display: block;
  width: min(100%, 212px);
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand-block {
  display: grid;
  justify-items: start;
}

.footer-brand-copy {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.8;
}

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

.footer-column h2 {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-column li,
.footer-column p {
  color: var(--muted);
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes halo-drift {
  0%,
  100% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.12) translate3d(0, -10px, 0);
  }
}

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

@keyframes pulse-slide {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.6rem));
  }
}

@keyframes signal-wave {
  0%,
  100% {
    transform: scaleY(0.92);
    opacity: 0.84;
  }
  50% {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

@keyframes line-shift {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.92);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes scan-sweep {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(140%);
  }
}

@keyframes trace-run {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -68;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .intro-band,
  .proof-band,
  .spotlight-layout,
  .topology-layout,
  .ai-layout,
  .engagement-layout,
  .standards-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .launch-grid,
  .spotlight-tablist,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .topology-board {
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .section,
  .intro-band,
  .proof-band,
  .site-footer,
  .hero {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .site-header {
    flex-wrap: wrap;
    align-items: center;
    padding-top: 1rem;
  }

  .brand-lockup {
    width: clamp(176px, 46vw, 250px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.9rem 0 0.2rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero h1 span {
    font-size: clamp(3.4rem, 18vw, 6rem);
  }

  .hero-theater {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .hero-overlay {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-core-logo {
    width: clamp(130px, 34vw, 180px);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .engagement-grid,
  .launch-grid,
  .spotlight-tablist,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .process-rail,
  .process-track {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }

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

  .board-tag {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 560px) {
  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text span,
  .site-nav a,
  .menu-toggle,
  .button,
  .eyebrow,
  .service-index,
  .service-meta,
  .standard-item span,
  .step-number,
  .scroll-prompt,
  .contact-form label {
    letter-spacing: 0.14em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .scroll-prompt {
    gap: 0.7rem;
  }

  .scroll-prompt span {
    width: 2.4rem;
  }

  .signal-panel {
    min-height: 220px;
  }

  .brand-stream-track span {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .spotlight-console {
    min-height: 440px;
  }

  .statement-break p {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .topology-board {
    min-height: 380px;
    padding: 0.75rem;
  }

  .board-tag {
    padding: 0.45rem 0.55rem;
  }

  .ai-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .contact-step {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .ai-label {
    font-size: 0.6rem;
  }

  .engagement-card {
    min-height: 0;
  }

  .contact-form {
    padding: 1rem;
  }
}

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

  .brand-stream-marquee,
  .system-orbit,
  .pulse-one,
  .pulse-two,
  .halo-one,
  .halo-two,
  .topology-trace,
  .topology-trace-delay,
  .schematic-grid span,
  .console-lines span,
  .console-bars span,
  .console-orb::after,
  .signal-panel-screen span,
  .signal-scan {
    animation: none !important;
  }

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

  .visual-stage,
  .topology-board,
  .spotlight-console {
    transform: none !important;
  }

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