:root {
  color-scheme: light dark;
  --paper: #f7f3ea;
  --panel: rgba(255, 255, 255, .72);
  --ink: #111a2d;
  --muted: #536078;
  --rule: #8193bc;
  --accent: #002eac;
  --accent-bright: #1646b8;
  --accent-ink: #fff;
  --shadow: 0 12px 32px rgba(17, 26, 45, .1);
  font: 16px/1.5 "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
}

:root[data-theme="dark"] {
  --paper: #0b1324;
  --panel: rgba(24, 37, 62, .84);
  --ink: #f3f6ff;
  --muted: #b3bfd8;
  --rule: #465c8f;
  --accent: #87aaff;
  --accent-bright: #a8c0ff;
  --accent-ink: #091225;
  --shadow: 0 12px 32px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { min-height: 100%; overflow-x: hidden; }

body {
  min-width: 280px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 0, color-mix(in srgb, var(--accent) 14%, transparent), transparent 34rem),
    var(--paper);
}

button, a { font: inherit; }

main {
  width: min(72rem, 100%);
  margin-inline: auto;
  padding: clamp(1rem, 4vw, 4rem);
}

.hero, .updates, .artist {
  border: 1px solid var(--rule);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border-radius: 1.2rem 1.2rem .35rem .35rem;
}

.eyebrow, time, .tag {
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 10ch; margin-bottom: .45rem; font-size: clamp(3rem, 10vw, 7.5rem); font-weight: 900; line-height: .88; letter-spacing: -.055em; }
h2 { margin-bottom: .35rem; font-size: clamp(1.7rem, 5vw, 3rem); font-weight: 900; line-height: 1; }
h3 { margin: .55rem 0 .6rem; font-size: 1.08rem; line-height: 1.2; }
.lede { max-width: 35rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); }

.primary {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: .8rem;
  padding: .8rem 1rem;
  border: 1px solid var(--accent);
  border-radius: .35rem;
  color: var(--accent-ink);
  background: var(--accent);
  font-weight: 800;
  cursor: pointer;
}

.primary:hover { background: var(--accent-bright); transform: translateY(-1px); }
.primary:focus-visible, a:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 50%, transparent); outline-offset: 3px; }
.status { min-height: 1.5em; margin: .6rem 0 0; color: var(--muted); font-size: .8rem; }

.updates, .artist { margin-top: .65rem; padding: clamp(1.25rem, 4vw, 2.5rem); }
.section-heading { display: grid; grid-template-columns: minmax(9rem, .45fr) 1fr; gap: 1rem; align-items: end; }
.section-heading .eyebrow { margin-bottom: .35rem; }

ol { margin: 1.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
li { display: grid; grid-template-columns: minmax(9rem, .45fr) 1fr auto; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--rule); }
li p { margin-bottom: 0; color: var(--muted); }
.tag { align-self: start; padding: .2rem .4rem; border: 1px solid currentColor; border-radius: 999px; white-space: nowrap; }

.artist { border-radius: .35rem .35rem 1.2rem 1.2rem; }
.artist-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr)); gap: .45rem; margin-top: 1.25rem; }
.artist-links a { min-height: 2.75rem; display: grid; place-items: center; padding: .55rem; border: 1px solid var(--rule); border-radius: .35rem; color: var(--ink); background: color-mix(in srgb, var(--paper) 72%, transparent); font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.artist-links a:hover { border-color: var(--accent); color: var(--accent); }
.attribution { margin: 1rem 0 0; color: var(--muted); font-size: .75rem; }

@media (max-width: 720px) {
  main { padding: .75rem; }
  .section-heading, li { grid-template-columns: 1fr; gap: .25rem; }
  .tag { justify-self: start; margin-top: .4rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .primary { transition: transform .16s ease, filter .16s ease; }
}
