/* ── Reset & Variables ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0D0D0D;
  --surface: #1A1A1A;
  --neon: #CCFF00;
  --pink: #FF3CAC;
  --white: #F0F0F0;
  --muted: #555555;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-display);
  overflow: hidden;
  cursor: none;
}

/* ── Noise Texture Overlay ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Grid Background ── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(204, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* ── Container ── */
.container {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8vw;
}

/* ── Live Badge ── */
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--neon);
  border: 1px solid rgba(204, 255, 0, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Headline ── */
.headline-wrap {
  overflow: hidden;
}

.headline {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.line-1 {
  color: var(--white);
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.line-2 {
  color: var(--neon);
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
  -webkit-text-stroke: 2px var(--neon);
}

.accent {
  color: var(--pink);
  -webkit-text-stroke: 2px var(--pink);
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Subtext ── */
.subtext {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1s;
}

/* ── Tags ── */
.tag-row {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.2s;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--surface);
  padding: 5px 12px;
  transition: color 0.2s, border-color 0.2s;
}

.tag:hover {
  color: var(--neon);
  border-color: rgba(204, 255, 0, 0.4);
}

/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,255,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: opacity 0.3s;
}

/* ── Footer ── */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 8vw;
  border-top: 1px solid var(--surface);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.4s;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ── Shared Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .line-2 { -webkit-text-stroke: 1px var(--neon); }
  .accent  { -webkit-text-stroke: 1px var(--pink); }
}