:root {
  --background: #f2f2ef;
  --foreground: #111111;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { background: var(--background); }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: crosshair;
  overflow-x: hidden;
}
.page {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}
.chrome-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  pointer-events: none;
}
.home-hero,
.music-section {
  position: relative;
  z-index: 1;
}
.home-hero {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: calc(clamp(1rem, 2.25vw, 2rem) + 1.55rem) clamp(1rem, 2.25vw, 2rem) clamp(1rem, 2.25vw, 2rem);
}
.news-ticker {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.55rem;
  overflow: hidden;
  border-bottom: 1px solid #111;
  background: rgba(17, 17, 17, 0.94);
  color: #f2f2ef;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  line-height: 1.55rem;
  text-transform: lowercase;
  white-space: nowrap;
}
.news-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
  will-change: transform;
}
.news-ticker-track span { padding-right: 2rem; }
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}
.identity {
  position: relative;
  margin-top: clamp(5rem, 18vh, 12rem);
}
h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(3.25rem, 13.3vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.78;
  white-space: nowrap;
}
.lower {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.125rem; }
nav a, .pending-link, footer {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  line-height: 1.4;
  text-transform: lowercase;
}
nav a { color: inherit; text-decoration: none; }
.pending-link { cursor: not-allowed; opacity: 0.45; }
nav a:hover, nav a:focus-visible { text-decoration: line-through; }
nav a:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }
footer { flex: none; margin-left: auto; text-align: right; text-transform: uppercase; opacity: 0.45; }
.music-section {
  min-height: 100svh;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 2.25vw, 2rem);
}
.music-section h2 {
  margin: 0 0 clamp(2.5rem, 6vw, 6rem);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.8;
}
.music-section .release-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 90rem;
}
::selection { background: var(--foreground); color: var(--background); }
@media (max-width: 35rem) {
  .identity { margin-top: clamp(4.5rem, 15vh, 7rem); }
  h1 { font-size: 15vw; letter-spacing: -0.07em; }
  .music-section .release-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
  .news-ticker-track { animation: none; }
}
