:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --ink: #1d2422;
  --muted: #5f6965;
  --line: #d9dfda;
  --panel: #ffffff;
  --accent: #2f6f5e;
  --accent-strong: #174f43;
  --gold: #d38b24;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.header-inner,
.page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-title {
  font-weight: 800;
  font-size: 19px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

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

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

.page {
  padding: 44px 0 64px;
}

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

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
}

h2 {
  margin: 36px 0 12px;
  font-size: 24px;
}

h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.content {
  max-width: 820px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.link-tile {
  display: block;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
}

.link-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.link-tile span {
  color: var(--muted);
  font-size: 14px;
}

.notice {
  margin: 28px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #fffaf0;
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 32%;
  color: var(--accent-strong);
  font-weight: 800;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  padding: 24px 0 36px;
}

.footer-inner {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

  .nav {
    gap: 12px;
  }

  h1 {
    font-size: 34px;
  }

  th,
  td {
    display: block;
    width: 100%;
  }

  th {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  td {
    padding-top: 4px;
  }
}
