:root {
  --bg: #061018;
  --surface: #0d1a23;
  --surface2: #122531;
  --ink: #f4f7f8;
  --muted: #a9bbc3;
  --line: rgba(255, 255, 255, 0.1);
  --mint: #25d6a2;
  --blue: #378bd8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg) url("assets/bg_far.jpg") center top/cover fixed
    no-repeat;
  font:
    16px/1.65 Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 11, 17, 0.55),
    rgba(4, 11, 17, 0.94)
  );
  z-index: -2;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(5, 13, 20, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-weight: 900;
  letter-spacing: 0.16em;
}
.topbar nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}
.topbar nav a:hover {
  color: var(--ink);
}
.top-action {
  padding: 9px 15px;
  border: 1px solid rgba(37, 214, 162, 0.45);
  border-radius: 99px;
  color: var(--mint);
  font-weight: 700;
}
.hero {
  min-height: 760px;
  padding-top: 130px;
  display: grid;
  grid-template-columns: minmax(350px, 1fr) 1fr;
  align-items: center;
  gap: 70px;
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: 0.45;
}
.portrait-wrap {
  position: relative;
  isolation: isolate;
}
.portrait-glow {
  position: absolute;
  inset: 9% -8% -4%;
  background: radial-gradient(
    circle,
    rgba(37, 214, 162, 0.28),
    transparent 62%
  );
  filter: blur(35px);
  z-index: -1;
}
.portrait {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
}
.hero-art img {
  position: absolute;
  pointer-events: none;
  opacity: 0.32;
  filter: drop-shadow(0 0 28px rgba(37, 214, 162, 0.2));
  will-change: transform;
}
.clef {
  z-index: -1;
  width: 250px;
  left: -130px;
  top: 105px;
  animation: slowSpin 32s linear infinite;
}
.microphone {
  z-index: 3;
  width: 120px;
  right: auto;
  left: calc(50% - 58px);
  bottom: 64px;
  opacity: 0.72 !important;
  animation: floatMic 8s ease-in-out infinite;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.hero h1 {
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.98;
  margin: 0 0 28px;
  letter-spacing: -0.055em;
}
.hero-line {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.35;
  color: #c9d5da;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition:
    0.2s transform,
    0.2s background,
    0.2s box-shadow;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: linear-gradient(135deg, var(--mint), #1487a5);
  color: #03140f;
  box-shadow: 0 14px 34px rgba(37, 214, 162, 0.2);
}
.secondary {
  background: rgba(255, 255, 255, 0.045);
}
.play-mark {
  font-size: 12px;
  margin-right: 8px;
}
.mini-eq,
.live-eq,
.footer-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 42px;
  margin-top: 32px;
}
.eq-bar {
  display: block;
  width: 5px;
  min-height: 5px;
  border-radius: 6px;
  background: linear-gradient(to top, var(--blue), var(--mint));
  will-change: height;
}
.music-section,
.platform-section,
.about-section,
.contact-section {
  padding: 100px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading h2,
.about-copy h2,
.contact-section h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.035em;
}
.section-heading > p {
  max-width: 420px;
  color: var(--muted);
  margin: 0;
}
.player-card {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(18, 37, 49, 0.96),
    rgba(8, 19, 27, 0.94)
  );
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.now-playing {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.now-playing > img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 15px;
}
.now-playing div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.now-playing span,
.now-playing small {
  color: var(--muted);
  font-size: 12px;
}
.now-playing strong {
  font-size: 20px;
}
.live-eq {
  width: 100px;
  margin: 0;
}
.player-card iframe {
  display: block;
  width: 100%;
  height: 164px;
  border: 0;
  border-radius: 18px;
  background: #141414;
}
.track-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(380px, 100%);
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}
.search input {
  width: 100%;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}
.text-link {
  color: var(--mint);
  font-size: 14px;
}
.track-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 6px;
}
.track {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.track:hover,
.track.active {
  color: var(--ink);
  border-color: rgba(37, 214, 162, 0.24);
  background: rgba(37, 214, 162, 0.07);
}
.track-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
}
.track-duration {
  font-size: 12px;
}
.platform-heading { margin-bottom: 28px; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.platform-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, var(--service-glow, rgba(255,255,255,.08)), transparent 55%),
    rgba(255, 255, 255, 0.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.platform-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--service-color, var(--mint)) 58%, transparent);
}
.service-mark {
  width: 58px;
  height: 58px;
  display: grid !important;
  place-items: center;
  border-radius: 16px;
  background: var(--service-color, #111);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  overflow: hidden;
}
.service-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.yandex .service-mark { background: #111; }
.yandex .service-mark img { width: 48px; height: 48px; }
.vk-music .service-mark { background: #2787f5; }
.vk-music .service-mark img,
.apple .service-mark img,
.youtube-music .service-mark img,
.tidal .service-mark img { filter: brightness(0) invert(1); }
.zvuk .service-mark { background: #9cff00; }
.zvuk .service-mark img { width: 58px; height: 58px; border-radius: 0; }
.spotify .service-mark { background: #1ed760; }
.spotify .service-mark img { width: 38px; height: 38px; }
.apple .service-mark { background: linear-gradient(145deg,#fb5b74,#fa233b); }
.youtube-music .service-mark { background: #ff0033; }
.amazon .service-mark { background: #25d1da; }
.amazon .service-mark img { width: 58px; height: 58px; border-radius: 0; }
.tidal .service-mark { background: #050505; }
.service-wordmark {
  color: #fff;
  background: linear-gradient(145deg,#ff165d,#7428ff);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.platform-card > span:not(.service-mark) {
  display: flex;
  flex-direction: column;
}
.platform-card b { font-size: 15px; }
.platform-card small {
  color: var(--muted);
  margin-top: 3px;
}
.platform-card i {
  color: var(--service-color, var(--mint));
  font-style: normal;
  font-size: 18px;
}
.yandex { --service-color:#ffd633; --service-glow:rgba(255,214,51,.15); }
.vk-music { --service-color:#2787f5; --service-glow:rgba(39,135,245,.16); }
.zvuk { --service-color:#9cff00; --service-glow:rgba(156,255,0,.12); }
.spotify { --service-color:#1ed760; --service-glow:rgba(30,215,96,.14); }
.apple { --service-color:#fa2d48; --service-glow:rgba(250,45,72,.13); }
.youtube-music { --service-color:#ff0033; --service-glow:rgba(255,0,51,.13); }
.amazon { --service-color:#25d1da; --service-glow:rgba(37,209,218,.13); }
.tidal { --service-color:#fff; --service-glow:rgba(255,255,255,.1); }
.kion { --service-color:#d44dff; --service-glow:rgba(212,77,255,.14); }
.about-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-quote {
  position: relative;
  padding: 38px;
  border-left: 2px solid var(--mint);
  background: linear-gradient(90deg, rgba(37, 214, 162, 0.07), transparent);
}
.about-quote > span {
  position: absolute;
  top: -18px;
  left: 20px;
  color: var(--mint);
  font:
    100px/1 Georgia,
    serif;
  opacity: 0.38;
}
.about-quote blockquote {
  font:
    italic 25px/1.5 Georgia,
    serif;
  margin: 0;
}
.about-copy > p {
  color: var(--muted);
}
details {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 18px;
}
summary {
  cursor: pointer;
  color: var(--mint);
  font-weight: 800;
}
.bio-text {
  color: var(--muted);
}
.contact-section {
  text-align: center;
  border-top: 1px solid var(--line);
}
.contact-section .hero-actions {
  justify-content: center;
  margin-top: 28px;
}
footer {
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-wave {
  justify-content: center;
  margin: 0 auto 24px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.ambient span {
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.09;
}
.ambient span:nth-child(1) {
  background: var(--mint);
  top: 18%;
  left: -160px;
}
.ambient span:nth-child(2) {
  background: var(--blue);
  top: 55%;
  right: -180px;
}
.ambient span:nth-child(3) {
  background: #8844ee;
  bottom: -160px;
  left: 35%;
}
@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatMic {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}
@media (max-width: 900px) {
  .topbar nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 80px;
    gap: 28px;
  }
  .portrait-wrap {
    width: min(520px, 88vw);
    margin: auto;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .mini-eq {
    justify-content: center;
  }
  .clef {
    width: 150px;
    left: -55px;
    top: 100px;
    opacity: 0.22 !important;
  }
  .microphone {
    width: 112px;
    right: 4px;
    left: auto;
    bottom: 18px;
    opacity: 0.48 !important;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 26px, 1160px);
  }
  .topbar {
    height: 62px;
    padding: 0 14px;
  }
  .brand {
    font-size: 13px;
  }
  .top-action {
    font-size: 13px;
  }
  .hero {
    padding-top: 88px;
  }
  .hero h1 {
    font-size: clamp(34px, 10.7vw, 50px);
    letter-spacing: -0.045em;
  }
  .hero-line {
    font-size: 20px;
  }
  .portrait {
    border-radius: 24px;
  }
  .button {
    width: 100%;
  }
  .music-section,
  .platform-section,
  .about-section,
  .contact-section {
    padding: 72px 0;
  }
  .player-card {
    padding: 14px;
    border-radius: 20px;
  }
  .now-playing {
    grid-template-columns: 56px 1fr;
  }
  .now-playing > img {
    width: 56px;
    height: 56px;
  }
  .live-eq {
    display: none;
  }
  .player-card iframe {
    height: 190px;
  }
  .track-tools {
    align-items: stretch;
    flex-direction: column;
  }
  .track-list {
    grid-template-columns: 1fr;
    max-height: 420px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .microphone {
    display: block;
    width: 96px;
    right: 4px;
    left: auto;
    bottom: 10px;
  }
  .clef {
    display: block;
  }
  .about-quote {
    padding: 30px 24px;
  }
  .about-quote blockquote {
    font-size: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .clef,
  .microphone {
    animation-duration: 60s;
  }
  .eq-bar {
    transition: none;
  }
}

/* Hero artwork is decorative and must not occupy a grid cell. */
.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.portrait-wrap {
  grid-column: 2;
  grid-row: 1;
}
.hero-copy {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 900px) {
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .portrait-wrap {
    grid-column: 1;
    grid-row: 2;
  }
}
