*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --green: #00ff41;
  --green-dim: #00c832;
  --green-dark: #003d10;
  --neon-cyan: #00ffe5;
  --neon-red: #ff003c;
  --bg: #020d04;
  --bg2: #050f06;
  --glass: rgba(0, 255, 65, 0.05);
  --border: rgba(0, 255, 65, 0.18);
  --text: #b8ffcc;
  --muted: #4a7a55;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────────── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, border-color 0.2s;
  mix-blend-mode: screen;
}
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
body:hover #cursor {
  transform: translate(-50%, -50%) scale(1.4);
}

/* ─── MATRIX CANVAS ─────────────────────────────── */
#matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

/* ─── SCAN LINE OVERLAY ─────────────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
}

/* ─── NOISE GRAIN ───────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: -200%;
  z-index: 1;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2%, -3%);
  }
  20% {
    transform: translate(-5%, 2%);
  }
  30% {
    transform: translate(3%, -4%);
  }
  40% {
    transform: translate(-4%, 5%);
  }
  50% {
    transform: translate(4%, -2%);
  }
  60% {
    transform: translate(-3%, 4%);
  }
  70% {
    transform: translate(5%, -1%);
  }
  80% {
    transform: translate(-2%, 3%);
  }
  90% {
    transform: translate(3%, -5%);
  }
}

/* ─── LAYOUT ────────────────────────────────────── */
.wrapper {
  position: relative;
  z-index: 2;
}

/* ─── TOPBAR ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(2, 13, 4, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--green);
  text-shadow: 0 0 16px var(--green);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--neon-cyan);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover {
  color: var(--green);
  text-shadow: 0 0 10px var(--green);
}
.nav-cta {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.78rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 0 24px var(--green);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green);
  transition: 0.3s;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.7rem;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 255, 229, 0.3);
  padding: 0.4rem 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeDown 0.8s ease both;
}
.hero-badge::before {
  content: "//";
  opacity: 0.5;
}
.hero-badge::after {
  content: "//";
  opacity: 0.5;
}

.hero-title {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  animation: fadeDown 0.9s 0.1s ease both;
}
.hero-title .line1 {
  display: block;
  color: #fff;
  text-shadow: 0 0 60px rgba(0, 255, 65, 0.25);
}
.hero-title .line2 {
  display: block;
  color: var(--green);
  text-shadow: 0 0 40px var(--green), 0 0 80px rgba(0, 255, 65, 0.4);
  position: relative;
}
/* Glitch on HACKER */
.hero-title .line2::before,
.hero-title .line2::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
}
.hero-title .line2::before {
  color: var(--neon-cyan);
  clip: rect(0, 900px, 0, 0);
  animation: glitch1 3s infinite linear;
  text-shadow: none;
}
.hero-title .line2::after {
  color: var(--neon-red);
  clip: rect(0, 900px, 0, 0);
  animation: glitch2 3s infinite linear;
  text-shadow: none;
}

@keyframes glitch1 {
  0% {
    clip: rect(42px, 9999px, 44px, 0);
    transform: translate(-3px, 0);
  }
  5% {
    clip: rect(12px, 9999px, 59px, 0);
    transform: translate(3px, 0);
  }
  10% {
    clip: rect(65px, 9999px, 67px, 0);
    transform: translate(-3px, 0);
  }
  15% {
    clip: rect(20px, 9999px, 90px, 0);
    transform: translate(3px, 0);
  }
  20% {
    clip: rect(0, 0, 0, 0);
  }
  100% {
    clip: rect(0, 0, 0, 0);
  }
}
@keyframes glitch2 {
  0% {
    clip: rect(65px, 9999px, 119px, 0);
    transform: translate(3px, 0);
  }
  5% {
    clip: rect(79px, 9999px, 95px, 0);
    transform: translate(-3px, 0);
  }
  10% {
    clip: rect(20px, 9999px, 55px, 0);
    transform: translate(3px, 0);
  }
  15% {
    clip: rect(34px, 9999px, 80px, 0);
    transform: translate(-3px, 0);
  }
  20% {
    clip: rect(0, 0, 0, 0);
  }
  100% {
    clip: rect(0, 0, 0, 0);
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--muted);
  max-width: 560px;
  margin: 2rem auto;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  animation: fadeUp 0.9s 0.5s ease both;
}
.btn-primary {
  font-family: "Orbitron", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  background: var(--green);
  color: var(--bg);
  border: none;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  transition: box-shadow 0.25s, transform 0.15s;
  cursor: none;
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--green), 0 0 80px rgba(0, 255, 65, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.82rem;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: none;
}
.btn-ghost:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.2);
}

/* TERMINAL TICKER */
.terminal-bar {
  margin-top: 4rem;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 1s 0.7s ease both;
}
.terminal-bar .prompt {
  color: var(--green);
}
.terminal-ticker {
  overflow: hidden;
  white-space: nowrap;
  max-width: 400px;
}
#ticker-text {
  display: inline-block;
  animation: ticker 20s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO GRID LINES */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(0, 255, 65, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 65, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

/* ─── STATS ─────────────────────────────────────── */
.stats {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 20px var(--green);
  line-height: 1;
}
.stat-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}
.stat-sep {
  width: 30px;
  height: 2px;
  background: var(--green);
  margin: 0.6rem auto 0;
  opacity: 0.4;
}

/* ─── SECTION BASE ───────────────────────────────── */
section {
  padding: 6rem 1.5rem;
}
.section-max {
  max-width: 1100px;
  margin: 0 auto;
}
.section-tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.section-tag::before {
  content: "> ";
}
.section-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.section-title span {
  color: var(--green);
}
.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ─── ABOUT / ACESSO ─────────────────────────────── */
.access-section {
  background: var(--bg2);
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.access-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-hexagon {
  width: 260px;
  height: 260px;
  background: var(--glass);
  border: 1px solid var(--border);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.6rem;
  color: var(--green);
  text-align: center;
  line-height: 2;
  animation: hexPulse 4s ease-in-out infinite;
}
@keyframes hexPulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
  }
  50% {
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.3);
  }
}
.access-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(0, 255, 65, 0.15);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.access-ring-2 {
  width: 360px;
  height: 360px;
  border-color: rgba(0, 255, 229, 0.1);
  animation-duration: 30s;
  animation-direction: reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.access-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  background: var(--glass);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.access-method:hover {
  border-color: var(--green);
  background: rgba(0, 255, 65, 0.08);
}
.access-method::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.access-method-icon {
  font-family: "Orbitron", monospace;
  font-size: 1.4rem;
  color: var(--green);
  min-width: 40px;
}
.access-method h4 {
  font-family: "Orbitron", monospace;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.access-method p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── TRACKS / COURSES ───────────────────────────── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.track-card {
  border: 1px solid var(--border);
  background: var(--glass);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.track-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.track-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--border);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: background 0.3s;
}
.track-card:hover::after {
  background: var(--green);
}
.track-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 8px var(--green));
}
.track-num {
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  color: var(--green);
  opacity: 0.3;
}
.track-title {
  font-family: "Orbitron", monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.track-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.62rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(0, 255, 65, 0.2);
  color: var(--green);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* ─── ADMISSION ──────────────────────────────────── */
.admission-section {
  background: var(--bg2);
}
.admission-timeline {
  position: relative;
  max-width: 700px;
  margin: 3.5rem auto 0;
  padding-left: 2.5rem;
}
.admission-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--glass);
  transition: border-color 0.3s;
}
.timeline-item:hover {
  border-color: var(--green);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 1.5rem;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  transform: translateX(-3.5px);
}
.timeline-step {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-family: "Orbitron", monospace;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA FINAL ──────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 8rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 65, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-eyebrow {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.7rem;
  color: var(--neon-red);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: blink 1.5s step-end infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.cta-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.cta-title span {
  color: var(--green);
  text-shadow: 0 0 30px var(--green);
}
.cta-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.cta-btn {
  display: inline-block;
  font-family: "Orbitron", monospace;
  font-size: 1rem;
  font-weight: 900;
  padding: 1.2rem 3.5rem;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
}
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.cta-btn:hover {
  color: var(--bg);
}
.cta-btn:hover::before {
  transform: scaleX(1);
}
.cta-btn:hover {
  box-shadow: 0 0 50px rgba(0, 255, 65, 0.5);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg);
}
.footer-logo {
  font-family: "Orbitron", monospace;
  font-size: 0.9rem;
  color: var(--green);
  opacity: 0.5;
}
.footer-copy {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.65rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--green);
}

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

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .access-visual {
    display: none;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  nav {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .btn-primary,
  .btn-ghost {
    text-align: center;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .admission-timeline {
    padding-left: 1.5rem;
  }
}

/* MOBILE NAV */
.nav-mobile {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(2, 13, 4, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.2rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: var(--green);
}