:root {
  --obsidian: #09070b;
  --ink: #141016;
  --porcelain: #f7f1ea;
  --cherry: #c1123f;
  --silver: #c9ccd3;
  --hairline: rgba(247, 241, 234, 0.17);
  --muted: rgba(247, 241, 234, 0.66);
  --tertiary: rgba(247, 241, 234, 0.42);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--obsidian);
  color: var(--porcelain);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.005em;
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(247, 241, 234, 0.06), transparent 30rem),
    linear-gradient(160deg, var(--obsidian), #120a11 60%, #050506);
  min-height: 100vh;
}

.page {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 96px;
}

nav.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}

nav.top a.brand {
  font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--porcelain);
  text-decoration: none;
}

nav.top .links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav.top .links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

nav.top .links a:hover {
  color: var(--porcelain);
}

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

.wordmark {
  font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 14vw, 156px);
  line-height: 0.86;
  margin: 64px 0 32px;
}

.lede {
  font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  color: var(--silver);
  margin: 0 0 48px;
  max-width: 600px;
}

p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 600px;
}

p strong {
  color: var(--porcelain);
  font-weight: 600;
}

h1 {
  font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.96;
  margin: 0 0 36px;
  color: var(--porcelain);
}

h2 {
  font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin: 56px 0 18px;
  color: var(--porcelain);
}

a {
  color: var(--porcelain);
  text-decoration: underline;
  text-decoration-color: var(--cherry);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.15s ease;
}

a:hover {
  text-decoration-color: var(--porcelain);
}

ul {
  padding-left: 22px;
  margin: 0 0 18px;
}

li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 10px;
}

.divider {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 56px 0;
}

footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tertiary);
}

footer .links {
  display: flex;
  gap: 22px;
}

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

.tagline-row {
  margin: 64px 0;
}

.cta-row {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 26px;
  background: var(--cherry);
  color: var(--porcelain);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.cta.secondary {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--silver);
}

.last-updated {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin: 0 0 32px;
}

@media (max-width: 540px) {
  .page { padding: 56px 0 72px; }
  .wordmark { margin: 32px 0 24px; }
  nav.top { padding-bottom: 36px; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: 16px; align-items: flex-start; }
}
