:root {
  color-scheme: dark;
  --accent: #7ff3ff;
  --accent-rgb: 127, 243, 255;
  --bg-a: #040404;
  --bg-b: #101010;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.12), transparent 46%),
    linear-gradient(180deg, var(--bg-a), var(--bg-b));
  color: #ffffff;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.floaty-field {
  position: fixed;
  inset: -12vh 0 0 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floaty {
  position: absolute;
  top: -12vh;
  left: var(--left, 50%);
  font-size: var(--size, 80px);
  opacity: var(--opacity, 0.15);
  animation:
    floaty-fall var(--duration, 44s) linear infinite,
    floaty-fade var(--duration, 44s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: blur(var(--blur, 0px));
}

@keyframes floaty-fall {
  from {
    transform: translate3d(0, -120vh, 0) rotate(0deg);
  }

  to {
    transform: translate3d(var(--drift, 0vw), 120vh, 0) rotate(var(--spin, 320deg));
  }
}

@keyframes floaty-fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: var(--opacity, 0.15);
  }

  90% {
    opacity: var(--opacity, 0.15);
  }

  100% {
    opacity: 0;
  }
}

main {
  position: relative;
  z-index: 1;
  width: min(94vw, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 4vw, 34px);
  padding: clamp(112px, 18vh, 180px) clamp(16px, 6vw, 48px) clamp(72px, 14vh, 136px);
  text-align: center;
}

.artist-logo,
.artist-mark {
  width: clamp(180px, 30vw, 320px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.56));
}

.artist-logo {
  height: auto;
}

.artist-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.2), rgba(255, 255, 255, 0.03)),
    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 18px 42px rgba(0, 0, 0, 0.48);
  font-size: clamp(32px, 8vw, 74px);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
}

.artist-name {
  margin: 0;
  font-size: clamp(34px, 10vw, 72px);
  letter-spacing: clamp(0.06em, 1vw, 0.16em);
  text-transform: uppercase;
  font-weight: 800;
}

.artist-tagline {
  margin: 0;
  max-width: min(100%, 760px);
  min-height: 1.4em;
  font-size: clamp(16px, 3.4vw, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.artist-tagline.is-glitch {
  color: var(--accent);
  text-shadow: 1px 0 8px rgba(var(--accent-rgb), 0.7), -1px 0 8px rgba(255, 255, 255, 0.25);
}

.services-grid {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: clamp(8px, 1.8vw, 14px);
}

.service-card {
  position: relative;
  min-width: 0;
  padding: clamp(10px, 2vw, 16px);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1.6vw, 12px);
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.48);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.2s ease,
    background 0.25s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6);
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.18), rgba(255, 255, 255, 0.05));
}

.service-card:active {
  transform: translateY(-1px);
  color: #ff8a3d;
  border-color: #ff8a3d;
}

.service-icon {
  width: clamp(30px, 7vw, 76px);
  height: clamp(30px, 7vw, 76px);
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.service-label {
  display: none;
}

.artist-note {
  margin: 0;
  width: min(100%, 700px);
  padding: clamp(16px, 3vw, 22px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.releases-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.releases-list li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(13px, 2.8vw, 16px);
}

.releases-list a {
  color: inherit;
  text-decoration: none;
}

.releases-list a:hover,
.releases-list a:focus-visible {
  color: var(--accent);
  outline: none;
}

.back-link {
  margin-top: clamp(10px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: clamp(14px, 2.8vw, 16px);
  transition: color 0.2s ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--accent);
  outline: none;
}

@media (max-width: 600px) {
  main {
    padding-top: clamp(96px, 16vh, 140px);
  }

  .artist-mark {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floaty {
    animation: none;
    opacity: 0;
  }

  .service-card {
    transition: none;
  }
}
