:root {
  --bg: #f5f7f4;
  --surface: #ffffff;
  --ink: #17231d;
  --muted: #64746b;
  --line: #dce4dc;
  --green: #1f7a4c;
  --green-dark: #145936;
  --gold: #f0c85a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.hero {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(24, 58, 43, 0.95), rgba(31, 122, 76, 0.82)),
    url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.14'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3Ccircle cx='80' cy='80' r='44'/%3E%3C/g%3E%3C/svg%3E");
  color: white;
  padding: 24px clamp(20px, 5vw, 72px) 72px;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.navlinks,
footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gold);
  color: #183a2b;
  font-weight: 900;
}

.navlinks {
  color: #dceade;
  font-size: 14px;
}

.hero-content {
  max-width: 820px;
  margin-top: 110px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #dceade;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-content p:last-child {
  max-width: 680px;
  color: #eef7ef;
  font-size: 20px;
  line-height: 1.5;
}

.section {
  padding: 52px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading .eyebrow {
  color: var(--green-dark);
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.6;
}

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

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  white-space: nowrap;
}

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

td:first-child {
  color: var(--green-dark);
  font-weight: 800;
}

.table-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 14px;
}

.workflow-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}

.workflow-grid h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.report-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 0 14px;
  color: var(--green-dark);
  font-weight: 800;
}

footer {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 13px;
}

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

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .topnav,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .navlinks {
    flex-wrap: wrap;
  }

  .hero-content {
    margin-top: 72px;
  }

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