@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #070819;
  --surface: #12122c;
  --line: #32265c;
  --text: #f7f4ff;
  --muted: #bbb7d3;
  --gold: #ffc82e;
  --violet: #a35cff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 0, rgba(126, 53, 230, .18), transparent 34rem),
    var(--bg);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: var(--gold);
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: min(880px, calc(100% - 40px));
  margin-inline: auto;
}

header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 25, .94);
}

header .shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
}

.back {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

main {
  padding: 72px 0 90px;
}

.eyebrow {
  color: var(--violet);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.18;
}

h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-size: clamp(2.25rem, 7vw, 4rem);
}

h2 {
  margin-top: 38px;
  font-size: 1.35rem;
}

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

.lede {
  max-width: 760px;
  font-size: 1.08rem;
}

.notice {
  margin: 36px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(33, 22, 77, .86), rgba(14, 14, 39, .95));
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 560px) {
  header .shell {
    min-height: 68px;
  }

  main {
    padding-top: 48px;
  }
}
