*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --text: #E8E4DF;
  --muted: #6B6B6B;
  --accent: #CCFF00;
  --border: #2A2A2A;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Switzer', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  animation: fadeUp 0.8s ease both;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-family: 'Switzer', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s both;
}

.headline {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s both;
}

.accent {
  color: var(--accent);
}

.sub {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}