@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg: #0B0E14;
  --bg-alt: #111520;
  --fg: #F5F4F0;
  --fg-muted: #8A8A8A;
  --accent: #A8FF00;
  --accent-dim: rgba(168, 255, 0, 0.08);
  --border: rgba(245, 244, 240, 0.08);
  --border-accent: rgba(168, 255, 0, 0.3);
  --radius: 4px;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─────────────────────────────── */
.syne { font-family: 'Syne', system-ui, sans-serif; }

h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

.display { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 800; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.5; color: var(--fg-muted); font-weight: 300; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-family: 'DM Sans', sans-serif; }

/* ─── Layout ───────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; }

/* ─── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 1.5rem;
}

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

.hero .lead {
  max-width: 48ch;
  margin-bottom: 3rem;
  font-size: 1.15rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.meta-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.meta-stat .number { font-size: 1.75rem; font-weight: 800; font-family: 'Syne', sans-serif; color: var(--accent); }
.meta-stat .label { font-size: 0.8rem; color: var(--fg-muted); }

/* ─── Manifesto ───────────────────────────────── */
.manifesto { padding: 8rem 0; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 800px; }
.manifesto h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 1.5rem 0 2rem; }
.manifesto .quote-mark { font-size: 5rem; color: var(--accent); font-family: Georgia, serif; line-height: 0.5; display: block; margin-bottom: 0.5rem; }
.manifesto blockquote { font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.4; font-weight: 500; font-style: italic; color: var(--fg-muted); border-left: 3px solid var(--accent); padding-left: 2rem; }

/* ─── Outcomes ─────────────────────────────────── */
.outcomes { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 4rem; }
.outcome { padding: 3rem; border-right: 1px solid var(--border); }
.outcome:last-child { border-right: none; }
.outcome .big-number { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; font-family: 'Syne', sans-serif; color: var(--accent); line-height: 1; }
.outcome .unit { font-size: 0.5em; opacity: 0.7; }
.outcome .outcome-label { font-size: 0.95rem; color: var(--fg-muted); margin-top: 0.75rem; line-height: 1.4; }
.outcome .outcome-sub { font-size: 0.8rem; color: var(--accent); margin-top: 0.5rem; }

/* ─── System ────────────────────────────────────── */
.system h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 1rem 0 3rem; max-width: 30ch; }
.ops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.op-card { background: var(--bg); padding: 3rem; transition: background 0.3s; }
.op-card:hover { background: var(--bg-alt); }
.op-card .op-icon { width: 48px; height: 48px; background: var(--accent-dim); border: 1px solid var(--border-accent); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--accent); }
.op-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.op-card p { font-size: 0.9rem; color: var(--fg-muted); }

/* ─── Process ───────────────────────────────────── */
.process { border-top: 1px solid var(--border); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.process-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.process-header p { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { padding: 3rem; border-right: 1px solid var(--border); position: relative; }
.step:last-child { border-right: none; }
.step::before { content: attr(data-step); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 1.5rem; font-family: 'DM Sans', sans-serif; }
.step h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.step p { font-size: 0.9rem; color: var(--fg-muted); }

/* ─── Closing ──────────────────────────────────── */
.closing { border-top: 1px solid var(--border); padding: 8rem 0; }
.closing-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.closing h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1.5rem; }
.closing p { font-size: 1.1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 3rem; }
.closing-rule { display: flex; align-items: center; gap: 1.5rem; justify-content: center; font-size: 0.85rem; color: var(--fg-muted); }
.closing-rule::before, .closing-rule::after { content: ''; width: 60px; height: 1px; background: var(--border); }

/* ─── Footer ────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 2rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
footer .brand { font-size: 1rem; font-weight: 700; font-family: 'Syne', sans-serif; }
footer .tagline { font-size: 0.8rem; color: var(--fg-muted); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-right: none; border-bottom: 1px solid var(--border); }
  .outcome:last-child { border-bottom: none; }
  .ops-grid { grid-template-columns: 1fr; }
  .process-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
