/* =========================
   RESET & VARIABLES
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #07080A;
  --bg-dark: #0B0B0B;

  --neon-blue: #4FC3F7;
  --neon-purple: #8B5CF6;
  --neon-pink: #EC4899;

  --text-main: #EDEDED;
  --text-muted: rgba(237, 237, 237, 0.7);
}

/* =========================
   BASE
   ========================= */

html, body {
  height: auto;
  overflow-x: hidden;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

/* =========================
   CANVAS (BACKGROUND)
   ========================= */

canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1, h2 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================
   NAV
   ========================= */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.12em;

  margin-left: 28px;   /* ← spacing between links */
}

.nav a:hover,
.nav a.active {
  color: var(--neon-blue);
}

/* =========================
   HERO SECTION
   ========================= */

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero {
  text-align: center;
  pointer-events: none;
}

/* =========================
   HERO TITLE — NEON GLOW
   ========================= */

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: 0.22em;

  background: linear-gradient(
    90deg,
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-pink)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 4px rgba(255,255,255,0.32),
    0 0 22px rgba(79,195,247,0.45),
    0 0 44px rgba(139,92,246,0.38),
    0 0 78px rgba(236,72,153,0.32),
    0 0 120px rgba(236,72,153,0.18);
}

.hero p {
  margin-top: 26px;
  font-size: 1.1rem;        /* increased size */
  letter-spacing: 0.18em;
  color: #ffffff;          /* pure white */
}

/* =========================
   ABOUT SECTION
   ========================= */

.about {
  min-height: 100vh;
  padding: 140px 10%;
  background: linear-gradient(
    to bottom,
    rgba(7,8,10,0.0),
    rgba(7,8,10,0.9),
    rgba(7,8,10,1)
  );
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 720px;
  text-align: center;
}

.about-content h1 {
  margin-bottom: 32px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* =========================
   ABOUT LIST
   ========================= */

.about-list {
  list-style: none;
  margin: 32px 0 40px;
  padding: 0;
}

.about-list li {
  margin-bottom: 14px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.08em;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
  .about {
    padding: 100px 8%;
  }

  .hero h1 {
    letter-spacing: 0.16em;
  }
}
