:root {
  --canvas: #08080a;
  --surface: #121216;
  --chalk: #f4f4f5;
  --muted: #9c9ca6;
  --faint: #6b6b75;
  --ember: #ff6b2c;
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-strong: rgba(255, 255, 255, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--chalk);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  border-bottom: 1px solid var(--hairline);
}

.site-footer {
  border-bottom: 0;
  border-top: 1px solid var(--hairline);
  color: var(--faint);
  font-size: 14px;
  padding: 20px 0 32px;
}

.wordmark {
  color: var(--chalk);
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -0.02em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.wordmark:hover {
  text-decoration: none;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  color: var(--muted);
  min-height: 44px;
  min-width: 44px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

nav a[aria-current="page"] {
  color: var(--chalk);
}

.hero {
  padding: 88px 0 72px;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 610;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 12px;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.lede {
  margin: 0 0 28px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 18px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.links a {
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  color: var(--chalk);
  background: rgba(255, 255, 255, 0.055);
}

.links a:hover {
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.legal {
  padding: 40px 0 64px;
}

.legal h1 {
  font-size: clamp(32px, 6vw, 44px);
  margin-bottom: 8px;
}

.updated {
  margin: 0 0 36px;
  color: var(--faint);
  font-size: 14px;
}

.legal h2 {
  margin: 36px 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 6px;
}
