:root {
  color-scheme: dark;
  --bg: #1f2930;
  --bg-soft: #26333d;
  --bg-warm: #e6c7a6;
  --surface: rgba(242, 242, 241, 0.06);
  --surface-strong: rgba(242, 242, 241, 0.1);
  --border: rgba(235, 203, 169, 0.18);
  --text: #f2f2f1;
  --text-soft: rgba(242, 242, 241, 0.74);
  --accent: #f56732;
  --accent-soft: #fdc180;
  --green: #6da33a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --radius: 1.8rem;
  --max: 1180px;
  --pad: clamp(1rem, 3vw, 2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(253, 193, 128, 0.12), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(109, 163, 58, 0.09), transparent 24%),
    linear-gradient(180deg, #24313a 0%, #1a2229 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.9; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.hero,
.band {
  width: min(var(--max), calc(100vw - var(--pad) * 2));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  position: relative;
}

.brand-mark {
  position: absolute;
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  width: clamp(3.5rem, 8vw, 6rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(242, 242, 241, 0.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.03);
}

.hero-copy {
  max-width: 48rem;
  padding-top: 8vh;
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 30rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-soft);
}

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding-left: 1.8rem;
}

.stack {
  padding: 0 0 4rem;
}

.band {
  min-height: clamp(50svh, 54svh, 66svh);
  padding: clamp(1rem, 3vw, 2rem) 0;
  display: grid;
  align-items: stretch;
}

.card {
  height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(242, 242, 241, 0.08), rgba(242, 242, 241, 0.03));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
}

.band:nth-child(even) .card {
  background: linear-gradient(180deg, rgba(242, 242, 241, 0.1), rgba(242, 242, 241, 0.04));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 242, 241, 0.12);
  background: rgba(0, 0, 0, 0.12);
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem 1rem;
  margin-top: 0.9rem;
}

.title-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.kind {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.summary {
  margin: 1rem 0 0;
  max-width: 38rem;
  font-size: clamp(1rem, 1.9vw, 1.1rem);
  color: var(--text-soft);
}

.links {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.link {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 242, 241, 0.14);
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.95rem;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.link:hover {
  transform: translateY(-1px);
  border-color: rgba(253, 193, 128, 0.38);
  background: rgba(0, 0, 0, 0.24);
}

.media {
  width: clamp(5rem, 16vw, 8rem);
  height: clamp(5rem, 16vw, 8rem);
  border-radius: 1.3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242, 242, 241, 0.12);
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.media.svg,
.media.padded {
  padding: 0.4rem;
}

.release {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.release strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .card {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .media {
    order: -1;
  }

  .hero-copy { padding-top: 10vh; }
  .scroll-hint { bottom: 1.4rem; }
}
