:root {
  color-scheme: dark;
  --ink: #f3f3f3;
  --muted: #b8b8b8;
  --dim: #777777;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --black: #080808;
  --near-black: #111111;
  --white: #ffffff;
  --accent: #c84a4a;
  --accent-cool: #4aa3a3;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.44);
  --max: 1180px;
}

body.home-page {
  color-scheme: light;
  --ink: #090909;
  --muted: #4d4d4d;
  --dim: #74746f;
  --line: rgba(0, 0, 0, 0.18);
  --panel: #ffffff;
  --panel-strong: #efefea;
  --black: #fafaf7;
  --near-black: #f0f0eb;
  --white: #ffffff;
  --accent: #090909;
  --accent-cool: #090909;
  --shadow: 8px 8px 0 rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.home-page {
  background-color: var(--black);
  background-image: radial-gradient(#d8d8d0 1px, transparent 1px);
  background-size: 28px 28px;
}

body::selection {
  background: var(--accent);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

section[id],
.signal-strip {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.74);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  border-bottom: 2px solid #090909;
  background: rgba(250, 250, 247, 0.92);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.home-page .brand-mark img {
  border: 2px solid #090909;
  box-shadow: 3px 3px 0 #090909;
}

.brand-mark span,
.site-nav a,
.button,
.signal-label,
.eyebrow,
.tag,
.status-pill {
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.home-page .site-nav a {
  border: 2px solid transparent;
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--panel);
  color: var(--white);
  outline: none;
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
  border-color: #090909;
  background: var(--white);
  color: var(--ink);
}

.hero {
  --hero-copy-y: 0px;
  --hero-image-scale: 1;
  --hero-image-y: 0px;
  --hero-sheen-opacity: 0.08;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78vh;
  overflow: hidden;
  isolation: isolate;
}

.home-page .hero {
  width: min(var(--max), calc(100% - 2rem));
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 3rem;
  margin-inline: auto;
  padding: 8.5rem 0 4rem;
}

.hero-copy {
  width: min(720px, 100%);
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform;
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(430px, 40vw);
  transform: translate3d(0, var(--hero-image-y), 0) scale(var(--hero-image-scale));
  transform-origin: center;
  will-change: transform;
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(16px 16px 0 #deded7);
}

.hero-art::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  bottom: -1.8rem;
  z-index: -1;
  width: 46%;
  height: 46%;
  border-right: 4px solid #090909;
  border-bottom: 4px solid #090909;
  opacity: 0.12;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-cool);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 100%;
  font-size: 5rem;
  font-weight: 950;
  overflow-wrap: normal;
  word-break: normal;
}

.home-page h1 {
  text-shadow: 5px 5px 0 #e2e2dc;
}

.hero-line {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.about-links,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
}

.button.primary {
  border-color: rgba(200, 74, 74, 0.9);
  background: var(--accent);
  color: var(--white);
}

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

.home-page .button {
  border: 2px solid #090909;
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 #090909;
}

.home-page .button.primary {
  border-color: #090909;
  background: #090909;
  color: #ffffff;
}

.home-page .button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.home-page .button:hover,
.home-page .button:focus-visible {
  box-shadow: 5px 5px 0 #090909;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--near-black);
}

.home-page .signal-strip {
  border-top: 2px solid #090909;
  border-bottom: 2px solid #090909;
  background: #090909;
  color: #ffffff;
}

.signal-strip a {
  display: grid;
  gap: 0.15rem;
  min-height: 96px;
  padding: 1.15rem 4vw;
  border-right: 1px solid var(--line);
}

.home-page .signal-strip a {
  border-right: 2px solid rgba(255, 255, 255, 0.22);
}

.signal-strip a:last-child {
  border-right: 0;
}

.signal-strip a:hover,
.signal-strip a:focus-visible {
  background: var(--panel);
  outline: none;
}

.home-page .signal-strip a:hover,
.home-page .signal-strip a:focus-visible {
  background: #222222;
}

.signal-number {
  font-size: 2rem;
  font-weight: 950;
}

.signal-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-page .signal-label {
  color: #d9d9d9;
}

.section {
  padding: 5.5rem 4vw;
  background: #0d0d0d;
}

.home-page .section {
  border-bottom: 2px solid #090909;
  background: var(--black);
}

.section-contrast {
  background: #151515;
}

.home-page .section-contrast {
  background: var(--near-black);
}

.section-heading,
.collection-tools,
.card-grid,
.about-band,
.site-footer {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.65rem;
  font-weight: 950;
}

.collection-tools {
  margin-bottom: 1.5rem;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.segmented button {
  min-height: 38px;
  padding: 0.48rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.home-page .segmented button {
  border: 2px solid #090909;
  background: var(--white);
  color: var(--ink);
}

.segmented button:hover,
.segmented button:focus-visible,
.segmented button[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--panel-strong);
  color: var(--white);
  outline: none;
}

.home-page .segmented button:hover,
.home-page .segmented button:focus-visible,
.home-page .segmented button[aria-pressed="true"] {
  border-color: #090909;
  background: #090909;
  color: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.home-page .feature-card {
  border: 2px solid #090909;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #202020;
}

.home-page .thumb {
  border-bottom: 2px solid #090909;
  background: #f7f7f2;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.home-page .thumb img.app-art {
  filter: none;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.home-page .thumb::after {
  display: none;
}

.status-pill {
  position: absolute;
  left: 0.8rem;
  bottom: 0.75rem;
  z-index: 1;
  max-width: calc(100% - 1.6rem);
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
}

.home-page .status-pill {
  border: 2px solid #090909;
  background: #ffffff;
  color: #090909;
  box-shadow: 3px 3px 0 #090909;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--dim);
  font-size: 0.86rem;
  font-weight: 800;
}

h3 {
  font-size: 1.32rem;
  font-weight: 920;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.tag {
  padding: 0.24rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-page .tag {
  border: 2px solid #090909;
  background: #f7f7f2;
  color: #090909;
}

.card-actions {
  padding-top: 0.25rem;
}

.card-actions .button {
  min-height: 40px;
  padding: 0.55rem 0.78rem;
  font-size: 0.9rem;
}

.button.disabled {
  cursor: not-allowed;
  opacity: 0.52;
  pointer-events: none;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  color: var(--muted);
  background: var(--panel);
}

.home-page .empty-state {
  border: 2px solid #090909;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: end;
  padding: 5rem 4vw;
}

.home-page .about-band {
  border-bottom: 2px solid #090909;
}

.about-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-links {
  grid-column: 2;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 4vw 2rem;
  color: var(--dim);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .home-page .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 8rem;
  }

  .hero-art {
    order: -1;
    width: min(300px, 54vw);
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-links {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
  }

  section[id],
  .signal-strip {
    scroll-margin-top: 142px;
  }

  .home-page .hero {
    min-height: auto;
    padding: 7.5rem 0 2rem;
  }

  .hero-art {
    width: min(220px, 58vw);
  }

  .hero-art img {
    filter: drop-shadow(10px 10px 0 #deded7);
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-line {
    font-size: 1.05rem;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip a {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .signal-strip a {
    border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  }

  .signal-strip a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 4rem 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .about-band {
    padding: 4rem 1rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.35rem;
  }

  .brand-mark span {
    font-size: 0.95rem;
  }
}
