:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #171717;
  --text: #f5f5f5;
  --muted: #a0a0a7;
  --line: #28282c;
  --orange: #ff9428;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(620px, 100%);
  text-align: center;
}

.logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 28px;
}

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

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  margin: 22px auto 0;
  color: var(--muted);
  max-width: 520px;
  font-size: 20px;
  line-height: 1.55;
}

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

.links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
}

.document {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--orange);
  font-weight: 800;
}

.document h1 {
  font-size: clamp(36px, 7vw, 58px);
  margin-bottom: 12px;
}

.updated {
  color: var(--muted);
  margin-bottom: 40px;
}

.document h2 {
  margin: 34px 0 10px;
  font-size: 23px;
  letter-spacing: 0;
}

.document p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  margin: 12px 0;
}

.mail {
  font-size: 22px;
  font-weight: 800;
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg: #f5f5f7;
    --surface: #ffffff;
    --text: #111111;
    --muted: #66666d;
    --line: #e2e2e7;
  }
}
