:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f6f7f9;
  color: #20242a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #2563eb;
  font-weight: 800;
}

.shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
}

h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

p,
li {
  max-width: 760px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions a {
  border: 1px solid #c8cfd9;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
}

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

.grid article,
.legal section {
  background: #ffffff;
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  padding: 18px;
}

.legal {
  display: grid;
  gap: 16px;
}

.updated {
  margin-top: -8px;
  font-size: 14px;
}
