:root {
  color-scheme: light dark;
  --background: #ffffff;
  --foreground: #000000;
  --muted: #4a4a4a;
  --line: #000000;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #000000;
    --foreground: #ffffff;
    --muted: #b8b8b8;
    --line: #ffffff;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

.page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 28px;
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  text-align: center;
  width: 100%;
}

.icon {
  border: 1px solid var(--line);
  border-radius: 22%;
  display: block;
  height: 118px;
  margin-bottom: 30px;
  width: 118px;
}

.kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 11vw, 92px);
  line-height: 0.95;
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
  margin: 22px 0 0;
  max-width: 430px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.links a,
.back {
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 16px;
  text-decoration: none;
}

.document {
  margin: 0 auto;
  max-width: 760px;
  padding: 34px 24px 64px;
}

.document .back {
  display: inline-flex;
  margin-bottom: 42px;
}

.document h1 {
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1;
  margin-bottom: 16px;
}

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

.document p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.65;
  margin: 0 0 18px;
}

.document .date {
  color: var(--foreground);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 28px;
}
