/* ═══════════════════════════════════════════════════
   BE THE GLITCH — Design System
   Pro-human. Anti-machine. Green on black.
   ═══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #000;
  color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--green); color: #000; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--green); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ── Design Tokens ── */
:root {
  --green:       #00FF41;
  --green-dim:   #00CC33;
  --green-dark:  #003B0F;
  --black:       #000000;
  --off-black:   #080808;
  --white:       #F0F0EC;
  --muted:       #555555;
  --dim:         #222222;
  --red:         #FF0033;
  --cyan:        #00FFFF;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Scanlines overlay ── */
.scanlines {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0, 255, 65, 0.015) 3px, rgba(0, 255, 65, 0.015) 4px
  );
}

/* ── Code Rain Canvas ── */
#code-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

/* ── Glitch overlay ── */
.glitch-overlay {
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
}
.glitch-overlay.fire {
  animation: glitch-burst 0.4s steps(1) forwards;
}
@keyframes glitch-burst {
  0%   { opacity: 1; background: rgba(0,255,65,0.04); }
  15%  { opacity: 1; background: rgba(255,0,51,0.06); transform: translateX(-3px); }
  30%  { opacity: 0; transform: none; }
  45%  { opacity: 1; background: rgba(0,255,255,0.04); transform: translateX(2px) skewX(0.3deg); }
  60%  { opacity: 0; transform: none; }
  100% { opacity: 0; }
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,255,65,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
}
.nav-logo-text {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text .g { color: var(--green); }

.nav-cat {
  width: auto;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(0,255,65,0.25);
  filter: saturate(0.4) brightness(0.9) sepia(0.2) hue-rotate(80deg);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}
.nav-cat:hover {
  filter: saturate(0) brightness(1.1) sepia(0.4) hue-rotate(80deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links .nav-cta a {
  color: var(--green);
  border: 1px solid var(--green);
  padding: 8px 18px;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta a:hover {
  background: var(--green);
  color: #000;
}

/* Progress bar */
.nav-progress {
  position: fixed;
  top: 64px; left: 0;
  height: 1px;
  background: var(--green);
  z-index: 101;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--green);
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  z-index: 2;
  overflow: hidden;
}
.hero-main {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-headlines {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.hero-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hero-cat {
  width: auto;
  height: clamp(220px, 38vh, 480px);
  max-width: 100%;
  border: 1px solid rgba(0,255,65,0.2);
  filter: saturate(0.35) brightness(0.85) sepia(0.15) hue-rotate(75deg);
  transition: filter 0.4s ease;
  display: block;
}
.hero-cat:hover {
  filter: saturate(0.8) brightness(1) sepia(0.05) hue-rotate(75deg);
}
.hero-cat-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,255,65,0.4);
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fade-up 1s var(--ease) 0.3s both;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

.hero-headline {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  animation: fade-up 1.2s var(--ease) 0.5s both;
}

.hero-headline-green {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  text-shadow: 0 0 40px rgba(0,255,65,0.3);
  position: relative;
  animation: fade-up 1.2s var(--ease) 0.7s both;
}

/* Glitch effect on the green headline */
.hero-headline-green::before,
.hero-headline-green::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.hero-headline-green::before {
  color: var(--red);
  animation: glitch-red 4s infinite;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
}
.hero-headline-green::after {
  color: var(--cyan);
  animation: glitch-cyan 4s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
}

@keyframes glitch-red {
  0%, 85%, 100% { transform: none; opacity: 0; }
  86%  { transform: translateX(-4px); opacity: 0.8; }
  88%  { transform: translateX(3px); opacity: 0.6; }
  90%  { transform: translateX(-2px); opacity: 0.8; }
  92%  { transform: none; opacity: 0; }
}
@keyframes glitch-cyan {
  0%, 88%, 100% { transform: none; opacity: 0; }
  89%  { transform: translateX(4px); opacity: 0.7; }
  91%  { transform: translateX(-3px); opacity: 0.5; }
  93%  { transform: none; opacity: 0; }
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 560px;
  margin-top: 32px;
  line-height: 1.7;
  animation: fade-up 1s var(--ease) 1s both;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fade-up 1s var(--ease) 1.2s both;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s var(--ease);
  cursor: pointer;
  border: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn:hover::after { transform: scaleX(1); }

.btn-primary {
  background: var(--green);
  color: #000;
  border: 2px solid var(--green);
}
.btn-primary::after { background: rgba(0,0,0,0.15); }
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0,255,65,0.45), 0 0 80px rgba(0,255,65,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--dim);
}
.btn-outline::after { background: rgba(255,255,255,0.04); }
.btn-outline:hover { border-color: rgba(255,255,255,0.25); }

/* ─────────────────────────────────────────────
   TICKER / MARQUEE
───────────────────────────────────────────── */
.ticker {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(0,255,65,0.2);
  border-bottom: 1px solid rgba(0,255,65,0.2);
  background: #000;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   SECTION SYSTEM
───────────────────────────────────────────── */
.section {
  position: relative;
  padding: 120px 6vw;
  z-index: 2;
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green);
}
.section.revealed .section-label { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   THE THREE FIGHTS
───────────────────────────────────────────── */
.fights {
  background: var(--off-black);
}
.fights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
}
.fight-card {
  padding: 60px 48px;
  border-right: 1px solid var(--dim);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fight-card:last-child { border-right: none; }
.section.revealed .fight-card:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: none; }
.section.revealed .fight-card:nth-child(2) { transition-delay: 0.22s; opacity: 1; transform: none; }
.section.revealed .fight-card:nth-child(3) { transition-delay: 0.34s; opacity: 1; transform: none; }

.fight-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,255,65,0.15);
  position: absolute;
  top: 32px; right: 32px;
  pointer-events: none;
  user-select: none;
}
.fight-title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.fight-title span { color: var(--green); }
.fight-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 300px;
}
.fight-text strong { color: var(--white); font-weight: 500; }

/* ─────────────────────────────────────────────
   MANIFESTO TEASER
───────────────────────────────────────────── */
.manifesto-teaser {
  background: #000;
  text-align: center;
  overflow: hidden;
}
.manifesto-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.manifesto-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 30vw, 400px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,255,65,0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.manifesto-pull {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease) 0.1s, transform 0.9s var(--ease) 0.1s;
}
.manifesto-pull em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 40px rgba(0,255,65,0.3);
}
.section.revealed .manifesto-pull { opacity: 1; transform: translateY(0); }

.manifesto-link {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.7s var(--ease) 0.35s;
}
.manifesto-link::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}
.manifesto-link:hover::after { transform: translateX(6px); }
.manifesto-link:hover { color: var(--white); }
.section.revealed .manifesto-link { opacity: 1; }

/* ─────────────────────────────────────────────
   STATS / SIGNAL STRIP
───────────────────────────────────────────── */
.signal-strip {
  background: var(--off-black);
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
  padding: 80px 6vw;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.signal-item {
  padding: 40px;
  border-right: 1px solid var(--dim);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.signal-item:last-child { border-right: none; }
.section.revealed .signal-item:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.section.revealed .signal-item:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.section.revealed .signal-item:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.section.revealed .signal-item:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.signal-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,255,65,0.25);
}
.signal-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   JOIN / SIGN-UP SECTION
───────────────────────────────────────────── */
.join-section {
  background: #000;
  position: relative;
  overflow: hidden;
}
.join-section::before {
  content: 'JOIN';
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 35vw, 500px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,255,65,0.04);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.join-headline {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease) 0.1s, transform 0.9s var(--ease) 0.1s;
}
.join-headline .green { color: var(--green); }
.section.revealed .join-headline { opacity: 1; transform: translateY(0); }

.join-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.7s var(--ease) 0.3s;
}
.section.revealed .join-sub { opacity: 1; }

/* Netlify Form */
.signup-form {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.2s, transform 0.8s var(--ease) 0.2s;
}
.section.revealed .signup-form { opacity: 1; transform: translateY(0); }

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--off-black);
  border: 1px solid var(--dim);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 0 20px rgba(0,255,65,0.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2300FF41'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.form-group select option { background: #111; }

.form-submit {
  margin-top: 24px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
}
.form-note {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--green);
}
.form-success.visible { display: block; }
.form-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--green);
  margin-bottom: 12px;
}
.form-success-text {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   MERCH TEASER
───────────────────────────────────────────── */
.merch-teaser {
  background: var(--off-black);
  border-top: 1px solid var(--dim);
}
.merch-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.merch-text .section-label { margin-bottom: 16px; }
.merch-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
}
.merch-headline span { color: var(--green); }
.merch-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 400px;
  line-height: 1.7;
}
.merch-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,255,65,0.25);
  padding: 6px 14px;
  display: inline-block;
  margin-top: 20px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid var(--dim);
  padding: 60px 6vw 40px;
  position: relative;
  z-index: 3;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dim);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--white);
}
.footer-logo .g { color: var(--green); }
.footer-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.footer-signal {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(0,255,65,0.3);
}

/* ─────────────────────────────────────────────
   DÉJÀ VU STRIP
───────────────────────────────────────────── */
.deja-vu-strip {
  background: var(--off-black);
  padding: 60px 6vw;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.deja-vu-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
}
.deja-vu-gif {
  width: 420px;
  height: auto;
  flex-shrink: 0;
  border: 1px solid rgba(0,255,65,0.2);
  filter: saturate(0.3) brightness(0.85) sepia(0.15) hue-rotate(75deg);
  transition: filter 0.4s ease;
  display: block;
}
.deja-vu-gif:hover {
  filter: saturate(0.7) brightness(1) sepia(0.1) hue-rotate(75deg);
}
.deja-vu-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.deja-vu-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
  display: block;
}
.deja-vu-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--muted);
}
.deja-vu-quote em { color: var(--white); font-style: normal; }

@media (max-width: 768px) {
  .deja-vu-inner { flex-direction: column; gap: 28px; }
  .deja-vu-gif { width: 100%; }
}

/* ─────────────────────────────────────────────
   SECTION DIVIDER
───────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--dim);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.divider::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: divider-scan 8s linear infinite;
}
@keyframes divider-scan {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ─────────────────────────────────────────────
   MANIFESTO PAGE SPECIFIC
───────────────────────────────────────────── */
.manifesto-page .hero-headline {
  font-size: clamp(52px, 9vw, 140px);
}
.manifesto-page .hero {
  min-height: 60svh;
}

.act {
  position: relative;
  padding: 120px 6vw;
  z-index: 2;
  overflow: hidden;
}
.act-bg-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 28vw, 400px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,255,65,0.04);
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}
.act-marker {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.act-marker::before { content: ''; width: 32px; height: 1px; background: var(--green); }
.act.revealed .act-marker { opacity: 1; transform: translateY(0); }

.act-headline {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease) 0.1s, transform 0.9s var(--ease) 0.1s;
}
.act-headline em { color: var(--green); font-style: normal; text-shadow: 0 0 30px rgba(0,255,65,0.2); }
.act.revealed .act-headline { opacity: 1; transform: translateY(0); }

.act-body {
  max-width: 700px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease) 0.25s, transform 0.8s var(--ease) 0.25s;
}
.act.revealed .act-body { opacity: 1; transform: translateY(0); }
.act-body p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
  color: #888;
  margin-bottom: 22px;
}
.act-body p:last-child { margin-bottom: 0; }
.act-body p strong { color: var(--white); font-weight: 600; }
.act-body p em { color: var(--green); font-style: italic; }
.act-body p.pull {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin: 32px 0;
}
.act-body p.pull em { color: var(--green); font-style: normal; }
.act--alt { background: var(--off-black); }
.act--alt .act-marker { }

/* ─────────────────────────────────────────────
   JOIN PAGE SPECIFIC
───────────────────────────────────────────── */
.join-page .join-section::before { content: none; }
.join-page .join-inner {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}
.join-page .join-headline { font-size: clamp(52px, 7vw, 96px); }

/* ─────────────────────────────────────────────
   ANIMATIONS (shared)
───────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   MOBILE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-right { display: none; }
  .nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .nav-links li:not(.nav-cta) { display: none; }

  .fights-grid { grid-template-columns: 1fr; }
  .fight-card { border-right: none; border-bottom: 1px solid var(--dim); }
  .fight-card:last-child { border-bottom: none; }

  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-item:nth-child(2) { border-right: none; }
  .signal-item:nth-child(1),
  .signal-item:nth-child(2) { border-bottom: 1px solid var(--dim); }

  .join-inner { grid-template-columns: 1fr; gap: 48px; }

  .merch-inner { flex-direction: column; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .act { padding: 80px 6vw; }
  .act-bg-num { display: none; }

  .section { padding: 80px 6vw; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
}
