:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-card: #141414;
  --fg: #F0F0F0;
  --fg-muted: #888888;
  --accent: #BBFF00;
  --accent-2: #FFB800;
  --border: #1E1E1E;
}

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(187,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 700px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 64px;
  line-height: 1.6;
}

.hero-visual {
  display: flex;
  justify-content: flex-start;
}

/* DATA CARD */
.data-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  width: 440px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.status-badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(187,255,0,0.1);
  border: 1px solid rgba(187,255,0,0.2);
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 600;
}

.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.metric {}

.metric-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.metric-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}

.metric-value.accent { color: var(--accent); }

.card-bar {}

.bar-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  font-family: 'DM Mono', monospace;
}

.bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  transition: width 1s ease;
}

/* ── METRICS ── */
.metrics {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1200px;
}

.metric-block {}

.metric-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 64px;
  font-weight: 600;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
}

.step {
  flex: 1;
  padding-right: 40px;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 32px;
  flex-shrink: 0;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: rgba(187,255,0,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto-quote {
  font-size: 22px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.manifesto-quote.accent {
  font-size: 26px;
  color: var(--fg);
  font-weight: 500;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-headline { font-size: 72px; }
  .hero-visual { width: 100%; }
  .data-card { width: 100%; }

  .metrics { padding: 60px 24px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .metric-number { font-size: 48px; }

  .process { padding: 60px 24px; }
  .process-steps { flex-direction: column; }
  .step { padding-right: 0; padding-bottom: 40px; }
  .step-connector { width: 1px; height: 40px; margin: 0; }

  .manifesto { padding: 60px 24px; }
  .manifesto-quote { font-size: 18px; }
  .manifesto-quote.accent { font-size: 20px; }

  .closing { padding: 80px 24px; }

  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .card-metrics { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 56px; }
}