:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5d6c78;
  --line: #d8e0e5;
  --paper: #f7f9fa;
  --white: #ffffff;
  --blue: #315f86;
  --green: #2f7a68;
  --amber: #a66b26;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow,
footer {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.94rem;
  color: var(--muted);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
  min-height: 64vh;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.split p {
  color: var(--muted);
  font-size: 1.06rem;
}

.chart {
  margin: 0;
}

.chart svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(31, 50, 66, 0.11));
}

.chart rect {
  fill: var(--white);
}

.grid path {
  stroke: var(--line);
  stroke-width: 1;
}

.area {
  fill: rgba(47, 122, 104, 0.16);
}

.line {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
}

.labels text,
.stats text {
  fill: var(--muted);
  font-size: 14px;
}

.stats text:nth-child(2) {
  fill: var(--blue);
  font-size: 34px;
  font-weight: 800;
}

.section {
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

article span {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

article strong {
  display: block;
  margin: 9px 0;
  font-size: 1.35rem;
}

article p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

footer p {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 36px;
  }
}
