:root {
  --bg: #f7f5f2;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #d6d3d1;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3rem;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
}

.intro {
  max-width: 42rem;
  font-size: 1.3rem;
  color: #374151;
}

.subintro {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 1.25rem;
}

.focus-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: transparent;
  color: #57534e;
  font-size: 0.9rem;
}

.links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.links a {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.65rem 1rem;
  background: var(--panel);
}

.section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding-top: 4rem;
}

.prose {
  max-width: 46rem;
}

.prose p {
  margin: 0 0 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cards.single-column {
  grid-template-columns: 1fr;
}

.card {
  background: var(--panel);
  border: 1px solid #e7e5e4;
  border-radius: 1.25rem;
  padding: 1.3rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.06rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .section {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 3rem;
  }

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

  .container {
    padding: 2rem 1rem 4rem;
  }

  .intro {
    font-size: 1.15rem;
  }
}
