:root {
  color-scheme: light;
  --bg: #f6f2ea;
  --paper: #fffdf8;
  --ink: #182235;
  --muted: #626d7a;
  --line: #d8d0c2;
  --line-dark: #b8ad9d;
  --navy: #173b63;
  --navy-soft: #eef3f6;
  --gold: #b58b2a;
  --gold-soft: #f3ead3;
  --shadow: 0 18px 40px rgba(24, 34, 53, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(246, 242, 234, 0.82) 44%, rgba(239, 232, 218, 0.94)),
    repeating-linear-gradient(90deg, rgba(23, 34, 53, 0.035) 0 1px, transparent 1px 104px);
}

.site-header,
main {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.wordmark,
nav a,
.button-primary {
  font-weight: 800;
  text-decoration: none;
}

.wordmark {
  max-width: 420px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
}

main {
  padding-bottom: 64px;
}

.hero {
  padding: 46px 0 42px;
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.survey-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  gap: 38px;
  align-items: start;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: 0.99;
}

h2 {
  font-size: clamp(28px, 3.3vw, 43px);
  line-height: 1.06;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.lede {
  max-width: 760px;
  margin-top: 20px;
  color: #404b59;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
}

.lede + p {
  max-width: 760px;
  margin-top: 18px;
}

.status-card,
.survey-action,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.status-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-top: 4px solid var(--gold);
}

.status-label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.button-primary.disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.purpose-section,
.vision-section,
.survey-section,
.status-section,
.faq-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}


.purpose-section {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.purpose-section h2 {
  max-width: 820px;
}

.purpose-section .section-copy {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.section-copy,
.section-heading,
.status-section {
  display: grid;
  gap: 16px;
}

.section-heading {
  max-width: 860px;
}

.vision-grid,
.evidence-row,
.faq-grid {
  display: grid;
  gap: 0;
}

.vision-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vision-grid article,
.evidence-row article {
  display: grid;
  gap: 14px;
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
}

.vision-grid article + article,
.evidence-row article + article {
  padding-left: 26px;
}

.vision-grid article:last-child,
.evidence-row article:last-child {
  border-right: 0;
}

.vision-grid span,
.evidence-row span {
  color: var(--gold);
  font-weight: 900;
}

.survey-section {
  align-items: center;
}

.survey-section h2,
.status-section h2,
.faq-section h2 {
  margin-bottom: 16px;
}

.survey-section > div:first-child {
  display: grid;
  gap: 15px;
}

.survey-action {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 22px;
}

.survey-action p {
  font-size: 15px;
}

.evidence-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.status-section {
  max-width: 900px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.faq-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
  box-shadow: none;
}

.faq-grid p {
  font-size: 16px;
}

.site-footer {
  padding-top: 28px;
}

.site-footer p {
  font-size: 15px;
}

.site-footer a {
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: rgba(23, 59, 99, 0.35);
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header,
  main {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid,
  .purpose-section .section-copy,
  .survey-section,
  .evidence-row,
  .vision-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid article,
  .vision-grid article + article,
  .evidence-row article,
  .evidence-row article + article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vision-grid article:last-child,
  .evidence-row article:last-child {
    border-bottom: 0;
  }

  .button-primary {
    width: 100%;
  }
}

