:root {
  --black: #0a0a0a;
  --blue: #00bfff;
  --purple: #7b2ff7;
  --red: #ff2e63;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --glass: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.14);
  --font-display: "Arial Black", "Impact", system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 191, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(123, 47, 247, 0.2), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(255, 46, 99, 0.14), transparent 34%),
    #0a0a0a;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 20px;
  align-content: center;
  background: #050505;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-logo {
  width: clamp(120px, 24vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 22px rgba(0, 191, 255, 0.45)) drop-shadow(0 0 36px rgba(255, 46, 99, 0.25));
  animation: logoPulse 1.6s ease-in-out infinite alternate;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 6rem);
  text-shadow: 0 0 22px var(--blue), 0 0 44px var(--purple);
}

.loader-bars,
.hero-visualizer {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 48px;
}

.loader-bars span,
.hero-visualizer span {
  width: 7px;
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(var(--blue), var(--purple), var(--red));
  animation: eq 1.1s ease-in-out infinite alternate;
}

.loader-bars span:nth-child(2n),
.hero-visualizer span:nth-child(2n) {
  animation-duration: 0.8s;
}

.loader-bars span:nth-child(3n),
.hero-visualizer span:nth-child(3n) {
  animation-duration: 1.35s;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.65;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(10, 10, 10, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 191, 255, 0.55);
  box-shadow: 0 0 22px rgba(0, 191, 255, 0.35), inset 0 0 18px rgba(123, 47, 247, 0.3);
  object-fit: cover;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav a:hover {
  color: var(--white);
  text-shadow: 0 0 16px var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding-top: 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.52), rgba(10, 10, 10, 0.14), rgba(10, 10, 10, 0.82)),
    linear-gradient(0deg, #0a0a0a 0%, rgba(10, 10, 10, 0.15) 42%, #0a0a0a 100%),
    url("assets/gallery-daw-station.jpg") center / cover;
  transform: scale(1.03);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(0, 191, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 47, 247, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(transparent, black 28%, black);
}

.hero-content {
  max-width: 1180px;
}

.hero-logo {
  width: clamp(132px, 18vw, 245px);
  aspect-ratio: 1;
  margin: 0 0 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
  box-shadow:
    0 0 24px rgba(0, 191, 255, 0.44),
    0 0 62px rgba(123, 47, 247, 0.32),
    0 0 96px rgba(255, 46, 99, 0.18);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  box-shadow: 0 0 14px var(--blue);
}

.logo-title,
h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.88;
}

.logo-title {
  max-width: 11ch;
  font-size: clamp(4rem, 15vw, 13rem);
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.8), 0 0 54px rgba(123, 47, 247, 0.7);
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.glitch::before {
  color: var(--blue);
  transform: translate(2px, -1px);
  clip-path: inset(0 0 58% 0);
  animation: glitch 3.8s infinite linear alternate;
}

.glitch::after {
  color: var(--red);
  transform: translate(-2px, 1px);
  clip-path: inset(58% 0 0 0);
  animation: glitch 2.8s infinite linear alternate-reverse;
}

.subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  font-weight: 700;
}

.subtitle span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.rotator {
  min-height: 38px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.15rem, 3vw, 2.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.dm-btn:hover,
.social-hub a:hover,
.service-grid article:hover,
.genre-card:hover {
  transform: translateY(-4px);
}

.primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 0 28px rgba(0, 191, 255, 0.42);
}

.secondary {
  background: linear-gradient(135deg, var(--purple), var(--red));
  box-shadow: 0 0 28px rgba(255, 46, 99, 0.34);
}

.ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-visualizer {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 32px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
}

h2 {
  font-size: clamp(2.5rem, 7vw, 6.8rem);
}

.copy-stack {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.genre-grid,
.service-grid,
.booking-layout,
.testimonial-grid,
.social-hub,
.feed-preview {
  display: grid;
  gap: 16px;
}

.genre-grid {
  grid-template-columns: repeat(13, minmax(180px, 1fr));
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.genre-card,
.service-grid article,
.booking-card,
.booking-note,
.beat-card,
.license-card,
.testimonial-grid article,
.social-hub a,
.feed-preview article,
.contact-shell {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.genre-card {
  position: relative;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.genre-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-gradient);
  opacity: 0.45;
  transition: opacity 0.25s ease;
}

.genre-card:hover::before {
  opacity: 0.75;
}

.genre-card h3,
.genre-card p,
.genre-wave {
  position: relative;
}

.genre-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

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

.genre-wave {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 54px;
  margin-top: 42px;
}

.genre-wave span {
  width: 5px;
  height: calc(var(--h) * 1%);
  background: var(--white);
  box-shadow: 0 0 16px var(--blue);
  animation: wave 1.2s ease-in-out infinite alternate;
}

.beat-store {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.94)),
    radial-gradient(circle at 20% 28%, rgba(255, 46, 99, 0.13), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(0, 191, 255, 0.12), transparent 34%);
}

.beat-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 1fr) minmax(280px, 0.86fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(18px, 3vw, 30px);
}

.beat-card + .beat-card {
  margin-top: 22px;
}

.beat-art {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 0 42px rgba(0, 191, 255, 0.14), 0 0 70px rgba(123, 47, 247, 0.12);
}

.beat-art img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.beat-card:hover .beat-art img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.06);
}

.beat-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beat-info h3 {
  margin: 20px 0 12px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 0.95;
  font-family: var(--font-display);
}

.beat-info p {
  color: var(--muted);
  line-height: 1.7;
}

.beat-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.beat-meta span {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.beat-meta strong {
  color: var(--blue);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.license-grid {
  display: grid;
  gap: 12px;
}

.license-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.license-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 34px rgba(0, 191, 255, 0.16);
}

.license-card.loading {
  pointer-events: none;
  opacity: 0.72;
}

.license-card span {
  font-weight: 900;
}

.license-card strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.license-card em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}

.license-card.exclusive {
  border-color: rgba(255, 46, 99, 0.42);
  background: linear-gradient(145deg, rgba(255, 46, 99, 0.14), rgba(123, 47, 247, 0.08));
}

.checkout-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.payment-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.92)),
    url("assets/gallery-daw-station.jpg") center / cover;
}

.payment-panel {
  width: min(100%, 760px);
  padding: clamp(26px, 6vw, 62px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.payment-panel .brand-logo {
  margin-bottom: 24px;
}

.payment-panel h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.payment-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.download-box {
  display: grid;
  gap: 12px;
  margin: 24px 0 18px;
  padding: 18px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  background: rgba(0, 191, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 34px rgba(0, 191, 255, 0.12);
}

.download-box strong {
  font-size: 1.12rem;
}

.download-box span,
.support-note {
  color: var(--muted);
}

.download-box .btn {
  width: fit-content;
  margin-top: 4px;
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.52;
  filter: grayscale(0.45);
}

.license-body {
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 191, 255, 0.16), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(123, 47, 247, 0.18), transparent 34%),
    #070707;
}

.license-page {
  width: min(100%, 1120px);
  margin: auto;
  padding: clamp(22px, 5vw, 56px);
}

.license-document {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 5vw, 58px);
  border: 1px solid rgba(0, 191, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(0, 191, 255, 0.08), rgba(123, 47, 247, 0.08), rgba(255, 46, 99, 0.06));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.54), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.license-document::before {
  content: "13HARPXMUSIC";
  position: absolute;
  right: -20px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 10rem);
  pointer-events: none;
}

.license-header,
.license-footer,
.license-summary,
.license-meta {
  position: relative;
  display: grid;
  gap: 16px;
}

.license-header {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.license-header .brand-logo {
  width: 82px;
  height: 82px;
}

.license-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
}

.license-alert {
  position: relative;
  margin: 28px 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 46, 99, 0.36);
  color: var(--muted);
  background: rgba(255, 46, 99, 0.08);
  font-weight: 900;
}

.license-alert.ready {
  border-color: rgba(0, 191, 255, 0.4);
  background: rgba(0, 191, 255, 0.08);
  color: var(--blue);
}

.license-summary,
.license-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0;
}

.license-summary div,
.license-meta div {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.22);
}

.license-summary span,
.license-meta span,
.license-footer span {
  color: var(--muted);
}

.license-summary strong,
.license-meta strong {
  overflow-wrap: anywhere;
}

.license-grid-text {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.license-grid-text article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
}

.license-grid-text h2 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.2;
}

.license-grid-text p,
.license-grid-text li {
  color: var(--muted);
  line-height: 1.7;
}

.license-footer {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.license-footer div {
  display: grid;
  gap: 6px;
}

.license-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

.service-grid article,
.booking-card,
.testimonial-grid article,
.feed-preview article {
  padding: 24px;
  min-height: 190px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.booking {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.34), rgba(10, 10, 10, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(0, 191, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 46, 99, 0.12), transparent 32%);
}

.booking-layout {
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  align-items: stretch;
}

.booking-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.12), transparent 40%, rgba(255, 46, 99, 0.1));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 255, 0.44);
}

.booking-card:hover::before,
.booking-card.featured::before {
  opacity: 1;
}

.booking-card.featured {
  border-color: rgba(0, 191, 255, 0.42);
  box-shadow: 0 0 48px rgba(0, 191, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.booking-tag,
.booking-card h3,
.booking-card p,
.booking-card ul,
.booking-card .btn {
  position: relative;
}

.booking-tag {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(0, 191, 255, 0.36);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(0, 191, 255, 0.08);
}

.booking-card h3 {
  margin: 24px 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

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

.booking-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.booking-card li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
}

.booking-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 46, 99, 0.8);
}

.booking-card .btn {
  margin-top: auto;
}

.booking-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 24px;
  color: var(--muted);
  line-height: 1.6;
}

.booking-note strong {
  color: var(--white);
  white-space: nowrap;
}

.service-grid h3,
.testimonial-grid p,
.feed-preview span {
  margin-top: 0;
}

.service-grid p,
.testimonial-grid p,
.feed-preview p,
.contact-shell p {
  color: var(--muted);
  line-height: 1.7;
}

.masonry {
  columns: 3 250px;
  column-gap: 16px;
}

.tile {
  position: relative;
  display: block;
  height: 250px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.tile.tall {
  height: 520px;
}

.tile.wide {
  height: 330px;
}

.tile img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.35);
}

.art-tile {
  display: grid;
  align-content: end;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(0, 191, 255, 0.18), rgba(123, 47, 247, 0.38)),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, 0.08) 12px 14px);
}

.art-tile.red {
  background:
    linear-gradient(160deg, rgba(255, 46, 99, 0.2), rgba(123, 47, 247, 0.34)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.art-tile span {
  color: var(--blue);
  font-weight: 900;
}

.art-tile strong {
  font-size: 2.7rem;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.testimonial-grid article {
  min-height: 280px;
}

.testimonial-grid p {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.testimonial-person {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.testimonial-person > img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 28px rgba(0, 191, 255, 0.22), 0 0 36px rgba(123, 47, 247, 0.18);
  object-fit: cover;
  object-position: center 22%;
}

.testimonial-person strong {
  display: block;
  font-size: 1.08rem;
}

.testimonial-person span {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-weight: 900;
}

.social-hub {
  grid-template-columns: repeat(6, 1fr);
}

.social-hub a {
  display: grid;
  gap: 10px;
  min-height: 142px;
  padding: 18px;
  align-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.48));
}

.social-icon.large {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--blue);
  filter:
    drop-shadow(0 0 10px rgba(0, 191, 255, 0.62))
    drop-shadow(0 0 18px rgba(123, 47, 247, 0.42));
}

.social-hub a:hover .social-icon.large {
  color: var(--white);
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 28px rgba(255, 46, 99, 0.42));
}

.social-hub span {
  color: var(--muted);
}

.social-hub strong {
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.feed-preview {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.contact {
  background:
    linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.9)),
    url("assets/gallery-mixing-console.jpg") center / cover fixed;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  max-width: 1180px;
  margin: auto;
  padding: clamp(22px, 5vw, 56px);
}

.contact-shell h2 {
  margin-bottom: 22px;
}

.dm-btn,
.email-link {
  margin-top: 14px;
}

.dm-btn {
  background: linear-gradient(135deg, var(--purple), var(--red));
}

.email-link {
  display: block;
  color: var(--blue);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.16);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.social-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 20;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-rail a,
.mobile-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 191, 255, 0.35);
  background: rgba(10, 10, 10, 0.64);
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.social-rail a:hover,
.mobile-social a:hover {
  color: var(--white);
  border-color: rgba(255, 46, 99, 0.58);
  box-shadow: 0 0 22px rgba(0, 191, 255, 0.28), 0 0 32px rgba(255, 46, 99, 0.2);
  transform: translateY(-2px);
}

.mobile-social {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 25;
  display: none;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.78);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

@keyframes eq {
  to {
    height: 46px;
  }
}

@keyframes wave {
  to {
    transform: scaleY(0.35);
    opacity: 0.62;
  }
}

@keyframes slowZoom {
  to {
    transform: scale(1.09);
  }
}

@keyframes glitch {
  0%, 92%, 100% {
    transform: translate(0);
  }
  94% {
    transform: translate(5px, -2px);
  }
  96% {
    transform: translate(-5px, 2px);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

@keyframes logoPulse {
  to {
    transform: scale(1.035);
    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.58)) drop-shadow(0 0 48px rgba(255, 46, 99, 0.34));
  }
}

@media (max-width: 1100px) {
  .service-grid,
  .booking-layout,
  .social-hub {
    grid-template-columns: repeat(2, 1fr);
  }

  .beat-card,
  .split,
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 67px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 92svh;
  }

  .logo-title {
    font-size: clamp(3.25rem, 18vw, 6rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visualizer,
  .social-rail {
    display: none;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-grid,
  .booking-layout,
  .testimonial-grid,
  .social-hub,
  .feed-preview,
  .license-summary,
  .license-meta,
  .license-grid-text,
  .license-footer {
    grid-template-columns: 1fr;
  }

  .license-header {
    grid-template-columns: 1fr;
  }

  .booking-card {
    min-height: auto;
  }

  .booking-note {
    display: grid;
  }

  .beat-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-social {
    display: flex;
  }

  footer {
    flex-direction: column;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #111111;
  }

  body::before,
  .license-actions {
    display: none;
  }

  .license-page {
    width: 100%;
    padding: 0;
  }

  .license-document {
    border: 0;
    box-shadow: none;
    background: #ffffff;
    color: #111111;
  }

  .license-alert,
  .license-summary div,
  .license-meta div,
  .license-grid-text article {
    background: #ffffff;
    color: #111111;
    border-color: #cccccc;
  }

  .license-summary span,
  .license-meta span,
  .license-footer span,
  .license-grid-text p,
  .license-grid-text li {
    color: #333333;
  }
}

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