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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fafafa;
}

a {
  color: inherit;
}

.page,
.doc {
  margin: 0 auto;
  max-width: 760px;
  padding: 56px 20px;
}

.hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.updated {
  color: #666666;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.94;
  letter-spacing: 0;
  margin: 10px 0 18px;
}

h2 {
  font-size: 22px;
  margin: 34px 0 10px;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  align-items: center;
  background: #111111;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
}

.link,
.back {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  text-decoration: underline;
}

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

.card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  text-decoration: none;
}

.card span {
  font-size: 17px;
  font-weight: 900;
}

.card small {
  color: #666666;
  font-size: 14px;
  line-height: 1.45;
}

.doc {
  max-width: 820px;
}

@media (max-width: 720px) {
  .page,
  .doc {
    padding: 36px 18px;
  }

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