:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --ink: #19221d;
  --muted: #58645d;
  --line: #d9dfd7;
  --green: #24735c;
  --green-dark: #183f35;
  --clay: #bd513b;
  --amber: #b47928;
  --blue: #315d7c;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 3;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.01em;
}

.brand-mark {
  align-items: center;
  background: var(--green-dark);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  height: 30px;
  justify-content: center;
  letter-spacing: 0;
  width: 30px;
}

nav {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px 22px;
}

nav a:hover {
  color: var(--ink);
}

.hero,
.intro,
.workflow,
.outcomes,
.contact {
  margin-inline: auto;
  max-width: 1160px;
  padding-inline: clamp(20px, 4vw, 48px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 70px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  min-height: calc(100vh - 67px);
  padding-bottom: 52px;
  padding-top: 64px;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: 0;
  line-height: 0.97;
  margin-bottom: 22px;
  max-width: 820px;
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.14;
  margin-bottom: 10px;
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 690px;
}

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

.button,
button {
  border: 1px solid var(--green-dark);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 780;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.primary,
button {
  background: var(--green-dark);
  color: #fff;
}

.primary:hover,
button:hover {
  background: #102b25;
}

.secondary {
  background: transparent;
  color: var(--green-dark);
}

.secondary:hover {
  background: #e8eee8;
}

.hero-metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  max-width: 620px;
}

.hero-metrics div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.hero-metrics dt {
  color: var(--clay);
  font-size: 34px;
  font-weight: 850;
  line-height: 1;
}

.hero-metrics dd {
  color: var(--muted);
  margin: 6px 0 0;
}

.route-board {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(25, 34, 29, 0.12);
  padding: 22px;
}

.board-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.board-header h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.status-pill,
.tag {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.status-pill {
  background: #e8f4ed;
  color: var(--green);
  padding: 8px 10px;
}

.board-row {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  padding: 18px 0;
}

.board-row + .board-row {
  border-top: 1px solid var(--line);
}

.board-row.attention {
  background: #fff8ef;
  border: 1px solid #ead6b8;
  border-radius: 8px;
  margin-inline: -8px;
  padding: 16px 8px;
}

.time {
  color: var(--blue);
  font-weight: 800;
}

.board-row p {
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0 0;
}

.tag {
  padding: 7px 9px;
}

.tag.ready {
  background: #e8f4ed;
  color: var(--green);
}

.tag.review {
  background: #f8ead7;
  color: var(--amber);
}

.tag.pending {
  background: #e9f0f5;
  color: var(--blue);
}

.intro {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 0.88fr 1.12fr;
  padding-bottom: 48px;
  padding-top: 54px;
}

.intro p,
.card p,
.outcome-list span,
.contact p {
  color: var(--muted);
}

.intro > p {
  font-size: 19px;
  margin-bottom: 0;
}

.workflow {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 56px;
  padding-top: 8px;
}

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

.step {
  color: var(--clay);
  display: inline-block;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 28px;
}

.outcomes {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: 0.9fr 1.1fr;
  padding-bottom: 58px;
  padding-top: 58px;
}

.outcome-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.outcome-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 20px 0;
}

.outcome-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  padding-bottom: 64px;
  padding-top: 58px;
}

form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 14px;
  font-weight: 720;
  gap: 8px;
}

input,
select {
  background: #fff;
  border: 1px solid #c8d0c5;
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
}

input:focus,
select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(36, 115, 92, 0.16);
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .workflow,
  .outcomes,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .intro,
  .outcomes,
  .contact {
    padding-top: 42px;
  }

  .hero-metrics,
  .board-row {
    grid-template-columns: 1fr;
  }

  .button,
  button {
    width: 100%;
  }

  .route-board,
  .card,
  form {
    padding: 20px;
  }
}
