:root {
  color-scheme: dark;
  --bg: #05070b;
  --bg-strong: #020306;
  --panel: rgba(9, 16, 26, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f5f8fb;
  --muted: #a7b1bf;
  --soft: #667284;
  --cyan: #2ee8ff;
  --cyan-soft: rgba(46, 232, 255, 0.18);
  --red: #e32636;
  --red-soft: rgba(227, 38, 54, 0.18);
  --green: #72f0b1;
  --amber: #ffc857;
  --header-h: 74px;
  --tf-logo-ratio: 485.52 / 223.55;
  --tf-logo-width: 120px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 10%, rgba(227, 38, 54, 0.16), transparent 30rem),
    radial-gradient(circle at 20% 45%, rgba(46, 232, 255, 0.13), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family:
    "Helvetica Neue LT Std", "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 80%);
}

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

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

svg {
  display: block;
}

.data-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.dna-signature {
  position: fixed;
  left: clamp(16px, 3vw, 30px);
  bottom: clamp(14px, 2.4vw, 24px);
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  max-width: calc(100vw - 32px);
  padding: 5px 10px 5px 6px;
  overflow: hidden;
  border: 1px solid rgba(227, 38, 54, 0.2);
  border-left-color: rgba(227, 38, 54, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(227, 38, 54, 0.1), rgba(255, 255, 255, 0.035) 42%, rgba(227, 38, 54, 0.045)),
    rgba(4, 9, 15, 0.72);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.26),
    inset 0 0 22px rgba(227, 38, 54, 0.05);
  pointer-events: none;
  backdrop-filter: blur(14px);
}

.dna-signature::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(227, 38, 54, 0.22), transparent);
  opacity: 0.55;
  transform: translateX(-120%);
  animation: dnaSignalSweep 6.4s var(--ease) infinite;
}

.dna-signature::after {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 35px;
  width: 1px;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(227, 38, 54, 0.36), transparent);
}

.dna-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
}

.dna-mark::before,
.dna-mark::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(227, 38, 54, 0.32);
  border-radius: 50%;
}

.dna-mark::before {
  inset: 3px;
  transform: rotateX(62deg) rotateZ(-18deg);
}

.dna-mark::after {
  inset: 6px 1px;
  border-color: rgba(245, 248, 251, 0.22);
  transform: rotateX(62deg) rotateZ(58deg);
}

.dna-core {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(227, 38, 54, 0.84);
  animation: dnaCorePulse 2.8s ease-in-out infinite;
}

.dna-orbit {
  position: absolute;
  inset: 0;
  animation: dnaOrbit 4.8s linear infinite;
}

.dna-orbit::before {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 11px rgba(227, 38, 54, 0.85);
}

.dna-copy {
  position: relative;
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1;
}

.dna-copy span {
  color: rgba(167, 177, 191, 0.78);
  font-size: 0.75rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dna-copy strong {
  color: rgba(245, 248, 251, 0.92);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.atlas-legal-note {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 2.4vw, 24px);
  z-index: 18;
  max-width: min(560px, calc(100vw - 320px));
  margin: 0;
  color: rgba(167, 177, 191, 0.78);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
  pointer-events: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.72);
}

.atlas-courier {
  --courier-walk: -270px;
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  width: min(430px, calc(100vw - 32px));
  height: 238px;
  pointer-events: none;
}

.courier-link {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--text);
  pointer-events: none;
}

.courier-dock {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(46, 232, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 232, 255, 0.12), rgba(227, 38, 54, 0.14)),
    rgba(4, 10, 17, 0.9);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(46, 232, 255, 0.18);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.courier-dock::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(46, 232, 255, 0.18);
  border-radius: 12px;
  animation: dockPulse 4.2s ease-in-out infinite;
}

.courier-dock svg {
  width: 27px;
  height: 27px;
  color: var(--cyan);
}

.dock-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 24px rgba(227, 38, 54, 0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.courier-bot {
  position: absolute;
  right: 14px;
  bottom: 38px;
  width: 86px;
  height: 112px;
  transform-origin: 50% 100%;
  animation: courierWalk 13s var(--ease) 1.2s infinite;
  pointer-events: auto;
}

.bot-head,
.bot-body,
.bot-arm,
.bot-leg,
.courier-envelope {
  position: absolute;
  display: block;
}

.bot-antenna {
  position: absolute;
  top: 2px;
  left: 41px;
  width: 2px;
  height: 14px;
  background: rgba(46, 232, 255, 0.72);
  box-shadow: 0 -4px 12px rgba(46, 232, 255, 0.8);
}

.bot-antenna::before {
  position: absolute;
  top: -6px;
  left: -4px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(46, 232, 255, 0.9);
}

.bot-head {
  top: 15px;
  left: 18px;
  width: 50px;
  height: 38px;
  border: 1px solid rgba(46, 232, 255, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(46, 232, 255, 0.2), rgba(255, 255, 255, 0.06)),
    #071722;
  box-shadow: 0 0 28px rgba(46, 232, 255, 0.24);
}

.bot-eye {
  position: absolute;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #eaffff;
  box-shadow: 0 0 12px rgba(46, 232, 255, 0.85);
  animation: botBlink 4.6s ease-in-out infinite;
}

.bot-eye:first-child {
  left: 14px;
}

.bot-eye:last-child {
  right: 14px;
}

.bot-body {
  top: 58px;
  left: 23px;
  width: 40px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(227, 38, 54, 0.18), rgba(46, 232, 255, 0.14)),
    rgba(5, 12, 20, 0.94);
}

.bot-core {
  position: absolute;
  inset: 13px;
  display: block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(114, 240, 177, 0.8);
}

.bot-arm {
  top: 63px;
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: rgba(46, 232, 255, 0.42);
}

.bot-arm-left {
  left: 7px;
  transform-origin: 100% 50%;
  animation: botArmLeft 13s var(--ease) 1.2s infinite;
}

.bot-arm-right {
  right: 8px;
  transform-origin: 0 50%;
  animation: botArmRight 13s var(--ease) 1.2s infinite;
}

.bot-leg {
  bottom: 0;
  width: 12px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transform-origin: 50% 0;
  animation: botStep 0.52s ease-in-out infinite;
}

.bot-leg-left {
  left: 28px;
}

.bot-leg-right {
  right: 28px;
  animation-delay: 260ms;
}

.courier-envelope {
  right: 0;
  top: 55px;
  width: 36px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(185, 243, 255, 0.78));
  box-shadow:
    0 0 26px rgba(46, 232, 255, 0.42),
    inset 0 -12px 0 rgba(46, 232, 255, 0.14);
  animation: envelopeGlow 13s var(--ease) 1.2s infinite;
}

.envelope-flap {
  position: absolute;
  left: 2px;
  top: 1px;
  width: 30px;
  height: 18px;
  clip-path: polygon(0 0, 50% 65%, 100% 0);
  background: rgba(227, 38, 54, 0.28);
  transform-origin: 50% 0;
  animation: envelopeOpen 13s var(--ease) 1.2s infinite;
}

.launch-letter {
  position: absolute;
  right: 96px;
  bottom: 106px;
  display: grid;
  width: min(300px, calc(100vw - 126px));
  gap: 8px;
  padding: 17px 18px;
  border: 1px solid rgba(46, 232, 255, 0.32);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 232, 255, 0.12), rgba(114, 240, 177, 0.08)),
    rgba(4, 10, 17, 0.94);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.48),
    0 0 36px rgba(46, 232, 255, 0.16);
  opacity: 0;
  transform: translate(24px, 16px) scale(0.92);
  backdrop-filter: blur(18px);
  animation: launchLetter 13s var(--ease) 1.2s infinite;
  pointer-events: auto;
}

.launch-letter::before {
  position: absolute;
  right: -9px;
  bottom: 22px;
  width: 16px;
  height: 16px;
  content: "";
  border-right: 1px solid rgba(46, 232, 255, 0.32);
  border-bottom: 1px solid rgba(46, 232, 255, 0.32);
  background: rgba(4, 10, 17, 0.94);
  transform: rotate(-45deg);
}

.letter-kicker {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.launch-letter strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.launch-letter span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: linear-gradient(to bottom, rgba(2, 3, 6, 0.78), rgba(2, 3, 6, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  min-height: 48px;
}

.brand-logo {
  display: block;
  width: var(--tf-logo-width);
  height: auto;
  aspect-ratio: var(--tf-logo-ratio);
  flex: 0 0 auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.top-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 220ms ease, background 220ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.account-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-badge {
  display: inline-flex;
  min-width: 190px;
  max-width: min(320px, 32vw);
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(46, 232, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 232, 255, 0.11), rgba(114, 240, 177, 0.09)),
    rgba(5, 13, 21, 0.74);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 0 28px rgba(46, 232, 255, 0.055);
  backdrop-filter: blur(16px);
}

.account-badge:hover,
.account-badge:focus-visible {
  border-color: rgba(114, 240, 177, 0.42);
  box-shadow:
    0 18px 54px rgba(46, 232, 255, 0.14),
    inset 0 0 28px rgba(46, 232, 255, 0.08);
}

.account-symbol {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(114, 240, 177, 0.36);
  border-radius: 8px;
  background: rgba(114, 240, 177, 0.12);
  color: var(--green);
}

.account-symbol::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(46, 232, 255, 0.16);
  border-radius: 12px;
  animation: dockPulse 4.4s ease-in-out infinite;
}

.account-symbol svg {
  width: 18px;
  height: 18px;
}

.account-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.account-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.account-copy strong {
  overflow: hidden;
  color: #f5fbff;
  font-size: 0.88rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logout-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(227, 38, 54, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(227, 38, 54, 0.14), rgba(46, 232, 255, 0.06)),
    rgba(5, 13, 21, 0.72);
  color: #ffdce1;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.logout-button:hover,
.logout-button:focus-visible {
  border-color: rgba(227, 38, 54, 0.62);
  box-shadow: 0 18px 50px rgba(227, 38, 54, 0.18);
  transform: translateY(-2px);
}

.logout-button svg {
  width: 18px;
  height: 18px;
}

.logout-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.header-action {
  justify-self: end;
  padding: 0 14px;
  background: rgba(227, 38, 54, 0.15);
  border: 1px solid rgba(227, 38, 54, 0.44);
  color: #fff;
}

.header-action svg,
.primary-action svg,
.secondary-action svg {
  width: 18px;
  height: 18px;
}

.header-action:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  padding:
    calc(var(--header-h) + clamp(28px, 6vw, 74px))
    clamp(18px, 4vw, 56px)
    clamp(48px, 8vw, 88px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -4;
  opacity: 0.78;
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.93) 0%, rgba(2, 3, 6, 0.72) 34%, rgba(2, 3, 6, 0.3) 68%, rgba(2, 3, 6, 0.82) 100%),
    linear-gradient(to bottom, rgba(2, 3, 6, 0.15), var(--bg) 100%);
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(46, 232, 255, 0.12), transparent);
  mix-blend-mode: screen;
  animation: scan 7s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 580px);
  max-width: 580px;
  min-width: 0;
  padding-top: 10px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 36px rgba(46, 232, 255, 0.22),
    0 24px 80px rgba(0, 0, 0, 0.65);
}

.hero-lede {
  max-width: 500px;
  margin: 28px 0 0;
  color: #dbe4ee;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--red), #ff4b5c);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 46px rgba(227, 38, 54, 0.28);
}

.secondary-action {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #eaf2fb;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.875rem;
}

.map-stage {
  position: relative;
  z-index: 3;
  justify-self: stretch;
  width: min(100%, 780px);
  min-width: 0;
  aspect-ratio: 1.38;
  min-height: 420px;
  border-radius: 8px;
  transform-style: preserve-3d;
  animation: floatStage 7s ease-in-out infinite;
}

.map-stage::before {
  position: absolute;
  inset: 11% 2% 4% 0;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(46, 232, 255, 0.18), transparent 38%),
    radial-gradient(ellipse at 62% 52%, rgba(227, 38, 54, 0.18), transparent 48%);
  filter: blur(8px);
  transform: rotateX(67deg) rotateZ(-8deg);
}

.map-stage::after {
  position: absolute;
  inset: 10% 3% 6%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(110deg, transparent 0 20%, rgba(46, 232, 255, 0.12) 20.3% 20.7%, transparent 21% 42%, rgba(227, 38, 54, 0.12) 42.3% 42.7%, transparent 43%),
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 48px);
  opacity: 0.76;
  transform: perspective(780px) rotateX(62deg) rotateZ(-7deg);
  box-shadow:
    0 0 90px rgba(46, 232, 255, 0.18),
    inset 0 0 80px rgba(46, 232, 255, 0.12);
}

.route-layer {
  position: absolute;
  inset: 4% 2% 5%;
  z-index: 2;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(46, 232, 255, 0.35));
}

.route {
  fill: none;
  stroke: rgba(46, 232, 255, 0.86);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-dasharray: 12 18;
  animation: routeDash 3.4s linear infinite;
}

.route-b {
  stroke: rgba(227, 38, 54, 0.84);
  animation-duration: 4.2s;
}

.route-c {
  stroke: rgba(114, 240, 177, 0.72);
  animation-duration: 5s;
}

.route-d {
  stroke: rgba(255, 200, 87, 0.72);
  animation-duration: 4.6s;
}

.automation-track {
  position: absolute;
  z-index: 3;
  left: 14%;
  top: 50%;
  width: 70%;
  height: 2px;
  transform: rotate(-14deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.track-two {
  left: 26%;
  top: 70%;
  width: 58%;
  transform: rotate(9deg);
}

.runner {
  position: absolute;
  top: -8px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--cyan);
  box-shadow:
    0 0 22px rgba(46, 232, 255, 0.95),
    0 0 0 5px rgba(46, 232, 255, 0.12);
  animation: botRun 4.8s var(--ease) infinite;
}

.runner::before,
.runner::after {
  position: absolute;
  top: 6px;
  width: 6px;
  height: 2px;
  content: "";
  background: #fff;
  opacity: 0.8;
}

.runner::before {
  left: 4px;
}

.runner::after {
  right: 4px;
}

.runner-alt {
  background: var(--red);
  box-shadow:
    0 0 22px rgba(227, 38, 54, 0.95),
    0 0 0 5px rgba(227, 38, 54, 0.14);
  animation-delay: -1.8s;
}

.map-node {
  position: absolute;
  z-index: 6;
  left: var(--x);
  top: var(--y);
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 64px;
  min-width: 172px;
  max-width: 210px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(4, 10, 17, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.map-node:hover,
.map-node:focus-visible {
  border-color: rgba(46, 232, 255, 0.72);
  background: rgba(6, 20, 31, 0.9);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(46, 232, 255, 0.24);
  transform: translate(-50%, -58%) scale(1.04);
}

.report-node {
  min-width: 190px;
  max-width: 220px;
  border-color: rgba(227, 38, 54, 0.58);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 36px rgba(227, 38, 54, 0.18);
}

.adoption-node {
  min-width: 206px;
  max-width: 236px;
  border-color: rgba(114, 240, 177, 0.38);
}

.map-node strong {
  display: block;
  overflow-wrap: normal;
  font-size: 0.88rem;
  line-height: 1.1;
}

.map-node small {
  display: none;
}

.compact-node {
  min-width: 156px;
}

.compact-node strong {
  white-space: nowrap;
}

.tender-node {
  min-width: 178px;
}

.tender-node strong {
  white-space: normal;
}

.node-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: rgba(46, 232, 255, 0.12);
  color: var(--cyan);
}

.report-node .node-icon {
  background: rgba(227, 38, 54, 0.16);
  color: #ff6c78;
}

.adoption-node .node-icon {
  background: rgba(114, 240, 177, 0.14);
  color: var(--green);
}

.node-icon svg {
  width: 20px;
  height: 20px;
}

.node-ring {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(46, 232, 255, 0.18);
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 240ms ease, transform 240ms var(--ease);
}

.map-node:hover .node-ring,
.map-node:focus-visible .node-ring {
  opacity: 1;
  transform: scale(1);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 6;
  display: grid;
  width: 34px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 10px;
  border-radius: 10px;
  background: var(--cyan);
  animation: scrollDot 1.7s ease-in-out infinite;
}

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

.mission,
.systems,
.adoption,
.command-flow,
.governed {
  position: relative;
  padding: clamp(76px, 10vw, 128px) 0;
}

.mission {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, var(--bg), #071019);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.1fr 0.58fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.mission h2,
.section-heading h2,
.flow-layout h2,
.governed h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.mission p:last-child,
.flow-layout p,
.governed p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.adoption {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(114, 240, 177, 0.13), transparent 26rem),
    radial-gradient(circle at 28% 58%, rgba(46, 232, 255, 0.1), transparent 30rem),
    #071019;
}

.adoption-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.adoption-points {
  display: grid;
  gap: 14px;
}

.adoption-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-left: 3px solid var(--green);
  background: linear-gradient(90deg, rgba(114, 240, 177, 0.13), rgba(255, 255, 255, 0.035));
  color: #dceee8;
  font-weight: 760;
}

.section-anchor {
  position: absolute;
  top: calc(var(--header-h) * -1);
}

.systems {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #05080d;
  background-size: 72px 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 720px;
}

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

.system-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.system-row:hover,
.system-row:focus-visible {
  background: linear-gradient(90deg, rgba(46, 232, 255, 0.07), transparent 70%);
  border-color: var(--line-strong);
  transform: translateX(8px);
}

.system-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cyan);
}

.system-row:nth-child(1) .system-icon {
  color: #ff6674;
}

.system-row:nth-child(2) .system-icon {
  color: var(--cyan);
}

.system-row:nth-child(3) .system-icon {
  color: var(--green);
}

.system-row:nth-child(4) .system-icon {
  color: var(--amber);
}

.system-row:nth-child(5) .system-icon {
  color: #9ed4ff;
}

.system-row strong {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.system-row small {
  display: block;
  max-width: 760px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.system-row > svg {
  color: var(--soft);
  transition: color 220ms ease, transform 220ms var(--ease);
}

.system-row:hover > svg,
.system-row:focus-visible > svg {
  color: var(--cyan);
  transform: translate(4px, -4px);
}

.command-flow {
  overflow: hidden;
  background: linear-gradient(145deg, #06090f 0%, #091421 48%, #040507 100%);
}

.command-flow::before {
  position: absolute;
  inset: 8% 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(46, 232, 255, 0.45), rgba(227, 38, 54, 0.4), transparent);
  animation: shimmer 5s linear infinite;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.flow-layout p {
  max-width: 430px;
  margin-top: 24px;
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rail-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber), var(--red));
  opacity: 0.64;
}

.flow-step {
  position: relative;
  min-height: 190px;
  padding-top: 72px;
}

.flow-step svg {
  position: absolute;
  top: 10px;
  left: 0;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cyan);
  box-shadow: 0 0 0 8px rgba(5, 7, 11, 0.88);
}

.flow-step:nth-child(4) svg {
  color: var(--green);
}

.flow-step:nth-child(5) svg {
  color: var(--red);
}

.flow-step strong {
  display: block;
  font-size: 1.04rem;
}

.flow-step small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.governed {
  overflow: hidden;
  background: #05070b;
}

.adoption-launch {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 22% 48%, rgba(46, 232, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 70% 18%, rgba(114, 240, 177, 0.1), transparent 26rem),
    linear-gradient(145deg, #030509 0%, #071019 52%, #030407 100%);
}

.governed-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.governed-visual {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
}

.launch-copy {
  max-width: 660px;
  margin-top: 24px !important;
}

.launch-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 30px;
}

.governed-visual .core,
.orbit {
  position: absolute;
  border-radius: 50%;
}

.governed-visual .core {
  inset: 35%;
  background:
    radial-gradient(circle, #fff 0 5%, var(--cyan) 7% 34%, rgba(46, 232, 255, 0.12) 35% 100%);
  box-shadow:
    0 0 70px rgba(46, 232, 255, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.orbit {
  inset: var(--orbit-inset);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotateX(68deg) rotateZ(0);
  animation: orbitTurn var(--duration) linear infinite;
}

.orbit::before {
  position: absolute;
  top: 13%;
  left: 18%;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--color);
  box-shadow: 0 0 22px var(--color);
}

.orbit-one {
  --orbit-inset: 13%;
  --duration: 10s;
  --color: var(--red);
}

.orbit-two {
  --orbit-inset: 24%;
  --duration: 7s;
  --color: var(--green);
}

.orbit-three {
  --orbit-inset: 4%;
  --duration: 14s;
  --color: var(--amber);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--cyan);
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  transition: transform 220ms var(--ease);
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(5px);
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  animation: enter 900ms var(--ease) forwards;
}

.map-stage[data-animate] {
  animation:
    enter 900ms var(--ease) 180ms forwards,
    floatStage 7s ease-in-out 1s infinite;
}

.site-header[data-animate] {
  transform: translateY(-12px);
  animation-delay: 100ms;
}

.report-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 75% 20%, rgba(227, 38, 54, 0.17), transparent 28rem),
    radial-gradient(circle at 28% 50%, rgba(46, 232, 255, 0.16), transparent 36rem),
    var(--bg);
}

.report-main {
  min-height: 100svh;
  padding: calc(var(--header-h) + 68px) clamp(18px, 4vw, 56px) 56px;
  display: grid;
  align-items: center;
}

.report-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.report-title {
  max-width: 780px;
}

.report-title h1 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.report-title p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.55;
}

.report-console {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 13, 21, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-metric {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.report-metric:last-child {
  border-right: 0;
}

.report-metric strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.report-metric span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.sso-page,
.admin-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 72% 16%, rgba(227, 38, 54, 0.16), transparent 30rem),
    radial-gradient(circle at 24% 48%, rgba(46, 232, 255, 0.16), transparent 34rem),
    var(--bg);
}

.sso-main,
.admin-main {
  min-height: 100svh;
  padding: calc(var(--header-h) + 42px) clamp(18px, 4vw, 56px) 54px;
}

.sso-main {
  padding-top: calc(var(--header-h) + 24px);
}

.sso-hero {
  width: min(100%, 1220px);
  min-height: calc(100svh - var(--header-h) - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}

.sso-copy {
  max-width: 610px;
}

.sso-copy h1,
.admin-heading h1 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.sso-copy h1 {
  max-width: 620px;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
}

.sso-copy p,
.admin-heading p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.6;
}

.sso-copy p {
  max-width: 560px;
  margin-top: 18px;
}

.sso-welcome-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sso-welcome-line span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(46, 232, 255, 0.22);
  border-radius: 999px;
  background: rgba(46, 232, 255, 0.075);
  color: #ddf9ff;
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.sso-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.sso-status-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #dbeaf3;
  font-size: 0.84rem;
  font-weight: 760;
}

.sso-status-strip svg {
  width: 17px;
  color: var(--green);
}

.sso-button.is-authenticating {
  background: linear-gradient(135deg, #15a873, var(--green));
  box-shadow: 0 18px 46px rgba(114, 240, 177, 0.22);
}

.sso-scene {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.solar-map {
  position: absolute;
  inset: 5% 0 0;
  transform: perspective(900px) rotateX(58deg) rotateZ(-12deg);
}

.solar-core,
.solar-ring,
.route-beam {
  position: absolute;
  display: block;
}

.solar-core {
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 6%, var(--cyan) 8% 38%, rgba(46, 232, 255, 0.12) 40% 100%);
  box-shadow:
    0 0 82px rgba(46, 232, 255, 0.55),
    0 0 160px rgba(46, 232, 255, 0.2);
  transform: translate(-50%, -50%);
}

.solar-ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: solarSpin var(--spin-time) linear infinite;
}

.solar-ring::before {
  position: absolute;
  top: 16%;
  left: 14%;
  width: 15px;
  height: 15px;
  content: "";
  border-radius: 50%;
  background: var(--planet-color);
  box-shadow: 0 0 24px var(--planet-color);
}

.ring-one {
  --spin-time: 8s;
  --planet-color: var(--red);
  width: 260px;
  height: 120px;
}

.ring-two {
  --spin-time: 11s;
  --planet-color: var(--green);
  width: 440px;
  height: 205px;
}

.ring-three {
  --spin-time: 15s;
  --planet-color: var(--amber);
  width: 620px;
  height: 290px;
}

.route-beam {
  left: 15%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46, 232, 255, 0.7), transparent);
  box-shadow: 0 0 20px rgba(46, 232, 255, 0.45);
}

.beam-one {
  top: 42%;
  transform: rotate(-11deg);
  animation: beamTravel 4.6s linear infinite;
}

.beam-two {
  top: 57%;
  transform: rotate(9deg);
  animation: beamTravel 5.6s linear infinite reverse;
}

.beam-three {
  top: 68%;
  transform: rotate(-23deg);
  animation: beamTravel 6.2s linear infinite;
}

.login-robot {
  position: absolute;
  left: 46%;
  bottom: 10%;
  width: 144px;
  height: 184px;
  transform-origin: 50% 100%;
  animation: loginRobotPath 10s var(--ease) infinite;
}

.sleep-bubble {
  position: absolute;
  top: 0;
  right: 16px;
  color: var(--cyan);
  font-size: 1.4rem;
  font-weight: 900;
  opacity: 0;
  text-shadow: 0 0 18px rgba(46, 232, 255, 0.8);
  animation: sleepSignal 10s ease-in-out infinite;
}

.login-bot-antenna {
  position: absolute;
  top: 23px;
  left: 70px;
  width: 3px;
  height: 22px;
  background: rgba(46, 232, 255, 0.8);
}

.login-bot-antenna::before {
  position: absolute;
  top: -9px;
  left: -6px;
  width: 15px;
  height: 15px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(46, 232, 255, 0.9);
}

.login-bot-head,
.login-bot-body,
.login-bot-arm,
.login-bot-leg {
  position: absolute;
  display: block;
}

.login-bot-head {
  top: 48px;
  left: 31px;
  width: 82px;
  height: 58px;
  border: 1px solid rgba(46, 232, 255, 0.38);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(46, 232, 255, 0.2), rgba(255, 255, 255, 0.055)),
    #071722;
  box-shadow:
    0 0 38px rgba(46, 232, 255, 0.25),
    inset 0 0 30px rgba(46, 232, 255, 0.08);
}

.login-bot-eye {
  position: absolute;
  top: 25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eaffff;
  box-shadow: 0 0 16px rgba(46, 232, 255, 0.9);
  animation: loginBotWake 10s ease-in-out infinite;
}

.login-bot-eye:first-child {
  left: 24px;
}

.login-bot-eye:last-child {
  right: 24px;
}

.login-bot-body {
  top: 116px;
  left: 44px;
  width: 56px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(227, 38, 54, 0.18), rgba(46, 232, 255, 0.15)),
    rgba(5, 12, 20, 0.96);
}

.login-bot-core {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(114, 240, 177, 0.86);
}

.login-bot-arm {
  top: 126px;
  width: 30px;
  height: 9px;
  border-radius: 999px;
  background: rgba(46, 232, 255, 0.42);
  animation: loginBotWave 10s var(--ease) infinite;
}

.login-bot-arm-left {
  left: 18px;
  transform-origin: 100% 50%;
}

.login-bot-arm-right {
  right: 18px;
  transform-origin: 0 50%;
  animation-delay: 180ms;
}

.login-bot-leg {
  bottom: 0;
  width: 16px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transform-origin: 50% 0;
  animation: loginBotStep 0.56s ease-in-out infinite;
}

.login-bot-leg-left {
  left: 52px;
}

.login-bot-leg-right {
  right: 52px;
  animation-delay: 280ms;
}

.sso-scene .login-bot-leg-right {
  animation: loginBotKick 6.8s var(--ease) infinite;
}

.kick-words {
  position: absolute;
  left: 50%;
  bottom: 27%;
  z-index: 5;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.kick-word {
  --tx: 0px;
  --ty: 0px;
  --delay: 0s;
  position: absolute;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  white-space: nowrap;
  padding: 0 13px;
  border: 1px solid rgba(46, 232, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(46, 232, 255, 0.18), rgba(114, 240, 177, 0.12)),
    rgba(4, 11, 18, 0.9);
  color: #eaffff;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  box-shadow: 0 16px 42px rgba(46, 232, 255, 0.18);
  animation: kickWord 6.8s var(--ease) infinite;
  animation-delay: var(--delay);
}

.kick-data {
  --tx: -290px;
  --ty: -135px;
  --delay: 0.12s;
}

.kick-ai {
  --tx: -190px;
  --ty: -45px;
  --delay: 0.62s;
}

.kick-automation {
  --tx: 135px;
  --ty: -115px;
  --delay: 1.02s;
}

.kick-apmea {
  --tx: 118px;
  --ty: 14px;
  --delay: 1.42s;
}

.admin-main {
  display: grid;
  align-items: center;
}

.admin-shell {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.admin-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 28px;
  align-items: end;
}

.admin-session {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(46, 232, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.admin-session svg {
  flex: 0 0 auto;
  color: var(--green);
}

.admin-session strong,
.admin-session small {
  display: block;
}

.admin-session small {
  margin-top: 5px;
  color: var(--muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 34px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 1px solid var(--line);
}

.admin-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.admin-tab::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--cyan));
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.admin-tab svg {
  width: 18px;
  height: 18px;
}

.admin-tab:hover,
.admin-tab.is-active {
  color: var(--text);
}

.admin-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.admin-panel {
  margin-top: 0;
}

.role-panel,
.access-console,
.insight-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 13, 21, 0.82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.role-panel {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 16px;
  padding: 22px;
}

.role-panel h2,
.access-console h2 {
  margin: 0;
  font-size: 1.2rem;
}

.role-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.role-panel input,
.role-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 12px;
  font: inherit;
}

.role-panel select option {
  background: #071019;
}

.access-console {
  min-width: 0;
  overflow: hidden;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.console-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.console-actions {
  display: inline-flex;
  gap: 8px;
}

.console-actions button,
.role-table button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.console-actions button:hover,
.role-table button:hover {
  border-color: rgba(46, 232, 255, 0.45);
  color: var(--cyan);
}

.role-table-wrap {
  max-height: min(60vh, 650px);
  overflow: auto;
}

.role-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.role-table th,
.role-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.role-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(7, 13, 21, 0.96);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.role-table td {
  color: #e7eef6;
  font-size: 0.92rem;
}

.role-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(114, 240, 177, 0.32);
  border-radius: 999px;
  background: rgba(114, 240, 177, 0.1);
  color: #d8ffec;
  font-weight: 800;
}

.insights-shell {
  display: grid;
  gap: 20px;
  padding-top: 28px;
}

.insights-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.insights-toolbar h2 {
  margin: 0;
  font-size: 1.35rem;
}

.insights-toolbar p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.insights-controls {
  display: inline-flex;
  align-items: end;
  gap: 10px;
}

.insights-controls label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.insights-controls select,
.insights-controls button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
}

.insights-controls select {
  min-width: 130px;
  padding: 0 12px;
}

.insights-controls select option {
  background: #071019;
}

.insights-controls button {
  display: grid;
  width: 42px;
  place-items: center;
  cursor: pointer;
}

.insights-controls button:hover {
  border-color: rgba(46, 232, 255, 0.45);
  color: var(--cyan);
}

.insight-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.insight-metric {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 232, 255, 0.09), rgba(227, 38, 54, 0.055)),
    rgba(7, 13, 21, 0.78);
}

.insight-metric::before {
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--cyan), var(--green));
  opacity: 0.65;
}

.insight-metric span,
.insight-metric small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.insight-metric strong {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
}

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

.insight-panel {
  min-width: 0;
  overflow: hidden;
}

.insight-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.insight-panel-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.insight-panel-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.insight-list,
.journey-list {
  display: grid;
}

.insight-empty {
  margin: 0;
  padding: 22px;
  color: var(--muted);
}

.insight-row {
  display: grid;
  gap: 9px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}

.insight-row:last-child,
.journey-row:last-child {
  border-bottom: 0;
}

.insight-row-main,
.journey-row-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.insight-row strong,
.journey-row strong {
  min-width: 0;
  overflow: hidden;
  color: #eef6ff;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-row em,
.journey-row em {
  flex: 0 0 auto;
  color: var(--cyan);
  font-style: normal;
  font-weight: 850;
}

.insight-row small,
.journey-row small {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.insight-bar span {
  display: block;
  width: var(--bar-width, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.journey-row {
  display: grid;
  gap: 8px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}

.journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
}

.event-table-wrap {
  max-height: min(60vh, 620px);
  overflow: auto;
}

.event-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  table-layout: fixed;
}

.event-table th,
.event-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.event-table th:nth-child(1),
.event-table td:nth-child(1) {
  width: 110px;
}

.event-table th:nth-child(2),
.event-table td:nth-child(2) {
  width: 230px;
}

.event-table th:nth-child(3),
.event-table td:nth-child(3) {
  width: 120px;
}

.event-table th:nth-child(4),
.event-table td:nth-child(4) {
  width: 32%;
}

.event-table th:nth-child(5),
.event-table td:nth-child(5) {
  width: 38%;
}

.event-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(7, 13, 21, 0.96);
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.event-table td {
  color: #e7eef6;
  font-size: 0.86rem;
  line-height: 1.45;
}

.event-type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(46, 232, 255, 0.28);
  border-radius: 999px;
  background: rgba(46, 232, 255, 0.08);
  color: #dffaff;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.25;
  white-space: normal;
}

.event-detail {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.event-detail span {
  min-width: 0;
  overflow: visible;
  overflow-wrap: anywhere;
  white-space: normal;
}

.access-denied-stage {
  width: min(100%, 1180px);
  min-height: calc(100svh - var(--header-h) - 92px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(340px, 1.04fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
}

.access-helper-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.helper-map {
  position: absolute;
  inset: 0 -18% 4%;
  transform: perspective(900px) rotateX(60deg) rotateZ(-15deg);
}

.access-helper-robot {
  left: 9%;
  bottom: 10%;
  animation: helperRobotWalk 7.2s var(--ease) infinite;
}

.access-helper-robot .login-bot-arm-right {
  animation: helperRobotWave 2.8s var(--ease) infinite;
}

.access-helper-copy {
  display: grid;
  gap: 22px;
}

.access-helper-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.access-helper-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
}

.helper-card {
  position: relative;
  display: grid;
  gap: 6px;
  width: min(100%, 440px);
  padding: 18px 20px;
  border: 1px solid rgba(114, 240, 177, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(114, 240, 177, 0.12), rgba(46, 232, 255, 0.08)),
    rgba(5, 13, 20, 0.86);
  box-shadow: 0 24px 70px rgba(46, 232, 255, 0.12);
  animation: helperCardIn 7.2s var(--ease) infinite;
}

.helper-card::before {
  position: absolute;
  top: 22px;
  left: -18px;
  width: 18px;
  height: 18px;
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  background: rgba(114, 240, 177, 0.3);
}

.helper-card span,
.helper-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.helper-card strong {
  color: var(--text);
  font-size: 1.28rem;
}

.helper-card a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
}

.callback-main {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 42px) clamp(18px, 4vw, 56px) 54px;
}

.callback-shell {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.callback-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.callback-map {
  inset: 2% -18% 0;
}

.callback-robot {
  left: 42%;
  bottom: 7%;
  transform: scale(0.9);
}

.callback-copy {
  display: grid;
  gap: 22px;
}

.callback-copy h1 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.callback-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.6;
}

.callback-copy .secondary-action {
  width: fit-content;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dnaSignalSweep {
  0%,
  58% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes dnaCorePulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes scan {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  15%,
  78% {
    opacity: 1;
  }
  100% {
    transform: translateY(460%);
    opacity: 0;
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -90;
  }
}

@keyframes botRun {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10%,
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw * 0.45)) rotate(180deg);
    opacity: 0;
  }
}

@keyframes floatStage {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(-9px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(9px);
    opacity: 1;
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(40%);
  }
}

@keyframes orbitTurn {
  to {
    transform: rotateX(68deg) rotateZ(360deg);
  }
}

@keyframes courierWalk {
  0%,
  8%,
  88%,
  100% {
    transform: translateX(0) translateY(0) scale(0.96);
  }
  18%,
  72% {
    transform: translateX(var(--courier-walk)) translateY(-10px) scale(1);
  }
}

@keyframes botStep {
  0%,
  100% {
    transform: rotate(-14deg);
  }
  50% {
    transform: rotate(16deg);
  }
}

@keyframes botBlink {
  0%,
  82%,
  100% {
    transform: scaleY(1);
  }
  88% {
    transform: scaleY(0.18);
  }
}

@keyframes botArmLeft {
  0%,
  18%,
  72%,
  100% {
    transform: rotate(0deg);
  }
  32%,
  58% {
    transform: rotate(-34deg);
  }
}

@keyframes botArmRight {
  0%,
  18%,
  72%,
  100% {
    transform: rotate(0deg);
  }
  32%,
  58% {
    transform: rotate(38deg);
  }
}

@keyframes envelopeOpen {
  0%,
  27%,
  70%,
  100% {
    transform: rotateX(0deg);
  }
  36%,
  58% {
    transform: rotateX(150deg);
  }
}

@keyframes envelopeGlow {
  0%,
  24%,
  74%,
  100% {
    transform: translateY(0) scale(1);
  }
  34%,
  60% {
    transform: translateY(-6px) scale(1.06);
  }
}

@keyframes launchLetter {
  0%,
  28%,
  76%,
  100% {
    opacity: 0;
    transform: translate(24px, 16px) scale(0.92);
  }
  38%,
  64% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes dockPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

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

@keyframes beamTravel {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  18%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes loginRobotPath {
  0%,
  100% {
    transform: translateX(-135px) translateY(0) rotate(-1deg);
  }
  18% {
    transform: translateX(120px) translateY(-12px) rotate(2deg);
  }
  34%,
  54% {
    transform: translateX(42px) translateY(18px) rotate(0deg) scale(0.96);
  }
  68% {
    transform: translateX(-42px) translateY(-10px) rotate(-2deg);
  }
  84% {
    transform: translateX(120px) translateY(-8px) rotate(2deg);
  }
}

@keyframes loginBotStep {
  0%,
  100% {
    transform: rotate(-13deg);
  }
  50% {
    transform: rotate(15deg);
  }
}

@keyframes loginBotKick {
  0%,
  18%,
  42%,
  100% {
    transform: rotate(-12deg) translateY(0);
  }
  24%,
  30% {
    transform: rotate(-72deg) translate(12px, -10px);
  }
}

@keyframes kickWord {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.62) rotate(-8deg);
  }
  28% {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(1) rotate(0deg);
  }
  64% {
    opacity: 1;
    transform: translate(calc(var(--tx) * 1.03), calc(var(--ty) - 8px)) scale(1) rotate(1deg);
  }
  82% {
    opacity: 0;
    transform: translate(calc(var(--tx) * 1.08), calc(var(--ty) - 22px)) scale(0.94) rotate(3deg);
  }
}

@keyframes loginBotWake {
  0%,
  28%,
  62%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  36%,
  54% {
    transform: scaleY(0.15);
    opacity: 0.5;
  }
}

@keyframes loginBotWave {
  0%,
  24%,
  66%,
  100% {
    transform: rotate(0deg);
  }
  38%,
  55% {
    transform: rotate(-32deg);
  }
}

@keyframes helperRobotWalk {
  0% {
    opacity: 0;
    transform: translateX(-220px) translateY(10px) scale(0.88);
  }
  18%,
  72% {
    opacity: 1;
    transform: translateX(180px) translateY(-6px) scale(0.96);
  }
  42%,
  58% {
    opacity: 1;
    transform: translateX(210px) translateY(-12px) scale(0.96);
  }
  100% {
    opacity: 0;
    transform: translateX(292px) translateY(4px) scale(0.9);
  }
}

@keyframes helperRobotWalkMobile {
  0% {
    opacity: 0;
    transform: translateX(-92px) translateY(8px) scale(0.72);
  }
  18%,
  72% {
    opacity: 1;
    transform: translateX(78px) translateY(-4px) scale(0.78);
  }
  42%,
  58% {
    opacity: 1;
    transform: translateX(98px) translateY(-9px) scale(0.78);
  }
  100% {
    opacity: 0;
    transform: translateX(134px) translateY(4px) scale(0.72);
  }
}

@keyframes helperRobotWave {
  0%,
  18%,
  88%,
  100% {
    transform: rotate(0deg);
  }
  36%,
  68% {
    transform: rotate(-48deg);
  }
}

@keyframes helperCardIn {
  0%,
  18%,
  88%,
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
  36%,
  68% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

@keyframes sleepSignal {
  0%,
  28%,
  62%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.8);
  }
  38%,
  52% {
    opacity: 1;
    transform: translateY(-18px) scale(1.08);
  }
}

@keyframes loginRobotPathMobile {
  0%,
  100% {
    transform: translateX(-74px) translateY(0) rotate(-1deg) scale(0.78);
  }
  18% {
    transform: translateX(54px) translateY(-10px) rotate(2deg) scale(0.78);
  }
  34%,
  54% {
    transform: translateX(8px) translateY(14px) rotate(0deg) scale(0.75);
  }
  68% {
    transform: translateX(-38px) translateY(-8px) rotate(-2deg) scale(0.78);
  }
  84% {
    transform: translateX(54px) translateY(-8px) rotate(2deg) scale(0.78);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .account-badge {
    min-width: 0;
    max-width: clamp(170px, 42vw, 240px);
  }

  .account-actions {
    gap: 7px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 36px);
  }

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

  .map-stage {
    justify-self: center;
    width: min(100%, 720px);
    min-height: 440px;
  }

  .data-node {
    --x: 27% !important;
    --y: 20% !important;
  }

  .report-node {
    --x: 73% !important;
    --y: 27% !important;
  }

  .automation-node {
    --x: 58% !important;
    --y: 55% !important;
  }

  .ai-node {
    --x: 24% !important;
    --y: 68% !important;
  }

  .adoption-node {
    --x: 42% !important;
    --y: 85% !important;
  }

  .governance-node {
    --x: 78% !important;
    --y: 76% !important;
  }

  .mission-grid,
  .flow-layout,
  .governed-layout,
  .sso-hero,
  .callback-shell,
  .access-denied-stage,
  .admin-heading,
  .admin-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

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

  .access-helper-visual {
    min-height: 430px;
  }

  .callback-visual {
    min-height: 430px;
  }

  .sso-scene {
    min-height: 520px;
  }

  .admin-heading {
    align-items: start;
  }

  .adoption-launch .governed-layout > div:last-child {
    order: 1;
  }

  .adoption-launch .governed-visual {
    order: 2;
    justify-self: center;
    width: min(100%, 360px);
  }

  .launch-points {
    grid-template-columns: 1fr;
  }

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

  .rail-line {
    display: none;
  }

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

  .report-metric:nth-child(2) {
    border-right: 0;
  }

  .report-metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .atlas-courier {
    --courier-walk: -198px;
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    height: 226px;
  }

  .courier-dock {
    width: 62px;
    height: 62px;
  }

  .courier-dock svg {
    width: 23px;
    height: 23px;
  }

  .courier-bot {
    right: 4px;
    bottom: 31px;
    transform: scale(0.9);
  }

  .launch-letter {
    right: 72px;
    bottom: 94px;
    width: min(248px, calc(100vw - 106px));
    padding: 14px;
  }

  .launch-letter strong {
    font-size: 0.98rem;
  }

  .launch-letter span:last-child {
    font-size: 0.8rem;
  }

  .site-header {
    padding-inline: 14px;
    gap: 12px;
  }

  .brand-logo {
    width: 106px;
    height: auto;
  }

  .header-action {
    width: 44px;
    padding: 0;
  }

  .account-badge {
    max-width: clamp(160px, 45vw, 230px);
    min-height: 44px;
    gap: 9px;
    padding: 6px 9px 6px 6px;
  }

  .account-symbol {
    width: 32px;
    height: 32px;
  }

  .logout-button {
    width: 40px;
    height: 40px;
  }

  .account-copy small {
    font-size: 0.75rem;
  }

  .account-copy strong {
    font-size: 0.78rem;
  }

  .header-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    min-height: auto;
    padding-bottom: 76px;
  }

  .sso-main,
  .callback-main,
  .admin-main {
    padding-top: calc(var(--header-h) + 32px);
  }

  .sso-copy h1,
  .callback-copy h1,
  .access-helper-copy h1,
  .admin-heading h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .sso-status-strip,
  .launch-points {
    grid-template-columns: 1fr;
  }

  .sso-scene {
    min-height: 330px;
    margin-top: -8px;
  }

  .solar-map {
    inset: -16% -22% 0;
  }

  .sso-scene .login-robot {
    left: 42%;
    bottom: 42%;
    animation-name: loginRobotPathMobile;
  }

  .kick-words {
    left: 49%;
    bottom: 55%;
  }

  .kick-word {
    min-height: 31px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .kick-data {
    --tx: -132px;
    --ty: -124px;
  }

  .kick-ai {
    --tx: -112px;
    --ty: -42px;
  }

  .kick-automation {
    --tx: 42px;
    --ty: -112px;
  }

  .kick-apmea {
    --tx: 18px;
    --ty: 4px;
  }

  .access-helper-visual {
    min-height: 390px;
  }

  .helper-map {
    inset: 0 -36% 0;
  }

  .access-helper-robot {
    left: 7%;
    animation-name: helperRobotWalkMobile;
  }

  .callback-visual {
    min-height: 390px;
  }

  .callback-map {
    inset: 0 -34% 0;
  }

  .callback-copy .secondary-action {
    width: 100%;
  }

  .admin-session {
    align-items: flex-start;
  }

  .admin-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .admin-tab {
    flex: 0 0 auto;
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .insights-toolbar,
  .insights-controls {
    display: grid;
    align-items: stretch;
  }

  .insights-controls {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .insight-metrics {
    grid-template-columns: 1fr;
  }

  .insight-panel-head,
  .insight-row-main,
  .journey-row-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .dna-signature {
    left: 12px;
    bottom: 34px;
    max-width: calc(100vw - 24px);
    padding-right: 9px;
    transform: scale(0.92);
    transform-origin: left bottom;
  }

  .dna-mark {
    width: 26px;
    height: 26px;
  }

  .dna-core {
    width: 7px;
    height: 7px;
  }

  .dna-copy span {
    font-size: 0.75rem;
  }

  .dna-copy strong {
    font-size: 0.75rem;
  }

  .atlas-legal-note {
    right: 12px;
    bottom: 8px;
    left: 12px;
    max-width: none;
    font-size: 0.75rem;
    text-align: left;
  }

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

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

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .map-stage {
    aspect-ratio: 0.85;
    min-height: 600px;
    margin-top: 8px;
  }

  .map-stage::before,
  .map-stage::after {
    inset: 18% -18% 8%;
  }

  .map-node {
    min-width: 134px;
    max-width: 160px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 56px;
    gap: 8px;
    padding: 9px;
  }

  .node-icon {
    width: 34px;
    height: 34px;
  }

  .node-icon svg {
    width: 18px;
    height: 18px;
  }

  .map-node small {
    display: none;
  }

  .compact-node {
    min-width: 150px;
  }

  .compact-node strong {
    font-size: 0.875rem;
  }

  .report-node {
    --x: 75% !important;
    --y: 31% !important;
    min-width: 168px;
    max-width: 172px;
  }

  .data-node {
    --x: 27% !important;
    --y: 21% !important;
  }

  .automation-node {
    --x: 58% !important;
    --y: 55% !important;
  }

  .adoption-node {
    --x: 32% !important;
    --y: 88% !important;
    min-width: 166px;
    max-width: 172px;
  }

  .governance-node {
    --x: 77% !important;
    --y: 76% !important;
  }

  .ai-node {
    --x: 27% !important;
    --y: 70% !important;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .mission,
  .systems,
  .adoption,
  .command-flow,
  .governed {
    padding-block: 68px;
  }

  .section-heading {
    display: block;
  }

  .system-row {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: 14px;
    min-height: 126px;
  }

  .system-icon {
    width: 44px;
    height: 44px;
  }

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

  .flow-step {
    min-height: auto;
    padding: 70px 0 18px;
    border-bottom: 1px solid var(--line);
  }

  .console-grid .report-metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .console-grid .report-metric:last-child {
    border-bottom: 0;
  }
}

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

  .data-canvas {
    display: none;
  }

  .atlas-courier {
    height: 150px;
  }

  .courier-bot {
    animation: none !important;
    transform: translateX(-118px) translateY(-8px) scale(0.92);
  }

  .bot-leg,
  .bot-eye,
  .bot-arm-left,
  .bot-arm-right,
  .courier-envelope,
  .envelope-flap,
  .courier-dock::before,
  .launch-letter {
    animation: none !important;
  }

  .envelope-flap {
    transform: rotateX(150deg);
  }

  .launch-letter {
    opacity: 1;
    transform: none;
  }
}
