:root {
  --bg: #050509;
  --panel: rgba(14, 16, 24, 0.78);
  --panel-strong: rgba(19, 21, 33, 0.94);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f7fb;
  --muted: #a8b1c2;
  --ice: #8defff;
  --ice-soft: rgba(141, 239, 255, 0.16);
  --acid: #d6ff36;
  --acid-soft: rgba(214, 255, 54, 0.16);
  --player-height: 116px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: var(--player-height);
  background: radial-gradient(circle at 8% 8%, rgba(141, 239, 255, 0.11), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(214, 255, 54, 0.08), transparent 30%),
    linear-gradient(135deg, #050509 0%, #0a0b11 58%, #11120f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("../img/Abstract-Texture-HD-Wallpapers-11.jpg");
  background-size: cover;
  mix-blend-mode: screen;
  filter: contrast(130%) saturate(80%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 9, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 98px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a,
.ghost,
.solid,
.filter-button,
.menu-toggle,
.player-toggle,
.form-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.ghost:hover,
.solid:hover,
.filter-button:hover,
.menu-toggle:hover,
.player-toggle:hover,
.form-button:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 239, 255, 0.72);
  background: rgba(141, 239, 255, 0.12);
  color: #ffffff;
}

.main-nav a.active,
.solid,
.filter-button.active,
.form-button {
  border-color: transparent;
  background: var(--acid);
  color: #030407;
  font-weight: 800;
}

.solid:hover,
.form-button:hover,
.filter-button.active:hover,
.main-nav a.active:hover {
  border-color: rgba(141, 239, 255, 0.72);
  background: rgba(141, 239, 255, 0.14);
  color: #ffffff;
}

.menu-toggle {
  display: none;
}

.app {
  min-height: 70vh;
}

.section {
  padding: clamp(56px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.section.compact {
  padding-top: 44px;
}

.inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 142px) clamp(18px, 5vw, 72px) clamp(54px, 7vw, 96px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 5, 9, 0.95), rgba(5, 5, 9, 0.55), rgba(5, 5, 9, 0.22)),
    url("../img/talis-wall-balls.jpg") center / cover;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 930px;
  font-size: clamp(58px, 10vw, 164px);
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 720px;
  color: #dce3ef;
  font-size: clamp(18px, 2.1vw, 27px);
  line-height: 1.35;
}

.hero-actions,
.action-row,
.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.signal-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(16px);
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.signal-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.signal-card p {
  color: var(--muted);
}

.eyebrow {
  display: block;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  color: var(--ice);
  font-weight: 900;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.page-hero h1,
.detail-title {
  margin: 0;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.94;
  text-transform: uppercase;
}

.section-head p,
.page-hero p,
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.artist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(141, 239, 255, 0.58);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.card-media {
  height: 230px;
  overflow: hidden;
  background: #111;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.artist-grid .card-media img {
  filter: grayscale(1) contrast(1.08);
}

.silhouette-media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(141, 239, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(141, 239, 255, 0.12), rgba(214, 255, 54, 0.1)),
    #080a0f;
}

.silhouette {
  width: min(52%, 150px);
  aspect-ratio: 1 / 1.28;
  position: relative;
  opacity: 0.92;
}

.silhouette::before,
.silhouette::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #020306;
  border: 1px solid rgba(141, 239, 255, 0.2);
}

.silhouette::before {
  top: 0;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.silhouette::after {
  bottom: 0;
  width: 82%;
  height: 62%;
  border-radius: 48% 48% 12% 12%;
}

.you-card {
  border-color: rgba(214, 255, 54, 0.32);
}

.card:hover .card-media img {
  transform: scale(1.08);
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
}

.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 12px;
}

.feature-band {
  background: linear-gradient(135deg, rgba(141, 239, 255, 0.11), rgba(214, 255, 54, 0.1)),
    url("../img/TALIS-009-wallpaper.jpg") center / cover fixed;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.image-slab {
  min-height: 520px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
}

.page-hero {
  padding: clamp(88px, 12vw, 160px) clamp(18px, 5vw, 72px) 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.artist-hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  padding: clamp(88px, 12vw, 156px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}

.neo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 5, 9, 0.96), rgba(5, 5, 9, 0.62), rgba(5, 5, 9, 0.18)),
    url("../img/Neo-Lectro.png") center / cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.03);
}

.neo-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.artist-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
}

.artist-hero h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 172px);
  line-height: 0.84;
  text-transform: uppercase;
}

.artist-portrait {
  border: 1px solid rgba(141, 239, 255, 0.34);
  border-radius: 8px;
  padding: 10px;
  background: rgba(5, 6, 11, 0.68);
  backdrop-filter: blur(16px);
}

.artist-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(1) contrast(1.12);
}

.neo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.platform-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-link:hover {
  transform: translateY(-3px);
  border-color: rgba(141, 239, 255, 0.72);
  background: rgba(141, 239, 255, 0.1);
}

.platform-link strong {
  color: var(--acid);
}

.neo-slab {
  filter: grayscale(1) contrast(1.05);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.detail-cover {
  position: sticky;
  top: 98px;
}

.detail-cover img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.detail-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  padding: clamp(20px, 4vw, 34px);
}

.track-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.track-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #dce3ef;
}

.embed-wrap {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #07080d;
}

.embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 166px;
  border: 0;
}

.audio-card audio {
  width: 100%;
  margin-top: 16px;
  accent-color: var(--acid);
}

.seo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

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

.form-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 12px;
}

.form-panel small {
  color: var(--muted);
  line-height: 1.5;
}

.form-panel input[type="file"] {
  border-style: dashed;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
  font-size: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

.player-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  height: var(--player-height);
  padding: 12px clamp(14px, 4vw, 54px);
  border-top: 1px solid rgba(141, 239, 255, 0.34);
  background: rgba(5, 6, 11, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 44px rgba(141, 239, 255, 0.08);
  transition: height 240ms ease, padding 240ms ease, transform 240ms ease;
}

.player-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.player-dock iframe {
  width: 100%;
  height: 92px;
  border: 0;
  border-radius: 6px;
  background: #111;
  transition: opacity 180ms ease, height 240ms ease;
}

.player-dock.collapsed {
  height: 36px;
  grid-template-columns: 1fr;
  padding-top: 0;
  padding-bottom: 0;
}

.player-dock.collapsed iframe,
.player-dock.collapsed .player-meta .eyebrow,
.player-dock.collapsed .player-meta strong {
  display: none;
}

.player-dock.collapsed .player-meta {
  justify-content: center;
}

.empty-state {
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .artist-hero-grid,
  .section-head,
  .split,
  .detail-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .artist-grid,
  .neo-link-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-cover {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --player-height: 182px;
  }

  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 9, 0.96);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 840px;
  }

  .hero h1,
  .artist-hero h1,
  .page-hero h1 {
    font-size: 56px;
  }

  .card-grid,
  .artist-grid,
  .neo-link-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .player-dock {
    grid-template-columns: 1fr;
    height: var(--player-height);
  }

  .player-dock iframe {
    height: 102px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
