:root {
  --bg: #0d1117;
  --bg-alt: #161b22;
  --fg: #e6edf3;
  --fg-muted: #8b949e;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.08);
  --surface: #21262d;
  --border: rgba(255,255,255,0.06);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 12px;
  opacity: 0.7;
}

.manifesto h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--fg);
  margin-bottom: 24px;
}

.manifesto-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.manifesto-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
}

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

/* CAPABILITIES */
.capabilities {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.cap-card {
  background: var(--bg-alt);
  padding: 40px 36px;
  transition: background 0.2s;
}

.cap-card:hover {
  background: var(--surface);
}

.cap-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.cap-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: 'Figtree', sans-serif;
}

.cap-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* NETWORK */
.network {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.network-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.network h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--fg);
  margin-bottom: 20px;
}

.network-left p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(57,255,20,0.15);
  padding: 6px 12px;
  border-radius: 100px;
}

.network-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-visual svg {
  width: 100%;
  max-width: 300px;
}

/* CLOSING */
.closing {
  padding: 120px 0 100px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .manifesto-label {
    display: none;
  }

  .manifesto-stats {
    gap: 28px;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .network-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .network-visual {
    order: -1;
  }
}

@media (max-width: 480px) {
  .manifesto {
    padding: 80px 0 60px;
  }

  .cap-card {
    padding: 28px 24px;
  }
}