:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f5f1;
  color: #141414;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 4%, rgba(255, 107, 53, .11), transparent 28rem),
    #f6f5f1;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ff8a1b, #f23e23);
  color: #15100d;
  font-weight: 900;
}

nav { display: flex; gap: 6px; }

nav a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #656565;
  font-size: 14px;
  font-weight: 700;
}

nav a[aria-current="page"] {
  background: #fff;
  color: #141414;
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
}

.hero { padding: 72px 0 44px; }
.eyebrow { margin: 0 0 10px; color: #e95a26; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 650px; margin: 0; font-size: clamp(38px, 7vw, 66px); line-height: .98; letter-spacing: -.055em; }
.hero > p:last-child { max-width: 580px; margin: 22px 0 0; color: #626262; font-size: 18px; line-height: 1.6; }

.release-list { display: grid; gap: 18px; padding-bottom: 80px; }
.release {
  padding: 28px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 24px;
  background: rgba(255,255,255,.83);
  box-shadow: 0 12px 32px rgba(0,0,0,.055);
}

.release-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.version { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.date { color: #767676; font-size: 13px; white-space: nowrap; }
.summary { margin: 10px 0 0; color: #5b5b5b; line-height: 1.55; }
.changes { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.change { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 12px; align-items: start; }
.change-badge { min-width: 76px; padding: 5px 8px; border-radius: 999px; text-align: center; background: #fff0e8; color: #bd491e; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.change strong { display: block; font-size: 15px; }
.change p { margin: 4px 0 0; color: #676767; font-size: 14px; line-height: 1.55; }

footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #777;
  font-size: 13px;
}

@media (prefers-color-scheme: dark) {
  :root { background: #070707; color: #f7f7f7; }
  body { background: radial-gradient(circle at 84% 4%, rgba(255,107,53,.10), transparent 28rem), #070707; }
  nav a { color: #aaa; }
  nav a[aria-current="page"] { background: #1c1c1c; color: #fff; }
  .hero > p:last-child, .summary, .change p { color: #aaa; }
  .release { background: rgba(18,18,18,.88); border-color: rgba(255,255,255,.09); box-shadow: none; }
  .date { color: #929292; }
  .change-badge { background: #2a1810; color: #ff9a6e; }
  footer { border-color: rgba(255,255,255,.09); color: #888; }
}

@media (max-width: 560px) {
  .site-header { min-height: 68px; }
  .hero { padding: 48px 0 34px; }
  .release { padding: 21px; border-radius: 19px; }
  .release-head { display: block; }
  .date { display: block; margin-top: 7px; }
  .change { grid-template-columns: 1fr; gap: 7px; }
  .change-badge { justify-self: start; }
}
