:root {
  color-scheme: dark;
  --night: #120c19;
  --plum: #24112d;
  --violet: #a778ff;
  --rose: #df668a;
  --gold: #f4c45e;
  --paper: #fffafd;
  --muted: #d2c7d9;
  --line: rgba(255, 255, 255, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 90% 4%, rgba(167, 120, 255, .2), transparent 28rem),
    radial-gradient(circle at 0 45%, rgba(223, 102, 138, .12), transparent 25rem),
    var(--night);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: #d9bdff; }
a:hover { color: var(--paper); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 12, 25, .9);
  backdrop-filter: blur(18px);
}
.topbar-inner, main, footer {
  width: min(calc(100% - 36px), 820px);
  margin-inline: auto;
}
.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { color: var(--paper); font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; text-decoration: none; }
.back { font-size: .9rem; font-weight: 700; text-decoration: none; }
main { padding: clamp(54px, 8vw, 88px) 0 56px; }
.eyebrow { margin: 0 0 14px; color: #e4d1ff; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; text-wrap: balance; }
h1 { margin: 0 0 20px; font-size: clamp(2.55rem, 10vw, 4.6rem); line-height: 1.02; letter-spacing: -.04em; }
h2 { margin: 38px 0 10px; font-size: clamp(1.45rem, 5vw, 1.9rem); line-height: 1.25; }
.lead { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.meta {
  margin: 28px 0 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  padding: 18px 20px;
  color: var(--muted);
  font-size: .9rem;
}
p, li { color: var(--muted); }
ul { padding-left: 22px; }
li + li { margin-top: 7px; }
.notice {
  margin-top: 38px;
  border-left: 3px solid var(--rose);
  border-radius: 0 14px 14px 0;
  background: rgba(223, 102, 138, .09);
  padding: 16px 18px;
}
footer { border-top: 1px solid var(--line); padding: 28px 0 44px; color: #a99cae; font-size: .83rem; }
@media (max-width: 520px) {
  .topbar-inner, main, footer { width: min(calc(100% - 28px), 820px); }
  .topbar-inner { min-height: 62px; }
  main { padding-top: 42px; }
  h1 { font-size: 2.6rem; }
}
