:root {
  color: #17241f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

body {
  background: #f7faf8;
  margin: 0;
}

a {
  color: #0b6b5e;
  font-weight: 850;
}

header {
  background:
    linear-gradient(120deg, rgba(20, 37, 31, 0.98), rgba(15, 67, 57, 0.92)),
    #14251f;
  color: #ffffff;
  padding: 28px clamp(18px, 5vw, 72px) 48px;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 44px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
}

.brand img {
  display: block;
  height: auto;
  object-fit: contain;
  width: min(72vw, 310px);
}

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

.kicker {
  color: #ffdfdd;
  display: block;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 8vw, 72px);
  line-height: 0.96;
  margin: 0;
  max-width: 980px;
}

.hero-copy {
  color: #d8e7e0;
  font-size: 20px;
  line-height: 1.55;
  max-width: 820px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  align-items: center;
  background: #e10b0b;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  text-decoration: none;
}

.button.secondary {
  background: #ffffff;
  color: #14251f;
}

main {
  margin: 0 auto;
  max-width: 1160px;
  padding: 38px clamp(18px, 5vw, 52px) 72px;
}

section,
.panel {
  background: #ffffff;
  border: 1px solid #dce4df;
  border-radius: 8px;
  margin-top: 16px;
  padding: 24px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 8px;
}

p {
  color: #5c7067;
}

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

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

.card {
  background: #f7faf8;
  border: 1px solid #dce4df;
  border-radius: 8px;
  padding: 18px;
}

.card strong,
.metric strong {
  color: #14251f;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

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

.callout {
  background: #fff9ec;
  border-color: #f4d89a;
}

.success {
  background: #eef6f0;
  border-color: #b8d7bd;
}

.dark {
  background: #14251f;
  color: #ffffff;
}

.dark p,
.dark li {
  color: #d8e7e0;
}

.metric-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.metric {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce4df;
  border-radius: 8px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 12px;
}

.sample-report {
  background: #ffffff;
  border: 1px solid #cbdad2;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(20, 37, 31, 0.08);
  margin-top: 18px;
  padding: 28px;
}

.report-header {
  align-items: start;
  border-bottom: 2px solid #14251f;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.badge {
  background: #eef6f0;
  border: 1px solid #b8d7bd;
  border-radius: 999px;
  color: #0b6b5e;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
  text-transform: uppercase;
}

table {
  border-collapse: collapse;
  margin-top: 14px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid #dce4df;
  padding: 10px;
  text-align: left;
}

th {
  color: #14251f;
  font-size: 12px;
  text-transform: uppercase;
}

footer {
  color: #5c7067;
  margin-top: 34px;
}

@media print {
  header,
  .no-print,
  footer {
    display: none;
  }

  body {
    background: #ffffff;
  }

  main {
    max-width: none;
    padding: 0;
  }

  .sample-report {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

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

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

  .metric {
    align-items: flex-start;
    flex-direction: column;
  }
}
