:root {
  --bg-deep: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --text-primary: #f0ede6;
  --text-secondary: #8a8697;
  --text-muted: #5a5668;
  --accent: #c8ff00;
  --accent-dim: rgba(200, 255, 0, 0.12);
  --accent-glow: rgba(200, 255, 0, 0.06);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, var(--accent-glow) 0%, transparent 70%),
    var(--bg-deep);
}

.hero-inner {
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 255, 0, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto 3rem;
}

.hero-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
}

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

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

.manifesto-label,
.laws-label,
.origin-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

.manifesto-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.manifesto-body strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===== LAWS ===== */
.laws {
  padding: 8rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.laws-header {
  margin-bottom: 4rem;
}

.laws-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
}

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

.law-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease;
}

.law-card:hover {
  border-color: rgba(200, 255, 0, 0.2);
}

.law-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.law-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.law-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== ORIGIN ===== */
.origin {
  padding: 8rem 2rem;
}

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

.origin-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.origin-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.origin-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.origin-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
}

.stat {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

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

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem 6rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, var(--accent-glow) 0%, transparent 70%),
    var(--bg-deep);
}

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

.closing-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .laws-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .origin-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    min-height: 80vh;
    padding: 4rem 1.5rem;
  }

  .manifesto,
  .laws,
  .origin,
  .closing {
    padding: 5rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }
}

@media (max-width: 480px) {
  .law-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}