:root {
  color-scheme: dark;
  --bg: #0d0f0f;
  --panel: #151919;
  --panel-2: #1e2424;
  --line: #333a39;
  --text: #f3f1e8;
  --muted: #adafa8;
  --gold: #f5bd2e;
  --gold-2: #9c7b1e;
  --cyan: #86d8e8;
  --red: #f05b43;
  --green: #9bd94b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(245, 189, 46, 0.08), transparent 42rem),
    radial-gradient(circle at 78% 9%, rgba(134, 216, 232, 0.14), transparent 24rem),
    var(--bg);
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  width: 36px;
  height: 36px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a,
.site-footer a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: 36px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.9;
}

.page-heading h1 {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: #dedbd0;
  font-size: clamp(1.08rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.byline {
  margin: 14px 0 0;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: #f7c84d;
  color: #16120a;
  background: linear-gradient(180deg, #ffd65c, var(--gold));
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button[aria-disabled="true"] {
  pointer-events: none;
  color: #c8c2ac;
  border-color: #51482d;
  background: #242118;
}

.release-line,
.muted {
  color: var(--muted);
}

.hero-art {
  display: grid;
  place-items: center;
}

.hero-art img {
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.5));
}

.notice {
  margin: 0 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 189, 46, 0.35);
  border-radius: 8px;
  color: #e7dfc5;
  background: rgba(245, 189, 46, 0.08);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 0 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-band div,
.release-item,
.note-item {
  background: rgba(21, 25, 25, 0.9);
}

.feature-band div {
  padding: 24px;
}

.feature-band h2,
.release-item h2,
.note-item h2 {
  font-size: 1.1rem;
}

.feature-band p,
.release-item p,
.note-item p {
  color: var(--muted);
  line-height: 1.55;
}

.page-shell {
  padding: 44px 0 64px;
}

.page-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.page-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.release-list,
.notes-list {
  display: grid;
  gap: 14px;
}

.release-item,
.note-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.93rem;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(134, 216, 232, 0.3);
  border-radius: 999px;
  color: var(--cyan);
}

.note-body {
  margin-top: 16px;
  color: #d8d5ca;
  line-height: 1.6;
}

.note-body ul {
  padding-left: 1.2rem;
}

.site-footer {
  min-height: 70px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    width: min(78vw, 330px);
  }

  .feature-band {
    grid-template-columns: 1fr;
  }
}
