:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: #d9e2ef;
  --brand: #2563eb;
  --brand-weak: #e8f0ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

.wrap {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  padding: 48px 0 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

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

.link-grid a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand);
  font-weight: 850;
  text-decoration: none;
}

.doc {
  max-width: 760px;
}

.back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 850;
  text-decoration: none;
}

.meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 750;
}

section {
  margin: 0 0 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

section p {
  color: #344054;
  font-size: 15px;
}

.action {
  margin-bottom: 16px;
}

.action .button {
  margin-top: 16px;
  background: var(--brand);
  color: #fff;
}

.action .button.secondary {
  background: var(--brand-weak);
  color: var(--brand);
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 880px);
    padding: 34px 0;
  }

  section {
    padding: 16px;
  }
}
