:root {
  --midnight: #050810;
  --panel: #0e1420;
  --panel-raised: #151d2e;
  --line: #243049;
  --ink: #f4f7ff;
  --ink-muted: #9aa8c4;
  --ink-faint: #5c6b88;
  --gold: #fbbf24;
  --coral: #ff7b54;
  --violet: #a78bfa;
  --cyan: #22d3ee;
  --indigo: #6366f1;
  --font-display: "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "SF Mono", ui-monospace, monospace;
  --edge: clamp(20px, 4vw, 32px);
  --content-max: 720px;
  --legal-max: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(251, 191, 36, 0.12), transparent 50%),
    var(--midnight);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

.skip-link {
  position: absolute;
  left: var(--edge);
  top: -100px;
  background: var(--gold);
  color: var(--midnight);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px var(--edge);
  max-width: var(--legal-max);
  margin: 0 auto;
}

.site-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: var(--midnight);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.site-brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}

main {
  padding-bottom: 100px;
}

.band {
  padding: 48px var(--edge);
  max-width: var(--legal-max);
  margin: 0 auto;
}

.band__intro.left-aligned {
  max-width: var(--content-max);
  margin-bottom: 28px;
}

.band__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.15;
}

.band__intro p {
  margin: 0;
  font-size: 1.05rem;
}

/* Editorial hero */
.editorial-hero {
  display: grid;
  gap: 32px;
  padding-top: 8px;
  padding-bottom: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .editorial-hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 20px;
}

.hero__lead {
  font-size: 1.125rem;
  max-width: 36ch;
  margin: 0;
  color: var(--ink-muted);
}

.hero__accent {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.hero__accent img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Single column prose features */
.prose-column {
  max-width: var(--content-max);
}

.prose-column h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin: 32px 0 10px;
}

.prose-column h3:first-child {
  margin-top: 0;
}

.prose-column p {
  margin: 0 0 16px;
}

.prose-aside {
  margin: 36px 0;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  border-left: 3px solid var(--violet);
}

.prose-thumb {
  border-radius: 14px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 280px;
}

.prose-aside__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  margin: 0;
}

/* Inline thumbnails in prose */
.inline-screens-prose {
  max-width: var(--content-max);
}

.inline-screens-prose p {
  margin: 0 0 28px;
  line-height: 1.65;
}

.inline-thumb {
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  width: 140px;
  margin: 8px 0;
}

.inline-thumb--left {
  float: left;
  margin-right: 16px;
  margin-bottom: 8px;
}

.inline-thumb--inline {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  margin: 0 10px;
}

.inline-thumb--right {
  float: right;
  margin-left: 16px;
  margin-bottom: 8px;
}

.inline-gallery {
  clear: both;
  margin: 40px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.inline-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.inline-gallery figcaption {
  padding: 14px 18px;
  font-size: 0.95rem;
  background: var(--panel);
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* Two column legal */
.legal-columns {
  display: grid;
  gap: 32px;
  column-gap: 40px;
}

@media (min-width: 720px) {
  .legal-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}

.legal-col p {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.legal-link {
  font-weight: 600;
}

.site-footer {
  text-align: center;
  padding: 32px var(--edge);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
}

/* Floating pill nav */
.floating-pill {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 4px;
  padding: 6px;
  background: rgba(14, 20, 32, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 50;
}

.floating-pill a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.floating-pill a:hover,
.floating-pill a:focus-visible {
  background: var(--panel-raised);
  color: var(--gold);
}

@media (max-width: 480px) {
  .inline-thumb--left,
  .inline-thumb--right {
    float: none;
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 12px auto;
  }

  .inline-thumb--inline {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 12px auto;
  }

  .floating-pill {
    left: var(--edge);
    right: var(--edge);
    justify-content: center;
  }
}
