:root {
  --bg: #07090f;
  --bg-surface: #0d1117;
  --bg-card: #111827;
  --fg: #f0f4ff;
  --fg-muted: #8892a4;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --border: rgba(240, 244, 255, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.nav {
  position: relative;
  z-index: 10;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2.5rem 4rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* OPS FEED */
.opsfeed {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}

.opsfeed-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

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

.opsfeed-card {
  background: var(--bg-surface);
  padding: 1.75rem;
}

.opsfeed-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.opsfeed-tag--watch { color: #818cf8; }
.opsfeed-tag--act { color: #34d399; }
.opsfeed-tag--advise { color: #fb923c; }
.opsfeed-tag--report { color: #f472b6; }

.opsfeed-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* FEATURES */
.features {
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.features-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.feature-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.manifesto-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--fg);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  font-style: normal;
}

.manifesto-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 7rem;
}

.closing-inner {
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

/* FOOTER */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--fg);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .opsfeed { padding: 0 1.5rem 4rem; }
  .features-inner { padding: 4rem 1.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing { padding: 0 1.5rem 5rem; }
  .footer { padding: 1.5rem; }

  .hero-stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .hero-stat-div { display: none; }
  .hero-stat { flex-direction: row; align-items: center; gap: 0.75rem; }

  .opsfeed-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}