:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --fg-dim: #555;
  --accent: #ff3d00;
  --accent-glow: rgba(255, 61, 0, 0.15);
  --accent-soft: #ff6e40;
  --countdown: #00e676;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,61,0,0.08) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255,61,0,0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.hero h1 .countdown-text {
  color: var(--countdown);
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- HERO CARDS ---- */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 780px;
  margin: 0 auto;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.hero-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}

.hero-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.card-time {
  font-family: 'Outfit', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--countdown);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.hero-card.featured .card-time {
  color: var(--accent-soft);
}

.card-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 7rem 2rem;
  background: var(--bg-elevated);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 3.5rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.step {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- CREATORS ---- */
.creators {
  padding: 7rem 2rem;
}

.creators-inner {
  max-width: 900px;
  margin: 0 auto;
}

.creators-text {
  margin-bottom: 3.5rem;
}

.creators-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.creators-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 650px;
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.split-card {
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.split-card.dark {
  background: var(--bg-elevated);
  border-color: rgba(255,255,255,0.04);
}

.split-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.split-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.split-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 7rem 2rem 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,61,0,0.06) 0%, transparent 60%),
    var(--bg-elevated);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.cat-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 550px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.closing-text.secondary {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2rem;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-links span {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .hero-inner {
    margin-bottom: 2.5rem;
  }

  .how, .creators, .closing {
    padding: 4rem 1.25rem;
  }
}