/* ============================================================
   AMP Studios — Red, White & Blue Cloud of Music Aesthetic
   ============================================================ */

:root {
  --bg:           #050810;
  --bg-surface:   #09101f;
  --bg-card:      #0d1628;
  --bg-card-hover:#121e38;
  --blue:         #1c6fff;
  --blue-bright:  #4a8dff;
  --blue-dim:     rgba(28, 111, 255, 0.5);
  --red:          #e81f2e;
  --red-bright:   #ff3347;
  --red-dim:      rgba(232, 31, 46, 0.5);
  --white:        #f0f4ff;
  --white-dim:    rgba(240, 244, 255, 0.65);
  --text:         #e8eeff;
  --text-muted:   #7a8db0;
  --text-dim:     #2e3a5a;
  --border:       rgba(28, 111, 255, 0.1);
  --border-hover: rgba(28, 111, 255, 0.35);
  --glow-blue:    0 0 20px rgba(28, 111, 255, 0.22);
  --glow-blue-md: 0 0 40px rgba(28, 111, 255, 0.28), 0 0 80px rgba(28, 111, 255, 0.1);
  --glow-red:     0 0 40px rgba(232, 31, 46, 0.28), 0 0 80px rgba(232, 31, 46, 0.1);
  --font-display:   'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;
}

/* ——— Custom Cloud Cursor ————————————————————————————————— */
*, *::before, *::after {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='24' viewBox='0 0 32 24'%3E%3Cdefs%3E%3Cfilter id='s' x='-10%25' y='-10%25' width='120%25' height='120%25'%3E%3CfeDropShadow dx='0' dy='1' stdDeviation='1' flood-color='%231c6fff' flood-opacity='0.5'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M6.5 20C3.5 20 1 17.7 1 14.8c0-2.4 1.7-4.5 4-5 .3-3.5 3.2-6.3 6.8-6.3 2.8 0 5.2 1.7 6.3 4.1.7-.3 1.5-.4 2.4-.4 3.3 0 6 2.7 6 6s-2.7 6-6 6H6.5z' fill='%23e8eeff' filter='url(%23s)' opacity='0.92'/%3E%3Cpath d='M6.5 20C3.5 20 1 17.7 1 14.8c0-2.4 1.7-4.5 4-5 .3-3.5 3.2-6.3 6.8-6.3 2.8 0 5.2 1.7 6.3 4.1.7-.3 1.5-.4 2.4-.4 3.3 0 6 2.7 6 6s-2.7 6-6 6H6.5z' fill='none' stroke='%234a8dff' stroke-width='0.5' opacity='0.6'/%3E%3C/svg%3E") 8 12, auto;
}
a, button, [role="button"], input[type="submit"], select, .btn, .btn-outline,
label[for], .services-checkboxes label {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='24' viewBox='0 0 32 24'%3E%3Cdefs%3E%3Cfilter id='s' x='-10%25' y='-10%25' width='120%25' height='120%25'%3E%3CfeDropShadow dx='0' dy='1' stdDeviation='1.5' flood-color='%234a8dff' flood-opacity='0.7'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M6.5 20C3.5 20 1 17.7 1 14.8c0-2.4 1.7-4.5 4-5 .3-3.5 3.2-6.3 6.8-6.3 2.8 0 5.2 1.7 6.3 4.1.7-.3 1.5-.4 2.4-.4 3.3 0 6 2.7 6 6s-2.7 6-6 6H6.5z' fill='%23ffffff' filter='url(%23s)'/%3E%3Cpath d='M6.5 20C3.5 20 1 17.7 1 14.8c0-2.4 1.7-4.5 4-5 .3-3.5 3.2-6.3 6.8-6.3 2.8 0 5.2 1.7 6.3 4.1.7-.3 1.5-.4 2.4-.4 3.3 0 6 2.7 6 6s-2.7 6-6 6H6.5z' fill='none' stroke='%231c6fff' stroke-width='0.8' opacity='0.8'/%3E%3C/svg%3E") 8 12, pointer;
}

/* ——— Reset ——————————————————————————————————————————————— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.032;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1;
}
a { text-decoration: none; color: inherit; }

/* ——— Navigation ——————————————————————————————————————————— */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to bottom, rgba(5,8,16,0.97) 0%, rgba(5,8,16,0.65) 70%, transparent 100%);
  z-index: 500;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 111, 255, 0.07);
}

.logo {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-shadow: 0 0 35px rgba(28, 111, 255, 0.55), 0 0 70px rgba(28, 111, 255, 0.18);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: default;
  user-select: none;
}

/* Live EQ bars — red / white / blue */
.nav-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  padding-bottom: 1px;
}
.nav-eq span {
  display: block;
  width: 3px;
  border-radius: 1px;
  transform-origin: bottom;
  animation: eq-bounce var(--dur, 0.9s) ease-in-out infinite alternate;
  opacity: 0.9;
}
.nav-eq span:nth-child(1) { height:  8px; --dur: 0.95s; animation-delay: 0.00s; background: var(--red); }
.nav-eq span:nth-child(2) { height: 14px; --dur: 0.72s; animation-delay: 0.18s; background: var(--white); }
.nav-eq span:nth-child(3) { height: 16px; --dur: 1.05s; animation-delay: 0.07s; background: var(--blue); }
.nav-eq span:nth-child(4) { height: 11px; --dur: 0.78s; animation-delay: 0.28s; background: var(--white); }
.nav-eq span:nth-child(5) { height:  6px; --dur: 0.88s; animation-delay: 0.12s; background: var(--red); }

@keyframes eq-bounce {
  from { transform: scaleY(0.25); opacity: 0.45; }
  to   { transform: scaleY(1);    opacity: 1; }
}

.rec-indicator {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e81f2e;
  box-shadow: 0 0 8px rgba(232, 31, 46, 0.85);
  animation: rec-flash 1.5s ease-in-out infinite;
}
@keyframes rec-flash {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(232, 31, 46, 0.85); }
  50%       { opacity: 0.15; box-shadow: none; }
}

nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav a {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
nav a:hover { color: var(--blue-bright); }
nav a:hover::after { transform: scaleX(1); }

/* ——— Hero ————————————————————————————————————————————————— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2.5rem 4rem;
}

/* Atmospheric cloud lighting */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 50% at 50% 15%,  rgba(140, 190, 255, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 10% 30%,   rgba(100, 160, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 32% at 90% 35%,   rgba(200, 225, 255, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 65% 40% at 50% 108%,  rgba(232, 31,  46, 0.12)  0%, transparent 65%),
    radial-gradient(ellipse 45% 60% at -5% 60%,   rgba(28,  111, 255, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 105% 70%,  rgba(28,  111, 255, 0.09) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle DAW-style grid — now in blue */
.studio-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 111, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 111, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* ——— Global moving clouds (behind all content) ——————————— */
.global-clouds {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(175deg, rgba(15,30,65,0.5) 0%, rgba(5,8,16,0) 40%, rgba(5,8,16,0) 70%, rgba(30,10,20,0.25) 100%);
}
.gcloud {
  position: absolute;
  will-change: transform;
  filter: blur(2px);
}
.gcloud::before,
.gcloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

/* Cloud shape: body is a rounded rectangle, ::before and ::after are the bumps on top */
.gc1 {
  width: 280px; height: 70px;
  background: rgba(200, 220, 255, 0.07);
  border-radius: 70px;
  top: 5%;
  animation: sky-drift-r 55s linear infinite;
}
.gc1::before {
  width: 100px; height: 100px;
  background: rgba(200, 220, 255, 0.07);
  top: -45px; left: 50px;
}
.gc1::after {
  width: 130px; height: 130px;
  background: rgba(200, 220, 255, 0.07);
  top: -65px; left: 110px;
}

.gc2 {
  width: 360px; height: 80px;
  background: rgba(180, 210, 255, 0.055);
  border-radius: 80px;
  top: 18%;
  animation: sky-drift-l 70s linear infinite;
  animation-delay: -25s;
  filter: blur(3px);
}
.gc2::before {
  width: 120px; height: 120px;
  background: rgba(180, 210, 255, 0.055);
  top: -55px; left: 60px;
}
.gc2::after {
  width: 150px; height: 150px;
  background: rgba(180, 210, 255, 0.055);
  top: -75px; left: 150px;
}

.gc3 {
  width: 200px; height: 50px;
  background: rgba(220, 235, 255, 0.09);
  border-radius: 50px;
  top: 32%;
  animation: sky-drift-r 42s linear infinite;
  animation-delay: -10s;
}
.gc3::before {
  width: 70px; height: 70px;
  background: rgba(220, 235, 255, 0.09);
  top: -32px; left: 30px;
}
.gc3::after {
  width: 90px; height: 90px;
  background: rgba(220, 235, 255, 0.09);
  top: -45px; left: 80px;
}

.gc4 {
  width: 420px; height: 95px;
  background: rgba(160, 195, 255, 0.045);
  border-radius: 95px;
  top: 45%;
  animation: sky-drift-l 85s linear infinite;
  animation-delay: -40s;
  filter: blur(4px);
}
.gc4::before {
  width: 140px; height: 140px;
  background: rgba(160, 195, 255, 0.045);
  top: -65px; left: 80px;
}
.gc4::after {
  width: 170px; height: 170px;
  background: rgba(160, 195, 255, 0.045);
  top: -85px; left: 190px;
}

.gc5 {
  width: 240px; height: 60px;
  background: rgba(210, 230, 255, 0.075);
  border-radius: 60px;
  top: 58%;
  animation: sky-drift-r 50s linear infinite;
  animation-delay: -32s;
}
.gc5::before {
  width: 85px; height: 85px;
  background: rgba(210, 230, 255, 0.075);
  top: -38px; left: 35px;
}
.gc5::after {
  width: 105px; height: 105px;
  background: rgba(210, 230, 255, 0.075);
  top: -52px; left: 100px;
}

.gc6 {
  width: 170px; height: 45px;
  background: rgba(230, 240, 255, 0.10);
  border-radius: 45px;
  top: 14%;
  animation: sky-drift-r 38s linear infinite;
  animation-delay: -18s;
}
.gc6::before {
  width: 60px; height: 60px;
  background: rgba(230, 240, 255, 0.10);
  top: -28px; left: 25px;
}
.gc6::after {
  width: 75px; height: 75px;
  background: rgba(230, 240, 255, 0.10);
  top: -38px; left: 68px;
}

.gc7 {
  width: 320px; height: 75px;
  background: rgba(170, 200, 255, 0.05);
  border-radius: 75px;
  top: 72%;
  animation: sky-drift-l 62s linear infinite;
  animation-delay: -48s;
  filter: blur(3px);
}
.gc7::before {
  width: 110px; height: 110px;
  background: rgba(170, 200, 255, 0.05);
  top: -50px; left: 55px;
}
.gc7::after {
  width: 135px; height: 135px;
  background: rgba(170, 200, 255, 0.05);
  top: -68px; left: 140px;
}

.gc8 {
  width: 190px; height: 50px;
  background: rgba(200, 220, 255, 0.08);
  border-radius: 50px;
  top: 85%;
  animation: sky-drift-r 45s linear infinite;
  animation-delay: -8s;
}
.gc8::before {
  width: 65px; height: 65px;
  background: rgba(200, 220, 255, 0.08);
  top: -30px; left: 30px;
}
.gc8::after {
  width: 85px; height: 85px;
  background: rgba(200, 220, 255, 0.08);
  top: -42px; left: 75px;
}

.gc9 {
  width: 300px; height: 70px;
  background: rgba(190, 215, 255, 0.06);
  border-radius: 70px;
  top: 38%;
  animation: sky-drift-l 52s linear infinite;
  animation-delay: -15s;
  filter: blur(2px);
}
.gc9::before {
  width: 100px; height: 100px;
  background: rgba(190, 215, 255, 0.06);
  top: -45px; left: 50px;
}
.gc9::after {
  width: 120px; height: 120px;
  background: rgba(190, 215, 255, 0.06);
  top: -58px; left: 130px;
}

@keyframes sky-drift-r {
  0%   { transform: translateX(-450px) translateY(0); }
  50%  { transform: translateX(calc(50vw - 100px)) translateY(-12px); }
  100% { transform: translateX(calc(100vw + 200px)) translateY(0); }
}
@keyframes sky-drift-l {
  0%   { transform: translateX(calc(100vw + 200px)) translateY(0); }
  50%  { transform: translateX(calc(50vw - 100px)) translateY(10px); }
  100% { transform: translateX(-450px) translateY(0); }
}

/* Floating cloud blobs (hero-local) */
.cloud-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.cloud {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.c1 {
  width: 700px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(80, 150, 255, 0.25) 0%, rgba(80, 150, 255, 0.10) 45%, transparent 70%);
  filter: blur(48px);
  top: 2%; left: -10%;
  animation: hero-cloud-1 38s ease-in-out infinite;
}
.c2 {
  width: 580px; height: 240px;
  background: radial-gradient(ellipse at center, rgba(210, 230, 255, 0.22) 0%, rgba(210, 230, 255, 0.08) 45%, transparent 70%);
  filter: blur(44px);
  top: 18%; right: -6%;
  animation: hero-cloud-2 46s ease-in-out infinite;
  animation-delay: -14s;
}
.c3 {
  width: 750px; height: 280px;
  background: radial-gradient(ellipse at center, rgba(28, 80, 200, 0.22) 0%, rgba(28, 80, 200, 0.08) 40%, transparent 70%);
  filter: blur(52px);
  top: 38%; left: 8%;
  animation: hero-cloud-3 42s ease-in-out infinite;
  animation-delay: -24s;
}
.c4 {
  width: 460px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(232, 50, 70, 0.18) 0%, rgba(232, 50, 70, 0.06) 45%, transparent 70%);
  filter: blur(40px);
  bottom: 22%; right: 6%;
  animation: hero-cloud-4 52s ease-in-out infinite;
  animation-delay: -8s;
}
.c5 {
  width: 620px; height: 230px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 45%, transparent 70%);
  filter: blur(50px);
  top: 10%; left: 32%;
  animation: hero-cloud-5 56s ease-in-out infinite;
  animation-delay: -30s;
}
.c6 {
  width: 540px; height: 210px;
  background: radial-gradient(ellipse at center, rgba(100, 170, 255, 0.20) 0%, rgba(100, 170, 255, 0.07) 45%, transparent 70%);
  filter: blur(46px);
  top: 50%; right: 18%;
  animation: hero-cloud-6 44s ease-in-out infinite;
  animation-delay: -18s;
}
.c7 {
  width: 820px; height: 340px;
  background: radial-gradient(ellipse at center, rgba(200, 220, 255, 0.15) 0%, rgba(200, 220, 255, 0.05) 45%, transparent 70%);
  filter: blur(55px);
  top: 26%; left: -6%;
  animation: hero-cloud-7 62s ease-in-out infinite;
  animation-delay: -40s;
}
.c8 {
  width: 480px; height: 180px;
  background: radial-gradient(ellipse at center, rgba(232, 80, 100, 0.14) 0%, rgba(232, 80, 100, 0.04) 45%, transparent 70%);
  filter: blur(38px);
  bottom: 30%; left: 22%;
  animation: hero-cloud-8 48s ease-in-out infinite;
  animation-delay: -22s;
}

@keyframes hero-cloud-1 {
  0%   { transform: translate(0px, 0px) scale(1); }
  25%  { transform: translate(100px, -25px) scale(1.06); }
  50%  { transform: translate(180px, 12px) scale(0.97); }
  75%  { transform: translate(70px, 30px) scale(1.04); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes hero-cloud-2 {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(-110px, 22px) scale(1.07); }
  66%  { transform: translate(-60px, -28px) scale(0.95); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes hero-cloud-3 {
  0%   { transform: translate(0px, 0px) scale(1); }
  20%  { transform: translate(75px, -18px) scale(1.05); }
  50%  { transform: translate(150px, 24px) scale(0.96); }
  80%  { transform: translate(50px, -12px) scale(1.03); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes hero-cloud-4 {
  0%   { transform: translate(0px, 0px) scale(1); }
  30%  { transform: translate(-85px, -30px) scale(1.09); }
  60%  { transform: translate(-35px, 18px) scale(0.94); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes hero-cloud-5 {
  0%   { transform: translate(0px, 0px) scale(1); }
  25%  { transform: translate(65px, 25px) scale(1.04); }
  50%  { transform: translate(-50px, -14px) scale(1.08); }
  75%  { transform: translate(40px, -22px) scale(0.96); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes hero-cloud-6 {
  0%   { transform: translate(0px, 0px) scale(1); }
  35%  { transform: translate(-80px, 18px) scale(1.06); }
  70%  { transform: translate(55px, -25px) scale(0.97); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes hero-cloud-7 {
  0%   { transform: translate(0px, 0px) scale(1); }
  40%  { transform: translate(120px, -15px) scale(1.05); }
  70%  { transform: translate(65px, 28px) scale(0.95); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes hero-cloud-8 {
  0%   { transform: translate(0px, 0px) scale(1); }
  30%  { transform: translate(55px, -22px) scale(1.07); }
  60%  { transform: translate(-40px, 15px) scale(0.96); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* Canvas visualizer */
#visualizer {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 48%;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 22%, black 52%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 22%, black 52%);
  pointer-events: none;
  z-index: 0;
}

/* Edge fade */
.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,8,16,0.45) 0%, transparent 18%, transparent 82%, rgba(5,8,16,0.45) 100%),
    linear-gradient(to bottom, transparent 35%, rgba(5,8,16,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.3rem;
  padding: 0.28rem 0.85rem;
  border: 1px solid var(--border-hover);
  background: rgba(28, 111, 255, 0.07);
}

.hero h1 {
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  line-height: 0.87;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 60px rgba(0,0,0,0.7), 0 0 80px rgba(28, 111, 255, 0.12);
}

.subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  transform: translateX(-100%) skewX(-18deg);
  transition: transform 0.38s ease;
}
.btn:hover {
  background: var(--blue-bright);
  box-shadow: var(--glow-blue-md);
  transform: translateY(-2px);
}
.btn:hover::before { transform: translateX(120%) skewX(-18deg); }

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--border-hover);
  transition: all 0.25s ease;
}
.btn-outline:hover {
  color: var(--white);
  border-color: var(--blue-bright);
  background: rgba(28, 111, 255, 0.08);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  right: 2.5rem;
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  z-index: 3;
  animation: scroll-bob 2.2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50%       { opacity: 0.7;  transform: translateY(5px); }
}

/* ——— Section base ————————————————————————————————————————— */
section { padding: 6rem 2.5rem; position: relative; z-index: 1; }
section h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3rem;
}

/* ——— Services —————————————————————————————————————————————— */
.services {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.card {
  background: var(--bg-card);
  padding: 2.2rem 1.75rem;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--white), var(--blue));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.card:hover { background: var(--bg-card-hover); }
.card:hover::before { transform: scaleX(1); }

.card h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.policy-box {
  background: rgba(232, 31, 46, 0.04);
  border: 1px solid var(--border-hover);
  border-left: 3px solid var(--red);
  padding: 2rem 2.5rem;
  max-width: 680px;
}
.policy-box h3 {
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 0.8rem;
  letter-spacing: 0.18em;
}
.policy-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.policy-box strong { color: var(--text); font-weight: 500; }

/* ——— Portfolio ————————————————————————————————————————————— */
.portfolio {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.portfolio-card {
  background: var(--bg-card);
  padding: 3rem 2.2rem;
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 111, 255, 0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover { background: var(--bg-card-hover); }
.portfolio-card:hover::after { opacity: 1; }

.portfolio-card h3 {
  font-size: 1.9rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.portfolio-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ——— Features —————————————————————————————————————————————— */
.features {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature {
  background: var(--bg-card);
  padding: 1.8rem 2.2rem;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.22s ease;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.feature .mark {
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
/* Alternate red / white / blue for diamond markers */
.feature:nth-child(3n+1) .mark { color: var(--red); }
.feature:nth-child(3n+2) .mark { color: var(--white-dim); }
.feature:nth-child(3n+3) .mark { color: var(--blue-bright); }

.feature:hover {
  background: var(--bg-card-hover);
  color: var(--text);
}
.feature:hover .mark { transform: scale(1.2); }

/* ——— Testimonials ————————————————————————————————————————— */
.testimonials {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(28, 111, 255, 0.09);
  line-height: 1;
  pointer-events: none;
}
.testimonial:hover { border-color: var(--border-hover); }

.testimonial p {
  font-size: 0.93rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.testimonial h4 {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dim);
}

/* ——— Booking —————————————————————————————————————————————— */
.booking {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 660px;
}

input, select, textarea {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, select:focus, textarea:focus {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(28, 111, 255, 0.07), 0 0 25px rgba(28, 111, 255, 0.05);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a8db0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
select option { background: #0d1628; color: var(--text); }

textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 110px;
}

button[type="submit"] {
  grid-column: 1 / -1;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
button[type="submit"]:hover {
  background: var(--red-bright);
  box-shadow: var(--glow-red);
}

/* ——— Deposit Summary ————————————————————————————————————— */
.deposit-summary {
  grid-column: 1 / -1;
  background: rgba(232, 31, 46, 0.04);
  border: 1px solid var(--border-hover);
  border-left: 3px solid var(--blue);
  padding: 1.5rem 1.75rem;
}
.deposit-summary h3 {
  font-size: 0.85rem;
  color: var(--blue-bright);
  margin-bottom: 0.8rem;
  letter-spacing: 0.18em;
}
.deposit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.deposit-row:last-child { border-bottom: none; }
.deposit-row span:last-child { font-weight: 500; color: var(--text); }
.deposit-total span { color: var(--text) !important; font-weight: 600 !important; }
.deposit-amount {
  background: rgba(34, 197, 94, 0.06);
  padding: 0.6rem 0.5rem !important;
  margin: 0.3rem -0.5rem;
  border-radius: 4px;
  border-bottom: none !important;
}
.deposit-amount span { color: #22c55e !important; font-weight: 700 !important; }
.deposit-remaining span:last-child { color: var(--red) !important; }

/* ——— Success Page ————————————————————————————————————————— */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2.5rem 4rem;
  position: relative;
  z-index: 1;
}
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.success-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.success-card p { color: var(--text-muted); font-size: 0.9rem; }
.success-subtitle { margin-bottom: 2rem; }

.success-check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid #22c55e;
  color: #22c55e;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.error-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(232, 31, 46, 0.12);
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.error-contact { margin: 1.5rem 0; }
.error-contact p { color: var(--text-dim); font-size: 0.85rem; }

.receipt-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row span:last-child { color: var(--text); font-weight: 500; }
.receipt-divider {
  height: 1px;
  background: var(--border-hover);
  margin: 0.5rem 0;
}
.receipt-highlight-green span { color: #22c55e !important; font-weight: 600 !important; }
.receipt-highlight-red span:last-child { color: var(--red) !important; font-weight: 600 !important; }
.receipt-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ——— Non-Refundable Deposit Notice ————————————————————————— */
.refund-notice {
  background: rgba(232, 31, 46, 0.10);
  border: 1px solid rgba(232, 31, 46, 0.35);
  border-left: 4px solid var(--red);
  padding: 0.9rem 1.2rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--red-bright, #e81f2e);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: refund-pulse 2.5s ease-in-out 1;
}
.refund-notice strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.25rem;
  color: var(--red, #c91422);
  font-weight: 700;
}
@keyframes refund-pulse {
  0%, 100% { border-left-color: var(--red); }
  50% { border-left-color: #ff4d5e; box-shadow: 0 0 12px rgba(232, 31, 46, 0.15); }
}

.loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.success-page .btn { margin-top: 0.5rem; }

/* ——— Footer ——————————————————————————————————————————————— */
footer {
  background: #040608;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
footer h3 {
  font-size: 3.2rem;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 45px rgba(28, 111, 255, 0.35), 0 0 90px rgba(28, 111, 255, 0.12);
  margin-bottom: 1rem;
}
footer p {
  font-size: 0.86rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.footer-tag {
  display: inline-block;
  margin-top: 1.75rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-dim);
}

/* ——— Responsive ——————————————————————————————————————————— */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid .portfolio-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { gap: 1.5rem; }
  .rec-indicator { display: none; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .cards { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .portfolio-card:last-child { grid-column: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  form { grid-template-columns: 1fr; }
  textarea { grid-column: 1; }
  button[type="submit"] { grid-column: 1; }
  .deposit-summary { grid-column: 1; }
  #visualizer { height: 38%; }
  .success-page { padding: 6rem 1.5rem 3rem; }
  .success-card { padding: 2rem 1.5rem; }
}

@media (max-width: 520px) {
  nav ul { display: none; }
  .nav-eq { display: none; }
  .hero { padding: 5rem 1.25rem 3rem; }
  section { padding: 3rem 1.25rem; }
  .cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  #visualizer { height: 30%; }
}

/* ——— Active nav link ————————————————————————————————————— */
nav a.active-link {
  color: var(--blue-bright);
}
nav a.active-link::after {
  transform: scaleX(1);
}

/* ——— Beats Page — Hero ——————————————————————————————————— */
.beats-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 4rem;
  z-index: 1;
}
.beats-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(232, 31, 46, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 40%, rgba(28, 111, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.beats-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.beats-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 0.9;
  text-shadow: 0 4px 60px rgba(0,0,0,0.7), 0 0 80px rgba(232, 31, 46, 0.15);
}

/* ——— Beats Page — License Cards —————————————————————————— */
.beats-options {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.beat-license-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
}

.beat-license-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.beat-license-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.beat-license-card:hover {
  border-color: var(--border-hover);
}
.beat-license-card:hover::before {
  transform: scaleX(1);
}
.beat-license-card.featured {
  border-color: var(--border-hover);
  box-shadow: 0 0 30px rgba(232, 31, 46, 0.08);
}
.beat-license-card.featured::before {
  background: linear-gradient(to right, var(--red), var(--red-bright));
  transform: scaleX(1);
}

.license-badge {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(28, 111, 255, 0.08);
  border: 1px solid rgba(28, 111, 255, 0.15);
  padding: 0.25rem 0.7rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.license-badge.exclusive {
  color: var(--red-bright);
  background: rgba(232, 31, 46, 0.08);
  border-color: rgba(232, 31, 46, 0.15);
}

.beat-license-card h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.beat-license-card .price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.beat-license-card:first-child .price {
  color: var(--blue-bright);
}
.beat-license-card.featured .price {
  color: var(--red-bright);
}

.license-features {
  list-style: none;
  margin-bottom: 1.8rem;
}
.license-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.license-features .mark {
  font-size: 0.7rem;
  flex-shrink: 0;
}
.beat-license-card:first-child .license-features .mark {
  color: var(--blue-bright);
}
.beat-license-card.featured .license-features .mark {
  color: var(--red-bright);
}

.beat-license-card .btn {
  width: 100%;
  text-align: center;
  padding: 0.8rem 1.5rem;
  font-size: 0.82rem;
}
.beat-license-card.featured .btn {
  background: var(--red);
  border-color: var(--red);
}
.beat-license-card.featured .btn:hover {
  background: var(--red-bright);
  box-shadow: var(--glow-red);
}

/* ——— Beats Page — Purchase Form —————————————————————————— */
.beats-purchase {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.beats-purchase form [name="beat-name"],
.beats-purchase form [name="license-type"] {
  grid-column: 1 / -1;
}

.beat-price-summary {
  grid-column: 1 / -1;
  background: rgba(232, 31, 46, 0.04);
  border: 1px solid var(--border-hover);
  border-left: 3px solid var(--blue);
  padding: 1.5rem 1.75rem;
}
.beat-price-summary h3 {
  font-size: 0.85rem;
  color: var(--blue-bright);
  margin-bottom: 0.8rem;
  letter-spacing: 0.18em;
}

/* ——— Beats Page — Responsive ————————————————————————————— */
@media (max-width: 768px) {
  .beats-hero { padding: 6rem 1.5rem 3rem; }
  .beat-license-cards { grid-template-columns: 1fr; }
  .beats-purchase form { grid-template-columns: 1fr; }
  .beats-purchase form [name="beat-name"],
  .beats-purchase form [name="license-type"] { grid-column: 1; }
  .beat-price-summary { grid-column: 1; }
}
@media (max-width: 520px) {
  .beats-hero { padding: 5rem 1.25rem 2rem; }
}

/* ——— Promotion Banner ——————————————————————————————————— */
.promo-banner {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-left: 3px solid #22c55e;
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.promo-banner-item {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.promo-banner-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.15rem 0.5rem;
}

/* ——— DJ Page — Hero ————————————————————————————————————— */
.dj-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 4rem;
  z-index: 1;
}
.dj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(232, 31, 46, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 40%, rgba(28, 111, 255, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.dj-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.dj-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 0.9;
  text-shadow: 0 4px 60px rgba(0,0,0,0.7), 0 0 80px rgba(232, 31, 46, 0.15);
}

/* ——— DJ Page — Rate Cards ——————————————————————————————— */
.dj-rates {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.rate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.rate-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background 0.25s ease;
}
.rate-card:hover { background: var(--bg-card-hover); }
.rate-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.rate-card .rate-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue-bright);
  line-height: 1;
}
.rate-card .rate-value.red { color: var(--red-bright); }

/* ——— DJ Page — Booking Form ————————————————————————————— */
.dj-booking-form {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.dj-booking-form h3.form-section-title {
  grid-column: 1 / -1;
  font-size: 1rem;
  color: var(--blue-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.artists-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.85rem;
}
.services-checkboxes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
}
.services-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.services-checkboxes label:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.services-checkboxes input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}
.custom-quote-wrapper {
  grid-column: 1 / -1;
}
.custom-quote-wrapper label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: rgba(232, 31, 46, 0.06);
  border: 1px solid rgba(232, 31, 46, 0.15);
}

/* ——— DJ Deposit Summary ————————————————————————————————— */
.dj-deposit-summary {
  grid-column: 1 / -1;
  background: rgba(232, 31, 46, 0.04);
  border: 1px solid var(--border-hover);
  border-left: 3px solid var(--blue);
  padding: 1.5rem 1.75rem;
}
.dj-deposit-summary h3 {
  font-size: 0.85rem;
  color: var(--blue-bright);
  margin-bottom: 0.8rem;
  letter-spacing: 0.18em;
}

/* ——— Mini Cloud Hover Tooltip ——————————————————————————— */
.cloud-tip {
  position: fixed;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  padding: 0.5rem 1.4rem 0.55rem;
  background:
    radial-gradient(ellipse 120% 100% at 50% 55%, rgba(80, 150, 255, 0.38) 0%, rgba(80, 150, 255, 0.12) 50%, transparent 72%),
    radial-gradient(ellipse 90% 80% at 35% 40%, rgba(220, 235, 255, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 90% at 70% 55%, rgba(28, 111, 255, 0.18) 0%, transparent 55%),
    rgba(12, 22, 50, 0.82);
  border: 1px solid rgba(80, 150, 255, 0.18);
  border-radius: 20px 20px 22px 18px;
  box-shadow:
    0 0 24px rgba(80, 150, 255, 0.22),
    0 0 60px rgba(28, 111, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}
.cloud-tip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .cloud-tip { display: none; }
}

/* ——— DJ Page — Responsive ——————————————————————————————— */
@media (max-width: 768px) {
  .dj-hero { padding: 6rem 1.5rem 3rem; }
  .rate-cards { grid-template-columns: 1fr; }
  .dj-booking-form form { grid-template-columns: 1fr; }
  .dj-booking-form h3.form-section-title { grid-column: 1; }
  .artists-grid { grid-column: 1; grid-template-columns: 1fr; }
  .services-checkboxes { grid-column: 1; }
  .custom-quote-wrapper { grid-column: 1; }
  .dj-deposit-summary { grid-column: 1; }
}
@media (max-width: 520px) {
  .dj-hero { padding: 5rem 1.25rem 2rem; }
  .services-checkboxes { grid-template-columns: 1fr; }
}
