/* ═══════════════════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════════════════ */
:root {
  --void:       #000008;
  --void-2:     #05050f;
  --cyan:       #00e5ff;
  --cyan-dim:   #00b8cc;
  --violet:     #7c3aed;
  --violet-dim: #5b21b6;
  --magenta:    #ff006e;
  --magenta-dim:#cc0055;
  --white:      #f0f0ff;
  --muted:      #3a3a5c;
  --glass:      rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --nav-h:      72px;
  --section-pad: clamp(80px, 12vw, 140px);
  --container:  1200px;
  --radius:     12px;
  --radius-lg:  20px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ═══════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; }
img, svg { display: block; max-width: 100%; }
blockquote { font-style: normal; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
.mono { font-family: 'JetBrains Mono', monospace; }

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════
   FIXED CANVAS + GRADIENT BG
═══════════════════════════════════════════════════ */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
#bg-gradient {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.grad-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.grad-orb-1 {
  width: 700px; height: 700px;
  background: var(--violet);
  top: -200px; left: -200px;
  animation: orbDrift1 20s ease-in-out infinite alternate;
}
.grad-orb-2 {
  width: 600px; height: 600px;
  background: var(--cyan);
  bottom: 10%; right: -150px;
  animation: orbDrift2 25s ease-in-out infinite alternate;
}
.grad-orb-3 {
  width: 500px; height: 500px;
  background: var(--magenta);
  top: 50%; left: 30%;
  animation: orbDrift3 18s ease-in-out infinite alternate;
}

/* ═══════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loader-logo-wrap {
  position: relative;
}
.loader-logo {
  width: 120px;
  height: 60px;
  color: var(--cyan);
  filter: drop-shadow(0 0 20px var(--cyan));
  animation: logoGlow 2s ease-in-out infinite alternate;
}
.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: var(--muted);
  border-radius: 999px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 999px;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--cyan);
}
.loader-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  animation: loaderBlink 1.2s step-end infinite;
}

/* ═══════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════ */
#cursor {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  pointer-events: none;
  will-change: transform;
}
#cursor-ring {
  width: 24px; height: 24px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s ease,
              opacity 0.3s ease;
}
body.cursor-hover #cursor-ring {
  width: 44px; height: 44px;
  border-color: var(--magenta);
}
body.cursor-hidden #cursor-ring {
  opacity: 0;
}
#cursor-trail {
  position: fixed;
  z-index: 9998;
  top: 0; left: 0;
  pointer-events: none;
}
.trail-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(0, 0, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
.logo-bd {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-full {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(240,240,255,0.6);
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--white); }
.nav-cta { margin-left: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px clamp(20px, 5vw, 60px);
  background: rgba(0, 0, 8, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-link {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--glass-border);
  color: rgba(240,240,255,0.7);
}
.mobile-link--cta {
  color: var(--cyan);
  border-bottom: none;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--ease-out-expo),
              box-shadow 0.2s ease,
              background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn:hover::after { opacity: 0.05; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--cyan);
  color: #000;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.5), 0 0 100px rgba(0, 229, 255, 0.2);
}
.btn-ghost {
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.section--hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-eyebrow.visible { opacity: 1; transform: translateY(0); transition: all 0.8s var(--ease-out-expo) 0.2s; }
.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0.04em;
}
.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(40px) skewY(1deg);
  background: linear-gradient(135deg, var(--white) 0%, rgba(240,240,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.headline-line.visible {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
  transition: all 1s var(--ease-out-expo);
}
#headline-1.visible { transition-delay: 0.1s; }
#headline-2.visible { transition-delay: 0.25s; }

/* Glitch effect on hover */
.hero-headline:hover .headline-line {
  animation: textGlitch 0.4s var(--ease-in-out-quart);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: rgba(240, 240, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s var(--ease-out-expo) 0.5s;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-ctas.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s var(--ease-out-expo) 0.7s;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInScroll 1s ease 2.5s forwards;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  writing-mode: horizontal-tb;
}

/* Floating hero orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}
.orb--hero-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  top: 10%; right: 5%;
  animation: float1 12s ease-in-out infinite alternate;
}
.orb--hero-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,229,255,0.2) 0%, transparent 70%);
  bottom: 20%; left: 5%;
  animation: float2 15s ease-in-out infinite alternate;
}
.orb--hero-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,0,110,0.2) 0%, transparent 70%);
  top: 40%; left: 15%;
  animation: float3 10s ease-in-out infinite alternate;
}

/* ═══════════════════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════════════════ */
.section--manifesto {
  position: relative;
  z-index: 2;
}
.manifesto-pin {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.manifesto-bg-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(60px, 14vw, 160px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.02);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.manifesto-statements {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.manifesto-statement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}
.manifesto-statement.active {
  opacity: 1;
  pointer-events: auto;
}
.statement-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
}
.statement-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.statement-text em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
}
.manifesto-progress {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.progress-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.progress-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transform: scale(1.4);
}

/* ═══════════════════════════════════════════════════
   SIGNAL DASHBOARD
═══════════════════════════════════════════════════ */
.section--signal {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--signal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.01) 3px,
    rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
  z-index: 0;
}
.signal-header {
  margin-bottom: 60px;
}
.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 28px;
}
.signal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: statusBlink 1.4s ease-in-out infinite;
}
.signal-dot--pink {
  background: var(--magenta);
  box-shadow: 0 0 6px var(--magenta);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(240,240,255,0.55);
  line-height: 1.6;
  max-width: 520px;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.signal-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.signal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.signal-card:hover {
  border-color: rgba(0,229,255,0.2);
  box-shadow: 0 0 40px rgba(0,229,255,0.05);
}
.signal-card:hover::before { opacity: 1; }
.signal-card-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 16px;
}
.signal-card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.signal-card-value--mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(22px, 2.2vw, 32px);
}
.signal-card-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,240,255,0.45);
  line-height: 1.5;
  margin-bottom: 20px;
}
.signal-card-bar {
  height: 2px;
  background: var(--muted);
  border-radius: 999px;
  overflow: hidden;
}
.signal-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 0 6px var(--cyan);
  transition: width 1.5s var(--ease-out-expo);
}
.signal-card.animated .signal-bar-fill {
  width: var(--fill);
}

/* Ticker */
.signal-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.signal-ticker { overflow: hidden; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}
.ticker-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.ticker-sep {
  color: var(--cyan);
  opacity: 0.4;
  font-size: 8px;
}

/* ═══════════════════════════════════════════════════
   OPERATIONS / PROJECTS
═══════════════════════════════════════════════════ */
.section--operations {
  padding: var(--section-pad) 0;
}
.ops-header {
  margin-bottom: 60px;
}
.ops-featured {
  margin-bottom: 24px;
}

/* Project Cards Base */
.project-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out-expo);
  transform-style: preserve-3d;
  will-change: transform;
}
.card-inner {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
}
/* Holographic overlay */
.card-holo-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: conic-gradient(
    from var(--holo-angle, 0deg) at 50% 50%,
    rgba(255, 0, 110, 0.15),
    rgba(124, 58, 237, 0.2),
    rgba(0, 229, 255, 0.2),
    rgba(0, 229, 255, 0.15),
    rgba(124, 58, 237, 0.2),
    rgba(255, 0, 110, 0.15)
  );
  mix-blend-mode: screen;
  pointer-events: none;
}
.project-card:hover .card-holo-overlay { opacity: 1; }

/* Featured card */
.project-card--featured {
  display: grid;
  grid-template-columns: 1fr;
}
.project-card--featured .card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.project-card--featured .card-icon {
  color: var(--cyan);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(0,229,255,0.5));
}
.project-card--featured .card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white), rgba(240,240,255,0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project-card--featured .card-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(240,240,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.project-card--featured:hover {
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 0 60px rgba(0,229,255,0.08), 0 0 120px rgba(124,58,237,0.05);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.card-status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--active {
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
  animation: statusBlink 1.6s ease-in-out infinite;
}
.status-dot--pending {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: statusBlink 2s ease-in-out infinite;
}
.status-dot--soon {
  background: var(--magenta);
  box-shadow: 0 0 6px var(--magenta);
}
.card-status-text {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.card-tag {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Classified card grid */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card--classified {
  min-height: 260px;
}
.project-card--classified:hover {
  border-color: rgba(255,0,110,0.2);
  box-shadow: 0 0 40px rgba(255,0,110,0.05);
}
.card-classified-name {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(240,240,255,0.5);
  margin-bottom: 16px;
}
.redacted {
  background: rgba(240,240,255,0.4);
  color: transparent;
  border-radius: 2px;
  padding: 0 2px;
  user-select: none;
}
.card-desc { font-size: 14px; font-weight: 300; color: rgba(240,240,255,0.5); line-height: 1.7; }
.card-desc--muted { color: rgba(240,240,255,0.3); margin-bottom: 20px; }
.card-cta-placeholder {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.blink-cursor {
  animation: cursorBlink 1s step-end infinite;
  color: var(--cyan);
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.section--contact {
  position: relative;
  overflow: hidden;
}
.contact-inner {
  position: relative;
  padding: var(--section-pad) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.contact-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-bg-text {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(120px, 25vw, 280px);
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
}
.contact-inner .container { position: relative; z-index: 1; }
.contact-overline {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 24px;
}
.contact-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}
.contact-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.contact-response {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cyan);
}
.footer-name {
  font-size: 13px;
  color: var(--muted);
}
.footer-center {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-link {
  color: var(--muted);
  transition: color 0.2s ease, filter 0.2s ease;
}
.footer-link:hover {
  color: var(--white);
  filter: drop-shadow(0 0 6px var(--cyan));
}

/* ═══════════════════════════════════════════════════
   SOUND TOGGLE
═══════════════════════════════════════════════════ */
.sound-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.sound-toggle:hover {
  color: var(--cyan);
  border-color: rgba(0,229,255,0.3);
}
.sound-toggle.active {
  color: var(--cyan);
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}

/* ═══════════════════════════════════════════════════
   REVEAL UTILITIES
═══════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  /* Hide the wordmark early so it never fights nav links for space */
  .logo-full { display: none; }
}

@media (max-width: 900px) {
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--featured .card-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }
  .signal-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ops-grid { grid-template-columns: 1fr; }
  .manifesto-progress { right: 12px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-center { order: 3; }
  .contact-actions { align-items: center; }
  body { cursor: auto; }
  #cursor, #cursor-trail { display: none; }
}

@media (max-width: 500px) {
  .signal-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .headline-line, .hero-eyebrow, .hero-sub, .hero-ctas {
    opacity: 1;
    transform: none;
  }
  #loader { display: none; }
  .reveal-up { opacity: 1; transform: none; }
}
