/* ==========================================================================
   ENLIGHTENED REPUBLIC — LANDING PAGE
   New age retro. Cyberpunk × spacey × 90s pixel × high tech.
   CRT glow, neon grid, glitch text, terminal aesthetics.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&family=Silkscreen:wght@400;700&family=Special+Elite&family=Share+Tech+Mono&display=swap');

:root {
  --void:    #050510;
  --deep:    #0a0a1a;
  --panel:   #0d0d1f;

  --teal:    #00f5d4;
  --teal-glow: #00f5d480;
  --purple:  #b44fff;
  --purple-glow: #b44fff60;
  --pink:    #ff2d78;
  --pink-glow: #ff2d7860;
  --yellow:  #ffe600;
  --green:   #39ff14;
  --green-glow: #39ff1440;
  --bone:    #e8e4f0;
  --ash:     #7a7194;
  --grid:    #1a1a3a;

  --display: 'Pixelify Sans', 'Trebuchet MS', sans-serif;
  --hud:     'Share Tech Mono', 'Courier New', monospace;
  --body:    'Special Elite', 'Courier New', monospace;
  --mono:    'Silkscreen', 'Courier New', monospace;

  --maxw:    1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: crosshair;
}

/* --- Starfield canvas --- */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* --- CRT scanlines --- */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.15) 2px 4px
  );
  opacity: 0.5;
}

/* --- CRT vignette glow --- */
.crt-overlay {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 245, 212, 0.03) 70%,
    rgba(5, 5, 16, 0.6) 100%
  );
}

/* --- Neon grid background --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

/* --- NAV --- */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--teal);
  box-shadow: 0 0 20px var(--teal-glow);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  display: block;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--teal-glow);
  transition: box-shadow 200ms;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-logo:hover { box-shadow: 0 0 20px var(--teal-glow), 0 0 40px var(--teal-glow); }

.brand-text {
  font-family: var(--hud);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--teal);
  text-decoration: none;
  text-shadow: 0 0 8px var(--teal-glow);
}
.brand-text span { display: block; font-size: 0.85rem; }

.tech-link {
  font-family: var(--hud);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  padding: 0.45rem 0.8rem 0.45rem 1rem;
  margin-left: 0.4rem;
  background: var(--void);
  border: 1.5px solid var(--teal);
  text-shadow: 0 0 6px var(--teal-glow);
  white-space: nowrap;
  transition: background 160ms, color 160ms, box-shadow 160ms;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  display: none;
}
@media (min-width: 880px) { .tech-link { display: inline-block; } }
.tech-link:hover {
  background: var(--teal);
  color: var(--void);
  text-shadow: none;
  box-shadow: 0 0 12px var(--teal-glow);
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.nav-links a {
  font-family: var(--hud);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 140ms, border-color 140ms, text-shadow 140ms;
}
.nav-links a:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
  text-shadow: 0 0 8px var(--teal-glow);
}

.nav-links a.cta {
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--purple);
  color: var(--purple);
  text-shadow: 0 0 6px var(--purple-glow);
  transition: background 160ms, color 160ms, box-shadow 160ms;
}
.nav-links a.cta:hover {
  background: var(--purple);
  color: var(--bone);
  text-shadow: none;
  box-shadow: 0 0 20px var(--purple-glow);
  border-bottom-color: var(--purple);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  opacity: 0.15;
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0.2; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-badge {
  font-family: var(--hud);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--teal);
  text-shadow: 0 0 8px var(--teal-glow);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--teal);
  background: rgba(0, 245, 212, 0.05);
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
  text-shadow:
    3px 0 0 var(--pink),
    -3px 0 0 var(--teal),
    0 0 40px var(--teal-glow);
  animation: glitch-shift 8s steps(1) infinite;
  margin-bottom: 1.5rem;
}

/* Glitch effect — two pseudo-element copies offset */
.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-title::before {
  color: var(--pink);
  clip-path: inset(0 0 65% 0);
  animation: glitch-top 3s steps(2) infinite;
}
.hero-title::after {
  color: var(--teal);
  clip-path: inset(65% 0 0 0);
  animation: glitch-bottom 2.5s steps(3) infinite;
}

@keyframes glitch-top {
  0%, 90%, 100% { transform: none; }
  92% { transform: translate(4px, -2px); }
  94% { transform: translate(-3px, 1px); }
  96% { transform: translate(2px, -1px); }
}

@keyframes glitch-bottom {
  0%, 88%, 100% { transform: none; }
  90% { transform: translate(-3px, 2px); }
  93% { transform: translate(4px, -1px); }
  95% { transform: translate(-2px, 1px); }
}

@keyframes glitch-shift {
  0%, 95%, 100% { text-shadow: 3px 0 0 var(--pink), -3px 0 0 var(--teal), 0 0 40px var(--teal-glow); }
  96% { text-shadow: -8px 0 0 var(--pink), 8px 0 0 var(--yellow), 0 0 60px var(--pink-glow); }
  98% { text-shadow: 6px 2px 0 var(--teal), -4px -2px 0 var(--pink), 0 0 50px var(--teal-glow); }
}

.hero-sub {
  font-family: var(--hud);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-accent {
  color: var(--pink);
  text-shadow: 0 0 20px var(--pink-glow);
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--ash);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  font-family: var(--hud);
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 2px solid;
  transition: all 180ms;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
  text-shadow: 0 0 8px var(--teal-glow);
  box-shadow: 0 0 15px var(--teal-glow), inset 0 0 15px rgba(0, 245, 212, 0.05);
}
.btn-primary:hover {
  background: var(--teal);
  color: var(--void);
  text-shadow: none;
  box-shadow: 0 0 30px var(--teal-glow), 0 0 60px var(--teal-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--ash);
  color: var(--bone);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  text-shadow: 0 0 8px var(--purple-glow);
  box-shadow: 0 0 15px var(--purple-glow);
  transform: translateY(-2px);
}

/* --- Hero HUD bar --- */
.hero-hud {
  font-family: var(--hud);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ash);
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hud-val {
  color: var(--teal);
  text-shadow: 0 0 6px var(--teal-glow);
}

.hud-sep {
  color: var(--teal);
  opacity: 0.4;
}

/* ==================== SECTIONS ==================== */
.section-label {
  font-family: var(--hud);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  text-shadow: 0 0 6px var(--teal-glow);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.section-desc {
  color: var(--ash);
  font-size: 1.05rem;
  max-width: 55ch;
  margin-bottom: 2.5rem;
}

.accent {
  color: var(--pink);
  text-shadow: 0 0 12px var(--pink-glow);
}

/* ==================== PILLARS ==================== */
.pillars-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  position: relative;
  z-index: 2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 245, 212, 0.2);
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.9), rgba(13, 13, 31, 0.8));
  position: relative;
  overflow: hidden;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--pink));
  opacity: 0;
  transition: opacity 200ms;
}
.pillar-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--teal-glow), 0 10px 40px rgba(0, 0, 0, 0.4);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-family: var(--hud);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-shadow: 0 0 6px var(--teal-glow);
  margin-bottom: 0.8rem;
}

.pillar-card p {
  color: var(--ash);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== FEATURED: ALT ALIENS ==================== */
.featured-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  position: relative;
  z-index: 2;
}

.featured-card {
  border: 2px solid var(--purple);
  background: linear-gradient(135deg, rgba(180, 79, 255, 0.08), rgba(10, 10, 26, 0.95));
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px var(--purple-glow);
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--pink), var(--yellow));
}

.featured-badge {
  font-family: var(--hud);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--yellow);
  text-shadow: 0 0 6px rgba(255, 230, 0, 0.4);
  margin-bottom: 1rem;
}

.featured-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 1.2rem;
}

.featured-desc {
  color: var(--ash);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.featured-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  text-shadow: 0 0 10px var(--teal-glow);
}

.stat-label {
  font-family: var(--hud);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

.featured-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* --- Alien heads grid --- */
.alien-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.alien-head {
  width: 100%;
  aspect-ratio: 1;
  image-rendering: pixelated;
  border: 2px solid rgba(180, 79, 255, 0.3);
  background: rgba(10, 10, 26, 0.6);
  filter: drop-shadow(0 0 8px var(--purple-glow));
  transition: transform 200ms, border-color 200ms, filter 200ms;
}
.alien-head:hover {
  transform: scale(1.08) translateY(-3px);
  border-color: var(--teal);
  filter: drop-shadow(0 0 16px var(--teal-glow));
}

@media (max-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .alien-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ==================== COMMANDMENTS ==================== */
.commandments-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(180, 79, 255, 0.03), transparent);
}

.cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.8rem;
}

.cmd-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 245, 212, 0.12);
  background: rgba(5, 5, 16, 0.5);
  transition: border-color 160ms, background 160ms;
}
.cmd-item:hover {
  border-color: var(--teal);
  background: rgba(0, 245, 212, 0.03);
}

.cmd-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal);
  text-shadow: 0 0 8px var(--teal-glow);
  min-width: 2.5ch;
}

.cmd-item span:last-child {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--bone);
}

.cmd-item em {
  color: var(--ash);
  font-style: normal;
  font-size: 0.85rem;
}

/* ==================== SERVICES ==================== */
.services-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.service-card {
  display: block;
  text-decoration: none;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(255, 45, 120, 0.2);
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.04), rgba(10, 10, 26, 0.8));
  transition: border-color 180ms, transform 180ms, box-shadow 180ms;
}
.service-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--pink-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.service-ico {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-family: var(--hud);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  text-shadow: 0 0 6px var(--pink-glow);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ==================== JOIN ==================== */
.join-section {
  padding: clamp(5rem, 12vh, 9rem) 0;
  position: relative;
  z-index: 2;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.join-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  padding: 2rem 1.5rem;
  border: 2px solid rgba(0, 245, 212, 0.2);
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.04), rgba(10, 10, 26, 0.8));
  transition: border-color 180ms, transform 180ms, box-shadow 180ms;
}
.join-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--teal-glow), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.join-ico {
  font-size: 1.6rem;
}

.join-card h3 {
  font-family: var(--hud);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-shadow: 0 0 6px var(--teal-glow);
}

.join-card p {
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.55;
}

.join-link {
  margin-top: auto;
  font-family: var(--hud);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(255, 230, 0, 0.3);
}

/* ==================== TICKER ==================== */
.ticker {
  border-top: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  background: rgba(5, 5, 16, 0.8);
  overflow: hidden;
  padding: 0.8rem 0;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  font-family: var(--hud);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  animation: scroll-x 45s linear infinite;
  gap: 1.5rem;
  align-items: center;
}

.ticker-track .diamond {
  color: var(--teal);
  font-size: 0.6rem;
  text-shadow: 0 0 6px var(--teal-glow);
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================== FOOTER ==================== */
.site-footer {
  position: relative;
  z-index: 2;
}

.footer-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--pink), var(--yellow), var(--teal));
  background-size: 200% 100%;
  animation: gradient-shift 6s linear infinite;
}

@keyframes gradient-shift {
  from { background-position: 0% 0%; }
  to   { background-position: 200% 0%; }
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0 1.5rem;
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.foot-grid h4 {
  font-family: var(--hud);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--teal);
  text-shadow: 0 0 6px var(--teal-glow);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.foot-grid a {
  color: var(--ash);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  font-size: 0.88rem;
  transition: color 140ms;
}
.foot-grid a:hover { color: var(--teal); }

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.foot-brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  box-shadow: 0 0 12px var(--teal-glow);
  object-fit: cover;
}

.foot-name {
  font-family: var(--hud);
  font-size: 0.72rem;
  color: var(--teal);
  text-shadow: 0 0 6px var(--teal-glow);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.1;
}

.foot-est {
  font-family: var(--body);
  color: var(--ash);
  font-size: 0.75rem;
  margin: 0.2rem 0;
}

.foot-mail {
  font-family: var(--hud);
  font-size: 0.75rem;
  color: var(--teal);
  text-decoration: none;
}
.foot-mail:hover { color: var(--purple); }

.foot-bottom {
  text-align: center;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--grid);
}

.copyright {
  font-size: 0.8rem;
  color: var(--ash);
  margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-links a:not(.cta) { display: none; }
  .hero-title { font-size: clamp(2.5rem, 14vw, 5rem); }
  .hero-hud { font-size: 0.55rem; gap: 0.6rem; }
  .featured-stats { gap: 1rem; }
  .stat-num { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}
