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

:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --text: #E8E4DF;
  --muted: #6B6560;
  --accent: #CCFF00;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Switzer', sans-serif;
  overflow: hidden;
}

/* Grain texture overlay */
.noise {
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10;
  opacity: 0.4;
}

.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10vw;
  position: relative;
}

/* Subtle radial glow */
.container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
}

.label {
  display: block;
  font-family: 'Switzer', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.headline {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: 2.5rem;
}

.line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

#line1 {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

#line2 {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.55s;
}

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

.sub {
  font-family: 'Switzer', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards 0.75s;
}

.dot-row {
  display: flex;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.9s;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.3s;
}

.dot:first-child {
  background: var(--accent);
}

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