:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-card: #111111;
  --lime: #BEFF00;
  --lime-dim: rgba(190, 255, 0, 0.12);
  --lime-border: rgba(190, 255, 0, 0.25);
  --text-primary: #f2f2f2;
  --text-secondary: #888888;
  --text-muted: #555555;
  --border: #1e1e1e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: var(--lime);
  color: #080808;
  padding: 4px 7px;
  border-radius: 3px;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 48px 120px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-stat-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(96px, 14vw, 180px);
  line-height: 0.88;
  color: var(--lime);
  letter-spacing: -0.04em;
  text-shadow: 0 0 60px rgba(190,255,0,0.25);
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.hero-copy-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.pill {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border: 1px solid var(--lime-border);
  border-radius: 100px;
  color: var(--lime);
  background: var(--lime-dim);
}

/* BG Art */
.hero-bg-art {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--lime-border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 20s linear infinite;
}
.art-ring-1 { width: 300px; height: 300px; }
.art-ring-2 { width: 450px; height: 450px; animation-direction: reverse; animation-duration: 30s; }
.art-ring-3 { width: 580px; height: 580px; animation-duration: 45s; }
@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.art-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
}
.art-node-1 { top: 30%; left: 60%; }
.art-node-2 { top: 55%; left: 75%; width: 6px; height: 6px; }
.art-node-3 { top: 70%; left: 50%; width: 8px; height: 8px; }

/* ── SHARED ── */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

/* ── PROBLEM ── */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 56px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.problem-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.problem-card-claim {
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
}
.problem-card-claim p { color: var(--text-primary); font-size: 15px; }
.problem-card-claim strong { color: var(--lime); }
.problem-icon {
  font-size: 20px;
  color: #ff4444;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1;
}
.claim-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--lime);
}

/* ── SYSTEM ── */
.system { padding: 100px 48px; background: var(--bg); }
.system-inner { max-width: 1200px; margin: 0 auto; }
.system-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 64px;
}
.system-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  padding: 6px 10px;
  border-radius: 4px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; max-width: 560px; }
.step-connector {
  width: 1px;
  height: 0;
}
.system-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.tools-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tools-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tool-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
}

/* ── NUMBERS ── */
.numbers {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-inner { max-width: 1200px; margin: 0 auto; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.number-item {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.number-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lime);
}
.number-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── MANIFESTO ── */
.manifesto { padding: 100px 48px; background: var(--bg); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  max-width: 860px;
  color: var(--text-primary);
  margin-bottom: 64px;
}
.manifesto-pipeline {}
.pipeline-label {
  font-size: 11px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pipeline-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pipeline-node { display: flex; align-items: center; gap: 10px; }
.pnode-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--text-muted);
  flex-shrink: 0;
}
.pnode-active {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 8px rgba(190,255,0,0.5);
}
.pnode-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.pipeline-arrow {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonial-card-featured {
  border: 1px solid var(--lime-border);
  background: var(--lime-dim);
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}
.testimonial-card-featured .testimonial-quote { color: var(--text-primary); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.author-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.author-avatar svg { display: block; }
.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}
.author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 48px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 16px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-meta p { font-size: 12px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat { font-size: 80px; }
  .hero-bg-art { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .problem, .system, .numbers, .manifesto, .footer { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; }
}