:root {
  --bg: #111117;
  --surface: #1A1A22;
  --surface-2: #22222E;
  --lime: #D4FF5C;
  --lime-dim: rgba(212, 255, 92, 0.12);
  --fg: #F0F0F5;
  --fg-muted: #8A8A9A;
  --fg-subtle: #4A4A5A;
  --border: #2A2A35;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-body);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  font-weight: 300;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-graphic {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hg-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.hg-panel--main {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-color: var(--border);
}
.hg-stat {
  padding: 12px 0;
}
.hg-stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.hg-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}
.hg-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}
.hg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime-dim);
  border: 1px solid rgba(212, 255, 92, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--lime);
  font-weight: 500;
  width: fit-content;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 0 40px;
  color: var(--fg-subtle);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-scroll-hint svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* SHARED */
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

/* MISSION */
.mission {
  border-bottom: 1px solid var(--border);
}
.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.mission-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
  padding-top: 8px;
  font-family: var(--font-body);
}
.mission-statement {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.mission-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

/* HOW IT WORKS */
.how-it-works {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.hi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.hi-step {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg);
  transition: border-color 0.2s;
}
.hi-step:hover { border-color: rgba(212,255,92,0.25); }
.step-number {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-subtle);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 24px;
}
.step-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* WHO */
.who {
  border-bottom: 1px solid var(--border);
}
.who-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.who-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}
.who-card:hover {
  border-color: rgba(212,255,92,0.3);
  transform: translateY(-2px);
}
.wc-icon {
  margin-bottom: 20px;
}
.who-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.who-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

/* POSITIONING */
.positioning {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.pos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: center;
}
.pos-quote {
  padding-right: 32px;
}
blockquote {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-muted);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 16px;
}
cite {
  font-size: 12px;
  color: var(--fg-subtle);
  font-style: normal;
  letter-spacing: 0.04em;
}
.pos-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-line {
  width: 1px;
  height: 120px;
  background: var(--border);
}
.pos-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pp-item h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pp-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  font-weight: 300;
}

/* CLOSING */
.closing {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 32px;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 36px;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 720px;
}
.closing-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 16px;
}
.closing-sub--accent {
  color: var(--lime);
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-subtle);
  font-weight: 300;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-subtle);
  font-family: var(--font-body);
}
.footer-sep { color: var(--fg-subtle); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 24px 48px; gap: 48px; }
  .hero-right { display: none; }
  .mission-inner { grid-template-columns: 1fr; gap: 20px; padding: 64px 24px; }
  .hi-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .pos-inner { grid-template-columns: 1fr; gap: 32px; }
  .pos-divider { display: none; }
  .pos-quote { padding-right: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .hero-headline { font-size: 40px; }
  .hero-inner { padding: 48px 20px 40px; }
  .mission-inner, .how-inner, .who-inner, .closing-inner { padding: 56px 20px; }
  .closing-inner { padding: 80px 20px; }
  .pos-inner { padding: 64px 20px; }
}