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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #4f46e5;
}

header,
main,
footer {
  width: min(760px, 90vw);
  margin-inline: auto;
}

header {
  padding: 32px 0 64px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

nav a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #6366f1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.3rem, 7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.updated {
  margin-top: 24px;
  color: #667085;
}

main {
  padding-bottom: 80px;
}

.summary {
  margin: 0 0 48px;
  padding: 24px;
  border: 1px solid #dfe3ee;
  border-radius: 20px;
  background: #fff;
  font-size: 1.08rem;
  line-height: 1.7;
}

section {
  margin-top: 42px;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

p,
li {
  color: #475467;
  line-height: 1.72;
}

ul {
  padding-left: 22px;
}

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

.policy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.policy-list li + li {
  margin-top: 0;
}

.policy-list a {
  display: block;
  height: 100%;
  padding: 18px;
  border: 1px solid #dfe3ee;
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

footer {
  padding: 28px 0;
  border-top: 1px solid #dfe3ee;
  color: #667085;
}

footer p {
  margin: 0;
}
