/* ============================================
   DIRTY DISCO RECORDINGS — Global Stylesheet
   Monochrome / Chrome Edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary:    #080808;
  --bg-secondary:  #0f0f0f;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(255,255,255,0.22);

  --chrome:        #d0d0d0;
  --chrome-light:  #f0f0f0;
  --silver:        #a0a0a0;
  --white:         #f2f2f2;
  --grey:          #787878;
  --grey-dark:     #484848;

  --gradient-chrome: linear-gradient(135deg, #e8e8e8, #ffffff, #b0b0b0);
  --gradient-text:   linear-gradient(90deg, #d8d8d8, #ffffff, #aaaaaa);
  --gradient-btn:    linear-gradient(135deg, #f0f0f0, #ffffff);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-glow:  0 0 40px rgba(255,255,255,0.04);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.6);
  --shadow-hover: 0 8px 40px rgba(255,255,255,0.06);

  --nav-height: 132px;
  --max-width:  1200px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.skip-link {
  position: fixed;
  top: -100px; left: 12px;
  z-index: 2000;
  background: var(--white);
  color: #080808;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 3px;
  border-radius: 4px;
}
/* don't show the ring on mouse click, only keyboard */
:focus:not(:focus-visible) { outline: none; }

/* ---------- Scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(20,20,22,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s var(--transition), transform 0.3s cubic-bezier(0.32,0.72,0,1), background 0.2s, border-color 0.2s;
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-top:hover {
  background: rgba(40,40,44,0.85);
  border-color: rgba(255,255,255,0.3);
}
.scroll-top svg { width: 18px; height: 18px; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--grey-dark); border-radius: 2px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.75rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8,8,8,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-height);
}

.nav-logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Submit Demo button (now grouped on the right with socials) */
.nav-right {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: #080808;
  padding: 9px 18px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--chrome-light);
  transform: translateY(-1px);
}

.nav-socials {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: color var(--transition), background var(--transition);
  font-size: 0.95rem;
}

.nav-socials a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Hamburger */
.nav-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(24px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--grey);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  letter-spacing: -0.02em;
}

.nav-mobile a:hover { color: var(--white); }

.nav-mobile-socials {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.nav-mobile-socials a {
  font-size: 1.3rem;
  border: none;
  padding: 0;
  color: var(--grey);
  transition: color var(--transition);
}

.nav-mobile-socials a:hover { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary) url('../assets/images/brand/hero-poster.jpg') center/cover no-repeat;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* dark wash + centre vignette to keep the video moody but readable */
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(8,8,8,0.30) 0%, rgba(8,8,8,0.66) 70%, rgba(8,8,8,0.85) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.35) 35%, rgba(8,8,8,0.55) 100%);
}

/* Bottom fade — dissolves the video into the page so there's no hard
   cut between the hero and the Releases section below. */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(to bottom, rgba(8,8,8,0) 0%, var(--bg-primary) 92%);
  z-index: 0;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow.g1 {
  width: 500px; height: 500px;
  top: -150px; left: -150px;
  background: rgba(255,255,255,0.025);
}

.hero-bg-glow.g2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: rgba(255,255,255,0.018);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 52px 60px 46px;
  border-radius: 36px;
  /* chrome glass bubble */
  background: linear-gradient(160deg, rgba(30,30,33,0.50), rgba(11,11,13,0.58));
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.55),
    inset 0 1px 1px rgba(255,255,255,0.20),
    inset 0 -1px 2px rgba(0,0,0,0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--chrome);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  margin-bottom: 20px;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--chrome);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
}

/* ---------- Hero headline ---------- */
.hero-headline {
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 auto 34px;
  max-width: 560px;
}

/* ---------- Hero landing choreography (snappy) ---------- */
@keyframes heroBoxIn {
  0%   { opacity: 0; transform: translateY(24px) scale(0.975); filter: blur(6px); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes heroItemIn {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: none; }
}
@keyframes heroStatFlip {
  0%   { opacity: 0; transform: perspective(520px) rotateX(-85deg); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: perspective(520px) rotateX(0deg); }
}
@keyframes heroGlint {
  0%, 12%   { transform: translateX(-240%) skewX(-18deg); opacity: 0; }
  16%       { opacity: 1; }
  30%       { opacity: 1; }
  36%, 100% { transform: translateX(380%) skewX(-18deg); opacity: 0; }
}

.hero-enter { animation: heroBoxIn 0.5s cubic-bezier(0.32,0.72,0,1) both; }

/* Hold the whole hero entrance paused while the preloader is up, so it plays
   as one clean reveal the moment the loader lifts (no assembling in the open). */
html.preloading .hero-enter,
html.preloading .hero-enter > .hero-badge,
html.preloading .hero-enter > p,
html.preloading .hero-enter > .hero-actions,
html.preloading .hero-enter .hero-stat { animation-play-state: paused; }

.hero-enter > .hero-badge,
.hero-enter > p,
.hero-enter > .hero-actions {
  animation: heroItemIn 0.42s cubic-bezier(0.32,0.72,0,1) both;
}
.hero-enter > .hero-badge   { animation-delay: 0.10s; }
.hero-enter > p             { animation-delay: 0.19s; }
.hero-enter > .hero-actions { animation-delay: 0.29s; }

.hero-enter .hero-stat {
  animation: heroStatFlip 0.45s cubic-bezier(0.32,0.72,0,1) both;
  transform-origin: center bottom;
}
.hero-enter .hero-stat:nth-child(1) { animation-delay: 0.38s; }
.hero-enter .hero-stat:nth-child(2) { animation-delay: 0.46s; }
.hero-enter .hero-stat:nth-child(3) { animation-delay: 0.54s; }
.hero-enter .hero-stat:nth-child(4) { animation-delay: 0.62s; }

/* Sweeping silver glint across the bubble */
.hero-content { overflow: hidden; }
.hero-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 42%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.15) 48%, rgba(255,255,255,0.04) 60%, transparent 100%);
  pointer-events: none;
  z-index: 3;
  animation: heroGlint 5.5s ease-in-out 0.9s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-enter,
  .hero-enter > *,
  .hero-enter .hero-stat,
  .hero-content::before {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--white);
  color: #080808;
  box-shadow: 0 4px 20px rgba(255,255,255,0.08);
}

.btn-primary:hover {
  background: var(--chrome-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.12);
}

.btn-outline {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(255,255,255,0.14);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Cards ---------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* ---------- Music / Releases ---------- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.release-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}

.release-thumb {
  aspect-ratio: 1;
  background: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.release-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.release-card:hover .release-thumb img {
  transform: scale(1.04);
}

.release-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #141414, #0a0a0a);
}

.release-thumb-placeholder .cat-num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
}

.release-thumb-placeholder .disc-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
}

.release-thumb-placeholder .disc-icon::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.release-info {
  padding: 12px 14px 14px;
}

.release-info .title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
}

.release-info .cat {
  font-size: 0.72rem;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 0;
}

.release-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.release-card:hover .release-play-overlay { opacity: 1; }

.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: #080808;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
}

/* ---------- Artists ---------- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.artist-card {
  text-align: center;
  cursor: pointer;
}

.artist-avatar {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  background: #111;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.artist-card:hover .artist-avatar {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}

.artist-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  filter: grayscale(20%);
}

.artist-card:hover .artist-avatar img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.artist-avatar-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--silver);
}

.artist-card .name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #111;
  border: 1px solid var(--border);
}

.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.about-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 20px 24px;
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.about-floating-card .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--chrome-light);
  letter-spacing: -0.03em;
}

.about-floating-card .label {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--grey);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.value-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.value-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
}

.value-icon svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--chrome-light);
}

.value-item p {
  font-size: 0.82rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-card .name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Store ---------- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

.product-thumb {
  aspect-ratio: 4/3;
  background: #111;
  overflow: hidden;
  position: relative;
}

.soldout-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(8,8,8,0.8);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.product-card:has(.soldout-badge) .product-thumb img {
  filter: grayscale(70%) brightness(0.75);
}

.btn-soldout {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--grey);
  cursor: not-allowed;
  pointer-events: none;
}

.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.product-body .price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--chrome-light);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--grey);
  margin-bottom: 40px;
  line-height: 1.75;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-link:hover {
  border-color: rgba(255,255,255,0.16);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.contact-link .icon {
  width: 38px; height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--silver);
}

.contact-link .link-text {
  font-size: 0.8rem;
  color: var(--grey);
}

.contact-link .link-handle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.demo-form {
  padding: 40px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.demo-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.demo-form .subtitle {
  color: var(--grey);
  font-size: 0.875rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.form-control::placeholder { color: var(--grey-dark); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--grey-dark);
  margin-top: 16px;
  line-height: 1.6;
}

/* Required marker */
.form-group label .req {
  color: #ff6b6b;
  font-weight: 600;
  margin-left: 2px;
}

/* Invalid field state */
.form-control.invalid {
  border-color: rgba(255,107,107,0.7);
  background: rgba(255,107,107,0.06);
}

/* Per-field error message */
.field-error {
  color: #ff6b6b;
  font-size: 0.76rem;
  margin-top: 6px;
  line-height: 1.4;
}

/* Form-level error / status summary */
.form-error-summary {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 4px 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}
.form-error-summary.is-error {
  color: #ff8a8a;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.3);
}
.form-error-summary.is-success {
  color: #7ee0a8;
  background: rgba(90,220,150,0.08);
  border: 1px solid rgba(90,220,150,0.3);
}

/* "Submitting to" group */
.group-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--silver);
  letter-spacing: normal;
}
.checkbox-row:last-child { margin-bottom: 0; }
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-row span { line-height: 1.4; }

/* ---------- Newsletter ---------- */
.newsletter-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.newsletter-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.newsletter-section p {
  color: var(--grey);
  margin-bottom: 32px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 13px 20px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: rgba(255,255,255,0.22); }
.newsletter-form input::placeholder { color: var(--grey-dark); }

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: var(--grey);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.75;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--grey);
  transition: all var(--transition);
  margin: 0;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--grey-dark);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.page-hero p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Filter Tabs ---------- */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.filter-tab:hover,
.filter-tab.active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ---------- Spotify player ---------- */
.spotify-player-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.spotify-player-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.spotify-player-section .subtitle {
  color: var(--grey);
  margin-bottom: 32px;
}

.spotify-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* Spotify play button on release cards */
.release-spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1db954;
  padding: 4px 9px;
  border: 1px solid rgba(29,185,84,0.25);
  border-radius: 100px;
  background: rgba(29,185,84,0.06);
  transition: all var(--transition);
  text-decoration: none;
  margin-top: 6px;
}

.release-spotify-btn:hover {
  background: rgba(29,185,84,0.14);
  border-color: #1db954;
  color: #1db954;
}

.release-spotify-btn svg {
  width: 11px; height: 11px;
  fill: currentColor;
  flex-shrink: 0;
}

.release-spotify-btn i {
  font-size: 11px;
  flex-shrink: 0;
}

/* New release badge */
.release-badge-new {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(255,255,255,0.9);
  color: #080808;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 2;
}

/* ---------- Sub-label callout (homepage about) ---------- */
.sublabel-callout {
  margin-top: 32px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: border-color var(--transition), background var(--transition);
}

.sublabel-callout:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}

.sublabel-callout-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--chrome-light);
  letter-spacing: -0.01em;
}

.sublabel-callout-info p {
  font-size: 0.82rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.55;
  max-width: 340px;
}

.sublabel-callout-links {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.sublabel-callout-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver);
  transition: all var(--transition);
}

.sublabel-callout-links a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}

.sublabel-callout-links svg {
  width: 14px; height: 14px;
  fill: currentColor;
}

.sublabel-callout-links i {
  font-size: 14px;
}

/* ---------- Sub-label section ---------- */
.sublabel-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, transparent 100%);
}

.sublabel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sublabel-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.sublabel-text p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}

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

@media (max-width: 900px) {
  .sublabel-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Chrome shimmer overlay ---------- */
.card-shimmer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
  mix-blend-mode: screen;
}

/* Sweep shimmer on hover for cards without JS tilt (fallback) */
.release-card::after,
.artist-card::after,
.value-item::after,
.glass-card::after,
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255,255,255,0.055) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  opacity: 0;
  transition: opacity 0.25s, background-position 0.65s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 3;
}

.release-card:hover::after,
.artist-card:hover::after,
.value-item:hover::after,
.glass-card:hover::after,
.product-card:hover::after {
  opacity: 1;
  background-position: -200% 0;
}

/* Cards need relative positioning for overlays */
.release-card,
.artist-card,
.value-item,
.glass-card,
.product-card,
.team-card {
  position: relative;
}

/* ---------- Scroll reveal ---------- */
/* Only hide reveals once JS confirms it's running (.js-reveal on <html>).
   If JS fails, content stays fully visible — never permanently hidden.
   DESKTOP ONLY: on phones the reveal animation is disabled entirely —
   throttled mobile CPUs/timers made below-fold content sit blank then
   drop in rough. On mobile, content is simply always visible. */
@media (min-width: 769px) {
  .js-reveal .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s cubic-bezier(0.22,0.61,0.36,1), transform 0.55s cubic-bezier(0.22,0.61,0.36,1);
    will-change: opacity, transform;
  }

  .js-reveal .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* Mobile: hero enters as one quick fade — no long stat stagger that can
   stall on a throttled main thread. */
@media (max-width: 768px) {
  .hero-enter { animation-duration: 0.4s; }
  .hero-enter > .hero-badge,
  .hero-enter > p,
  .hero-enter > .hero-actions,
  .hero-enter .hero-stat {
    animation-duration: 0.3s !important;
    animation-delay: 0.05s !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .releases-grid { grid-template-columns: repeat(4, 1fr); }
  .artists-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  section { padding: 64px 0; }

  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo { grid-column: 1; justify-self: start; }
  .nav-logo img { height: 52px; }
  .hero-video { display: none; }   /* mobile: static poster only, no 52MB video */

  .hero h1 { font-size: clamp(2.3rem, 9vw, 3.4rem); }
  .hero-content { padding: 36px 26px 32px; border-radius: 26px; }
  .hero-stats { gap: 24px; margin-top: 32px; padding-top: 28px; }

  .releases-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .artists-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .demo-form { padding: 24px; }
}

@media (max-width: 480px) {
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid  { grid-template-columns: repeat(2, 1fr); }
  .store-grid    { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; align-items: center; }
}
