@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Share+Tech+Mono&display=swap');

/* ═══════════════════════════════════════
   RESET + ROOT
═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:      #030508;
  --panel:   #070d14;
  --panel2:  #0c1520;
  --neon:    #00e5ff;
  --red:     #ff2d55;
  --amber:   #ffb800;
  --lime:    #b6ff00;
  --purple:  #b060ff;
  --border:  rgba(0,229,255,0.12);
  --border2: rgba(0,229,255,0.06);
  --text:    rgba(0,229,255,0.7);
  --dim:     rgba(0,229,255,0.35);
  --white:   rgba(255,255,255,0.85);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Share Tech Mono', monospace;
  overflow-x: hidden;
  cursor: crosshair;
  min-height: 100vh;
}

/* ═══════════════════════════════════════
   TRON GRID CANVAS (fixed background)
═══════════════════════════════════════ */
#grid-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(3,5,8,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

nav::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 32px;
  width: 60px; height: 1px;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
}

nav::after {
  content: '';
  position: absolute;
  bottom: -1px; right: 32px;
  width: 60px; height: 1px;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon), 0 0 40px rgba(0,229,255,0.3);
  cursor: pointer;
  text-decoration: none;
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 20px var(--neon), 0 0 40px rgba(0,229,255,0.3); }
  50%       { text-shadow: 0 0 30px var(--neon), 0 0 70px rgba(0,229,255,0.5), 0 0 100px rgba(0,229,255,0.2); }
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-btn {
  padding: 7px 16px;
  font-family: 'Orbitron', monospace;
  font-size: 7px;
  letter-spacing: 3px;
  background: none;
  border: 1px solid transparent;
  color: var(--dim);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-btn::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--neon);
  transition: width 0.3s;
}

.nav-btn:hover::before,
.nav-btn.active::before {
  width: 100%;
}

.nav-btn:hover,
.nav-btn.active {
  border-color: var(--border);
  color: var(--neon);
  background: rgba(0,229,255,0.05);
}

.nav-btn.fire-btn {
  border-color: rgba(255,45,85,0.4);
  color: var(--red);
  background: rgba(255,45,85,0.06);
}

.nav-btn.fire-btn::before {
  background: var(--red);
}

.nav-btn.fire-btn:hover {
  background: rgba(255,45,85,0.14);
  box-shadow: 0 0 20px rgba(255,45,85,0.2);
}

/* ═══════════════════════════════════════
   HERO — HOME
═══════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(0,229,255,0.06) 0%,
    rgba(0,100,160,0.03) 40%,
    transparent 70%);
}

.hero-eyebrow {
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--dim);
  border: 1px solid var(--border);
  padding: 5px 18px;
  margin-bottom: 28px;
  position: relative;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-color: var(--neon);
  border-style: solid;
}

.hero-eyebrow::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.hero-eyebrow::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.hero-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(64px, 16vw, 140px);
  letter-spacing: 20px;
  color: var(--neon);
  text-shadow:
    0 0 40px rgba(0,229,255,0.8),
    0 0 80px rgba(0,229,255,0.4),
    0 0 160px rgba(0,229,255,0.2);
  animation: fadeUp 1s 0.1s ease both, titlePulse 5s 1.5s ease-in-out infinite;
  line-height: 1;
  margin-bottom: 8px;
}

@keyframes titlePulse {
  0%, 100% {
    text-shadow: 0 0 40px rgba(0,229,255,0.8), 0 0 80px rgba(0,229,255,0.4), 0 0 160px rgba(0,229,255,0.2);
  }
  50% {
    text-shadow: 0 0 60px rgba(0,229,255,1), 0 0 120px rgba(0,229,255,0.6), 0 0 200px rgba(0,229,255,0.3);
  }
}

.hero-sub-title {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--dim);
  margin-bottom: 40px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-scene {
  position: relative;
  margin-bottom: 44px;
  animation: fadeUp 1s 0.3s ease both, sceneFloat 6s 2s ease-in-out infinite;
}

@keyframes sceneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.5s ease both;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  padding: 14px 40px;
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  letter-spacing: 4px;
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.3s;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: #000; box-shadow: 0 0 40px rgba(255,45,85,0.4); }

.btn-primary span,
.btn-secondary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  padding: 14px 40px;
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  letter-spacing: 4px;
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,229,255,0.07);
  transform: translateX(-101%);
  transition: transform 0.3s;
}

.btn-secondary:hover::before { transform: translateX(0); }
.btn-secondary:hover { border-color: var(--neon); box-shadow: 0 0 30px rgba(0,229,255,0.15); }

/* ═══════════════════════════════════════
   FEATURE GRID — HOME
═══════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  position: relative;
  z-index: 1;
}

.feat {
  background: var(--panel);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  cursor: pointer;
}

.feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: transparent;
  transition: background 0.2s, box-shadow 0.2s;
}

.feat:hover {
  background: var(--panel2);
}

.feat:hover::before {
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
}

.feat-num {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dim);
  margin-bottom: 14px;
}

.feat-icon {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.feat-title {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon);
  margin-bottom: 10px;
}

.feat-text {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.7;
}

.feat-arrow {
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--neon);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.2s, transform 0.2s;
}

.feat:hover .feat-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   MANIFESTO BAND
═══════════════════════════════════════ */
.manifesto {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.manifesto::before {
  content: 'PEWPEW';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', monospace;
  font-size: 200px;
  font-weight: 900;
  letter-spacing: 30px;
  color: rgba(0,229,255,0.025);
  white-space: nowrap;
  pointer-events: none;
}

.manifesto-line {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(18px, 3vw, 32px);
  letter-spacing: 4px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.manifesto-line:nth-child(1) { color: var(--neon);   text-shadow: 0 0 20px var(--neon); }
.manifesto-line:nth-child(2) { color: var(--amber);  text-shadow: 0 0 20px var(--amber); }
.manifesto-line:nth-child(3) { color: var(--red);    text-shadow: 0 0 20px var(--red); }

/* ═══════════════════════════════════════
   PAGE HEADER — GAME / JOIN
═══════════════════════════════════════ */
.page-header {
  padding: 64px 40px 40px;
  position: relative;
  border-bottom: 1px solid var(--border2);
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 40px;
  width: 120px; height: 1px;
  background: var(--neon);
  box-shadow: 0 0 16px var(--neon);
}

.ph-label {
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--dim);
  margin-bottom: 12px;
}

.ph-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(32px, 7vw, 72px);
  letter-spacing: 8px;
  color: var(--neon);
  text-shadow: 0 0 30px rgba(0,229,255,0.5);
  margin-bottom: 14px;
}

.ph-title .accent {
  color: var(--red);
  text-shadow: 0 0 30px rgba(255,45,85,0.5);
}

.ph-sub {
  font-size: 12px;
  color: var(--dim);
  max-width: 560px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   RULE CARDS — GAME PAGE
═══════════════════════════════════════ */
.rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border2);
  border-bottom: 1px solid var(--border2);
  position: relative;
  z-index: 1;
}

.rule {
  background: var(--panel);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.rule::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--rc);
  box-shadow: 0 0 12px var(--rc);
}

.rule[data-c="neon"]   { --rc: var(--neon); }
.rule[data-c="red"]    { --rc: var(--red); }
.rule[data-c="lime"]   { --rc: var(--lime); }
.rule[data-c="amber"]  { --rc: var(--amber); }
.rule[data-c="purple"] { --rc: var(--purple); }

.rule:hover { background: var(--panel2); }

.rule-num {
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--dim);
  margin-bottom: 16px;
}

.rule-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.rule-title {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.rule-body {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.8;
}

.rule-body strong {
  color: var(--neon);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   SUPPRESSION CALLOUT
═══════════════════════════════════════ */
.suppress {
  padding: 40px;
  background: rgba(255,107,53,0.04);
  border-bottom: 1px solid rgba(255,107,53,0.12);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.suppress::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: #ff6b35;
  box-shadow: 0 0 12px #ff6b35;
}

.sup-icon  { font-size: 36px; flex-shrink: 0; }

.sup-title {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff6b35;
  margin-bottom: 10px;
}

.sup-body {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.8;
}

.sup-body strong {
  color: #ff6b35;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   WEAPON TABLE
═══════════════════════════════════════ */
.weapons-section {
  padding: 40px;
  border-bottom: 1px solid var(--border2);
  position: relative;
  z-index: 1;
}

.ws-label {
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--dim);
  margin-bottom: 24px;
}

.weapon-table {
  width: 100%;
  border-collapse: collapse;
}

.weapon-table th {
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--dim);
  padding: 8px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}

.weapon-table td {
  padding: 12px 16px;
  font-size: 11px;
  border-bottom: 1px solid var(--border2);
  color: var(--dim);
  transition: background 0.15s;
}

.weapon-table tr:hover td {
  background: rgba(0,229,255,0.03);
}

.weapon-table .wname {
  color: var(--white);
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 2px;
}

.weapon-table .addon-yes { color: var(--amber); }
.weapon-table .addon-no  { color: rgba(0,229,255,0.4); }

.stat-bar   { display: flex; align-items: center; gap: 6px; }
.stat-track { width: 60px; height: 3px; background: rgba(0,229,255,0.1); border-radius: 2px; overflow: hidden; }
.stat-fill  { height: 100%; border-radius: 2px; background: var(--neon); }

/* ═══════════════════════════════════════
   MATCH STEPS
═══════════════════════════════════════ */
.steps-section {
  padding: 40px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.steps-label {
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--dim);
  margin-bottom: 32px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border2);
}

.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--neon);
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--neon));
  min-width: 36px;
}

.step-head {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
  padding-top: 4px;
}

.step-body {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.8;
}

.step-body strong {
  color: var(--neon);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   JOIN CARDS
═══════════════════════════════════════ */
.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border2);
  border-bottom: 1px solid var(--border2);
  position: relative;
  z-index: 1;
}

.join-card {
  background: var(--panel);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.join-card:hover { background: var(--panel2); }

.join-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--jc);
  box-shadow: 0 0 16px var(--jc);
}

.join-card[data-j="play"] { --jc: var(--red); }
.join-card[data-j="info"] { --jc: var(--neon); }

.join-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: 20px; right: 30px;
  font-family: 'Orbitron', monospace;
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,229,255,0.06);
  line-height: 1;
  pointer-events: none;
}

.jc-label {
  font-size: 8px;
  letter-spacing: 5px;
  color: var(--dim);
  margin-bottom: 20px;
}

.jc-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.jc-body {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 380px;
}

.join-link {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  letter-spacing: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--jc);
  color: var(--jc);
  transition: all 0.25s;
}

.join-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jc);
  transform: translateX(-101%);
  transition: transform 0.3s;
}

.join-link:hover::before { transform: translateX(0); }
.join-link:hover { color: #000; }
.join-link span  { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section {
  padding: 60px 40px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.faq-label {
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--dim);
  margin-bottom: 32px;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border2);
}

.faq-q {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.8;
}

.faq-a strong {
  color: var(--neon);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   SUBPAGES
═══════════════════════════════════════ */
.sub-page {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.sub-hero {
  min-height: calc(100vh - 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* unique accent per subpage — set via CSS class */
.sub-page.s01 { --sa: var(--red); }
.sub-page.s02 { --sa: var(--neon); }
.sub-page.s03 { --sa: var(--amber); }
.sub-page.s04 { --sa: var(--purple); }
.sub-page.s05 { --sa: var(--lime); }

/* radial tint behind hero matching accent */
.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 40%,
    color-mix(in srgb, var(--sa) 8%, transparent) 0%,
    transparent 65%);
}

/* back button */
.sub-back {
  position: absolute;
  top: 78px; left: 32px;
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--dim);
  background: none;
  border: 1px solid var(--border);
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sub-back:hover {
  border-color: var(--sa);
  color: var(--sa);
  box-shadow: 0 0 14px color-mix(in srgb, var(--sa) 30%, transparent);
}

/* giant ghost number watermark */
.sub-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 220px);
  letter-spacing: 10px;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--sa) 12%, transparent);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.sub-label {
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--dim);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.sub-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 64px);
  letter-spacing: 6px;
  color: var(--sa);
  text-shadow: 0 0 30px var(--sa);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

/* accent line under title */
.sub-title-line {
  width: 80px; height: 2px;
  background: var(--sa);
  box-shadow: 0 0 14px var(--sa);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.sub-coming {
  font-size: 11px;
  letter-spacing: 3px;
  color: color-mix(in srgb, var(--sa) 50%, rgba(255,255,255,0.2));
  border: 1px solid color-mix(in srgb, var(--sa) 30%, transparent);
  padding: 14px 32px;
  position: relative;
  z-index: 1;
}

/* corner brackets on sub-hero */
.sub-corner {
  position: absolute;
  width: 32px; height: 32px;
  pointer-events: none;
  z-index: 2;
}

.sub-corner.tl { top: 80px; left: 32px; border-top: 1px solid var(--sa); border-left: 1px solid var(--sa); }
.sub-corner.tr { top: 80px; right: 32px; border-top: 1px solid var(--sa); border-right: 1px solid var(--sa); }
.sub-corner.bl { bottom: 32px; left: 32px; border-bottom: 1px solid var(--sa); border-left: 1px solid var(--sa); }
.sub-corner.br { bottom: 32px; right: 32px; border-bottom: 1px solid var(--sa); border-right: 1px solid var(--sa); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border2);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 40px;
  width: 80px; height: 1px;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}

.footer-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--neon);
  text-shadow: 0 0 15px rgba(0,229,255,0.5);
}

.footer-email {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 1px;
}

.footer-email a {
  color: var(--neon);
  text-decoration: none;
}

.footer-email a:hover {
  text-shadow: 0 0 12px var(--neon);
}

/* ═══════════════════════════════════════
   UTILITIES + ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-logo { font-size: 14px; letter-spacing: 4px; }
  .nav-btn { padding: 6px 10px; font-size: 6px; letter-spacing: 1px; }
  .suppress { flex-direction: column; padding: 28px 20px; }
  .page-header,
  .weapons-section,
  .steps-section,
  .faq-section,
  footer { padding-left: 20px; padding-right: 20px; }
  .join-card { padding: 36px 20px; }
  .manifesto { padding: 48px 20px; }
  .sub-hero { padding: 80px 20px 40px; }
  .sub-back { top: 70px; left: 20px; }
}
