:root {
  color-scheme: dark;
  --night-950: #070914;
  --night-900: #101427;
  --moon-gold: #f3d48b;
  --lavender: #d9d4ff;
  --muted: #b7bad3;
  --text: #f8f6ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--night-950);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  margin: 0 auto;
  max-width: 960px;
  padding: 56px 24px;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
a {
  color: var(--moon-gold);
}

h1 {
  font-size: clamp(40px, 8vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 20px;
}

h2 {
  margin-top: 32px;
}

p,
li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.actions a,
.notice {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--night-900);
}

.actions a {
  padding: 12px 16px;
  text-decoration: none;
}

.notice {
  padding: 22px;
}

.document {
  max-width: 760px;
}

