:root {
  --neon-yellow: #ffff33;
  --neon-pink: #ff33ff;
  --bg: #080808;
  --text: #f0f0f0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jura', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Jura', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s, text-shadow 0.2s;
}

nav a:hover {
  opacity: 1;
  text-shadow: 0 0 10px var(--neon-yellow);
}

/* ── Background orbs ── */
.bg-orb {
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  background: conic-gradient(var(--neon-yellow), var(--neon-pink), var(--neon-yellow));
  top: 5%;
  left: 15%;
  opacity: 0.1;
  animation: drift 25s ease-in-out infinite;
}

.bg-orb--2 {
  background: conic-gradient(var(--neon-pink), var(--neon-yellow), var(--neon-pink));
  bottom: 5%;
  right: 10%;
  opacity: 0.07;
  animation: drift 32s ease-in-out infinite reverse;
}

@keyframes drift {
  0%,  100% { transform: rotate(0deg)   scale(1);    }
  33%        { transform: rotate(120deg) scale(1.1);  }
  66%        { transform: rotate(240deg) scale(0.95); }
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Title ── */
.site-title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(4rem, 16vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 20px  var(--neon-yellow),
    0 0 60px  var(--neon-yellow),
    0 0 130px rgba(255, 255, 51, 0.35);
  animation: flicker 7s ease-in-out infinite;
}

@keyframes flicker {
  0%, 94%, 96%, 100% {
    text-shadow:
      0 0 20px  var(--neon-yellow),
      0 0 60px  var(--neon-yellow),
      0 0 130px rgba(255, 255, 51, 0.35);
  }
  95% {
    text-shadow: 0 0 6px var(--neon-yellow);
  }
}

/* ── Tagline ── */
.tagline {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
  animation: fadeUp 1s 0.2s ease both;
}

.subtext {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
  animation: fadeUp 1s 0.3s ease both;
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  text-decoration: none;
  font-family: 'Jura', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow:
    0 0 15px rgba(255, 51, 255, 0.25),
    inset 0 0 15px rgba(255, 51, 255, 0.04);
  transition: all 0.3s ease;
  animation: fadeUp 1s 0.4s ease both;
}

.cta-btn:hover {
  background: rgba(255, 51, 255, 0.08);
  box-shadow:
    0 0 35px rgba(255, 51, 255, 0.5),
    inset 0 0 20px rgba(255, 51, 255, 0.08);
  color: #fff;
  letter-spacing: 0.3em;
}