:root {
  --bg: #f8fbfb;
  --surface: #ffffff;
  --ink: #132826;
  --muted: #58706d;
  --line: #d7e4e2;
  --brand: #00806e;
  --brand-dark: #00594d;
  --accent: #d89a22;
  --accent-soft: #f7e8c8;
  --title-font: Iowan Old Style, Palatino Linotype, Palatino, Georgia, serif;
  --body-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.5;
  text-size-adjust: 100%;
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 2;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, white);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brand);
  color: var(--brand-dark);
  background: var(--accent-soft);
  font-family: var(--title-font);
  font-size: 0.9rem;
  font-weight: 700;
}

.brand strong,
h1,
h2,
h3,
.footer-brand {
  font-family: var(--title-font);
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.1;
}

.brand em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
}

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

.nav a {
  padding: 8px 10px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--accent);
}

.masthead {
  padding: 78px 0 52px;
  border-bottom: 1px solid var(--line);
}

.masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: 6.8rem;
  line-height: 0.92;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.lead,
.page-heading p,
.article-header p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--brand-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--brand-dark);
  color: white;
}

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

.identity-panel,
.signup-card,
.article-card,
.feature-article,
.teaser,
.disclosure-note {
  background: var(--surface);
  border: 1px solid var(--line);
}

.identity-panel {
  padding: 24px;
}

.identity-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-panel strong {
  display: block;
  margin: 10px 0;
  font-family: var(--title-font);
  font-size: 2rem;
  overflow-wrap: anywhere;
}

.split-section,
.signup-section,
.two-column,
.related-section,
.policy-page,
.article-page,
.page-heading {
  padding-block: 56px;
}

.split-section,
.signup-section,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 32px;
  align-items: start;
}

.feature-article {
  min-height: 100%;
  padding: 32px;
  border-top: 5px solid var(--accent);
}

.feature-article h2,
.article-card h2,
.signup-section h2,
.two-column h2,
.related-section h2,
.policy-page h2 {
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1;
}

.feature-article h2 a,
.article-card h2 a,
.teaser h3 a {
  color: var(--ink);
  text-decoration: none;
}

.stacked-list {
  display: grid;
  gap: 12px;
}

.teaser {
  padding: 18px;
}

.teaser p,
.article-card .eyebrow {
  margin: 0 0 8px;
}

.teaser h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.band {
  padding: 38px 0;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent-soft) 48%, var(--bg));
}

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

.three-up h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.three-up p,
.feature-article p,
.article-card p,
.teaser p,
.identity-panel p,
.form-note,
.site-footer p {
  color: var(--muted);
}

.signup-card {
  padding: 22px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-weight: 600;
}

.field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
}

.field input:focus,
.check input:focus,
.button:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.bot-field {
  position: absolute;
  left: -10000px;
}

.form-note,
.form-status {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-status[data-state="success"] {
  color: var(--brand-dark);
}

.form-status[data-state="error"] {
  color: #9a2e24;
}

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

.article-grid.small {
  padding-bottom: 0;
}

.article-card {
  padding: 24px;
  min-height: 280px;
}

.article-card h2 {
  font-size: 1.75rem;
}

.article-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-body {
  max-width: 760px;
  padding-top: 28px;
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 1.25rem;
}

.disclosure-note {
  max-width: 760px;
  margin-top: 28px;
  padding: 18px;
  color: var(--muted);
}

.two-column > div {
  border-top: 3px solid var(--accent);
  padding-top: 18px;
}

.policy-page {
  max-width: 860px;
}

.policy-page h1,
.page-heading h1,
.article-header h1 {
  font-size: 5rem;
}

.policy-updated {
  color: var(--muted);
}

.policy-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: 24px;
}

.footer-brand {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

@media (max-width: 860px) {
  .header-inner,
  .footer-grid,
  .masthead-grid,
  .split-section,
  .signup-section,
  .two-column {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    padding-block: 16px;
  }

  .nav,
  .footer-links {
    justify-content: flex-start;
  }

  .three-up,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .masthead {
    padding-top: 46px;
  }

  h1 {
    font-size: 4.4rem;
  }

  .policy-page h1,
  .page-heading h1,
  .article-header h1 {
    font-size: 3.6rem;
  }

  .feature-article h2,
  .article-card h2,
  .signup-section h2,
  .two-column h2,
  .related-section h2,
  .policy-page h2 {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .brand strong {
    font-size: 1.1rem;
  }

  h1,
  .policy-page h1,
  .page-heading h1,
  .article-header h1 {
    font-size: 3.05rem;
  }
}