:root {
  color-scheme: light;
  --ink: #14191a;
  --muted: #64706d;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #dfe5df;
  --green: #0e7c66;
  --blue: #226fb1;
  --coral: #dc8458;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center;
  padding: 84px 0 72px;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.meter {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(20, 25, 26, 0.08);
}

.meter-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.meter-value {
  display: block;
  color: var(--ink);
  font-size: 38px;
  font-weight: 780;
  line-height: 1;
  text-transform: none;
}

.bars {
  display: grid;
  gap: 14px;
}

.bar {
  height: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eee7;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.bar:nth-child(1) span {
  width: 78%;
  background: var(--green);
}

.bar:nth-child(2) span {
  width: 46%;
  background: var(--blue);
}

.bar:nth-child(3) span {
  width: 31%;
  background: var(--coral);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 48px 0 72px;
}

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.content {
  max-width: 780px;
  padding: 64px 0 84px;
}

.content ul {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--muted);
}

.content li + li {
  margin-top: 8px;
}

footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 54px;
  }

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

  nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
