:root {
  --ink: #16141a;
  --muted: #635e6b;
  --line: #e4e2dd;
  --paper: #ffffff;
  --soft: #fbfaf7;
  --soft-2: #f4f3f1;
  --accent: #d6230f;
  --green: #167343;
  --yellow: #8a5a00;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-logo {
  flex: 0 0 auto;
}

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

nav a {
  text-decoration: none;
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 56px) 96px;
}

.hero {
  max-width: 880px;
  margin-bottom: 48px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
}

.community-cta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.community-cta a,
.footer-links a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.community-cta a {
  border-bottom: 1px solid var(--accent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stats div {
  padding: 20px;
  background: var(--soft);
}

.stats dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats dd {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 750;
}

.section h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.section {
  padding: 56px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist .checklist {
  margin-top: 12px;
}

.check-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.check-item:first-child {
  border-top: 0;
}

.box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 1.4px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.check-item.done > .box {
  border-color: var(--accent);
  background: var(--accent);
}

.check-body {
  min-width: 0;
}

.check-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.item-id {
  display: inline-flex;
  align-items: center;
  padding: 1px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.check-text {
  font-size: 15.5px;
  color: var(--ink);
}

.check-item.done > .check-body > .check-text {
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  vertical-align: 2px;
}

.status.exploring {
  background: #dceae2;
  color: var(--green);
}

.status.done {
  background: #f4d6cf;
  color: var(--accent);
}

.issue-section {
  margin-top: 30px;
}

.issue-section:first-of-type {
  margin-top: 0;
}

.issue-section h3 {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 720px) {
  .site-header,
  .section-head,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  main {
    padding-top: 48px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .check-text {
    font-size: 15px;
  }
}
