.command-hero {
  --boot-sequence-duration: 2100ms;
  --boot-reveal-step: 160ms;
  --circuit-pulse-speed: 4700ms;
  --shimmer-interval: 6800ms;
  --cursor-glow-radius: 340px;
  --cursor-glow-opacity: 0.55;
  --static-intensity: 0.24;
  --pointer-glow-strength: 1.85;
  --static-interference-opacity: 0.24;
  --static-field-opacity: 0;
  --corona-opacity: 0;
  --corona-scale: 0.86;
  --parallax-strength: 30px;
  --blue-bloom-intensity: 0.78;
  --blue-bloom-primary: 0.22;
  --blue-bloom-secondary: 0.17;
  --pointer-glow-primary: 0.55;
  --pointer-glow-secondary: 0.24;
  --pointer-glow-hot: 0.25;
  --pointer-glow-outer: 0.12;
  --static-mask-radius: 280px;
  --node-pulse-frequency: 3200ms;
  --circuit-base-alpha: 0.34;
  --circuit-field-glow: 18px;
  --circuit-flow-alpha: 0.92;
  --circuit-flow-width: 2.8;
  --circuit-activation-radius: 420px;
  --circuit-glow-strength: 1;
  --node-pulse-strength: 1.8;
  --cta-magnetic-strength: 1;
  --route-b-delay: -2184ms;
  --route-c-delay: -1040ms;
  --route-d-delay: -3432ms;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --pointer-active: 0;
  --pointer-field-opacity: 0;
  --pointer-motion: 0;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  border-bottom: 1px solid rgba(91, 184, 240, 0.18);
  perspective: 1200px;
}

nav {
  height: 68px;
  padding: 0 clamp(18px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(5, 9, 15, 0.94), rgba(0, 0, 0, 0.84)),
    rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(91, 184, 240, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.nav-brand {
  gap: 12px;
  font-size: 22px;
  letter-spacing: 0.075em;
  color: #f0f5fb;
  text-shadow: 0 0 18px rgba(91, 184, 240, 0.26);
}

.nav-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  object-position: 50% 50%;
  border: 1px solid rgba(139, 219, 255, 0.22);
  border-radius: 8px;
  background: radial-gradient(circle, rgba(58,159,213,0.16), rgba(0,0,0,0.42));
  filter: drop-shadow(0 0 16px rgba(91, 184, 240, 0.42));
}

.nav-links {
  gap: clamp(20px, 3vw, 34px);
}

.nav-links a {
  position: relative;
  color: rgba(207, 218, 231, 0.76);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 216, 255, 0.9), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #8ddbff;
  text-shadow: 0 0 18px rgba(91, 184, 240, 0.32);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 768px) {
  nav {
    height: 64px;
    padding-inline: 18px;
  }

  .nav-brand {
    font-size: 19px;
  }

  .nav-brand img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    top: 64px;
  }
}

.command-hero > .hero-bg-grid,
.command-hero > .hero-circuit-layer,
.command-hero > .hero-fade,
.command-hero > .hero-content,
.command-hero > .scroll-hint {
  display: none !important;
}

.command-bg,
.command-bloom,
.command-frame,
.command-circuit-wrap,
.command-pointer-field,
.command-static-field,
.command-cursor-corona,
.command-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.command-bg {
  z-index: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(31, 122, 205, 0.22), transparent 32%),
    radial-gradient(circle at 22% 72%, rgba(9, 38, 74, 0.54), transparent 42%),
    linear-gradient(180deg, #03070d 0%, #000 58%, #020407 100%);
}

.command-bg::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image:
    linear-gradient(rgba(91, 184, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 184, 240, 0.07) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(circle at 58% 47%, #000 0 44%, transparent 72%);
  mask-image: radial-gradient(circle at 58% 47%, #000 0 44%, transparent 72%);
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(1.03);
}

.command-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(118, 205, 255, 0.08) 50%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 5px);
  opacity: 0.14;
  mix-blend-mode: screen;
}

.command-bloom {
  z-index: 1;
  background:
    radial-gradient(circle at 30% 48%, rgba(91, 184, 240, var(--blue-bloom-primary)), transparent 29%),
    radial-gradient(circle at 62% 48%, rgba(14, 72, 138, var(--blue-bloom-secondary)), transparent 38%);
  filter: blur(8px);
  opacity: 0;
}

.command-frame {
  z-index: 2;
  opacity: 0;
}

.command-frame-rail {
  position: absolute;
  left: max(22px, 4vw);
  right: max(22px, 4vw);
  height: 1px;
  background:
    linear-gradient(90deg, transparent 0, rgba(200, 214, 226, 0.18) 8%, rgba(245, 249, 255, 0.82) 18%, rgba(73, 179, 245, 0.78) 50%, rgba(245, 249, 255, 0.72) 82%, transparent 100%);
  box-shadow: 0 0 18px rgba(91, 184, 240, 0.28), 0 0 54px rgba(91, 184, 240, 0.16);
}

.command-frame-rail::before,
.command-frame-rail::after {
  content: "";
  position: absolute;
  top: -6px;
  width: clamp(84px, 12vw, 172px);
  height: 13px;
  border: 1px solid rgba(222, 231, 240, 0.34);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(88, 118, 149, 0.16), rgba(255, 255, 255, 0.04));
  clip-path: polygon(0 50%, 12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%);
}

.command-frame-rail::before { left: 2vw; }
.command-frame-rail::after { right: 2vw; }
.command-frame-rail-top { top: 104px; }
.command-frame-rail-bottom { bottom: 42px; }

.command-frame-node {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8be2ff;
  box-shadow: 0 0 14px rgba(116, 216, 255, 0.86), 0 0 34px rgba(45, 139, 226, 0.48);
  opacity: 0.82;
}

.command-frame-node-left { left: clamp(18px, 3vw, 54px); }
.command-frame-node-right { right: clamp(18px, 3vw, 54px); }

.command-circuit-wrap {
  z-index: 3;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: drop-shadow(0 0 var(--circuit-field-glow) rgba(75, 174, 242, 0.16));
}

.command-circuit-svg {
  position: absolute;
  inset: 3% -7% auto -7%;
  width: 114%;
  height: 94%;
  overflow: visible;
  filter: drop-shadow(0 0 20px rgba(75, 174, 242, 0.18));
}

.command-circuit-base {
  fill: none;
  stroke: rgba(167, 210, 240, var(--circuit-base-alpha));
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.command-circuit-flow {
  fill: none;
  stroke: url(#commandCircuitGradient);
  stroke-width: var(--circuit-flow-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18 360;
  opacity: 0;
  animation: commandPathFlow var(--circuit-pulse-speed) linear infinite;
}

.command-pointer-active .command-circuit-base {
  filter: drop-shadow(0 0 7px rgba(116, 216, 255, 0.42));
}

.command-pointer-burst .command-circuit-flow {
  stroke-dasharray: 42 230;
  filter: drop-shadow(0 0 12px rgba(141, 225, 255, 0.72));
}

.route-b { animation-delay: var(--route-b-delay); }
.route-c { animation-delay: var(--route-c-delay); }
.route-d { animation-delay: var(--route-d-delay); }

.command-node {
  --node-boost: 0;
  --node-alpha: 0.56;
  --node-scale: 1;
  fill: rgba(124, 218, 255, var(--node-alpha));
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(var(--node-scale));
  animation: commandNodePulse var(--node-pulse-frequency) ease-in-out infinite;
}

.command-node:nth-child(3n + 1) { animation-delay: -1200ms; }
.command-node:nth-child(3n + 2) { animation-delay: -2400ms; }

.command-pip {
  fill: #bdefff;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(117, 218, 255, 0.86));
}

.command-pointer-field {
  z-index: 6;
  background:
    radial-gradient(circle var(--cursor-glow-radius) at var(--pointer-x) var(--pointer-y),
      rgba(199, 242, 255, var(--pointer-glow-hot)) 0%,
      rgba(105, 210, 255, var(--pointer-glow-primary)),
      rgba(55, 150, 230, var(--pointer-glow-secondary)) 34%,
      rgba(23, 98, 184, var(--pointer-glow-outer)) 56%,
      transparent 76%);
  mix-blend-mode: screen;
  opacity: var(--pointer-field-opacity);
  filter: saturate(1.3);
}

.command-static-field {
  z-index: 7;
  background-image:
    repeating-linear-gradient(90deg, rgba(211, 242, 255, 0.58) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(96, 190, 255, 0.34) 0 1px, transparent 1px 6px),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.5), transparent 36%);
  -webkit-mask-image: radial-gradient(circle var(--static-mask-radius) at var(--pointer-x) var(--pointer-y), #000 0 16%, rgba(0, 0, 0, 0.78) 42%, transparent 76%);
  mask-image: radial-gradient(circle var(--static-mask-radius) at var(--pointer-x) var(--pointer-y), #000 0 16%, rgba(0, 0, 0, 0.78) 42%, transparent 76%);
  opacity: var(--static-field-opacity);
  mix-blend-mode: screen;
  animation: commandStaticJitter 420ms steps(2) infinite;
}

.command-cursor-corona {
  z-index: 7;
  opacity: var(--corona-opacity);
  background:
    radial-gradient(circle 22px at var(--pointer-x) var(--pointer-y), rgba(240, 252, 255, 0.85), transparent 64%),
    radial-gradient(circle 74px at var(--pointer-x) var(--pointer-y), rgba(116, 225, 255, 0.42), transparent 70%),
    conic-gradient(from 30deg at var(--pointer-x) var(--pointer-y), transparent 0deg, rgba(152, 231, 255, 0.72) 24deg, transparent 48deg, rgba(60, 168, 245, 0.56) 84deg, transparent 118deg, rgba(214, 248, 255, 0.5) 180deg, transparent 236deg, rgba(91, 184, 240, 0.58) 292deg, transparent 360deg);
  -webkit-mask-image: radial-gradient(circle 118px at var(--pointer-x) var(--pointer-y), transparent 0 22px, #000 34px 84px, transparent 124px);
  mask-image: radial-gradient(circle 118px at var(--pointer-x) var(--pointer-y), transparent 0 22px, #000 34px 84px, transparent 124px);
  mix-blend-mode: screen;
  transform: scale(var(--corona-scale));
  transform-origin: var(--pointer-x) var(--pointer-y);
  filter: blur(0.2px) saturate(1.25);
}

.command-vignette {
  z-index: 4;
  background:
    radial-gradient(ellipse 60% 72% at 50% 44%, transparent 0 42%, rgba(0, 0, 0, 0.62) 80%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0, transparent 20%, transparent 68%, rgba(0, 0, 0, 0.9) 100%);
}

.command-debug-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  max-width: min(330px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(139, 219, 255, 0.38);
  border-radius: 8px;
  background: rgba(2, 8, 14, 0.82);
  color: rgba(232, 246, 255, 0.9);
  font: 12px/1.45 Consolas, "SFMono-Regular", monospace;
  box-shadow: 0 0 26px rgba(58, 159, 213, 0.22);
  backdrop-filter: blur(12px);
  pointer-events: none;
  white-space: pre-line;
}

.command-hero-inner {
  position: relative;
  z-index: 8;
  width: min(1240px, calc(100% - 64px));
  min-height: min(720px, 96svh);
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(30px, 4.6vw, 62px);
  padding: 100px 0 62px;
}

.command-shield-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  transform-style: preserve-3d;
}

.command-shield-aura {
  position: absolute;
  width: clamp(390px, 42vw, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(99, 198, 255, 0.22), transparent 58%),
    conic-gradient(from 210deg, transparent, rgba(91, 184, 240, 0.3), transparent, rgba(229, 239, 248, 0.2), transparent);
  filter: blur(2px);
  opacity: 0.72;
  animation: commandBloomBreath 6.8s ease-in-out infinite;
}

.command-shield-object {
  position: relative;
  width: clamp(360px, 36vw, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateZ(42px);
  border: 1px solid rgba(139, 219, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(91, 184, 240, 0.14), transparent 58%),
    rgba(0, 0, 0, 0.38);
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 58px rgba(80, 178, 245, 0.38));
  transition: filter 220ms ease;
}

.command-shield-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 50%;
  transform: none;
  transform-origin: 50% 50%;
}

.command-shield-rim {
  position: absolute;
  inset: 4%;
  border: 1px solid rgba(231, 239, 248, 0.28);
  border-radius: inherit;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.12), 0 0 34px rgba(86, 178, 242, 0.28);
  opacity: 0.9;
}

.command-shield-sweep {
  position: absolute;
  inset: -20% -55%;
  background: linear-gradient(104deg, transparent 38%, rgba(255, 255, 255, 0.72) 49%, rgba(132, 210, 255, 0.32) 54%, transparent 64%);
  transform: translateX(-74%) rotate(8deg);
  mix-blend-mode: screen;
  opacity: 0;
  animation: commandShieldSweep var(--shimmer-interval) ease-in-out infinite;
}

.command-status-pill {
  position: absolute;
  left: 50%;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(121, 205, 255, 0.28);
  background: rgba(3, 10, 18, 0.72);
  color: rgba(217, 238, 255, 0.78);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 28px rgba(56, 155, 232, 0.16);
  transform: translateX(-50%);
}

.command-status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fe0ff;
  box-shadow: 0 0 12px rgba(111, 224, 255, 0.92);
}

.command-copy {
  position: relative;
  max-width: 680px;
}

.command-copy::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 12px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(125, 219, 255, 0.5), rgba(231, 239, 248, 0.16), transparent);
  box-shadow: 0 0 22px rgba(91, 184, 240, 0.18);
  opacity: 0.72;
}

.command-kicker,
.command-subheadline,
.command-support,
.command-proof {
  margin: 0;
}

.command-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #74d5ff;
  margin-bottom: 13px;
}

.command-title {
  margin: 0 0 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(62px, 8.2vw, 116px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  color: #e8eef7;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #dce8f4 26%, #8495a7 54%, #f4f8fb 72%, #6b7887 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 36px rgba(80, 170, 242, 0.22);
}

.command-subheadline {
  width: fit-content;
  max-width: 100%;
  padding-bottom: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 1.85vw, 25px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8ddbff;
  border-bottom: 1px solid rgba(139, 219, 255, 0.34);
}

.command-support {
  margin-top: 15px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 236, 244, 0.92);
}

.command-proof {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(185, 198, 214, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.command-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.command-cta {
  --magnet-x: 0px;
  --magnet-y: 0px;
  --magnet-glow: 0;
  --magnet-shadow: 0px;
  --magnet-inset-shadow: 0px;
  --magnet-sweep-opacity: 0.2;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 26px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 120ms ease;
  will-change: transform;
  overflow: hidden;
}

.command-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(225, 249, 255, var(--magnet-sweep-opacity)), transparent 34%),
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, var(--magnet-sweep-opacity)) 48%, transparent 68%);
  opacity: var(--magnet-sweep-opacity);
  mix-blend-mode: screen;
  pointer-events: none;
}

.command-cta > * {
  position: relative;
  z-index: 1;
}

.command-cta:focus-visible {
  outline: 2px solid #8ddbff;
  outline-offset: 4px;
}

.command-cta-primary {
  color: #02070d;
  background: linear-gradient(180deg, #a6e7ff, #48afea 48%, #2d83ca);
  box-shadow: 0 16px 36px rgba(55, 157, 231, 0.28), 0 0 var(--magnet-shadow) rgba(99, 210, 255, 0.72), inset 0 0 var(--magnet-inset-shadow) rgba(255, 255, 255, 0.22);
}

.command-cta-primary:hover {
  color: #000;
  background: linear-gradient(180deg, #d8f6ff, #66c8f8 52%, #3391d5);
}

.command-cta-primary svg {
  width: 18px;
  height: 18px;
}

.command-cta-secondary {
  color: rgba(232, 238, 247, 0.9);
  border: 1px solid rgba(143, 209, 247, 0.34);
  background: rgba(2, 8, 14, 0.42);
  box-shadow: inset 0 0 var(--magnet-inset-shadow) rgba(96, 181, 240, 0.16), 0 0 var(--magnet-shadow) rgba(91, 184, 240, 0.36);
}

.command-cta-secondary:hover {
  color: #9fe4ff;
  border-color: rgba(143, 209, 247, 0.7);
}

.command-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(8px);
  clip-path: inset(0 0 100% 0);
}

.command-ready .command-bg::before {
  animation: commandGridBoot 1200ms ease-out 80ms forwards, commandGridDrift 16s ease-in-out 1500ms infinite;
}

.command-ready .command-bloom {
  animation: commandBloomBoot 900ms ease-out 120ms forwards, commandBloomBreath 7.5s ease-in-out 1250ms infinite;
}

.command-ready .command-frame {
  animation: commandFrameBoot 850ms ease-out 260ms forwards;
}

.command-ready .command-circuit-wrap {
  animation: commandCircuitBoot 900ms ease-out 160ms forwards;
}

.command-ready .command-circuit-flow,
.command-ready .command-pip {
  opacity: var(--circuit-flow-alpha);
}

.command-ready .command-reveal {
  animation: commandReveal 760ms cubic-bezier(0.18, 0.82, 0.2, 1) forwards;
}

.command-ready .command-shield-object {
  animation: commandShieldBoot 1050ms cubic-bezier(0.18, 0.82, 0.2, 1) 220ms both;
}

.command-ready .command-shield-stage { animation-delay: 260ms; }
.command-ready .command-kicker { animation-delay: 520ms; }
.command-ready .command-title { animation-delay: 690ms; }
.command-ready .command-subheadline { animation-delay: 900ms; }
.command-ready .command-support { animation-delay: 1080ms; }
.command-ready .command-proof { animation-delay: 1240ms; }
.command-ready .command-cta-row { animation-delay: 1420ms; }

.command-scroll-cue {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 24px;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(116, 213, 255, 0), rgba(116, 213, 255, 0.62), rgba(116, 213, 255, 0));
  opacity: 0.7;
  transform: translateX(-50%);
}

.command-scroll-cue span {
  position: absolute;
  left: -3px;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ddbff;
  box-shadow: 0 0 14px rgba(141, 219, 255, 0.78);
  animation: commandScrollCue 2.4s ease-in-out infinite;
}

@keyframes commandReveal {
  0% { opacity: 0; transform: translate3d(0, 18px, 0); filter: blur(8px); clip-path: inset(0 0 100% 0); }
  62% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); clip-path: inset(0 0 0 0); }
}

@keyframes commandGridBoot {
  to { opacity: 0.28; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes commandGridDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -10px, 0) scale(1.01); }
}

@keyframes commandBloomBoot {
  to { opacity: 1; }
}

@keyframes commandBloomBreath {
  0%, 100% { transform: scale(0.985); opacity: 0.68; }
  50% { transform: scale(1.035); opacity: 1; }
}

@keyframes commandFrameBoot {
  0% { opacity: 0; filter: blur(7px); transform: scaleX(0.88); }
  100% { opacity: 1; filter: blur(0); transform: scaleX(1); }
}

@keyframes commandCircuitBoot {
  0% { opacity: 0; transform: translate3d(0, 18px, 0) scale(1.015); filter: blur(5px); }
  100% { opacity: 0.96; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes commandPathFlow {
  from { stroke-dashoffset: 390; }
  to { stroke-dashoffset: -390; }
}

@keyframes commandNodePulse {
  0%, 100% { opacity: 0.54; }
  50% { opacity: 1; }
}

@keyframes commandShieldSweep {
  0%, 22% { transform: translateX(-76%) rotate(8deg); opacity: 0; }
  31%, 44% { opacity: 0.68; }
  58%, 100% { transform: translateX(78%) rotate(8deg); opacity: 0; }
}

@keyframes commandShieldBoot {
  0% {
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 14px rgba(80, 178, 245, 0.14));
  }
  38% {
    filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 84px rgba(109, 211, 255, 0.48));
  }
  100% {
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 58px rgba(80, 178, 245, 0.38));
  }
}

@keyframes commandStaticJitter {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(1px, -1px, 0); }
  100% { transform: translate3d(-1px, 1px, 0); }
}

@keyframes commandScrollCue {
  0% { transform: translateY(0); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateY(30px); opacity: 0; }
}

@media (max-width: 960px) {
  .command-hero-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    padding-top: 94px;
    padding-bottom: 58px;
  }

  .command-shield-stage {
    min-height: 360px;
  }

  .command-shield-object {
    width: clamp(280px, 58vw, 380px);
  }

  .command-status-pill {
    bottom: 2px;
  }

  .command-copy {
    margin: 0 auto;
  }

  .command-copy::before {
    display: none;
  }

  .command-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .command-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .command-cta-row {
    justify-content: center;
  }

  .command-circuit-svg {
    inset: 6% -32% auto -32%;
    width: 164%;
    opacity: 0.6;
  }
}

@media (max-width: 640px) {
  .command-hero {
    min-height: auto;
  }

  .command-hero-inner {
    width: min(100% - 32px, 520px);
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 54px;
  }

  .command-shield-stage {
    min-height: 292px;
  }

  .command-shield-aura {
    width: clamp(295px, 82vw, 360px);
  }

  .command-shield-object {
    width: clamp(250px, 76vw, 320px);
  }

  .command-status-pill {
    font-size: 10.5px;
    letter-spacing: 0.11em;
  }

  .command-frame-rail-top { top: 76px; }
  .command-frame-rail-bottom { bottom: 24px; }

  .command-title {
    font-size: clamp(50px, 17vw, 76px);
  }

  .command-subheadline {
    font-size: 16px;
    letter-spacing: 0.07em;
  }

  .command-support {
    font-size: 15px;
    letter-spacing: 0.13em;
  }

  .command-proof {
    font-size: 15.5px;
  }

  .command-cta {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .command-pointer-field,
  .command-static-field {
    display: none;
  }

  .command-scroll-cue {
    display: none;
  }
}

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

  .command-hero {
    --pointer-active: 0 !important;
    --pointer-field-opacity: 0 !important;
    --pointer-motion: 0 !important;
  }

  .command-bg::before,
  .command-bloom,
  .command-frame,
  .command-circuit-wrap,
  .command-circuit-flow,
  .command-pip,
  .command-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .command-shield-sweep,
  .command-pointer-field,
  .command-static-field,
  .command-cursor-corona,
  .command-scroll-cue {
    display: none !important;
  }
}
