:root {
  --bg: #0a0a0a;
  --fg: #e8e4df;
  --accent: #ff6b2b;
  --accent-dim: #cc5520;
  --surface: #161616;
  --surface-2: #1e1e1e;
  --border: #2a2a2a;
  --muted: #7a7672;
  --success: #4ade80;
  --font-main: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--fg);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  min-width: 40px;
  padding-top: 0.2rem;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* GALLERY PREVIEW */
.gallery-preview {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-preview h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.gallery-subtitle {
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.gallery-card:hover {
  border-color: var(--accent-dim);
}

.gallery-card.claimed {
  opacity: 0.6;
}

.card-timer {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--surface-2);
  color: var(--accent);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.gallery-card.claimed .card-timer {
  color: var(--success);
}

.card-body {
  padding: 1.2rem 1rem;
}

.card-body h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.maker-price {
  color: var(--accent);
  font-family: var(--font-mono);
}

.card-weight {
  color: var(--muted);
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing > p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.closing-vision {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}

.closing-vision p {
  color: var(--fg);
  font-size: 1rem;
  font-style: italic;
}

/* FOOTER */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero {
    padding: 3rem 1.5rem;
    min-height: 80vh;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .how-it-works,
  .gallery-preview,
  .closing {
    padding: 4rem 1.5rem;
  }
}