/* ==========================================================================
   LMI — Lockheed Martin Inu
   Tactical aerospace × low-poly command terminal
   ========================================================================== */

:root {
  --bg: #0c0e0b;
  --bg-elev: #141812;
  --bg-panel: #1a1f18;
  --charcoal: #1e241c;
  --olive: #3d4a32;
  --olive-mid: #5a6b48;
  --sand: #c4b89a;
  --tan: #a8946e;
  --off-white: #e8e4d9;
  --muted: #9a9588;
  --green: #00c805;
  --green-dim: #00a004;
  --green-glow: rgba(0, 200, 5, 0.35);
  --warn: #e85d04;
  --danger: #c1121f;
  --line: rgba(196, 184, 154, 0.22);
  --line-strong: rgba(196, 184, 154, 0.45);
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", "Courier New", monospace;
  --max: 1180px;
  --header-h: 4.25rem;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(12, 14, 11, 0.92), rgba(12, 14, 11, 0.97)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.12) 2px,
      rgba(0, 0, 0, 0.12) 3px
    ),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(61, 74, 50, 0.35), transparent 55%),
    var(--bg);
  color: var(--off-white);
  font-family: var(--font-mono);
  font-size: clamp(0.875rem, 0.82rem + 0.2vw, 0.95rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

p {
  margin: 0;
}

ul, ol, dl {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--green);
  color: #041004;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

/* --------------------------------------------------------------------------
   Status ticker
   -------------------------------------------------------------------------- */

.status-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080a07;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
}

.status-ticker__track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 0.45rem 0;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}

.status-ticker__track span {
  flex-shrink: 0;
}

.status-ticker__track span::before {
  content: "◆";
  margin-right: 0.75rem;
  color: var(--green);
  font-size: 0.55rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 9, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-strong);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem clamp(1rem, 3vw, 1.75rem);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand__logo,
.brand:focus-visible .brand__logo {
  transform: translateY(-1px) rotate(-2deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand__chain {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--green);
  white-space: nowrap;
}

.header-status {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.header-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: pulse-dot 2.2s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 var(--green-glow); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.header-scan {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  background-size: 40% 100%;
  background-repeat: no-repeat;
  animation: header-scan 4.5s linear infinite;
  opacity: 0.55;
}

@keyframes header-scan {
  0% { background-position: -40% 0; }
  100% { background-position: 140% 0; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.15s var(--ease),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  user-select: none;
}

.btn--sm {
  padding: 0.4rem 0.7rem;
  font-size: 0.65rem;
}

.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 0.8rem;
}

.btn--buy {
  background: var(--green);
  color: #041004;
  border-color: var(--green);
  box-shadow: 0 0 0 0 transparent, inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn--buy:hover {
  background: #1adf1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--green-glow);
}

.btn--buy:active {
  transform: translateY(2px) scale(0.97);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.btn--chart {
  background: transparent;
  color: var(--off-white);
  border-color: var(--line-strong);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn--chart:hover {
  border-color: var(--sand);
  color: var(--sand);
  background: rgba(196, 184, 154, 0.06);
}

.btn--x {
  background: var(--charcoal);
  color: var(--off-white);
  border-color: var(--olive-mid);
  min-width: 2.6rem;
}

.btn--x:not(.btn--disabled):hover {
  border-color: var(--sand);
  background: #242a20;
}

.btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--copy {
  background: var(--olive);
  color: var(--off-white);
  border: 1px solid var(--olive-mid);
  flex-shrink: 0;
}

.btn--copy:hover {
  background: var(--olive-mid);
}

.btn--copy.is-copied {
  background: var(--green);
  color: #041004;
  border-color: var(--green);
}

/* --------------------------------------------------------------------------
   Hero — Mission Briefing
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 3vw, 1.75rem) clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 49.5%, rgba(196, 184, 154, 0.05) 49.5%, rgba(196, 184, 154, 0.05) 50.5%, transparent 50.5%),
    radial-gradient(circle at 85% 40%, rgba(0, 200, 5, 0.06), transparent 35%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--warn);
  color: var(--warn);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.hero__title > span:first-child {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: var(--off-white);
  text-shadow: 0 0 40px rgba(0, 200, 5, 0.12);
}

.hero__ticker {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.35em;
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 600;
}

.hero__hook {
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--sand);
}

.hero__support {
  margin-bottom: 0.9rem;
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero__lede {
  margin-bottom: 1.4rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.status-module {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.04), transparent 40%),
    var(--bg-elev);
}

.status-module > div {
  min-width: 0;
  padding: 0.35rem 0.45rem;
  border-left: 2px solid var(--olive);
}

.status-module dt {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.status-module dd {
  margin: 0;
  font-size: clamp(0.65rem, 1.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.status-module__ready {
  color: var(--green);
}

/* Hero visual stage */

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero-stage {
  position: absolute;
  inset: 4% 2%;
  pointer-events: none;
  z-index: 0;
}

.hero-stage__ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(196, 184, 154, 0.18);
  border-radius: 50%;
}

.hero-stage__ring--a {
  animation: ring-spin 28s linear infinite;
  border-style: dashed;
}

.hero-stage__ring--b {
  inset: 18%;
  border-color: rgba(0, 200, 5, 0.2);
  animation: ring-spin 18s linear infinite reverse;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.hero-stage__radar {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 200, 5, 0.18) 50deg, transparent 70deg);
  opacity: 0.55;
  animation: ring-spin 6s linear infinite;
  mask-image: radial-gradient(circle, transparent 42%, #000 43%, #000 70%, transparent 71%);
}

.hero-stage__brackets span {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--green);
  border-style: solid;
  opacity: 0.7;
  animation: bracket-pulse 3.2s ease-in-out infinite;
}

.hero-stage__brackets span:nth-child(1) {
  top: 6%;
  left: 8%;
  border-width: 2px 0 0 2px;
}

.hero-stage__brackets span:nth-child(2) {
  top: 6%;
  right: 8%;
  border-width: 2px 2px 0 0;
  animation-delay: 0.4s;
}

.hero-stage__brackets span:nth-child(3) {
  bottom: 10%;
  left: 8%;
  border-width: 0 0 2px 2px;
  animation-delay: 0.8s;
}

.hero-stage__brackets span:nth-child(4) {
  bottom: 10%;
  right: 8%;
  border-width: 0 2px 2px 0;
  animation-delay: 1.2s;
}

@keyframes bracket-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.06); }
}

.hero-stage__ticks {
  position: absolute;
  top: 12%;
  right: 2%;
  width: 14px;
  height: 55%;
  background: repeating-linear-gradient(
    to bottom,
    var(--sand) 0 1px,
    transparent 1px 12px
  );
  opacity: 0.35;
}

.hero-stage__path {
  position: absolute;
  left: 10%;
  right: 18%;
  bottom: 18%;
  height: 40px;
  border-bottom: 1px dashed rgba(0, 200, 5, 0.35);
  border-radius: 0 0 60% 40%;
  opacity: 0.6;
}

.hero-stage__aircraft {
  position: absolute;
  top: 18%;
  left: 12%;
  width: 18px;
  height: 6px;
  background: var(--sand);
  clip-path: polygon(0 50%, 70% 0, 100% 50%, 70% 100%);
  opacity: 0.45;
  animation: aircraft-drift 9s ease-in-out infinite;
}

@keyframes aircraft-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, -10px); }
}

.hero-mascot {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 420px);
  padding: 0.75rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(26, 31, 24, 0.9), rgba(20, 24, 18, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(0, 200, 5, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero-mascot::before {
  content: "RECON CAPTURE";
  position: absolute;
  top: -0.55rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.15rem 0.45rem;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--sand);
}

.hero-mascot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.hero-mascot:not(.is-depth) img {
  animation: mascot-breathe 5.5s ease-in-out infinite;
  will-change: transform;
}

.hero-mascot.is-depth {
  animation: mascot-breathe 5.5s ease-in-out infinite;
}

@keyframes mascot-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-mascot__caption {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.55rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* Stagger entrance (JS adds .is-in) */
.reveal-stagger {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.hero.is-ready .reveal-stagger {
  opacity: 1;
  transform: none;
}

.hero.is-ready .reveal-stagger:nth-child(1) { transition-delay: 0.05s; }
.hero.is-ready .reveal-stagger:nth-child(2) { transition-delay: 0.12s; }
.hero.is-ready .reveal-stagger:nth-child(3) { transition-delay: 0.2s; }
.hero.is-ready .reveal-stagger:nth-child(4) { transition-delay: 0.28s; }
.hero.is-ready .reveal-stagger:nth-child(5) { transition-delay: 0.36s; }
.hero.is-ready .reveal-stagger:nth-child(6) { transition-delay: 0.44s; }
.hero.is-ready .reveal-stagger:nth-child(7) { transition-delay: 0.52s; }

.hero__title .reveal-stagger:nth-child(1) { transition-delay: 0.1s; }
.hero__title .reveal-stagger:nth-child(2) { transition-delay: 0.18s; }

/* No-JS / reduced-motion fallbacks handled below */

/* --------------------------------------------------------------------------
   Mission ID / CA strip
   -------------------------------------------------------------------------- */

.mission-id {
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(1.75rem, 4vw, 2.75rem);
}

.mission-id__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(0.9rem, 2vw, 1.15rem) clamp(0.9rem, 2.5vw, 1.4rem);
  border: 1px solid var(--line-strong);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(0, 200, 5, 0.03) 6px,
      rgba(0, 200, 5, 0.03) 12px
    ),
    var(--bg-panel);
  box-shadow: inset 3px 0 0 var(--green);
}

.mission-id__meta h2 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.25rem;
}

.mission-id__meta p {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.mission-id__value-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 16rem;
  justify-content: flex-end;
}

.mission-id__value {
  display: block;
  min-width: 0;
  max-width: 100%;
  padding: 0.55rem 0.75rem;
  background: #0a0c09;
  border: 1px solid var(--line);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* --------------------------------------------------------------------------
   Banner theater
   -------------------------------------------------------------------------- */

.banner-theater {
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
}

.banner-theater__frame {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.1rem);
  border: 1px solid var(--line-strong);
  background: var(--bg-elev);
  overflow: hidden;
}

.banner-theater__corners span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--green);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}

.banner-theater__corners span:nth-child(1) {
  top: 8px; left: 8px; border-width: 2px 0 0 2px;
}
.banner-theater__corners span:nth-child(2) {
  top: 8px; right: 8px; border-width: 2px 2px 0 0;
}
.banner-theater__corners span:nth-child(3) {
  bottom: 8px; left: 8px; border-width: 0 0 2px 2px;
}
.banner-theater__corners span:nth-child(4) {
  bottom: 8px; right: 8px; border-width: 0 2px 2px 0;
}

.banner-theater__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.banner-theater__label {
  color: var(--green);
}

.banner-theater__op {
  color: var(--sand);
}

.banner-theater__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.banner-theater__scan {
  position: absolute;
  left: clamp(0.75rem, 2vw, 1.1rem);
  right: clamp(0.75rem, 2vw, 1.1rem);
  top: 3.2rem;
  bottom: clamp(0.75rem, 2vw, 1.1rem);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 200, 5, 0.08) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: banner-scan 5.5s linear infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

@keyframes banner-scan {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

/* --------------------------------------------------------------------------
   Operator dossier
   -------------------------------------------------------------------------- */

.dossier {
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
}

.dossier__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 3vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(61, 74, 50, 0.18), transparent 45%),
    var(--bg-panel);
}

.dossier__stamp {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.35rem 0.7rem;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  transform: rotate(8deg);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.dossier__header {
  grid-column: 1 / -1;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.dossier__eyebrow {
  margin-bottom: 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.dossier__header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: 0.1em;
  max-width: 18ch;
}

.dossier__left,
.dossier__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.dossier__fragments {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px dashed var(--line-strong);
  background: rgba(0, 0, 0, 0.2);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: 0.04em;
  color: var(--sand);
}

.dossier__narrative {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 58ch;
}

.dossier__tagline {
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.7;
}

.dossier__callsign {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.05em;
  color: var(--sand);
  line-height: 1.35;
}

.dossier__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.dossier__specs > div {
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  min-width: 0;
}

.dossier__specs dt {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.dossier__specs dd {
  margin: 0;
  font-size: 0.8rem;
  color: var(--off-white);
  word-break: break-word;
}

.dossier__disclaimer {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--warn);
  background: rgba(232, 93, 4, 0.08);
  color: var(--off-white);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Radar section
   -------------------------------------------------------------------------- */

.radar-section {
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
}

.radar-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.radar-section__eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.radar-section__header h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.1em;
}

.radar-section__header p {
  color: var(--muted);
  max-width: 28ch;
}

.radar-panel {
  border: 1px solid var(--line-strong);
  background: #0a0d09;
  padding: 0.85rem;
}

.radar-panel__screen {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 5, 0.35);
  background:
    radial-gradient(circle at center, rgba(0, 200, 5, 0.08), transparent 55%),
    #071008;
  overflow: hidden;
}

.radar-panel__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 200, 5, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.08) 1px, transparent 1px);
  background-size: 12% 12%;
  opacity: 0.7;
}

.radar-panel__rings::before,
.radar-panel__rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 200, 5, 0.2);
  border-radius: 50%;
  inset: 18%;
}

.radar-panel__rings::after {
  inset: 35%;
}

.radar-panel__sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 200, 5, 0.28) 28deg,
    transparent 55deg
  );
  animation: ring-spin 4s linear infinite;
  transform-origin: center;
}

.radar-blip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green-glow);
  z-index: 2;
}

.radar-blip::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  top: -2px;
  white-space: nowrap;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: var(--sand);
  opacity: 0.85;
}

.radar-blip--a {
  top: 28%;
  left: 62%;
  animation: blip-pulse 2.8s ease-out infinite;
}

.radar-blip--b {
  top: 58%;
  left: 30%;
  width: 6px;
  height: 6px;
  animation: blip-pulse 3.4s ease-out infinite 0.6s;
}

.radar-blip--c {
  top: 42%;
  left: 48%;
  width: 10px;
  height: 10px;
  background: var(--warn);
  animation: blip-pulse 2.2s ease-out infinite 1.1s;
}

.radar-blip.is-ping {
  transform: scale(1.35);
  filter: brightness(1.25);
}

@keyframes blip-pulse {
  0% { box-shadow: 0 0 0 0 var(--green-glow); opacity: 1; }
  70% { box-shadow: 0 0 0 12px transparent; opacity: 0.75; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

.radar-path {
  position: absolute;
  inset: 22% 18% 30% 20%;
  border: 1px dashed rgba(196, 184, 154, 0.3);
  border-radius: 40% 60% 50% 40%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.radar-mascot {
  position: absolute;
  bottom: 18%;
  right: 22%;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  opacity: 0.9;
  z-index: 2;
}

.radar-readout {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.radar-readout li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.radar-readout span {
  color: var(--muted);
}

.radar-readout strong {
  font-weight: 600;
  color: var(--green);
  text-align: right;
}

/* --------------------------------------------------------------------------
   How to deploy
   -------------------------------------------------------------------------- */

.deploy {
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
}

.deploy__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  overflow: hidden;
}

.deploy__eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.deploy__header h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: 0.1em;
}

.deploy__checklist {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  counter-reset: none;
}

.deploy__checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--green);
}

.deploy__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--sand);
  line-height: 1;
}

.deploy__checklist h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.deploy__checklist p {
  margin-bottom: 0.75rem;
  color: var(--muted);
  max-width: 48ch;
}

.deploy__stamp {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  padding: 0.45rem 0.8rem;
  border: 2px solid var(--green);
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  letter-spacing: 0.18em;
  transform: rotate(-8deg);
  opacity: 0.45;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.final-cta {
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(0, 200, 5, 0.07), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(61, 74, 50, 0.35), transparent 40%),
    var(--bg-panel);
}

.final-cta__copy h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: 0.08em;
  color: var(--off-white);
}

.final-cta__copy > p {
  margin-bottom: 1.4rem;
  color: var(--sand);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.final-cta__badge {
  margin: 0;
  justify-self: center;
  width: min(100%, 240px);
  text-align: center;
}

.final-cta__badge img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: 8px 8px 0 rgba(0, 200, 5, 0.15);
  animation: mascot-breathe 6.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.final-cta__badge figcaption {
  margin-top: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: #080a07;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.75rem) 2rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.site-footer__brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: 1.1rem;
}

.site-footer__brand span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--green);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-footer__disclaimer {
  max-width: 70ch;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer__end {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--olive-mid);
}

/* --------------------------------------------------------------------------
   Scroll reveals
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.dossier__fragments.reveal.is-visible {
  transform: none;
}

.final-cta__badge.reveal {
  transform: translateX(16px);
}

.final-cta__badge.reveal.is-visible {
  transform: none;
}

/* --------------------------------------------------------------------------
   Cursor depth (desktop, lightweight)
   -------------------------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
  .hero-mascot.is-depth img {
    transition: transform 0.25s ease-out;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (min-width: 900px) {
  .header-status {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .hero-stage__ticks,
  .hero-stage__aircraft,
  .hero-stage__path {
    display: none;
  }

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

  .radar-section__inner {
    grid-template-columns: 1fr;
  }

  .radar-section__header {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero-mascot {
    width: min(100%, 340px);
  }

  .hero-stage__ring--b {
    display: none;
  }

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

  .dossier__stamp {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.8rem;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .final-cta__badge {
    order: -1;
    width: min(100%, 200px);
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .brand__chain {
    font-size: 0.52rem;
  }

  .nav .btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
  }

  .status-module {
    grid-template-columns: 1fr;
  }

  .mission-id__value-wrap {
    justify-content: stretch;
    width: 100%;
  }

  .mission-id__value {
    flex: 1 1 100%;
  }

  .btn--copy {
    width: 100%;
  }

  .deploy__stamp {
    opacity: 0.28;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .hero-stage__radar {
    opacity: 0.35;
  }
}

@media (max-width: 480px) {
  .brand__text {
    display: none;
  }

  .nav {
    margin-left: auto;
  }

  .btn--lg {
    padding: 0.8rem 1.05rem;
    font-size: 0.72rem;
  }

  .hero__actions .btn,
  .final-cta__actions .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.35rem);
  }

  .hero__actions .btn--x,
  .final-cta__actions .btn--x {
    flex: 0 0 auto;
    min-width: 2.8rem;
  }

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

  .banner-theater__scan {
    top: 3.8rem;
  }
}

@media (max-width: 360px) {
  .site-header__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav {
    gap: 0.3rem;
  }

  .nav .btn {
    padding: 0.45rem 0.55rem;
    letter-spacing: 0.1em;
  }

  .hero__title > span:first-child {
    font-size: 3rem;
  }

  .hero__hook {
    font-size: 1.05rem;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .status-ticker__track,
  .header-scan,
  .header-status__dot,
  .hero-stage__ring--a,
  .hero-stage__ring--b,
  .hero-stage__radar,
  .hero-stage__brackets span,
  .hero-stage__aircraft,
  .hero-mascot:not(.is-depth) img,
  .hero-mascot.is-depth,
  .banner-theater__scan,
  .radar-panel__sweep,
  .radar-blip,
  .final-cta__badge img {
    animation: none !important;
  }

  .reveal-stagger,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn--buy:hover,
  .btn--buy:active,
  .brand:hover .brand__logo {
    transform: none;
  }
}

/* No-JS: content visible */
.no-js .reveal-stagger,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

.no-js .hero {
  /* briefing visible without entrance class */
}
