:root {
  color-scheme: dark;
  --bg: #000;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #e8e8e8;
  --font-display: "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --max: 1200px;
  --pad: clamp(16px, 4vw, 40px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111;
  padding: 8px 12px;
  z-index: 10000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
}

.logo__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.06em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social-nav__link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.social-nav__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.icon {
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.icon--youtube {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M23 7.6a3 3 0 0 0-2.1-2.1C19.5 5 12 5 12 5s-7.5 0-8.9.5A3 3 0 0 0 1 7.6 31 31 0 0 0 .5 12a31 31 0 0 0 .5 4.4 3 3 0 0 0 2.1 2.1C4.5 19 12 19 12 19s7.5 0 8.9-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 23.5 12a31 31 0 0 0-.5-4.4ZM10 15.5v-7l6 3.5Z'/%3E%3C/svg%3E");
}
.icon--instagram {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm10 2H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3Zm-5 4.5A5.5 5.5 0 1 1 6.5 14 5.5 5.5 0 0 1 12 8.5Zm0 2A3.5 3.5 0 1 0 15.5 14 3.5 3.5 0 0 0 12 10.5ZM18 6.2a1.2 1.2 0 1 1-1.2 1.2A1.2 1.2 0 0 1 18 6.2Z'/%3E%3C/svg%3E");
}
.icon--tiktok {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M16.6 5.8A5.7 5.7 0 0 0 19 2h-3.7v13.5a3.2 3.2 0 1 1-3.2-3.2c.3 0 .6 0 .9.1V9a6.5 6.5 0 1 0 5.6 6.4V9.8a8.4 8.4 0 0 0 4.9 1.6V7.7a5.7 5.7 0 0 1-3.1-.9Z'/%3E%3C/svg%3E");
}
.icon--twitter {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18.9 2.3h3.5l-7.6 8.7 9 11.8h-7l-5.5-7.2-6.3 7.2H2.2l8.1-9.3L2 2.3h7.2l5 6.6 5.7-6.6Z'/%3E%3C/svg%3E");
}
.icon--facebook {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M24 12a12 12 0 1 0-13.9 11.9v-8.4H7.9V12h2.2V9.8c0-2.2 1.3-3.4 3.3-3.4.9 0 1.9.2 2.3.3v2.6h-1.3c-1.3 0-1.5.6-1.5 1.5V12h3l-.5 3.5h-2.5v8.4A12 12 0 0 0 24 12Z'/%3E%3C/svg%3E");
}
.icon--apple,
.icon--spotify {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  mask-image: none;
  -webkit-mask-image: none;
}
.icon--apple {
  border-radius: 4px;
  background-color: #fa243c;
  background-image: url("./assets/apple-music-icon.png");
  background-size: 135%;
}
.icon--spotify {
  border-radius: 50%;
  background-color: #1db954;
  background-image: url("./assets/spotify-icon.png");
  background-size: 190%;
}
.icon--soundcloud {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.5 12.5c-.3 0-.5.2-.5.5v2c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-2c0-.3-.2-.5-.5-.5h-1ZM15 11.5c-.3 0-.5.2-.5.5v3c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-3c0-.3-.2-.5-.5-.5h-1ZM12.5 10.5c-.3 0-.5.2-.5.5v5c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-5c0-.3-.2-.5-.5-.5h-1ZM10 9.5c-.3 0-.5.2-.5.5v7c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-7c0-.3-.2-.5-.5-.5h-1ZM7.5 10.5c-.3 0-.5.2-.5.5v5c0 .3.2.5.5.5H9c.3 0 .5-.2.5-.5v-5c0-.3-.2-.5-.5-.5H7.5ZM5 11.5c-.3 0-.5.2-.5.5v3c0 .3.2.5.5.5h1c.3 0 .5-.2.5-.5v-3c0-.3-.2-.5-.5-.5H5ZM2.5 12c-.3 0-.5.2-.5.5v2c0 .3.2.5.5.5H4c.3 0 .5-.2.5-.5v-2c0-.3-.2-.5-.5-.5H2.5Z'/%3E%3C/svg%3E");
}
.icon--store {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='8' width='14' height='12' rx='1.5'/%3E%3Cpath d='M9 10V8a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='8' width='14' height='12' rx='1.5'/%3E%3Cpath d='M9 10V8a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E");
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 48px var(--pad) 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__album {
  max-width: 420px;
  margin: 0 auto 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.album-cover {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: #050505;
}
.album-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/album-cover.png") center 45% / cover no-repeat;
}
.album-cover--featured {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}
.album-cover__label {
  display: none;
}

.album-cover[data-album="featured"] {
  background: linear-gradient(160deg, #1f2937, #0b0f14 60%), #111;
}
.album-cover[data-album="1"] {
  background: linear-gradient(160deg, #312e81, #111827);
}
.album-cover[data-album="1"]:not([data-cover]) {
  background: #000;
}
.album-cover[data-album="2"] {
  background: linear-gradient(160deg, #831843, #1f2937);
}
.album-cover[data-album="3"] {
  background: linear-gradient(160deg, #14532d, #111827);
}
.album-cover[data-album="4"] {
  background: linear-gradient(160deg, #7c2d12, #111827);
}
.album-cover[data-album="5"] {
  background: linear-gradient(160deg, #1e3a8a, #0f172a);
}
.album-cover[data-cover="zooted"] {
  background: #000;
}
.album-cover[data-cover="zooted"]::before {
  background: url("./assets/zooted-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="back-again-remix"] {
  background: #000;
}
.album-cover[data-cover="back-again-remix"]::before {
  background: url("./assets/back-again-remix-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="red-alert"] {
  background: #000;
}
.album-cover[data-cover="red-alert"]::before {
  background: url("./assets/red-alert-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="starry"] {
  background: #000;
}
.album-cover[data-cover="starry"]::before {
  background: url("./assets/starry-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="around-me"] {
  background: #000;
}
.album-cover[data-cover="around-me"]::before {
  background: url("./assets/around-me-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="ap"] {
  background: #000;
}
.album-cover[data-cover="ap"]::before {
  background: url("./assets/ap-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="yeah-okay"] {
  background: #000;
}
.album-cover[data-cover="yeah-okay"]::before {
  background: url("./assets/yeah-okay-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="would-you"] {
  background: #000;
}
.album-cover[data-cover="would-you"]::before {
  background: url("./assets/would-you-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="inauguration"] {
  background: #000;
}
.album-cover[data-cover="inauguration"]::before {
  background: url("./assets/inauguration-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="aaa"] {
  background: #000;
}
.album-cover[data-cover="aaa"]::before {
  background: url("./assets/aaa-cover.png") center / cover no-repeat;
}
.album-cover[data-cover="dont-lie"] {
  background: #000;
}
.album-cover[data-cover="dont-lie"]::before {
  background: url("./assets/dont-lie-cover.png") center / cover no-repeat;
}

/* Sections */
.section {
  padding: 40px var(--pad) 56px;
  max-width: var(--max);
  margin: 0 auto;
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  text-align: center;
}
.section__heading--small {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.12em;
}

.btn-cta {
  display: inline-block;
  border: 1px solid #fff;
  padding: 10px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-cta:hover {
  background: #fff;
  color: #000;
}
.btn-cta--small {
  padding: 8px 14px;
  font-size: 0.68rem;
}

.btn-text {
  display: block;
  margin: 20px auto 0;
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-text:hover {
  color: #fff;
}

/* Releases carousel */
.carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
  padding-bottom: 8px;
}
.carousel__track {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0 4px 8px;
  width: max-content;
  min-width: 100%;
}

.release-card {
  width: 200px;
  flex: 0 0 auto;
  text-align: center;
}
.release-card .album-cover {
  border: none;
}
.release-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.release-card__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.release-card__title {
  font-size: 0.82rem;
  font-weight: 500;
  margin: 12px 0;
  min-height: 2.6em;
  line-height: 1.3;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.video-card--hidden {
  display: none;
}
.video-card--visible {
  display: block;
}
.video-card__thumb {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.video-card__poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a1a1a, #050505);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  letter-spacing: 0.08em;
}
.video-card__thumb:hover img {
  transform: scale(1.04);
}
.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #fff;
}
.video-card__play::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 16px;
  border: 10px solid transparent;
  border-left: 14px solid #fff;
}
.video-card__title {
  margin: 10px 0 0;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Signup */
.section--signup {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}
.signup-form input {
  flex: 1 1 240px;
  min-width: 200px;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}
.signup-form input::placeholder {
  color: var(--muted);
}
.signup-form__thanks {
  margin-top: 12px;
  color: #fff;
}

/* Footer */
.site-footer {
  padding: 32px var(--pad) 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.social-nav--footer {
  justify-content: center;
  margin-bottom: 16px;
}
.site-footer__legal {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.8;
}
.site-footer__legal a:hover,
.link-btn:hover {
  color: #fff;
}
.link-btn {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.96);
  display: grid;
  place-items: center;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu__nav {
  display: grid;
  gap: 20px;
  text-align: center;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
}

/* Modal */
.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}
.modal[hidden],
.lightbox[hidden] {
  display: none;
}
.modal__backdrop,
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.modal__panel,
.lightbox__inner {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100% - 32px));
  background: #111;
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.lightbox__inner {
  width: min(960px, calc(100% - 32px));
  padding: 0;
  background: #000;
}
.modal__close,
.lightbox__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.modal-form label {
  display: block;
  margin-bottom: 14px;
}
.modal-form label span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.modal-form input,
.modal-form select {
  width: 100%;
  background: #000;
  border: 1px solid var(--border);
  color: #fff;
  padding: 10px 12px;
  font: inherit;
}
.modal-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lightbox__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.lightbox__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lightbox__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 520px) {
  .release-card {
    width: 160px;
  }
}
