* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfcfa 0%, #f7f6f2 100%);
}

a {
  color: #0f172a;
}

.page {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  font-size: 14px;
}

.brand {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav a {
  text-decoration: none;
  color: #4b5563;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumbs a {
  color: #4b5563;
  text-decoration: none;
}

.breadcrumbs span[aria-hidden="true"] {
  color: rgba(107, 114, 128, 0.7);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}

h1 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

h2 {
  margin: 36px 0 12px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

p,
li {
  font-size: 17px;
  line-height: 1.75;
  color: #374151;
}

ul {
  padding-left: 20px;
}

.lede {
  max-width: 760px;
  font-size: 20px;
  color: #1f2937;
}

.meta {
  margin-top: 10px;
  color: #6b7280;
  font-size: 15px;
}

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

.card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
}

.card a {
  font-size: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.button-primary {
  background: #111827;
  color: #f9fafb;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.footer {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .lede {
    font-size: 18px;
  }
}
