:root {
  --bg: #070d18;
  --card: #111a2b;
  --text: #eef3fa;
  --muted: #8fa0b8;
  --accent: #10b981;
  --border: #1f2d44;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(7, 13, 24, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--accent); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.hero {
  min-height: 42vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 24, 0.92) 0%, rgba(7, 13, 24, 0.55) 100%);
}

.hero-inner {
  position: relative;
  padding: 3.5rem 1.25rem;
  max-width: 720px;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #b8f5df;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: var(--accent);
  color: #042f1e;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.content {
  padding: 2.5rem 1.25rem 3rem;
}

.block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.block p { margin: 0 0 0.75rem; color: var(--muted); }

.block ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.block li { margin-bottom: 0.35rem; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  font-size: 0.9rem;
}

.muted { color: var(--muted); font-size: 0.8rem; }

@media (max-width: 640px) {
  .nav { font-size: 0.82rem; }
}
