:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #5d6761;
  --line: #d7ded9;
  --paper: #fbfcfa;
  --tint: #eef5f1;
  --green: #265647;
  --green-dark: #17382e;
  --clay: #9d4f34;
  --blue: #244d63;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--clay);
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 24px clamp(20px, 5vw, 72px) 56px;
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 33, 28, 0.9), rgba(15, 33, 28, 0.62) 54%, rgba(15, 33, 28, 0.36)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.92rem;
}

.nav a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero__content {
  align-self: center;
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2b28c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(1.65rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.lede {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid white;
  background: white;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #f4f2ed;
  color: var(--green-dark);
}

.button--secondary {
  background: transparent;
  color: white;
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.section {
  padding: 78px clamp(20px, 5vw, 72px);
}

.section--tint {
  background: var(--tint);
}

.section__header {
  max-width: 930px;
  margin-bottom: 28px;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1120px;
}

.text-grid p,
.wide-copy,
.section--split p {
  color: var(--muted);
  font-size: 1.04rem;
}

.wide-copy {
  max-width: 960px;
}

.pillars,
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.pillars article,
.cards article {
  min-height: 172px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 20px;
}

.pillars p,
.cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: white;
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

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

th {
  background: var(--green-dark);
  color: white;
  font-size: 0.82rem;
}

td {
  font-size: 0.92rem;
}

td:first-child,
th:first-child {
  width: 72px;
  text-align: center;
}

tbody tr:nth-child(even) {
  background: #f8faf8;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  position: relative;
  padding: 18px 18px 18px 58px;
  border-left: 4px solid var(--green);
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 18px;
  top: 19px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 1120px;
}

.source-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.footer {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .pillars,
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--split,
  .text-grid,
  .source-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 92vh;
    padding-top: 18px;
  }

  .nav {
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .pillars,
  .cards {
    grid-template-columns: 1fr;
  }

  .pillars article,
  .cards article {
    min-height: auto;
  }
}
