/* ─── Deadeye Orbital — "Clean space. Dirty work." ───────────────────
   Concept exploration for a privatized orbital-debris-removal outfit.
   Structural DNA borrowed from loadbearing.css (drafting mark, spine,
   corner stamp, canvas field, scroll-reveal) — re-skinned entirely:
   deep-space void, hot rust/ember "target lock" gradient, cold cyan
   HUD accents, a hero orbit visual, a radar sweep, a debris ticker,
   and a targeting-reticle cursor. ─────────────────────────────────── */

:root {
  --font-display: -apple-system, 'SF Pro Display', 'Segoe UI', system-ui, Roboto, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', 'JetBrains Mono', Consolas, monospace;
}

@property --shimmer-pos {
  syntax: '<percentage>';
  inherits: false;
  initial-value: -40%;
}

:root {
  --void:       #020204;
  --ink:        #060810;
  --steel:      #eee9df;
  --rust:       #ff5a36;
  --rust-bright:#ff8a5c;
  --rust-dim:   rgba(255,90,54,0.5);
  --ember:      #ffb454;
  --cyan:       #49d3ff;
  --cyan-bright:#9be8ff;
  --cyan-dim:   rgba(73,211,255,0.45);
  --line:       rgba(238,233,223,0.09);
  --glass:      rgba(10,12,20,0.55);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--steel);
  font-family: var(--font-display);
  font-weight: 400;
  overflow-x: hidden;
}
body.reticle-active { cursor: none; }

/* ─── Debris-field canvas ──────────────────────────────── */
#field-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* ─── Nebula glow — soft, slow-drifting radial blooms ────
   The "fluid" gradient orbs, space-flavored: rust/ember over
   one shoulder, cold cyan over the other. ───────────────── */
.nebula {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}
.nebula-a {
  top: -18%; left: -12%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,90,54,0.35), transparent 70%);
  animation: drift-a 34s ease-in-out infinite alternate;
}
.nebula-b {
  bottom: -22%; right: -14%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(73,211,255,0.25), transparent 70%);
  animation: drift-b 40s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(4vw, 5vw) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-3vw, -6vw) scale(1.08); }
}

/* ─── Grain texture ──────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Vignette ────────────────────────────────────────── */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, transparent 45%, rgba(2,2,4,0.6) 100%),
    linear-gradient(to bottom, rgba(2,2,4,0.2), transparent 15%, transparent 85%, rgba(2,2,4,0.5));
}

/* ─── Targeting reticle — replaces the cursor on desktop ──
   Hidden until JS confirms a fine pointer; never blocks clicks. ── */
.reticle {
  position: fixed;
  top: 0; left: 0;
  z-index: 999;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.08s ease-out;
  will-change: transform;
}
body.reticle-active .reticle { opacity: 0.85; }
.reticle svg { width: 100%; height: 100%; }
.reticle.firing { transform: scale(0.7); }
.reticle-flash {
  position: fixed;
  z-index: 998;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  border: 1.5px solid var(--rust-bright);
  pointer-events: none;
  animation: flash-out 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes flash-out {
  0%   { width: 10px; height: 10px; margin: -5px 0 0 -5px; opacity: 1; border-color: var(--rust-bright); }
  100% { width: 70px; height: 70px; margin: -35px 0 0 -35px; opacity: 0; border-color: var(--cyan); }
}

/* ─── Fixed mark — sheriff badge crossed with an orbit ─── */
.mark {
  position: fixed;
  top: 1.8rem; left: 1.8rem;
  z-index: 100;
  width: 34px; height: 34px;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}
.mark:hover { opacity: 1; transform: translateY(-2px) rotate(8deg); }
.mark svg { width: 100%; height: 100%; }

/* ─── Orbital spine — scroll progress, satellite decaying ── */
.spine {
  position: fixed;
  top: 0; bottom: 0;
  left: 2.4rem;
  z-index: 90;
  width: 1px;
  pointer-events: none;
}
.spine-track {
  position: absolute;
  inset: 0;
  background: var(--line);
}
.spine-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--cyan), var(--rust));
  box-shadow: 0 0 12px 1px rgba(255,90,54,0.4);
  transition: height 0.1s linear;
}
.spine-fill::after {
  content: '';
  position: absolute;
  bottom: -3px; left: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rust-bright);
  box-shadow: 0 0 10px 2px var(--rust-bright);
}

/* ─── HUD stamp ───────────────────────────────────────── */
.stamp {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  z-index: 100;
  border: 1px solid var(--line);
  background: rgba(6,8,16,0.55);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.stamp dl { display: flex; flex-direction: column; gap: 0.35rem; }
.stamp dl > div { display: flex; gap: 1.4rem; justify-content: space-between; }
.stamp dt { color: rgba(238,233,223,0.35); text-transform: uppercase; }
.stamp dd { color: rgba(238,233,223,0.75); text-transform: uppercase; text-align: right; }
#stamp-status { color: var(--rust-bright); transition: color 0.4s; }

/* ─── MAIN / SECTIONS ─────────────────────────────────── */
main { position: relative; z-index: 10; }
section {
  position: relative;
  min-height: 100svh;
  padding: 0 4rem 0 6.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  gap: 1.6rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.hero-copy { max-width: 46rem; }

.side-label {
  position: absolute;
  top: 3rem;
  left: 6.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust-bright);
  animation: rise 1.4s cubic-bezier(0.16,1,0.3,1) both;
}

.wordmark {
  display: flex;
  flex-direction: column;
  animation: rise 1.6s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.w-deadeye {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 9.5vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  background:
    linear-gradient(
      90deg,
      transparent calc(var(--shimmer-pos) - 14%),
      rgba(255,255,255,0.95) var(--shimmer-pos),
      transparent calc(var(--shimmer-pos) + 14%)
    ),
    linear-gradient(120deg, var(--ember) 10%, var(--rust) 55%, var(--rust-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 9s 2s linear infinite;
}
.w-orbital {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(238,233,223,0.85);
  margin-top: 0.15em;
}
@keyframes shimmer {
  0%     { --shimmer-pos: -40%; animation-timing-function: ease-in-out; }
  20%    { --shimmer-pos: 140%; }
  20.01% { --shimmer-pos: -40%; }
  100%   { --shimmer-pos: -40%; }
}

.dimension {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
  color: var(--cyan-dim);
  animation: rise 1.8s 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
.dim-line {
  width: 44px; height: 1px;
  background: currentColor;
  position: relative;
}
.dim-line::before {
  content: '';
  position: absolute;
  top: -4px;
  width: 1px; height: 9px;
  background: currentColor;
}
.dim-line:first-child::before { right: 0; }
.dim-line:last-child::before { left: 0; }
.dim-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cyan-bright);
}

.hero-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(238,233,223,0.6);
  max-width: 34ch;
  margin-top: 1.1rem;
  animation: rise 2s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.28);
  margin-top: 1.6rem;
  animation: rise 2.2s 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO ORBIT VISUAL ──────────────────────────────────
   Planet limb + dashed orbit ring with a traveling satellite,
   plus a small radar-sweep readout. All CSS/SVG, no imagery. */
.hero-orbit {
  position: relative;
  flex-shrink: 0;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  animation: rise 2s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
.planet {
  position: absolute;
  left: 8%; bottom: -18%;
  width: 84%; height: 84%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,180,84,0.5), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(6,8,16,0.9), transparent 60%),
    linear-gradient(160deg, #171a26 0%, #06070d 70%);
  box-shadow:
    0 0 0 1px rgba(238,233,223,0.06),
    -8px -10px 60px rgba(255,90,54,0.22),
    inset -14px -10px 40px rgba(0,0,0,0.6);
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(73,211,255,0.35);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}
.orbit-ring.ring-2 {
  inset: 12%;
  border-color: rgba(255,90,54,0.28);
  animation-duration: 18s;
  animation-direction: reverse;
}
.orbit-sat {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 10px 2px var(--cyan);
}
.orbit-ring.ring-2 .orbit-sat {
  background: var(--rust-bright);
  box-shadow: 0 0 10px 2px var(--rust);
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.radar {
  position: absolute;
  top: 4%; right: 2%;
  width: 34%; height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,211,255,0.06), transparent 70%);
  border: 1px solid rgba(73,211,255,0.25);
}
.radar::before, .radar::after {
  content: '';
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(73,211,255,0.16);
  border-radius: 50%;
}
.radar::after { inset: 45%; }
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(73,211,255,0.55), transparent 28%);
  animation: spin 3.4s linear infinite;
  mix-blend-mode: screen;
}
.radar-blip {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rust-bright);
  box-shadow: 0 0 6px 1px var(--rust);
  animation: blip 2.6s ease-in-out infinite;
}
.radar-blip.b1 { top: 30%; left: 62%; animation-delay: 0s; }
.radar-blip.b2 { top: 60%; left: 32%; animation-delay: 0.8s; }
.radar-blip.b3 { top: 48%; left: 50%; animation-delay: 1.6s; }
@keyframes blip {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1.3); }
}

/* ─── TICKER — scrolling debris manifest ─────────────── */
.ticker {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6,8,16,0.5);
  backdrop-filter: blur(4px);
  overflow: hidden;
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: ticker-scroll 42s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.45);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.ticker-track span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 6px 1px var(--rust-dim);
  flex-shrink: 0;
}
.ticker-track span.cleared { color: var(--cyan-bright); }
.ticker-track span.cleared::before { background: var(--cyan); box-shadow: 0 0 6px 1px var(--cyan-dim); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── MANIFESTO ───────────────────────────────────────── */
.manifesto {
  align-items: flex-end;
  text-align: right;
  padding-right: 6.5rem;
  padding-left: 4rem;
  gap: 1.4rem;
}
.callout {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}
.statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 20ch;
  color: rgba(238,233,223,0.9);
}
.statement em {
  font-style: normal;
  color: var(--rust-bright);
}
.statement-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  max-width: 36ch;
  color: rgba(238,233,223,0.5);
}

/* ─── OUTFIT (brand architecture) ─────────────────────── */
.outfit {
  min-height: auto;
  padding: 8rem 4rem 8rem 6.5rem;
  gap: 3rem;
  justify-content: flex-start;
}
.outfit-heading { max-width: 46ch; }
.outfit-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  letter-spacing: -0.01em;
  color: var(--steel);
  margin-bottom: 0.9rem;
}
.outfit-heading p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(238,233,223,0.5);
  max-width: 42ch;
}
.outfit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.outfit-card {
  position: relative;
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 60%), var(--glass);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s, box-shadow 0.35s;
}
.outfit-card:hover {
  transform: translateY(-6px);
  border-color: var(--rust-dim);
  box-shadow: 0 18px 40px -18px rgba(255,90,54,0.35);
}
.outfit-icon { width: 34px; height: 34px; }
.outfit-role {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}
.outfit-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--steel);
}
.outfit-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(238,233,223,0.55);
}

/* ─── PROTOCOL (how it works) ─────────────────────────── */
.protocol {
  min-height: auto;
  padding: 8rem 4rem 8rem 6.5rem;
  gap: 6rem;
  justify-content: flex-start;
}
.protocol-heading { max-width: 46ch; margin-bottom: -2rem; }
.protocol-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--steel);
  margin-bottom: 0.9rem;
}
.protocol-heading p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(238,233,223,0.5);
  max-width: 42ch;
}
.entry {
  position: relative;
  max-width: 34ch;
}
.entry-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 8vw, 6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238,233,223,0.16);
  margin-bottom: -0.3em;
}
.entry h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  color: var(--steel);
}
.entry p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(238,233,223,0.5);
}
.entry-left { align-self: flex-start; }
.entry-right {
  align-self: flex-end;
  text-align: right;
  margin-right: 1.5rem;
}
.entry-right .entry-num { -webkit-text-stroke-color: rgba(73,211,255,0.3); }
.entry-left .entry-num { -webkit-text-stroke-color: rgba(255,138,92,0.25); }

/* ─── TRANSMISSION LOG (names considered) ─────────────── */
.transmissions {
  min-height: auto;
  padding: 8rem 4rem 8rem 6.5rem;
  gap: 3rem;
  justify-content: flex-start;
}
.transmissions-heading { max-width: 46ch; }
.transmissions-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--steel);
  margin-bottom: 0.9rem;
}
.transmissions-heading p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(238,233,223,0.5);
  max-width: 42ch;
}
.transmission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  max-width: 62rem;
}
.transmission-list li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.transmission-list li span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: rgba(238,233,223,0.4);
  font-style: italic;
}
.transmission-list li.rejected {
  color: rgba(238,233,223,0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,90,54,0.4);
}
.transmission-list li.rejected span { text-decoration: none; }
.transmission-list li.kept {
  color: var(--cyan-bright);
}
.transmission-list li.kept::before {
  content: '\2713';
  color: var(--cyan);
  font-family: var(--font-mono);
}

/* ─── CAPABILITIES ─────────────────────────────────────── */
.capabilities {
  min-height: auto;
  padding: 8rem 4rem 8rem 6.5rem;
  gap: 3rem;
  justify-content: flex-start;
}
.cap-heading { max-width: 46ch; }
.cap-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  color: var(--steel);
  margin-bottom: 0.9rem;
}
.cap-heading p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(238,233,223,0.5);
  max-width: 42ch;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap-chip {
  background: var(--void);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: background 0.35s;
}
.cap-chip:hover { background: rgba(255,90,54,0.06); }
.cap-icon { width: 30px; height: 30px; opacity: 0.85; flex-shrink: 0; }
.cap-chip h3 {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.7);
  line-height: 1.5;
}

/* ─── CREW ─────────────────────────────────────────────── */
.crew {
  min-height: auto;
  padding: 6rem 4rem 10rem 6.5rem;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
}
.monogram { width: 92px; height: 92px; }
.crew-credit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.6);
}
.crew-line {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(238,233,223,0.4);
  max-width: 34ch;
}

/* ─── CLOSING ─────────────────────────────────────────── */
.closing {
  align-items: center;
  text-align: center;
  padding-left: 4rem;
  gap: 1.4rem;
}
.closing-mark { width: 40px; height: 40px; opacity: 0.85; }
.closing-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--steel) 30%, var(--rust-bright) 70%, var(--ember) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closing-stamp {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.3);
}

/* ─── Scroll-driven reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16,1,0.3,1);
}
.entry-left.reveal { transform: translateX(-32px); }
.entry-right.reveal { transform: translateX(32px); }
.manifesto .reveal { transform: translateY(24px); }
.outfit-grid.reveal, .cap-grid.reveal { transform: translateY(24px); }
.transmission-list.reveal { transform: translateY(24px); }
.crew .reveal { transform: translateY(20px); }
.closing .reveal { transform: translateY(20px); }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 3.5rem; padding-top: 8rem; }
  .hero-orbit { width: min(70vw, 320px); height: min(70vw, 320px); align-self: center; }
}
@media (max-width: 900px) {
  section { padding-left: 5.5rem; padding-right: 2.2rem; }
  .manifesto { padding-left: 2.2rem; padding-right: 5.5rem; }
  .outfit { padding-left: 5.5rem; padding-right: 2.2rem; }
  .protocol { padding-left: 5.5rem; padding-right: 2.2rem; gap: 5rem; }
  .transmissions { padding-left: 5.5rem; padding-right: 2.2rem; }
  .capabilities { padding-left: 5.5rem; padding-right: 2.2rem; }
  .crew { padding-left: 5.5rem; padding-right: 2.2rem; }
  .spine { left: 1.9rem; }
}
@media (max-width: 640px) {
  .mark { top: 1.2rem; left: 1.2rem; width: 28px; height: 28px; }
  .spine { left: 1.3rem; }
  section { padding-left: 3.2rem; padding-right: 1.4rem; }
  .side-label {
    top: auto;
    bottom: 100%;
    margin-bottom: 1.6rem;
    left: 3.2rem;
    max-width: 12rem;
  }
  .hero { padding-top: 6.5rem; }
  .manifesto { padding-left: 1.4rem; padding-right: 3.2rem; text-align: left; align-items: flex-start; }
  .statement, .statement-sub { max-width: 26ch; }
  .outfit { padding-left: 3.2rem; padding-right: 1.4rem; }
  .protocol { padding-left: 3.2rem; padding-right: 1.4rem; gap: 4rem; }
  .entry-right { text-align: left; align-self: flex-start; margin-right: 0; }
  .transmissions { padding-left: 3.2rem; padding-right: 1.4rem; }
  .transmission-list li { flex-direction: column; gap: 0.2rem; }
  .capabilities { padding-left: 3.2rem; padding-right: 1.4rem; }
  .crew { padding-left: 3.2rem; padding-right: 1.4rem; }
  .stamp {
    left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
    padding: 0.65rem 0.85rem;
  }
  .stamp dl > div:nth-child(3) { display: none; }
  .reticle, .reticle-flash { display: none; }
}

/* ─── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  #field-canvas { display: none; }
}

/* ─── Fine-pointer only: real cursor stays hidden for reticle ── */
@media (pointer: coarse) {
  .reticle, .reticle-flash { display: none; }
  body.reticle-active { cursor: auto; }
}
