:root {
  color-scheme: dark;
  --bg: #070909;
  --bg-soft: #0b0f0f;
  --surface: #101414;
  --surface-raised: #141919;
  --ink: #f6f8f8;
  --muted: #a0aaaa;
  --muted-dark: #6f7a7a;
  --turquoise: #00e7db;
  --turquoise-light: #7dfff8;
  --line: rgba(185, 255, 251, 0.14);
  --line-strong: rgba(0, 231, 219, 0.42);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 24px;
  --radius-md: 17px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--turquoise); color: #001817; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--turquoise);
  color: #001817;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: var(--line);
  background: rgba(7, 9, 9, 0.91);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 62px;
  display: grid;
  place-items: center;
}

.brand-link img { width: 100%; height: 100%; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: #ced5d5;
  font-size: 0.92rem;
  font-weight: 620;
}

.main-nav a {
  position: relative;
  padding: 11px 0;
  transition: color 170ms ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--turquoise);
  transition: right 170ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible { color: var(--turquoise-light); }
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }

.nav-cta {
  min-width: 82px;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--turquoise-light);
}

.nav-cta:hover,
.nav-cta:focus-visible { background: rgba(0, 231, 219, 0.09); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 70px 24px 55px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent 20%), radial-gradient(circle at 50% 108%, rgba(0, 231, 219, 0.08), transparent 38%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 1px;
  height: 54%;
  top: 17%;
  background: linear-gradient(transparent, rgba(0, 231, 219, 0.2), transparent);
}

.hero::before { left: 8%; }
.hero::after { right: 8%; }

.hero-glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 46%;
  width: min(820px, 82vw);
  aspect-ratio: 1.65;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 231, 219, 0.12), rgba(0, 231, 219, 0.03) 40%, transparent 72%);
  filter: blur(18px);
}

.hero-inner { width: min(880px, 100%); margin: auto; text-align: center; }

.hero-logo {
  width: min(455px, 70vw);
  height: auto;
  aspect-ratio: 1;
  margin: -95px auto -55px;
  object-fit: contain;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.34));
}

.hero-kicker {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.18;
}

.hero-copy {
  max-width: 720px;
  margin: 10px auto 0;
  color: #aeb8b8;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.75;
  text-wrap: balance;
}

.section-shell { width: var(--shell); margin: 0 auto; }
.music-section { padding: 82px 0 118px; background: var(--bg-soft); }

.music-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--turquoise);
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.18em;
}

.music-heading h1,
.platforms-heading h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.45rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 760;
}

.section-subtitle { margin: 14px 0 0; color: var(--muted); font-size: 1rem; }

.search-field {
  flex: 0 1 340px;
  height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  transition: border-color 170ms ease, box-shadow 170ms ease;
}

.search-field:focus-within { border-color: var(--line-strong); box-shadow: 0 0 0 3px rgba(0, 231, 219, 0.08); }

.search-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--muted-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.96rem;
}

.search-field input::placeholder { color: #778080; }

.catalog-meta {
  min-height: 48px;
  margin-top: 38px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.catalog-meta p { margin: 0; }

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

.song-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface));
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.song-card:hover,
.song-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 231, 219, 0.32);
  box-shadow: 0 22px 60px rgba(0,0,0,0.26);
}

.cover-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, rgba(0, 231, 219, 0.13), transparent 45%), #090d0d;
}

.cover-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 25%;
  background: linear-gradient(transparent, rgba(5,8,8,0.38));
  pointer-events: none;
}

.cover-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.song-card:hover .cover-image { transform: scale(1.018); }

.cover-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 12%;
}

.cover-fallback img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.36)); }
.cover-shell.image-failed .cover-image { display: none; }
.song-body { padding: 19px 18px 18px; }
.song-copy { min-height: 58px; }

.song-copy h3 {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 720;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-copy p { margin: 5px 0 0; color: var(--muted); font-size: 0.84rem; }

.song-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.song-action {
  min-width: 0;
  min-height: 39px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #bdc6c6;
  font-size: 0.76rem;
  font-weight: 680;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.song-action:hover,
.song-action:focus-visible { border-color: var(--line-strong); background: rgba(0, 231, 219, 0.06); color: var(--turquoise-light); }

.empty-state { min-height: 360px; padding: 40px; text-align: center; place-items: center; align-content: center; }
.empty-state:not([hidden]) { display: grid; }
.empty-state img { width: 150px; height: 150px; object-fit: contain; margin-bottom: -24px; }
.empty-state h2 { margin: 0; font-size: 1.4rem; }
.empty-state p { margin: 8px 0 0; color: var(--muted); }

.platforms-section {
  padding: 62px 0 76px;
  border-bottom: 1px solid var(--line);
  background: #080b0b;
}

.platforms-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.platforms-heading p { max-width: 430px; margin: 0 0 4px; color: var(--muted); line-height: 1.7; }
.platform-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.platform-card {
  min-height: 144px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 170ms ease, transform 170ms ease, background-color 170ms ease;
}

.platform-card:hover,
.platform-card:focus-visible { transform: translateY(-3px); border-color: var(--line-strong); background: rgba(0, 231, 219, 0.045); }

.platform-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 12px;
}

.platform-symbol svg { display: block; width: 100%; height: 100%; }
.spotify-symbol { border-radius: 50%; }
.youtube-symbol { overflow: visible; }
.platform-card strong { display: block; font-size: 1.08rem; }
.platform-card small { display: block; margin-top: 5px; color: var(--muted); font-size: 0.78rem; }
.platform-card b { color: var(--muted-dark); font-size: 1.15rem; font-weight: 400; }

.about-section { padding: 118px 0; background: var(--bg); }

.about-card {
  min-height: 480px;
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 7vw;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 86% 50%, rgba(0, 231, 219, 0.08), transparent 29%), linear-gradient(135deg, #111616, #0d1111);
  box-shadow: var(--shadow);
}

.about-copy p:last-child {
  max-width: 670px;
  margin: 28px 0 0;
  color: #aeb8b8;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.82;
}

.about-logo-wrap { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.about-logo-wrap img { position: relative; z-index: 2; width: 95%; height: 95%; object-fit: contain; }

.about-ring {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(0, 231, 219, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(0, 231, 219, 0.08), inset 0 0 50px rgba(0, 231, 219, 0.04);
}

.site-footer { border-top: 1px solid var(--line); background: #050707; }

.footer-inner {
  width: var(--shell);
  min-height: 150px;
  margin: 0 auto;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-logo { width: 116px; height: 75px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 28px; color: #b5bebe; font-size: 0.86rem; }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--turquoise-light); }
.footer-inner > p { margin: 0; color: var(--muted-dark); font-size: 0.78rem; text-align: right; }
:focus-visible { outline: 2px solid var(--turquoise); outline-offset: 3px; }

@media (max-width: 980px) {
  .hero { padding: 55px 20px 45px; }
  .hero-logo { margin-top: -80px; margin-bottom: -55px; }
  .song-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platforms-heading { align-items: start; flex-direction: column; gap: 20px; }
  .platform-card { min-height: 112px; }
  .about-card { grid-template-columns: 1fr 300px; gap: 4vw; }
  .footer-inner { grid-template-columns: auto 1fr; }
  .footer-inner > p { grid-column: 1 / -1; text-align: left; }
  .footer-links { justify-content: flex-end; }
}

@media (max-width: 740px) {
  :root { --shell: min(100% - 32px, 1180px); }
  html { scroll-padding-top: 72px; }
  .site-header { height: 72px; }
  .brand-link { width: 108px; height: 56px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    padding: 18px 16px 26px;
    display: grid;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 9, 0.98);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { min-height: 48px; padding: 13px 16px; border-radius: 10px; }
  .main-nav a:hover { background: rgba(0, 231, 219, 0.05); }
  .main-nav a::after { display: none; }
  .nav-cta { width: 100%; margin-top: 6px; }
  .hero { padding: 35px 16px; }
  .hero-logo { width: min(395px, 88vw); margin: -120px auto -43px; }
  .hero-kicker { letter-spacing: 0.08em; }
  .hero-copy { margin-top: 8px; line-height: 1.65; }
  .music-section,
  .about-section { padding-block: 82px; }
  .platforms-section { padding-block: 54px 64px; }
  .music-heading { align-items: start; flex-direction: column; }
  .search-field { width: 100%; flex-basis: 52px; }
  .catalog-meta { margin-top: 28px; }
  .song-grid { gap: 13px; }
  .song-body { padding: 15px 13px 14px; }
  .song-copy { min-height: 56px; }
  .song-copy h3 { font-size: 0.96rem; }
  .song-actions { grid-template-columns: 1fr 1fr; }
  .song-action:last-child { grid-column: 1 / -1; }
  .platform-grid { margin-top: 34px; }
  .platform-grid { grid-template-columns: 1fr; }
  .about-card { min-height: 0; grid-template-columns: 1fr; gap: 24px; }
  .about-logo-wrap { width: min(330px, 85vw); margin: -20px auto -35px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; padding-block: 34px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
  .footer-inner > p { grid-column: auto; text-align: center; }
}

@media (max-width: 440px) {
  :root { --shell: calc(100% - 24px); }
  .hero-logo { width: min(390px, 102vw); margin: -120px -1vw -43px; }
  .hero-kicker { font-size: 1.28rem; line-height: 1.3; }
  .song-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .song-copy h3 { font-size: 0.9rem; }
  .song-action { min-height: 40px; font-size: 0.7rem; padding-inline: 5px; }
  .platform-card { padding: 19px; gap: 13px; }
  .platform-symbol { width: 42px; height: 42px; flex-basis: 42px; }
  .about-card { padding: 29px 24px; }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
