@font-face {
  font-family: "Redaction";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/redaction@latest/latin-400-normal.woff2")
    format("woff2");
}

:root {
  --paper: #f6eedf;
  --ink: #1e1a16;
  --muted: #6b6056;
  --line: rgba(30, 26, 22, 0.14);
  --accent: #253d5a;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --display: "Redaction", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

.home-body {
  min-height: 100vh;
}

.home-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-logo {
  width: 76px;
  height: auto;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  display: flex;
  justify-content: center;
  padding: 28px 20px 12px;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-mark__image {
  width: 76px;
  height: auto;
}

.site-main {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.intro,
.sitemap,
.plan-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.intro {
  border-top: 0;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.94;
  color: var(--accent);
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
}

.intro-copy,
.plan-section__header p,
.sitemap-list a,
.plan-section li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.intro-copy {
  max-width: 44rem;
  margin: 18px auto 0;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.plan-section ul {
  margin: 0;
  padding-left: 18px;
}

.plan-section li + li {
  margin-top: 10px;
}

.section-heading {
  margin-bottom: 18px;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding-left: 18px;
}

.sitemap-list a {
  color: var(--ink);
}

.sections {
  display: block;
}

.marker-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.marker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--ink);
}

.marker--neutral {
  background: rgba(255, 255, 255, 0.35);
}

.marker--assumption {
  background: rgba(37, 61, 90, 0.08);
}

.marker--todo {
  background: rgba(190, 110, 67, 0.12);
}

.plan-section__header {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.plan-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.plan-section__header p {
  margin: 10px 0 0;
}

.plan-section__intro {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.75;
}

.plan-block + .plan-block {
  margin-top: 22px;
}

.plan-block h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.plan-block p,
.plan-block li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.plan-block p {
  margin: 0;
}

.plan-block ul {
  margin: 0;
  padding-left: 18px;
}

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

.block-meta {
  margin-bottom: 10px !important;
}

@media (max-width: 720px) {
  .site-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sitemap-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .plan-section__header {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .plan-section__number {
    width: 48px;
    height: 48px;
  }
}
