* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: #f6f7f9;
  line-height: 1.6;
}

a {
  color: #0f62fe;
}

.site-header {
  border-bottom: 1px solid #dce1e7;
  background: #ffffff;
}

.site-header__inner,
.page {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #111827;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

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

.nav a:hover,
.brand:hover {
  text-decoration: underline;
}

.page {
  padding: 56px 0 72px;
}

.panel {
  border: 1px solid #dce1e7;
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 44px);
}

.eyebrow {
  margin: 0 0 8px;
  color: #5b6675;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin: 36px 0 12px;
  color: #111827;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p,
ul {
  margin: 0 0 18px;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin: 0 0 8px;
}

.lead {
  color: #3f4b5a;
  font-size: 1.12rem;
}

.link-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: block;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 16px 18px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}

.link-list a:hover {
  border-color: #0f62fe;
  color: #0f62fe;
}

.meta {
  color: #5b6675;
}

.footer {
  margin-top: 36px;
  color: #5b6675;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .page {
    padding-top: 32px;
  }
}
