:root {
  --bg: #0a0a0c;
  --bg-elevated: #111115;
  --bg-card: #16161a;
  --fg: #e8e6e3;
  --fg-muted: #8a8a8e;
  --fg-dim: #5a5a5e;
  --accent-1: #c8ff2e;
  --accent-2: #2effb2;
  --accent-gradient: linear-gradient(135deg, #c8ff2e 0%, #2effb2 100%);
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', 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.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* — GRADIENT TEXT — */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* — HERO — */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-1);
  border: 1px solid rgba(200, 255, 46, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--fg);
}

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

.hero-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 255, 46, 0.06) 0%, rgba(46, 255, 178, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* — MANIFESTO — */
.manifesto {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

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

.manifesto-label,
.domains-label,
.how-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--fg-dim);
  margin-bottom: 28px;
}

.manifesto h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 48px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.manifesto-col p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.manifesto-statement {
  border-left: 3px solid var(--accent-1);
  padding-left: 28px;
}

.manifesto-statement p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--fg);
}

.manifesto-statement em {
  font-style: italic;
  color: var(--accent-2);
}

/* — DOMAINS — */
.domains {
  padding: 120px 48px;
  background: var(--bg-elevated);
}

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

.domains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.domain-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.domain-card:hover {
  background: #1c1c22;
}

.domain-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-1);
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.domain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* — HOW — */
.how {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

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

.how-steps {
  margin-top: 20px;
}

.how-step {
  padding: 40px 0;
}

.step-marker {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.how-step h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.how-step p {
  color: var(--fg-muted);
  max-width: 600px;
  font-size: 1.02rem;
}

.step-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* — CLOSING — */
.closing {
  position: relative;
  padding: 140px 48px;
  text-align: center;
  overflow: hidden;
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 255, 46, 0.05) 0%, rgba(46, 255, 178, 0.03) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

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

/* — FOOTER — */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--fg-dim);
}

/* — RESPONSIVE — */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .manifesto,
  .domains,
  .how,
  .closing {
    padding: 80px 24px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .hero-glow {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -20%;
  }

  .site-footer {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .domain-card {
    padding: 28px 24px;
  }
}