
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/dm-sans-v17-latin/dm-sans-v17-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/dm-sans-v17-latin/dm-sans-v17-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/dm-sans-v17-latin/dm-sans-v17-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/dm-sans-v17-latin/dm-sans-v17-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/dm-sans-v17-latin/dm-sans-v17-latin-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/lato-v25-latin/lato-v25-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/lato-v25-latin/lato-v25-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("./fonts/lato-v25-latin/lato-v25-latin-900.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/lato-v25-latin/lato-v25-latin-italic.woff2") format("woff2");
}

:root {
  --bg: #0a0a0a; /* Dark background matching the image */
  --muted: #b4b9be;
  --text: #fffcf8;
  --page-background: #0a0a0a;
  --text-color: #fffcf8;
  --card: rgba(255, 255, 255, 0.06); /* neutral glassy base instead of blue */
  --border: #1e222A;
  --accent: #40baab; /* teal blue accent */
  --accent-blue: #204d7a;
  --accent-purple: #d64bff;
  --accent-pink: #ff7db2;
  --button-bg: rgba(255, 255, 255, 0.08);
  --button-border: rgba(255, 255, 255, 0.18);
  --header-height: 76px;
  --section-gap: 28px;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; background:var(--bg); color:var(--text); font:16px/1.6 "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif; width: 100%; max-width: 100%; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { background-color: var(--bg); scroll-padding-top: var(--header-height); }

a { color: var(--text); text-decoration: none; }
a:hover { text-decoration: underline; }
.eyebrow { text-transform: uppercase; letter-spacing: 1.4px; font-size: 0.9rem; color: var(--accent); margin: 0; }

img, picture, video, canvas, svg, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
.embed { width: 100%; aspect-ratio: 16 / 9; border: none; }

.site-header, .site-footer {
  padding:18px 22px; background:var(--bg);
}
.site-header { position:sticky; top:0; border-bottom:1px solid var(--border); z-index:120; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45); min-height: var(--header-height); display:flex; align-items:center; justify-content:space-between; }
.site-footer { 
  position:static; 
  border-top:1px solid rgba(255, 255, 255, 0.08); 
  border-bottom:none; 
  margin-top:28px; 
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0,0,0,0.35));
  display: grid;
  gap: 16px;
  justify-items: stretch;
}
.page-shell + .site-footer { margin-top: 0; }
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "contact links info";
  gap: 22px;
  align-items: start;
  width: min(100%, 1200px);
  margin: 0 auto;
  justify-items: stretch;
}
.footer-col { display: grid; gap: 8px; align-items: start; }
.footer-col-info { grid-area: info; justify-self: end; text-align: right; }
.footer-col-links { grid-area: links; justify-self: center; text-align: center; }
.footer-col-contact { grid-area: contact; justify-self: start; text-align: left; }
.footer-title { margin: 0; font-weight: 700; letter-spacing: 0.4px; }
.footer-text, .footer-link { margin: 0; color: var(--muted); }
.footer-link { display: inline-flex; gap: 8px; align-items: center; }
.footer-link:hover { color: var(--text); text-decoration: underline; }
.footer-links { display:flex; gap:12px; align-items:center; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--text); text-decoration: underline; }
.footer-bottom {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand { display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.5px; font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }
.logo { width:32px; height:32px; }
h1, h2, h3, h4, h5, h6 { font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }

.nav { display:flex; gap:18px; align-items:center; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  gap: 6px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.menu-toggle span + span { margin-top: 4px; }
body.nav-open { overflow: hidden; }
.btn {
  background: linear-gradient(135deg, rgba(64, 186, 171, 0.26), rgba(214, 75, 255, 0.18));
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(64, 186, 171, 0.34), rgba(214, 75, 255, 0.24));
  text-decoration: none;
}
.btn:active { transform: translateY(0); }
.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero { 
  position: relative;
  min-height: calc(100vh - var(--header-height));
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 28px) 18px 180px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(8, 8, 8, 0.25) 55%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-planet-image {
  width: 155vw;
  height: 155vw;
  max-width: 2600px;
  max-height: 2600px;
  object-fit: contain;
  object-position: center top;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-47%, -15%);
  /* Clip to show only top semicircle with the glow - show top 50% */
  /* Temporarily disabled to verify image loads - uncomment clip-path when image is visible */
  clip-path: none;
  aspect-ratio: 1 / 1;
}

/* Responsive scaling for different screen sizes */
@media (min-width: 640px) {
  .hero-planet-image {
    width: 145vw;
    height: 145vw;
  }
}

@media (min-width: 768px) {
  .hero-planet-image {
    width: 135vw;
    height: 135vw;
    max-width: 2200px;
    max-height: 2200px;
  }
}

@media (min-width: 1024px) {
  .hero-planet-image {
    width: 125vw;
    height: 125vw;
    max-width: 2000px;
    max-height: 2000px;
  }
}

@media (min-width: 1440px) {
  .hero-planet-image {
    width: 1800px;
    height: 1800px;
  }
}

.hero-inner { 
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 36px 18px;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin-top: clamp(9vh, 12vh, 15vh);
  gap: 16px;
}

.hero-inner > * {
  pointer-events: auto;
}

.hero h1 { 
  font-size: clamp(40px, 6vw, 68px); 
  margin: 0 0 4px;
  position: relative;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.hero p {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  color: var(--muted);
}
.hero-tagline {
  max-width: 640px;
  font-size: clamp(78px, 13.5vw, 108px);
  line-height: 1.1;
}

.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
  z-index: 11;
}
.scroll-indicator-arrow {
  font-size: 18px;
  line-height: 1;
}
.scroll-indicator.is-hidden {
  opacity: 0;
  transform: translate(-50%, 10px);
}

.page, .upload-page, .about-label-inner, .home-tiles, .hero-inner { width: min(100%, 1200px); }

.home-tiles { 
  position: relative;
  isolation: isolate;
  display:grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap:24px; 
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 121px 0 clamp(200px, 25vh, 325px);
  background: #000;
  margin-bottom: 0;
}
.home-tiles::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #000;
  z-index: -1;
}
.home-tile { 
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 1;
}
.home-tile::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.85;
  filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(0, 0, 0, 0.42);
  transition: opacity 0.2s ease;
}
.home-tile:nth-child(1)::before { background: radial-gradient(circle at 28% 32%, rgba(64, 186, 171, 0.4), transparent 52%), radial-gradient(circle at 72% 68%, rgba(32, 77, 122, 0.24), transparent 58%), rgba(255, 255, 255, 0.02); }
.home-tile:nth-child(2)::before { background: radial-gradient(circle at 70% 38%, rgba(214, 75, 255, 0.4), transparent 54%), radial-gradient(circle at 32% 70%, rgba(255, 125, 178, 0.26), transparent 60%), rgba(255, 255, 255, 0.02); }
.home-tile:nth-child(3)::before { background: radial-gradient(circle at 40% 60%, rgba(64, 186, 171, 0.28), transparent 56%), radial-gradient(circle at 72% 30%, rgba(214, 75, 255, 0.32), transparent 58%), rgba(255, 255, 255, 0.02); }
.home-tile:hover { 
  border-color: rgba(255, 255, 255, 0.34); 
  transform: translateY(-6px); 
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.48);
}
.ts-strip-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.ts-strip-wrapper::before,
.ts-strip-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
.ts-strip-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(30, 34, 42, 0.6), transparent);
}
.ts-strip-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(30, 34, 42, 0.6), transparent);
}
.artists-circle-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  height: 100%;
}
.artist-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.artist-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.artists-hero {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.artists-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 8px;
}
.inner-box {
  width: 100%;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
}
.services-hero {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}
.services-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.ts-strip {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  padding-right: 1rem;
  animation: ts-scroll 40s linear infinite;
}
.ts-strip img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 6px;
}
@keyframes ts-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.home-tile-title { margin: 0; font-size: 1.35rem; }
.home-tile-description { margin: 0; color: var(--muted); line-height: 1.7; }
.home-tile-button { align-self: flex-start; margin-top: auto; }
.home-tile-visual { 
  width: 100%; 
  height: 120px; 
  border-radius: 12px; 
  background: linear-gradient(135deg, rgba(64, 186, 171, 0.25), rgba(214, 75, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.24); 
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15); 
}
.home-tile,
.home-tile-title,
.home-tile-description {
  text-align: center;
}
.home-tile { align-items: center; }
.home-tile-button { align-self: center; }

@media (max-width: 768px) {
  .home-tiles { 
    grid-template-columns: 1fr; 
    width: min(100%, calc(100% - 32px));
    padding: 45px 0 88px; 
  }
}

.about-label { 
  position: relative;
  isolation: isolate;
  margin-top: 0;
  padding: 120px 22px 78px;
  background: linear-gradient(120deg, rgba(64, 186, 171, 0.08), rgba(214, 75, 255, 0.04));
  border-top: none;
  border-bottom: none;
}
.about-label::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 50px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: -1;
}
.about-label-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.about-label-text h2 { margin: 8px 0 10px; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.about-label-text p { margin: 0 0 14px; color: var(--muted); }
.about-label-text .eyebrow { text-transform: uppercase; letter-spacing: 1.4px; font-size: 0.9rem; color: var(--accent); margin: 0; }
.about-social { margin-top: 10px; display: grid; gap: 8px; }
.about-social-label { margin: 0; color: var(--muted); font-weight: 600; letter-spacing: 0.4px; }
.about-label-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  align-self: flex-start;
  margin-top: clamp(18px, 3vw, 36px);
}
.about-image-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 30%, rgba(64,186,171,0.18), transparent 48%), radial-gradient(circle at 80% 70%, rgba(214,75,255,0.16), transparent 50%), rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 32px rgba(0,0,0,0.36);
  overflow: hidden;
}
.about-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .about-label-inner { grid-template-columns: 1fr; }
  .about-label-visual { min-height: 180px; }
  .upload-layout { grid-template-columns: 1fr; }
  .upload-page { padding: 28px 18px 30px; }
  .upcoming-release { grid-template-columns: 1fr; }
  .release-art { max-width: 360px; }
}

@media (max-width: 640px) {
  .about-label { padding: 110px 18px; }
  .drop-frame { max-width: 100%; }
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--section-gap) * 2) 22px calc(var(--section-gap) * 2);
  display: grid;
  gap: var(--section-gap);
}
.section-card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(64, 186, 171, 0.14), transparent 44%), radial-gradient(circle at 80% 70%, rgba(214, 75, 255, 0.12), transparent 52%), rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}
.section-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  opacity: 0.5;
  pointer-events: none;
}
.section-card > * { position: relative; z-index: 1; }
.page-hero-card { padding: clamp(26px, 5vw, 42px); }
.page-hero-card h1 { margin: 8px 0 10px; font-size: clamp(30px, 4.2vw, 46px); line-height: 1.22; }
.page-hero-card .section-lead { max-width: 760px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.bottom-demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.bottom-demo-cta .cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-line {
  margin: 0;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
}
.section-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.section-heading h2 { margin: 0 0 6px; }
.section-lead { margin: 0; color: var(--muted); line-height: 1.7; }
.card-stack { display: grid; gap: 14px; margin-top: 16px; }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 3vw, 28px); align-items: start; }
.summary-grid .summary-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.service-box-grid .section-card { height: 100%; }
.service-box-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.2px;
}
.summary-grid .btn { margin-top: auto; align-self: flex-start; }
.upcoming-release {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(10px, 2vw, 16px);
  align-items: start;
  justify-items: start;
  justify-self: start;
  width: min(100%, 560px);
  margin-top: 16px;
  padding: clamp(10px, 1.6vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(64, 186, 171, 0.08), rgba(214, 75, 255, 0.06)), rgba(255, 255, 255, 0.02);
}
.release-art { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 6px; display: grid; place-items: center; margin: 0; justify-self: start; position: relative; overflow: hidden; width: clamp(140px, 34vw, 190px); }
.release-art img { border-radius: 6px; width: 100%; display: block; }
.audio-cover { isolation: isolate; }
.audio-cover audio { display: none; }
.audio-cover-toggle {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), rgba(0, 0, 0, 0.38) 62%);
  cursor: pointer;
  color: inherit;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1;
}
.audio-cover:hover .audio-cover-toggle,
.audio-cover:focus-within .audio-cover-toggle,
.audio-cover.is-playing .audio-cover-toggle { opacity: 1; }
.audio-cover.is-playing .audio-cover-toggle { transform: scale(1.02); }
.audio-cover-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -6px 18px rgba(0, 0, 0, 0.2);
}
.audio-cover-icon::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
  transform: translateX(2px);
  transition: all 0.18s ease;
}
.audio-cover-icon::after { display: none; }
.audio-cover.is-playing .audio-cover-icon::before,
.audio-cover.is-playing .audio-cover-icon::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  border: none;
  width: 7px;
  height: 22px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
}
.audio-cover.is-playing .audio-cover-icon::before {
  left: calc(50% - 9px);
  transform: translateY(-50%);
}
.audio-cover.is-playing .audio-cover-icon::after {
  left: calc(50% + 2px);
  transform: translateY(-50%);
}
.audio-cover-progress {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  z-index: 2;
}
.audio-cover-progress-hitbox {
  height: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.audio-cover-progress-track {
  width: 100%;
  height: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  position: relative;
}
.audio-cover-progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
}
.release-copy { display: grid; gap: 6px; align-content: start; justify-items: start; text-align: left; }
.release-copy h3 { margin: 0; font-size: clamp(20px, 2.2vw, 24px); letter-spacing: .3px; }
.release-date {
  margin: 0;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
  display: grid;
  gap: 6px;
}
.release-date-label {
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--muted);
  letter-spacing: 0.08em;
}
.release-date-value {
  line-height: 1.4;
}
.release-collaborators {
  margin: 0;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.4vw, 14px);
}
.release-desc { margin: 2px 0 0; color: var(--muted); font-size: 0.95rem; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(64, 186, 171, 0.12); color: var(--accent); border: 1px solid rgba(64, 186, 171, 0.4); font-size: 0.85rem; letter-spacing: 0.4px; text-transform: uppercase; width: fit-content; }
.bullet-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.bullet-list li { position: relative; padding-left: 18px; color: var(--muted); line-height: 1.6; }
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.anchor-section { scroll-margin-top: var(--header-height); }
.muted { color: var(--muted); }
.page { max-width:960px; padding:24px; margin:0 auto; }
.upload-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 22px 30px;
}
.upload-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(64, 186, 171, 0.14), transparent 36%), radial-gradient(circle at 80% 60%, rgba(214, 75, 255, 0.14), transparent 38%), rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: clamp(22px, 4vw, 36px);
}
.upload-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.upload-copy h1 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.25;
}
.upload-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin: 0;
}
.upload-subtext {
  margin: 0 0 10px;
  color: var(--muted);
  max-width: 560px;
}
.upload-facts {
  margin: 12px 0 0;
  max-width: 560px;
}
.upload-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
  align-content: start;
}
.upload-drop {
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-hero .form {
  width: 100%;
}
.upload-hero label {
  font-weight: 600;
  color: var(--text);
}
.upload-hero input,
.upload-hero textarea {
  background: rgba(255, 255, 255, 0.03);
}
.upload-form input::placeholder,
.upload-form textarea::placeholder {
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: rgba(255, 252, 248, 0.5);
}
.upload-hero button.btn {
  margin-top: 4px;
  width: 100%;
}
.playlist .track { background:var(--card); border:1px solid var(--border); border-radius:14px; padding:16px; margin-bottom:12px; }
.platforms { display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
.video-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:12px; }
.embed-placeholder {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.embed-placeholder p { margin: 0; color: var(--muted); }
.service-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:14px; }
.service { background:var(--card); border:1px solid var(--border); border-radius:14px; padding:16px; }

.form { display:grid; gap:14px; max-width:640px; width: 100%; }
.form input, .form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.form label {
  display: grid;
  gap: 6px;
  margin: 0;
  font-weight: 600;
  color: var(--text);
}
.form-intro {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}
.form .consent {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.form .consent span {
  display: block;
  flex: 1 1 260px;
}
.form .consent input[type="checkbox"] {
  width: 1.5em;
  height: 1.5em;
  margin-top: 0;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form .consent a { color: var(--text); text-decoration: underline; }
.file-upload {
  display: grid;
  gap: 10px;
  align-items: flex-start;
}
.file-upload-label {
  font-weight: 600;
  color: var(--text);
}
.file-upload-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.file-upload-trigger {
  width: fit-content;
  padding: 8px 12px;
  min-height: 30px;
  font-size: 0.85rem;
}
.file-chip-list {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  justify-content: start;
}
.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.2s ease;
  width: fit-content;
  max-width: min(100%, 520px);
}
.file-chip.is-visible { opacity: 1; transform: translateY(0); }
.file-chip.is-removing { opacity: 0; transform: translateY(-4px); }
.file-chip-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-chip-remove {
  background: none;
  border: none;
  color: var(--muted);
  padding: 4px 6px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.file-chip-remove:hover { color: var(--text); background: rgba(255, 255, 255, 0.08); transform: translateY(-1px); }
.file-chip-remove:focus-visible { outline: 2px solid rgba(64, 186, 171, 0.5); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(64, 186, 171, 0.5);
}
.form button { width:max-content; }
.contact-card .form {
  max-width: none;
}
.contact-form {
  gap: 16px;
}
.contact-card {
  display: grid;
  gap: 18px;
}
.contact-title {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.22;
}
.upload-form {
  max-width: 960px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.upload-form .video-container { margin-bottom: 12px; }
.hidden { display:none; }

.small { color:var(--muted); font-size:.95rem; line-height:1.5; }
.note { margin-top:18px; color:var(--muted); }

.drop-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: clamp(320px, 42vw, 520px);
  margin: 0;
  aspect-ratio: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
  background: radial-gradient(circle at 15% 20%, rgba(64, 186, 171, 0.24), transparent 46%), radial-gradient(circle at 70% 70%, rgba(214, 75, 255, 0.24), transparent 52%), #0c1016;
}
.drop-image {
  position: absolute;
  inset: 0;
  background: url("/assets/Embeded%20Images/ChatGPT%20Image%20Nov%2021,%202025,%2001_36_10%20PM.png") center/cover no-repeat;
  filter: saturate(1.05);
  opacity: 0.75;
  border-radius: inherit;
}
.file-drop-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 2;
  gap: 4px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, opacity 0.18s ease;
  border-radius: inherit;
  overflow: hidden;
}
.file-drop-overlay:hover {
  transform: scale(1.01);
  opacity: 0.95;
}
.file-drop-overlay:active {
  transform: scale(0.985);
}

.file-drop-emoji {
  font-size: 80px;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.file-drop-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}
.file-drop-hint {
  font-size: 15px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.file-drop-types {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .file-drop-types {
    font-size: 15px;
  }
  .file-drop-hint {
    font-size: 17px;
  }
}
.upload-contact {
  margin: 12px 0 0;
}
.upload-contact a {
  color: var(--text);
  text-decoration: underline;
}

.upload-status {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  min-height: 22px;
}

.upload-status:empty {
  margin-top: 0;
  padding: 0;
  min-height: 0;
}

.upload-status.success {
  background: rgba(64, 186, 171, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.upload-status.error {
  background: rgba(255, 125, 178, 0.2);
  border: 1px solid var(--accent-pink);
  color: var(--accent-pink);
}

.upload-status.uploading {
  background: rgba(214, 75, 255, 0.2);
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
}
.upload-progress {
  position: relative;
  width: 100%;
  height: 14px;
  margin-top: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: none;
}
.upload-progress.is-visible {
  display: block;
}
.upload-progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(64, 186, 171, 0.9), rgba(214, 75, 255, 0.9));
  transition: width 0.18s ease;
}
.upload-progress-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--text);
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.upload-progress.is-indeterminate .upload-progress-fill {
  width: 45%;
  animation: uploadProgressIndeterminate 1.1s ease-in-out infinite;
}
@keyframes uploadProgressIndeterminate {
  0% { transform: translateX(-60%); }
  50% { transform: translateX(10%); }
  100% { transform: translateX(120%); }
}

@media (max-width: 640px) {
  .file-drop-emoji {
    font-size: 60px;
  }
  .file-drop-text {
    font-size: 20px;
  }
}

.social { display:flex; gap:10px; align-items:center; flex-wrap: wrap; }
.social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fffcf8;
  transition: all 0.2s ease;
}
.social a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.social svg { width: 18px; height: 18px; fill: currentColor; }
.status { margin-top:10px; color:var(--accent); }

/* Artists page styles */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(18px, 2.4vw, 26px);
}
@media (max-width: 720px) {
  .artists-grid { grid-template-columns: 1fr; }
}
.artist-card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  background: var(--card);
}
.artist-card:focus-visible {
  outline: 2px solid rgba(64, 186, 171, 0.6);
  outline-offset: 6px;
}
.artist-media {
  position: relative;
  width: 100%;
  height: clamp(300px, 36vw, 330px);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.72));
}
.artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: artist-drift 12s ease-in-out infinite alternate;
  will-change: transform;
  filter: saturate(1.02);
}
.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.7));
  opacity: 0.4;
  transition: opacity 0.22s ease, background 0.22s ease;
  pointer-events: none;
}
.artist-meta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(16px, 3vw, 24px);
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.55));
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}
.artist-name {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 24px);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.artist-tagline {
  margin: 6px 0 0;
  color: rgba(255, 252, 248, 0.8);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 560px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease 0.12s, transform 0.24s ease 0.12s;
}
.artist-card:hover,
.artist-card:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.artist-card:hover .artist-overlay,
.artist-card:focus-visible .artist-overlay {
  opacity: 0.82;
  background: linear-gradient(170deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.82)), linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7));
}
.artist-card:hover .artist-meta,
.artist-card:focus-visible .artist-meta {
  opacity: 1;
  transform: translateY(0);
}
.artist-card:hover .artist-tagline,
.artist-card:focus-visible .artist-tagline {
  opacity: 1;
  transform: translateY(0);
}

@keyframes artist-drift {
  0% { transform: translate3d(0, 0, 0) scale(1.02); }
  50% { transform: translate3d(0.6px, -0.6px, 0) scale(1.02); }
  100% { transform: translate3d(-0.6px, 0.6px, 0) scale(1.02); }
}

.reveal-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.24s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Artist detail page styles */
.artist-page {
  background: var(--page-background, var(--bg));
  color: var(--text-color, var(--text));
  display: grid;
  gap: 18px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.back-link:hover { color: var(--text); text-decoration: underline; }

.artist-container {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.artist-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.artist-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.artist-content {
  display: grid;
  gap: clamp(14px, 2.6vw, 22px);
  max-width: 860px;
}
.artist-content h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
}
.artist-lede {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.6;
}
.artist-bio {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.artist-bio p {
  margin: 0;
}

.artist-links {
  display: grid;
  gap: 10px;
  align-content: start;
}
.artist-socials,
.artist-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.artist-social-btn,
.music-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--button-bg);
  border: 1px solid var(--button-border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease, border-color 0.16s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.artist-social-btn:hover,
.music-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  text-decoration: none;
}
.artist-social-btn:active,
.music-btn:active { transform: translateY(0); }

.artist-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.music-btn.spotify { border-color: rgba(64, 186, 171, 0.5); }
.music-btn.apple { border-color: rgba(214, 75, 255, 0.4); }
.music-btn.youtube-music { border-color: rgba(255, 125, 178, 0.4); }
.music-btn.soundcloud { border-color: rgba(255, 136, 51, 0.45); }

.artist-music {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}
.artist-music .section-lead { max-width: 680px; }
.artist-music-list { display: grid; gap: 14px; }
.artist-music .upcoming-release { width: min(100%, 760px); }

.artist-release-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}
.artist-release-item h3 { margin: 0 0 6px; }
.artist-release-meta { color: var(--muted); font-size: 0.95rem; margin: 0 0 10px; }
.artist-release-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.artist-release-platforms a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  font-weight: 600;
}
.artist-release-platforms a:hover {
  opacity: 0.9;
  text-decoration: none;
}

@media (max-width: 640px) {
  .artist-social-btn,
  .music-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .site-header, .site-footer { padding:16px; }
  .hero { padding: calc(var(--header-height) + 20px) 16px 120px; }
  .home-tiles { padding: 110px 16px clamp(188px, 22.5vh, 300px); }
  .about-label { padding: 120px 16px; }
  .about-label-inner { grid-template-columns: 1fr; text-align: center; }
  .about-label-text { max-width: 720px; margin: 0 auto; }
  .about-label-visual { min-height: 200px; }
  .upload-layout { grid-template-columns: 1fr; }
  .upload-page { padding: 28px 18px 30px; }
  .page-shell { padding: var(--section-gap) 18px calc(var(--section-gap) * 2); }
  .page { padding: 22px 18px 80px; }
}

@media (max-width: 768px) {
  .site-header { 
    gap: 12px; 
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .site-header > .brand {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .site-header::before {
    content: "Tao Nova Records";
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  }
  .brand span { display: none; }
  .nav { 
    position: absolute;
    inset: calc(100% - 2px) 16px auto 16px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
    display: none;
    gap: 10px;
    z-index: 90;
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    width: calc(100% - 32px);
  }
  .nav.open { display:flex; }
  .nav a { width: 100%; padding: 12px; text-align: center; border-radius: 12px; }
  .nav .btn { width: 100%; text-align: center; }
  .menu-toggle { 
    display: inline-flex; 
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 46px;
    height: 46px;
    gap: 6px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(64, 186, 171, 0.2), rgba(214, 75, 255, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.6);
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.5),
      0 4px 10px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  .menu-toggle span {
    width: 30px;
    height: 4px;
    flex: 0 0 4px;
    background: currentColor;
    border-radius: 999px;
    opacity: 0.8;
  }
  .menu-toggle span + span { margin-top: 0; }
  .hero { padding: calc(var(--header-height) + 18px) 14px 100px; min-height: calc(100vh - var(--header-height)); justify-content: flex-start; align-items: center; flex-direction: column; }
  .hero::after {
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 2;
  }
  .hero-image-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 800px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 2;
  }
  .hero-inner { margin-top: clamp(2vh, 5vh, 8vh); gap: 44px; padding-bottom: 44px; transform: translateY(60px); }
  .hero-tagline {
    font-size: clamp(78px, 13.5vw, 108px);
    font-weight: 700;
  }
  .hero h1 { letter-spacing: 0.065em; margin-top: 18px; margin-bottom: 0; }
  .hero-planet-image {
    width: 210vw;
    height: 210vw;
    transform: translate(calc(-50% + 20px), -70px);
  }
  .scroll-indicator { position: relative; bottom: auto; left: auto; transform: none; align-self: center; margin-top: clamp(240px, 40vw, 360px); }
  .scroll-indicator-arrow { font-size: 28px; line-height: 1; }
  .scroll-indicator-label { font-size: 0.95rem; letter-spacing: 1.4px; }
  .home-tiles { grid-template-columns: 1fr; width: 100%; max-width: none; gap: 30px; padding: 16px 14px clamp(175px, 22.5vh, 275px); overflow: hidden; }
  .home-tiles::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
  }
  .home-tile { width: 100%; overflow: hidden; }
  .about-social .social { justify-content: center; gap: 14px; }
  .about-social .social a { width: 44px; height: 44px; }
  .about-social .social svg { width: 22px; height: 22px; }
  .about-label { padding: 110px 14px; }
  .page-shell { padding: var(--section-gap) 16px calc(var(--section-gap) * 2); }
  .page { padding: 20px 16px 70px; }
  .drop-frame { max-width: 100%; }
  .artists-grid { grid-template-columns: 1fr; }
  .section-heading { flex-direction: column; align-items: flex-start; }
  .page-hero-actions,
  .bottom-demo-cta { width: 100%; }
  .bottom-demo-cta { flex-direction: column; align-items: flex-start; }
  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    justify-items: stretch;
  }
  .footer-col { justify-self: stretch; }
  .footer-col-info { align-items: flex-end; text-align: right; justify-self: end; }
  .footer-col-contact { align-items: flex-start; text-align: left; justify-self: start; }
  .footer-col-links { align-items: center; text-align: center; justify-self: center; }
  .footer-links { justify-content: center; width: 100%; }
  .footer-col-contact .social {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header { padding: 14px 16px; }
  .brand span { display: none; }
  .hero-inner { padding: 22px 12px; }
  .home-tiles { gap: 30px; padding: 12px 0 clamp(150px, 22.5vh, 250px); overflow: hidden; }
  .home-tile { width: 100%; }
  .btn { width: 100%; text-align: center; }
  .page-shell { padding: var(--section-gap) 14px calc(var(--section-gap) * 2); }
}

@media (max-width: 640px) {
  .upcoming-release { width: 100%; }
  .release-art { width: 100%; max-width: none; }
  .release-copy { width: 100%; }
}
