:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #0c1117;
  --panel-strong: #101923;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5fbff;
  --muted: #aebbc7;
  --soft: #708190;
  --cyan: #18f4ff;
  --cyan-strong: #00cfe8;
  --coral: #ff5364;
  --yellow: #f6d95b;
  --green: #74f3a5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(24, 244, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 244, 255, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(24, 244, 255, 0.08), transparent 36%),
    linear-gradient(245deg, rgba(255, 83, 100, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background: linear-gradient(
    108deg,
    transparent 36%,
    rgba(24, 244, 255, 0.08) 46%,
    rgba(255, 83, 100, 0.06) 52%,
    transparent 64%
  );
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(-28%) rotate(5deg);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.84);
  backdrop-filter: blur(18px);
}

.brand-link,
.header-actions,
.social-nav,
.quick-nav,
.hero-actions,
.release-strip,
.player,
.site-footer {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 10px;
  font-weight: 800;
}

.brand-thumb {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(24, 244, 255, 0.48);
  border-radius: 6px;
  object-fit: cover;
}

.quick-nav {
  gap: 8px;
}

.header-actions {
  gap: 14px;
}

.social-nav {
  gap: 8px;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}

.social-nav a {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.social-nav a::after {
  content: attr(title);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 5;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(5, 7, 10, 0.94);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  white-space: nowrap;
}

.social-nav svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-nav a:hover,
.social-nav a:focus-visible {
  border-color: rgba(24, 244, 255, 0.62);
  color: var(--text);
  outline: none;
}

.social-nav a:hover::after,
.social-nav a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quick-nav a {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.quick-nav a:hover,
.quick-nav a:focus-visible {
  border-color: rgba(24, 244, 255, 0.5);
  color: var(--text);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 160px);
  margin: 0 auto;
  padding: 52px 0 36px;
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 38%;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--coral), var(--yellow));
  box-shadow: 0 0 26px rgba(24, 244, 255, 0.55);
}

.hero-logo {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 5.2rem;
  line-height: 0.9;
}

.hero-line {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.primary-link,
.secondary-link,
.link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-link,
.secondary-link {
  padding: 0 18px;
}

.primary-link {
  background: var(--cyan);
  color: #001418;
  box-shadow: 0 0 34px rgba(24, 244, 255, 0.22);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.primary-link:hover,
.primary-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible,
.link-grid a:hover,
.link-grid a:focus-visible,
.track-link:hover,
.track-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary-link svg,
.secondary-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.release-strip {
  justify-content: center;
  gap: 1px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.release-strip article {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px 20px;
  background: rgba(12, 17, 23, 0.92);
}

.release-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.84rem;
}

.release-strip strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
}

.music-section,
.links-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.music-section {
  padding: 26px 0 72px;
}

.links-section {
  padding: 10px 0 70px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.track-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 25, 35, 0.96), rgba(8, 12, 17, 0.98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.cover-art {
  width: 100%;
  aspect-ratio: 1;
  background: var(--panel-strong);
  object-fit: cover;
}

.track-info {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.genre,
.meta {
  color: var(--soft);
  font-size: 0.82rem;
}

.genre {
  min-height: 1.1rem;
  margin-bottom: -4px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  min-height: 2.6rem;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0;
}

.player {
  gap: 10px;
  min-height: 42px;
}

.preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 116px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: rgba(24, 244, 255, 0.14);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.preview-button:hover,
.preview-button:focus-visible {
  background: rgba(24, 244, 255, 0.24);
  outline: 2px solid rgba(24, 244, 255, 0.5);
  outline-offset: 2px;
}

.preview-button.is-playing {
  background: var(--coral);
  color: #fff;
}

.preview-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.progress-track {
  position: relative;
  flex: 1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
}

.track-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.track-link:hover,
.track-link:focus-visible {
  border-color: rgba(246, 217, 91, 0.6);
  color: var(--text);
}

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

.link-grid a {
  min-width: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-grid a:nth-child(3n + 1):hover,
.link-grid a:nth-child(3n + 1):focus-visible {
  border-color: rgba(24, 244, 255, 0.62);
}

.link-grid a:nth-child(3n + 2):hover,
.link-grid a:nth-child(3n + 2):focus-visible {
  border-color: rgba(255, 83, 100, 0.62);
}

.link-grid a:nth-child(3n + 3):hover,
.link-grid a:nth-child(3n + 3):focus-visible {
  border-color: rgba(246, 217, 91, 0.62);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

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

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

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand-link span {
    display: none;
  }

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

  .hero-media {
    max-width: 460px;
  }

  h1 {
    font-size: 3.2rem;
  }

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

  .release-strip,
  .section-heading,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .release-strip article {
    padding: 16px;
  }

  .track-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .cover-art {
    height: 100%;
  }

  h3 {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .header-actions {
    gap: 10px;
  }

  .social-nav {
    padding-right: 0;
    border-right: 0;
  }

  .quick-nav {
    display: none;
  }
}

@media (max-width: 460px) {
  .quick-nav a {
    padding-inline: 10px;
  }

  .hero,
  .music-section,
  .links-section,
  .release-strip,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

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

  .cover-art {
    height: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body {
    animation: gridDrift 30s linear infinite;
  }

  body::after {
    animation: beamSweep 11s ease-in-out infinite;
  }

  .brand-thumb {
    animation: neonPulse 3.8s ease-in-out infinite;
  }

  .hero-media {
    animation: heroRise 720ms ease-out both, floatDeck 5.8s ease-in-out 900ms infinite;
  }

  .hero-copy {
    animation: heroRise 760ms ease-out 120ms both;
  }

  .hero-media::after {
    animation: colorDash 2.8s ease-in-out infinite;
  }

  .primary-link,
  .secondary-link,
  .link-grid a,
  .social-nav a {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  }

  .primary-link:hover,
  .primary-link:focus-visible {
    box-shadow: 0 0 42px rgba(24, 244, 255, 0.35);
  }

  .secondary-link:hover,
  .secondary-link:focus-visible,
  .social-nav a:hover,
  .social-nav a:focus-visible {
    box-shadow: 0 0 28px rgba(24, 244, 255, 0.16);
  }

  .social-nav a:hover,
  .social-nav a:focus-visible {
    transform: translateY(-2px) scale(1.05);
  }

  .track-card {
    animation: cardRise 620ms ease-out both;
    animation-delay: calc(var(--card-order, 0) * 60ms);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .track-card:nth-child(1) {
    --card-order: 1;
  }

  .track-card:nth-child(2) {
    --card-order: 2;
  }

  .track-card:nth-child(3) {
    --card-order: 3;
  }

  .track-card:nth-child(4) {
    --card-order: 4;
  }

  .track-card:nth-child(5) {
    --card-order: 5;
  }

  .track-card:nth-child(6) {
    --card-order: 6;
  }

  .track-card:nth-child(7) {
    --card-order: 7;
  }

  .track-card:nth-child(8) {
    --card-order: 8;
  }

  .track-card:nth-child(9) {
    --card-order: 9;
  }

  .track-card:nth-child(10) {
    --card-order: 10;
  }

  .cover-art {
    transition: transform 240ms ease, filter 240ms ease;
  }

  .track-card:hover {
    border-color: rgba(24, 244, 255, 0.46);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 28px rgba(24, 244, 255, 0.14);
    transform: translateY(-4px);
  }

  .track-card:hover .cover-art {
    filter: saturate(1.12);
    transform: scale(1.035);
  }

  .preview-button.is-playing {
    animation: beatPulse 950ms ease-in-out infinite;
  }

  .progress-track span {
    transition: width 120ms linear;
  }

  .motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
  }

  .motion-ready [data-reveal].is-visible {
    animation: revealUp 640ms ease-out both;
    animation-delay: var(--reveal-delay, 0ms);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 96px 48px, 96px 48px;
  }
}

@keyframes beamSweep {
  0%,
  100% {
    opacity: 0.34;
    transform: translateX(-34%) rotate(5deg);
  }

  50% {
    opacity: 0.78;
    transform: translateX(24%) rotate(5deg);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(24, 244, 255, 0);
  }

  50% {
    box-shadow: 0 0 22px rgba(24, 244, 255, 0.34);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatDeck {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes colorDash {
  0%,
  100% {
    filter: hue-rotate(0deg);
    transform: translateX(0);
  }

  50% {
    filter: hue-rotate(24deg);
    transform: translateX(12px);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes beatPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 83, 100, 0);
  }

  50% {
    box-shadow: 0 0 24px rgba(255, 83, 100, 0.38);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media print {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .site-header {
    position: static;
    background: #05070a;
  }

  .hero {
    grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1fr);
    min-height: 0;
    padding: 32px 0 24px;
  }

  .hero-logo,
  .track-card {
    box-shadow: none;
  }

  h1 {
    font-size: 3.8rem;
  }

  .hero-line {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .release-strip {
    flex-direction: row;
    margin-bottom: 28px;
  }

  .release-strip article {
    padding: 14px 18px;
  }

  .section-heading,
  .site-footer {
    flex-direction: row;
  }

  .section-heading {
    align-items: end;
  }

  .music-section {
    break-before: page;
    padding: 18px 0 36px;
  }

  .links-section {
    break-before: page;
    padding: 0 0 28px;
  }

  .track-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .track-card,
  .link-grid a,
  .release-strip {
    break-inside: avoid;
  }

  .track-card {
    display: block;
    overflow: hidden;
  }

  .cover-art {
    height: auto;
  }

  .track-info {
    gap: 7px;
    padding: 10px;
  }

  h3 {
    min-height: 2.4rem;
    font-size: 0.96rem;
  }

  .preview-button {
    width: 100px;
    height: 34px;
  }

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

  .site-footer {
    padding-bottom: 0;
  }
}
