:root {
  --bg: #edf1f5;
  --panel: #ffffff;
  --ink: #13212d;
  --muted: #5d6d7c;
  --line: #d7e0e7;
  --accent: #0c6b58;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(12, 107, 88, 0.08), rgba(12, 107, 88, 0)),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.hero,
.band {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 56px 0 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p,
ul {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.lede,
.band p,
.list {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.lede {
  max-width: 52ch;
  margin-top: 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.metric strong {
  font-size: 28px;
  font-weight: 700;
}

.band {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.band h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.list {
  padding-left: 18px;
}

@media (max-width: 800px) {
  .topbar,
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding-top: 36px;
  }
}

