:root {
  --bg: #0a0a0a;
  --fg: #e8e4df;
  --fg-muted: #8a857e;
  --accent: #ff4d00;
  --accent-dim: #cc3d00;
  --card-bg: #141414;
  --card-border: #222;
  --font-body: 'Space Grotesk', sans-serif;
  --font-display: 'Syne', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 60%, rgba(255,77,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255,77,0,0.05) 0%, transparent 50%),
              var(--bg);
}

.hero-grain {
  position: absolute;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.4rem 1rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 8rem 2rem;
  border-top: 1px solid var(--card-border);
}

.manifesto-inner {
  max-width: 750px;
  margin: 0 auto;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.manifesto h2.highlight { color: var(--accent); margin-bottom: 2.5rem; }

.manifesto-body {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 600px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e0e 100%);
  border-top: 1px solid var(--card-border);
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.how-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}

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

.how-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--card-border);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

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

/* ── DROPS / STATS ── */
.drops {
  padding: 8rem 2rem;
  border-top: 1px solid var(--card-border);
}

.drops-inner { max-width: 1100px; margin: 0 auto; }

.drops-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.drops-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.stat-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-row:last-child { border-bottom: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ── CLOSING ── */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,77,0,0.06) 0%, transparent 70%);
  border-top: 1px solid var(--card-border);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.footer-loc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .drops-split { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 1.5rem; min-height: 90vh; }
  .manifesto, .how, .drops, .closing { padding: 5rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-title { font-size: clamp(3rem, 15vw, 6rem); }
  .how-card { padding: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .manifesto h2, .drops-left h2, .closing h2 { font-size: 1.8rem; }
  .stat-value { font-size: 2rem; }
}