/* ── VARIABLES ── */
:root {
  --navy: #060b18;
  --navy2: #0d1528;
  --orange: #ff5c1a;
  --lime: #c8ff00;
  --white: #f0f4ff;
  --muted: #6b7a99;
  --border: #1e2d4a;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: #030712;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--orange); }

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

.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: #030712;
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-inner { max-width: 700px; margin: 0 auto; }

.footer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-title .accent { color: var(--orange); }

.footer-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--border);
  margin-top: 36px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
}
