:root {
  --ink: #17202a;
  --muted: #5f6f7c;
  --cream: #fbf7ef;
  --white: #ffffff;
  --green: #285c4d;
  --green-2: #34745f;
  --gold: #d79c43;
  --soft: #edf3ef;
  --line: rgba(23,32,42,0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  background: rgba(251,247,239,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(40,92,77,0.22);
}
.logo-text { font-weight: 800; font-size: 24px; letter-spacing: -0.04em; }
.logo-text span { color: var(--green); }
.logo-wrap.small .logo-mark { width: 34px; height: 34px; font-size: 18px; border-radius: 10px; }
.logo-wrap.small .logo-text { font-size: 19px; }
.header-cta, .primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta { padding: 11px 18px; border: 1px solid var(--green); color: var(--green); }
.primary-btn { padding: 15px 24px; background: var(--green); color: var(--white); box-shadow: 0 12px 26px rgba(40,92,77,0.22); }
.secondary-btn { padding: 15px 22px; border: 1px solid var(--line); background: rgba(255,255,255,0.55); }
.primary-btn:hover, .secondary-btn:hover, .header-cta:hover { transform: translateY(-2px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  gap: 48px;
  align-items: center;
  padding: 84px 6vw 72px;
  min-height: 72vh;
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  margin: 0 0 14px;
}
h1 { font-size: clamp(46px, 7vw, 82px); line-height: .92; letter-spacing: -0.065em; margin: 0 0 24px; max-width: 900px; }
h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1; letter-spacing: -0.055em; margin: 0 0 20px; }
h3 { margin: 0 0 12px; font-size: 20px; }
p { color: var(--muted); line-height: 1.65; font-size: 17px; }
.hero-copy { max-width: 700px; font-size: 21px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.score-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(23,32,42,0.12);
}
.score-label { color: var(--muted); font-weight: 700; }
.score-number { font-size: 96px; font-weight: 900; letter-spacing: -0.08em; color: var(--green); line-height: .95; }
.score-city { font-size: 24px; font-weight: 800; margin-bottom: 24px; }
.score-bars div { margin: 18px 0; }
.score-bars span { display: block; color: var(--muted); font-size: 14px; margin-bottom: 8px; font-weight: 700; }
.score-bars div::after { content: ""; display: block; height: 10px; background: var(--soft); border-radius: 99px; }
.score-bars b { display: block; height: 10px; margin-top: -10px; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 99px; }
.features, .audience { padding: 76px 6vw; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
.data-section {
  margin: 40px 6vw;
  padding: 54px;
  border-radius: 36px;
  background: var(--green);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.data-section p { color: rgba(255,255,255,.78); }
.data-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.data-list li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 700;
}
.audience-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.audience-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 14px;
  text-align: center;
  font-weight: 800;
}
.cta-band {
  margin: 20px 6vw 76px;
  padding: 56px;
  border-radius: 34px;
  background: linear-gradient(135deg, #e7f0ea, #fff8e9);
  text-align: center;
  border: 1px solid var(--line);
}
.cta-band p { max-width: 720px; margin: 0 auto 28px; }
.primary-btn.light { background: var(--ink); }
footer {
  border-top: 1px solid var(--line);
  padding: 30px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
footer p { margin: 0; font-size: 14px; max-width: 600px; }
@media (max-width: 900px) {
  .hero, .data-section { grid-template-columns: 1fr; }
  .feature-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .site-header { padding: 18px 5vw; }
  .header-cta { display: none; }
  .hero, .features, .audience { padding-left: 5vw; padding-right: 5vw; }
  .feature-grid, .audience-grid { grid-template-columns: 1fr; }
  .data-section, .cta-band { margin-left: 5vw; margin-right: 5vw; padding: 32px; }
  .logo-text { font-size: 21px; }
}
