:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #566158;
  --line: #d8ded8;
  --panel: #f7f8f5;
  --white: #ffffff;
  --green: #2f6f55;
  --blue: #315f8a;
  --plum: #6a496a;
  --gold: #a67624;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 760;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 64px);
  padding: 72px 7vw 48px;
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.hero-visual {
  margin: 0;
  min-width: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.notice {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px 7vw;
  background: #f9f2e6;
  border-bottom: 1px solid #eadcc6;
}

.notice h2 {
  margin: 0;
  font-size: 24px;
}

.notice p {
  max-width: 860px;
  margin: 0;
  color: #59492f;
  font-size: 18px;
}

.section {
  padding: 88px 7vw;
  border-bottom: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: 48px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.copy p,
.boundary-grid p,
.status-list p,
.lane-table span {
  color: var(--muted);
  font-size: 18px;
}

.copy p {
  max-width: 840px;
  margin: 0 0 20px;
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.boundary-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.evidence-section {
  background: var(--panel);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.status-list article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 760;
}

.status-list article:nth-child(2) span {
  background: var(--blue);
}

.status-list article:nth-child(3) span {
  background: var(--plum);
}

.status-list article:nth-child(4) span {
  background: var(--gold);
}

.lane-table {
  border: 1px solid var(--line);
}

.lane-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.lane-table div:last-child {
  border-bottom: 0;
}

.lane-table strong {
  font-size: 18px;
}

.final-section {
  background: #eef5f2;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

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

  .hero {
    min-height: auto;
    padding: 56px 24px 36px;
    gap: 36px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .lede {
    font-size: 19px;
  }

  .notice,
  .section {
    padding: 44px 24px;
  }

  .boundary-grid,
  .status-list {
    grid-template-columns: 1fr;
  }

  .boundary-grid article,
  .status-list article {
    min-height: auto;
  }

  .status-list span {
    margin-bottom: 28px;
  }

  .lane-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
}
