:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050506;
  color: #f5f5f7;
  line-height: 1.6;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #050506;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 6, 0.70);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 5rem 2rem 6rem;
  background-image: linear-gradient(180deg, rgba(4, 5, 9, 0.68), rgba(4, 5, 9, 0.82)), url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 3, 7, 0.3), rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  max-width: 860px;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #d1d4db;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.75rem);
  margin: 0;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.hero-copy {
  max-width: 680px;
  margin: 1.2rem auto 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #a041ff 0%, #b85dff 40%, #ff2c86 70%, #ff58a5 100%);
  background-size: 250% 100%;
  filter: blur(8px);
  opacity: 0.95;
  transition: width 2s ease-out, background-position 1.5s linear;
  pointer-events: none;
  z-index: -1;
}

.button-primary {
  position: relative;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: transparent;
  border-color: rgba(160, 65, 255, 0.45);
  box-shadow: 0 0 18px rgba(160, 65, 255, 0.15), 0 0 30px rgba(255, 44, 134, 0.1);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  width: 100%;
  background-position: 200% 0;
  animation: loading-bar 2.4s linear infinite;
}

@keyframes loading-bar {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes liquid-surface {
  0%, 100% {
    transform: translate(0, 0) scale(1.02);
  }
  25% {
    transform: translate(4%, -2%) scale(1.03);
  }
  50% {
    transform: translate(-2%, 2%) scale(1.01);
  }
  75% {
    transform: translate(-3%, -1%) scale(1.04);
  }
}

.button-secondary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(160, 65, 255, 0.28), transparent 22%),
              radial-gradient(circle at 70% 60%, rgba(255, 44, 134, 0.22), transparent 18%);
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.05);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(160, 65, 255, 0.35);
  box-shadow: 0 0 18px rgba(160, 65, 255, 0.18), 0 0 30px rgba(255, 44, 134, 0.12);
}

.button-secondary:hover::before,
.button-secondary:focus-visible::before {
  opacity: 0.65;
  transform: scale(1.08);
}

.section {
  padding: 5rem 2rem;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 0;
}

.section p {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-items: center;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.music-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  min-height: 460px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 0;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
  color: inherit;
}

.music-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(160, 65, 255, 0.12), rgba(255, 44, 134, 0.1), rgba(191, 88, 255, 0.12));
  opacity: 0;
  transform: scale(1.06);
  filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.music-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 22%),
              radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.16), transparent 16%);
  opacity: 0;
  filter: blur(2px);
  transform: translate3d(0, 0, 0) scale(1.01);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.music-card:hover::before,
.music-card:focus-visible::before {
  opacity: 0.42;
  transform: scale(1.12);
  animation: pulse-card 3.2s ease-in-out infinite;
}

.music-card:hover::after,
.music-card:focus-visible::after {
  opacity: 0.55;
  animation: liquid-surface 4.5s ease-in-out infinite;
}

.music-card:hover,
.music-card:focus-visible {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 10px rgba(160, 65, 255, 0.15), 0 0 20px rgba(255, 44, 134, 0.1);
}

@keyframes pulse-card {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1.1);
  }
  50% {
    opacity: 0.52;
    transform: scale(1.14);
  }
}

@keyframes liquid-surface {
  0%, 100% {
    transform: translate(0, 0) scale(1.01);
  }
  25% {
    transform: translate(3%, -1%) scale(1.02);
  }
  50% {
    transform: translate(-2%, 1%) scale(1.01);
  }
  75% {
    transform: translate(-2.5%, -0.5%) scale(1.03);
  }
}

.music-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.music-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.music-actions {
  max-width: 1180px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
}

.music-actions .button {
  min-width: 240px;
}

.music-card p {
  color: rgba(255, 255, 255, 0.75);
}

.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: #a041ff;
  font-weight: 700;
  text-decoration: none;
}

.section-about .about-copy {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  text-align: center;
}

.section-contact {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-box h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.contact-box p {
  margin: 0.75rem 0 0;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 2rem 3rem;
  color: rgba(255, 255, 255, 0.55);
}

.social-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  color: #fff;
  background: rgba(5, 5, 6, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 22px rgba(255, 44, 134, 0.14);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.social-fab svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.social-fab:hover,
.social-fab:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #a041ff, #ff2c86);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.46), 0 0 30px rgba(255, 44, 134, 0.28);
}

@media (max-width: 960px) {
  .music-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section {
    padding: 3.25rem 1.25rem;
  }

  .section h2 {
    font-size: 2.25rem;
  }

  .section p,
  .music-card p,
  .about-copy p {
    font-size: 1rem;
  }

  .social-fab {
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }

  .social-fab svg {
    width: 1.55rem;
    height: 1.55rem;
  }
}


img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

main {
  width: 100%;
}

.section,
.hero,
.site-header {
  width: 100%;
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 1.25rem;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 88vh;
    padding: 7rem 1.25rem 4rem;
    background-position: center center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    line-height: 0.95;
  }

  .hero-copy {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 22rem;
    text-align: center;
  }

  .music-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .music-card {
    min-height: 420px;
    border-radius: 22px;
  }

  .music-card iframe {
    min-height: 420px;
  }

  .contact-box {
    text-align: center;
    align-items: center;
    padding: 2rem 1.25rem;
  }

  .contact-box .button {
    width: 100%;
  }

  .section-intro,
  .about-copy,
  .contact-box {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .site-header {
    position: relative;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .eyebrow,
  .section-label {
    letter-spacing: 0.22em;
  }

  .section {
    padding: 3rem 1rem;
  }

  .music-card {
    min-height: 380px;
  }

  .music-card iframe {
    min-height: 380px;
  }

  .social-fab {
    width: 2.8rem;
    height: 2.8rem;
  }
}
