/* ============================================================
   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;
}
.logo-img {
  height: 5.5rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(232, 31, 46, 0.45));
}
.amp-inline {
  height: 2em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(232, 31, 46, 0.3));
}
h1 .amp-inline,
h2 .amp-inline,
footer h3 .amp-inline {
  height: 2.2em;
}
.feature .amp-inline {
  height: 2.1em;
}
.tag .amp-inline,
.footer-tag .amp-inline {
  height: 2.4em;
}

/* 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; }
}

/* Desktop tabs render as a single segmented pill bar: a rounded, glassy
   container holding each tab, with hover and active states filling in as a
   glowing pill. The mobile breakpoint (≤900px) flattens this back into the
   slide-down menu. */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  background: rgba(9, 16, 31, 0.55);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 26px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
}
nav a {
  display: block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
nav a:hover {
  color: var(--white);
  background: rgba(28, 111, 255, 0.12);
}

/* Mobile menu button — hidden on desktop, shown when the nav collapses. */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 40px;
  padding: 9px 8px;
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ——— 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); }

/* Booking request confirmation pop-up */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(2, 5, 12, 0.78);
  backdrop-filter: blur(4px);
  animation: bookingModalFade 0.25s ease;
}
@keyframes bookingModalFade { from { opacity: 0; } to { opacity: 1; } }
.booking-modal-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 0 50px rgba(34, 197, 94, 0.18), 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: bookingModalRise 0.3s ease;
}
@keyframes bookingModalRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.booking-modal-close:hover { color: var(--text); }
.booking-modal-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #22c55e;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.45);
}
.booking-modal-card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.9rem;
  color: var(--text);
  margin: 0 0 1rem;
}
.booking-modal-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--white-dim);
  margin: 0 0 1rem;
}
.booking-modal-spam {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--text) !important;
}
.booking-modal-card .btn { margin-top: 0.5rem; }


.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);
}

/* ——— Commercial Section ——————————————————————————————————— */

.commercial-section {
  padding: 5rem 2rem 5.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(28,111,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(232,31,46,0.08) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.commercial-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.commercial-eyebrow {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  padding: 0.35rem 1.1rem;
  border: 1px solid rgba(232,31,46,0.35);
  border-radius: 999px;
  margin-bottom: 1.1rem;
  text-shadow: 0 0 18px rgba(232,31,46,0.5);
}
.commercial-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-shadow: 0 0 50px rgba(28,111,255,0.25);
}
.commercial-intro p {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.commercial-viewport {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.commercial-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #04060d;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 70px rgba(28, 111, 255, 0.14),
    0 0 140px rgba(28, 111, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(28, 111, 255, 0.18);
}

/* Persistent cloud-of-music backdrop */
.cm-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(175deg, rgba(15,30,65,0.6) 0%, rgba(5,8,16,0) 45%, rgba(5,8,16,0) 70%, rgba(30,10,20,0.3) 100%);
}
.cm-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
}
.cm-cloud-1 {
  width: 60%; height: 55%;
  background: radial-gradient(ellipse at center, rgba(80,150,255,0.28) 0%, rgba(80,150,255,0.08) 45%, transparent 70%);
  top: -8%; left: -12%;
  animation: cm-cloud-drift-a 34s ease-in-out infinite;
}
.cm-cloud-2 {
  width: 55%; height: 50%;
  background: radial-gradient(ellipse at center, rgba(210,230,255,0.22) 0%, rgba(210,230,255,0.06) 45%, transparent 70%);
  top: 10%; right: -10%;
  animation: cm-cloud-drift-b 42s ease-in-out infinite;
  animation-delay: -12s;
}
.cm-cloud-3 {
  width: 50%; height: 48%;
  background: radial-gradient(ellipse at center, rgba(232,50,70,0.18) 0%, rgba(232,50,70,0.05) 45%, transparent 70%);
  bottom: -12%; left: 18%;
  animation: cm-cloud-drift-a 48s ease-in-out infinite;
  animation-delay: -22s;
}
.cm-cloud-4 {
  width: 42%; height: 42%;
  background: radial-gradient(ellipse at center, rgba(28,80,200,0.20) 0%, rgba(28,80,200,0.06) 45%, transparent 70%);
  bottom: 4%; right: 12%;
  animation: cm-cloud-drift-b 38s ease-in-out infinite;
  animation-delay: -8s;
}
@keyframes cm-cloud-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(7%, -5%) scale(1.08); }
}
@keyframes cm-cloud-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  50%      { transform: translate(-8%, 5%) scale(1); }
}

/* DAW-style grid */
.cm-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(28,111,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,111,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.7) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.7) 0%, transparent 80%);
  pointer-events: none;
}

/* Cinematic letterbox bars */
.cine-bar {
  position: absolute;
  left: 0; right: 0;
  height: 7%;
  background: #000;
  z-index: 20;
  pointer-events: none;
}
.cine-bar-top { top: 0; }
.cine-bar-bottom { bottom: 0; }

/* Persistent ON-AIR badge */
.cm-onair {
  position: absolute;
  top: calc(7% + 12px);
  left: 16px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  background: rgba(232,31,46,0.12);
  border: 1px solid rgba(232,31,46,0.4);
  border-radius: 4px;
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cm-playing .cm-onair { opacity: 1; }
.cm-onair-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(232,31,46,0.9);
  animation: rec-flash 1.2s ease-in-out infinite;
}

/* Scenes */
.cm-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  z-index: 2;
}
.cm-scene.active {
  opacity: 1;
  pointer-events: auto;
}

.cm-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Cinematic spotlight sweep */
.cm-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: conic-gradient(from 200deg at 50% -10%, transparent 0deg, rgba(180,210,255,0.10) 25deg, transparent 55deg);
  mix-blend-mode: screen;
  pointer-events: none;
}
.cm-scene.active .cm-spotlight {
  animation: cm-spotlight-sweep 7s ease-in-out infinite;
}
@keyframes cm-spotlight-sweep {
  0%, 100% { transform: rotate(-8deg); opacity: 0.5; }
  50%      { transform: rotate(8deg);  opacity: 0.9; }
}

/* Particles */
.cm-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.cm-particles::before,
.cm-particles::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow:
    120px 40px 0 rgba(28,111,255,0.5),
    240px 80px 0 rgba(232,31,46,0.4),
    360px 30px 0 rgba(240,244,255,0.3),
    80px 140px 0 rgba(28,111,255,0.4),
    480px 120px 0 rgba(232,31,46,0.3),
    200px 180px 0 rgba(240,244,255,0.5),
    540px 60px 0 rgba(28,111,255,0.3),
    320px 160px 0 rgba(232,31,46,0.35),
    600px 100px 0 rgba(240,244,255,0.4),
    160px 60px 0 rgba(28,111,255,0.45),
    440px 150px 0 rgba(232,31,46,0.25),
    50px 90px 0 rgba(240,244,255,0.3);
  animation: cm-float-particles 12s linear infinite;
}
.cm-particles::after {
  animation-delay: -6s;
  filter: blur(1px);
}

@keyframes cm-float-particles {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-200px) translateX(40px); opacity: 0; }
}

/* ——— Scene 1: Cold open ———————————— */
.cm-scene-1 {
  background: radial-gradient(ellipse at 50% 60%, rgba(28,111,255,0.10) 0%, transparent 70%);
}

.cm-scene1-kicker {
  font-family: var(--font-condensed);
  font-size: clamp(0.6rem, 1.5vw, 0.9rem);
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.45em;
  margin-bottom: 1.4rem;
  z-index: 2;
  opacity: 0;
  text-transform: uppercase;
}
.cm-scene-1.active .cm-scene1-kicker {
  animation: cm-fade-up 0.8s ease 0.1s forwards;
}

.cm-scene1-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  opacity: 0;
  transform: scale(0.6);
}
.cm-scene-1.active .cm-scene1-logo {
  animation: cm-logo-enter 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.cm-logo-img {
  width: 78px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(28,111,255,0.5));
}

.cm-logo-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 0.3em;
  text-shadow: 0 0 40px rgba(28,111,255,0.4);
}

.cm-scene1-tagline {
  font-family: var(--font-condensed);
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  color: var(--red);
  letter-spacing: 0.5em;
  margin-top: 1rem;
  z-index: 2;
  opacity: 0;
  text-shadow: 0 0 20px rgba(232,31,46,0.5);
}
.cm-scene-1.active .cm-scene1-tagline {
  animation: cm-fade-up 1s ease 1.4s forwards;
}

@keyframes cm-logo-enter {
  0%   { opacity: 0; transform: scale(0.6); filter: blur(8px); }
  100% { opacity: 1; transform: scale(1);   filter: blur(0); }
}

@keyframes cm-fade-up {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ——— Scene 2: In the booth ——————————— */
.cm-scene-2 {
  background: linear-gradient(160deg, rgba(9,16,31,1) 0%, rgba(13,22,40,0.9) 50%, rgba(4,6,13,1) 100%);
}

.cm-waveform {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
}

.cm-rec-status {
  position: absolute;
  top: calc(7% + 14px);
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-size: clamp(0.6rem, 1.3vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0;
}
.cm-scene-2.active .cm-rec-status {
  animation: cm-fade-up 0.5s ease 0.3s forwards;
}
.cm-rec-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(232,31,46,0.9);
  animation: rec-flash 1s ease-in-out infinite;
}
.cm-rec-take {
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.cm-mic {
  color: var(--blue-bright);
  z-index: 2;
  margin-bottom: 0.4rem;
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(28,111,255,0.5));
}
.cm-scene-2.active .cm-mic {
  animation: cm-scale-in 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.cm-playing .cm-scene-2.active .cm-mic svg {
  animation: cm-icon-beat 0.857s ease-in-out infinite;
}

.cm-scene2-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 0 0 50px rgba(28,111,255,0.35);
  z-index: 2;
  opacity: 0;
}
.cm-scene-2.active .cm-scene2-headline {
  animation: cm-slide-left 0.8s ease 0.6s forwards;
}

.cm-scene2-sub {
  font-family: var(--font-condensed);
  font-size: clamp(0.6rem, 1.4vw, 0.9rem);
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-top: 0.8rem;
  z-index: 2;
  opacity: 0;
}
.cm-scene-2.active .cm-scene2-sub {
  animation: cm-fade-up 0.6s ease 1.2s forwards;
}

/* ——— Scene 3: Book it tonight ——————————— */
.cm-scene-3 {
  background: radial-gradient(ellipse at 50% 40%, rgba(28,111,255,0.08) 0%, transparent 65%);
}

.cm-scene3-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
  z-index: 2;
  opacity: 0;
  text-shadow: 0 0 40px rgba(232,31,46,0.25);
}
.cm-scene-3.active .cm-scene3-headline {
  animation: cm-fade-up 0.7s ease 0.2s forwards;
}

.cm-scene3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  z-index: 2;
  padding: 0 2rem;
  max-width: 720px;
  width: 100%;
}

.cm-service-card {
  text-align: center;
  padding: 1.1rem 0.5rem;
  background: rgba(28,111,255,0.06);
  border: 1px solid rgba(28,111,255,0.14);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(28px);
  color: var(--white);
}

.cm-scene-3.active .cm-sc-1 { animation: cm-card-in 0.55s ease 0.45s forwards; }
.cm-scene-3.active .cm-sc-2 { animation: cm-card-in 0.55s ease 0.6s forwards; }
.cm-scene-3.active .cm-sc-3 { animation: cm-card-in 0.55s ease 0.75s forwards; }
.cm-scene-3.active .cm-sc-4 { animation: cm-card-in 0.55s ease 0.9s forwards; }

.cm-sc-icon {
  color: var(--blue-bright);
  margin-bottom: 0.5rem;
}

.cm-service-card h4 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.15em;
  margin: 0;
}

.cm-service-card span {
  font-family: var(--font-condensed);
  font-size: clamp(0.65rem, 1.4vw, 0.85rem);
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.cm-stats-strip {
  display: flex;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 1.6rem;
  z-index: 2;
  opacity: 0;
}
.cm-scene-3.active .cm-stats-strip {
  animation: cm-fade-up 0.7s ease 1.1s forwards;
}
.cm-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cm-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 24px rgba(28,111,255,0.3);
}
.cm-stat-label {
  font-family: var(--font-condensed);
  font-size: clamp(0.5rem, 1.1vw, 0.68rem);
  color: var(--text-muted);
  letter-spacing: 0.18em;
  margin-top: 0.25rem;
}

@keyframes cm-card-in {
  0%   { opacity: 0; transform: translateY(28px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ——— Scene 4: Need a DJ tonight ——————————— */
.cm-scene-4 {
  background: radial-gradient(ellipse at 50% 50%, rgba(232,31,46,0.08) 0%, transparent 65%);
}

.cm-turntable {
  position: relative;
  width: clamp(90px, 18vw, 150px);
  height: clamp(90px, 18vw, 150px);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, rgba(255,255,255,0.04) 0 2px, transparent 2px 4px),
    radial-gradient(circle at center, #1a1f30 0%, #05070f 70%);
  border: 1px solid rgba(28,111,255,0.25);
  box-shadow: 0 0 40px rgba(28,111,255,0.25), inset 0 0 30px rgba(0,0,0,0.6);
  z-index: 2;
  margin-bottom: 1.2rem;
  opacity: 0;
}
.cm-turntable::before {
  content: '';
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--red) 0%, #8a0d18 80%);
  box-shadow: 0 0 14px rgba(232,31,46,0.5);
  z-index: 3;
}
.cm-turntable::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: #04060d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.cm-tt-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(180,210,255,0.22) 24deg, rgba(255,255,255,0.05) 60deg, transparent 110deg, transparent 360deg);
  z-index: 2;
  opacity: 0;
}
.cm-scene-4.active .cm-turntable {
  animation: cm-fade-only 0.7s ease 0.2s forwards;
}
.cm-scene-4.active .cm-tt-sheen {
  opacity: 1;
}
.cm-playing .cm-scene-4.active .cm-tt-sheen {
  opacity: 1;
  animation: cm-tt-spin 1.7s linear 0.4s infinite;
}
@keyframes cm-fade-only {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cm-tt-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cm-scene4-text {
  z-index: 2;
  text-align: center;
}

.cm-s4-line1 {
  font-family: var(--font-condensed);
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.3em;
  opacity: 0;
}
.cm-scene-4.active .cm-s4-line1 {
  animation: cm-slide-right 0.7s ease 0.4s forwards;
}

.cm-s4-line2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.2rem);
  color: var(--white);
  letter-spacing: 0.12em;
  text-shadow: 0 0 60px rgba(232,31,46,0.3);
  opacity: 0;
}
.cm-scene-4.active .cm-s4-line2 {
  animation: cm-slide-left 0.8s ease 0.7s forwards;
}

.cm-s4-sub {
  font-family: var(--font-condensed);
  font-size: clamp(0.55rem, 1.3vw, 0.8rem);
  color: var(--text-muted);
  letter-spacing: 0.28em;
  margin-top: 0.9rem;
  opacity: 0;
}
.cm-scene-4.active .cm-s4-sub {
  animation: cm-fade-up 0.6s ease 1.4s forwards;
}

@keyframes cm-slide-right {
  0%   { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes cm-slide-left {
  0%   { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ——— Scene 5: Finale CTA ————————————— */
.cm-scene-5 {
  background: radial-gradient(ellipse at 50% 50%, rgba(28,111,255,0.12) 0%, rgba(232,31,46,0.05) 30%, transparent 70%);
}

.cm-finale-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.cm-finale-logo {
  width: 58px;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 40px rgba(28,111,255,0.6));
}
.cm-scene-5.active .cm-finale-logo {
  animation: cm-logo-enter 1s ease 0.2s forwards;
}

.cm-finale-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5rem);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-shadow:
    0 0 60px rgba(28,111,255,0.3),
    0 0 120px rgba(232,31,46,0.15);
  opacity: 0;
}
.cm-scene-5.active .cm-finale-headline {
  animation: cm-scale-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.cm-finale-sub {
  font-family: var(--font-condensed);
  font-size: clamp(0.65rem, 1.4vw, 0.9rem);
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.32em;
  opacity: 0;
}
.cm-scene-5.active .cm-finale-sub {
  animation: cm-fade-up 0.6s ease 1.4s forwards;
}

.cm-finale-btn {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.75rem 2.6rem;
  font-family: var(--font-condensed);
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 0 30px rgba(232,31,46,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cm-scene-5.active .cm-finale-btn {
  animation: cm-fade-up 0.6s ease 1.8s forwards;
}
.cm-finale-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(232,31,46,0.6);
}

.cm-finale-tag {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  color: var(--blue);
  letter-spacing: 0.3em;
  opacity: 0;
}
.cm-scene-5.active .cm-finale-tag {
  animation: cm-fade-up 0.5s ease 2.2s forwards;
}

@keyframes cm-scale-in {
  0%   { opacity: 0; transform: scale(0.7); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1);   filter: blur(0); }
}

/* ——— Progress bar ————————————————————— */
.cm-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 30;
}

.cm-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: width 0.1s linear;
}

/* ——— Timestamp ———————————————————————— */
.cm-timestamp {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  z-index: 30;
  letter-spacing: 0.08em;
}

/* ——— Play overlay ————————————————————— */
.cm-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 40;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.cm-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.cm-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.cm-play-btn:hover {
  transform: scale(1.1);
}
.cm-play-btn svg circle {
  transition: stroke 0.3s;
}
.cm-play-btn:hover svg circle {
  stroke: rgba(28,111,255,0.6);
}

.cm-play-label {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3em;
  font-weight: 600;
}

/* ——— Commercial responsive ——————————— */
@media (max-width: 640px) {
  .commercial-section { padding: 3rem 1rem 3.5rem; }

  /* On an upright phone a 16:9 player collapses to a tiny horizontal strip.
     Switch to a portrait-friendly shape so the spot is large and readable
     without rotating the device. */
  .commercial-player { aspect-ratio: 4 / 5; }

  .cm-scene3-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0 1rem;
  }

  .cm-stats-strip { gap: 1.2rem; }

  .cm-logo-img { width: 50px; }

  .cm-service-card { padding: 0.8rem 0.3rem; }

  .cm-eq-bars { bottom: 12%; }
  .cm-producer-tag { font-size: clamp(0.5rem, 2vw, 0.7rem); }
  .cm-onair, .cm-rec-status { transform: scale(0.85); transform-origin: top; }
}

/* ——— Sound toggle button ————————————— */
.cm-sound-toggle {
  position: absolute;
  bottom: 10px;
  left: 14px;
  z-index: 35;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.cm-sound-toggle:hover {
  color: #fff;
  border-color: var(--blue-bright);
  background: rgba(28,111,255,0.15);
}

/* ——— Beat-synced bass rings ————————— */
.cm-bass-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(28,111,255,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.cm-playing .cm-scene.active .cm-bass-ring-1 {
  animation: cm-bass-expand 0.428s ease-out infinite;
}
.cm-playing .cm-scene.active .cm-bass-ring-2 {
  animation: cm-bass-expand 0.428s ease-out 0.214s infinite;
}
.cm-playing .cm-scene-4.active .cm-bass-ring-4 {
  animation: cm-bass-expand 0.428s ease-out infinite;
  border-color: rgba(232,31,46,0.2);
}
.cm-playing .cm-scene-5.active .cm-bass-ring-3 {
  animation: cm-bass-expand 0.428s ease-out infinite;
  border-color: rgba(232,31,46,0.2);
}

@keyframes cm-bass-expand {
  0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2.5);  opacity: 0; }
}

/* ——— Producer tag flash ——————————————— */
.cm-producer-tag {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.5vw, 0.85rem);
  color: var(--red);
  letter-spacing: 0.6em;
  z-index: 2;
  opacity: 0;
  margin-top: 1.5rem;
  text-shadow: 0 0 20px rgba(232,31,46,0.6), 0 0 40px rgba(232,31,46,0.3);
}
.cm-scene-1.active .cm-producer-tag {
  animation: cm-tag-flash 2s ease 2.8s forwards;
}

@keyframes cm-tag-flash {
  0%   { opacity: 0; transform: scale(0.8); letter-spacing: 1.5em; }
  30%  { opacity: 1; transform: scale(1.1); }
  50%  { opacity: 0.6; }
  70%  { opacity: 1; }
  100% { opacity: 0.85; transform: scale(1); letter-spacing: 0.6em; }
}

/* ——— EQ visualizer bars (scene 4) ——— */
.cm-eq-bars {
  position: absolute;
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  z-index: 1;
  opacity: 0;
}
.cm-scene-4.active .cm-eq-bars {
  animation: cm-fade-up 0.5s ease 0.2s forwards;
}

.cm-eq-bars span {
  display: block;
  width: 4px;
  background: linear-gradient(to top, var(--red), var(--blue-bright));
  border-radius: 2px;
  opacity: 0.6;
}
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(1)  { animation: cm-eq-bounce 0.45s ease-in-out infinite alternate; height: 14px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(2)  { animation: cm-eq-bounce 0.35s ease-in-out 0.05s infinite alternate; height: 22px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(3)  { animation: cm-eq-bounce 0.55s ease-in-out 0.1s infinite alternate; height: 30px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(4)  { animation: cm-eq-bounce 0.3s ease-in-out 0.02s infinite alternate; height: 18px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(5)  { animation: cm-eq-bounce 0.42s ease-in-out 0.08s infinite alternate; height: 26px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(6)  { animation: cm-eq-bounce 0.38s ease-in-out 0.12s infinite alternate; height: 20px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(7)  { animation: cm-eq-bounce 0.5s ease-in-out 0.06s infinite alternate; height: 28px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(8)  { animation: cm-eq-bounce 0.32s ease-in-out 0.03s infinite alternate; height: 16px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(9)  { animation: cm-eq-bounce 0.47s ease-in-out 0.09s infinite alternate; height: 24px; }
.cm-playing .cm-scene-4.active .cm-eq-bars span:nth-child(10) { animation: cm-eq-bounce 0.4s ease-in-out 0.04s infinite alternate; height: 12px; }

@keyframes cm-eq-bounce {
  0%   { transform: scaleY(0.3); }
  100% { transform: scaleY(1.4); }
}

/* ——— Beat-synced glow on player border ——— */
.cm-playing .commercial-player {
  animation: cm-border-pulse 0.428s ease-out infinite;
}

@keyframes cm-border-pulse {
  0%   { box-shadow: 0 0 70px rgba(28,111,255,0.22), 0 0 140px rgba(28,111,255,0.08), 0 30px 80px rgba(0,0,0,0.7); border-color: rgba(28,111,255,0.35); }
  50%  { box-shadow: 0 0 70px rgba(28,111,255,0.12), 0 0 140px rgba(28,111,255,0.06), 0 30px 80px rgba(0,0,0,0.7); border-color: rgba(28,111,255,0.18); }
  100% { box-shadow: 0 0 70px rgba(28,111,255,0.22), 0 0 140px rgba(28,111,255,0.08), 0 30px 80px rgba(0,0,0,0.7); border-color: rgba(28,111,255,0.35); }
}

/* ——— Beat-synced logo glow in scene 1 ——— */
.cm-playing .cm-scene-1.active .cm-logo-img {
  animation: cm-logo-beat-glow 0.428s ease-out infinite;
}

@keyframes cm-logo-beat-glow {
  0%   { filter: drop-shadow(0 0 40px rgba(28,111,255,0.7)); }
  50%  { filter: drop-shadow(0 0 25px rgba(28,111,255,0.35)); }
  100% { filter: drop-shadow(0 0 40px rgba(28,111,255,0.7)); }
}

/* ——— Beat-synced service cards scene 3 ——— */
.cm-playing .cm-scene-3.active .cm-sc-icon {
  animation: cm-icon-beat 0.857s ease-in-out infinite;
}

@keyframes cm-icon-beat {
  0%   { filter: drop-shadow(0 0 8px rgba(28,111,255,0.4)); }
  50%  { filter: drop-shadow(0 0 2px rgba(28,111,255,0.1)); }
  100% { filter: drop-shadow(0 0 8px rgba(28,111,255,0.4)); }
}

/* ——— Beat-synced stat numbers scene 3 ——— */
.cm-playing .cm-scene-3.active .cm-stat-num {
  transition: text-shadow 0.15s, transform 0.15s;
}

/* ——— Beat-synced finale button ——————— */
.cm-playing .cm-scene-5.active .cm-finale-btn {
  transition: box-shadow 0.15s, transform 0.15s;
}

/* ——— Beat-synced finale headline ————— */
.cm-playing .cm-scene-5.active .cm-finale-headline {
  transition: text-shadow 0.15s;
}

/* ——— 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);
}

/* ——— Date Field (labeled date picker) ———————————————————— */
.date-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.date-field-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ——— Smoking Option Field ———————————————————————————————— */
.smoking-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.smoking-field-hint {
  margin: 0;
  font-family: var(--font-body, inherit);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.smoking-field-hint strong {
  color: var(--text);
}

/* ——— Mixing Option Field ————————————————————————————————— */
.mixing-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mixing-field-hint {
  margin: 0;
  font-family: var(--font-body, inherit);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.mixing-field-hint strong {
  color: var(--text);
}

/* ——— Promo Code Field ———————————————————————————————————— */
.promo-field {
  grid-column: 1 / -1;
}
.promo-field-label {
  display: block;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.promo-field-row {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}
.promo-field-row input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.promo-apply-btn {
  flex: 0 0 auto;
  width: auto;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue-bright);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.promo-apply-btn:hover {
  background: rgba(28, 111, 255, 0.12);
}
.promo-apply-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
.promo-field-msg {
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ——— 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);
}

/* Small-print admin access at the very bottom of the home page so the studio
   owner can always reach the dashboard without a visible nav link. */
.footer-admin {
  margin-top: 1.1rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-admin a {
  color: var(--text-dim);
  opacity: 0.55;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-admin a:hover {
  opacity: 1;
  color: var(--blue-bright);
}

/* ——— 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; }
  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; }
}

/* Collapse the top tab bar into a slide-down menu where 9 inline tabs would
   get cramped (tablets and phones). The menu button toggles `.open` on the
   list, which slides the tabs down. */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .rec-indicator { display: none; }

  nav ul {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, opacity 0.25s ease, margin 0.32s ease;
  }
  nav ul.open {
    max-height: 80vh;
    opacity: 1;
    overflow-y: auto;
    margin-top: 0.85rem;
    padding: 0 0.25rem 0.4rem;
    background: rgba(5, 8, 16, 0.98);
    border-radius: 0 0 12px 12px;
  }
  nav li { width: 100%; }
  nav ul.open li { border-top: 1px solid var(--border); }
  nav a {
    display: block;
    padding: 0.95rem 0.4rem;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    border-radius: 0;
  }
  nav a:hover { background: transparent; color: var(--blue-bright); }
  nav a.active-link {
    color: var(--blue-bright);
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 520px) {
  /* Phones (portrait): smaller logo; the slide-down menu (defined above)
     keeps every tab reachable behind the menu button. */
  nav { padding: 0.85rem 1.1rem; }
  .logo { font-size: 1.7rem; }
  .logo-img {
    height: 5.5rem;
    filter: drop-shadow(0 0 26px rgba(232, 31, 46, 0.7)) drop-shadow(0 0 14px rgba(28, 111, 255, 0.4));
  }
  .nav-eq { display: none; }

  .hero { padding: 6.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(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #1656cc 100%);
  box-shadow: 0 0 18px rgba(28, 111, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
nav a.active-link:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
}

/* ——— 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);
}

/* ——— Engineer Bio ———————————————————————————————————————— */
.engineer-bio {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.bio-container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.bio-image-wrap {
  position: relative;
}

.bio-image {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--border-hover);
  box-shadow: var(--glow-blue-md);
  display: block;
}

.bio-content h3.bio-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-bright);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.bio-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.bio-services {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.bio-services h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  color: var(--blue-bright);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.bio-services ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.bio-services li {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}

.bio-services li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.6rem;
  top: 0.25em;
}

.bio-cta {
  color: var(--text) !important;
  font-weight: 400 !important;
  font-style: italic;
}

.bio-book-btn {
  margin-top: 0.5rem;
  display: inline-block;
}

@media (max-width: 900px) {
  .bio-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bio-image-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .bio-services ul {
    grid-template-columns: 1fr;
  }
}

/* ——— Preview / Audio Player Section ————————————————————— */
.preview-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* Layout: spinning record beside the preview list */
.preview-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.preview-layout .preview-grid {
  flex: 1 1 460px;
}

/* ——— Spinning AMP Record / Turntable ————————————————————— */
.vinyl-stage {
  flex: 0 0 auto;
  width: 340px;
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding-top: 0.5rem;
}

.vinyl-platter {
  position: relative;
  width: 340px;
  height: 340px;
}

/* The black disc that rotates */
.vinyl-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #141414 0 17%, #050505 17% 18%, #161616 18% 19%, #060606 19% 100%);
  box-shadow:
    0 0 0 1px rgba(28, 111, 255, 0.25),
    0 18px 45px rgba(0, 0, 0, 0.7),
    var(--glow-blue-md);
  animation: vinyl-spin 4s linear infinite;
  will-change: transform;
}

/* Fine concentric grooves */
.vinyl-grooves {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.045) 0 1px,
      rgba(0, 0, 0, 0) 1px 4px);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 28%, #000 28% 100%);
          mask: radial-gradient(circle at 50% 50%, transparent 0 28%, #000 28% 100%);
}

/* Center label = the AMP logo badge */
.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 3px rgba(5, 8, 16, 0.9),
    0 0 0 4px rgba(74, 141, 255, 0.45),
    inset 0 0 18px rgba(0, 0, 0, 0.6);
}
.vinyl-label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vinyl-spindle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #cdd8f0 0 35%, #2a3550 60%, #05060c 100%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

/* Fixed light glint across the spinning disc */
.vinyl-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    linear-gradient(115deg,
      rgba(255, 255, 255, 0) 38%,
      rgba(120, 170, 255, 0.14) 48%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: screen;
}

/* Tonearm resting toward the record */
.vinyl-tonearm {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 150px;
  height: 150px;
  transform-origin: 88% 12%;
  transform: rotate(22deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.vinyl-tonearm-base {
  position: absolute;
  top: 0;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #44506e, #1b2233 60%, #0a0e1a 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(74, 141, 255, 0.3);
}
.vinyl-tonearm-bar {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 122px;
  height: 5px;
  transform-origin: right center;
  transform: rotate(58deg);
  border-radius: 3px;
  background: linear-gradient(to left, #aab4cc 0 20%, #6c7790 70%, #3a435c 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.vinyl-tonearm-head {
  position: absolute;
  bottom: 10px;
  left: 18px;
  width: 16px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(#dfe6f5, #8b97b4);
  box-shadow: 0 0 6px rgba(74, 141, 255, 0.5);
}

/* Caption */
.vinyl-caption {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vinyl-caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-bright);
  animation: vinyl-pulse 1.6s ease-in-out infinite;
}

/* Live state — kicks in while a preview is playing */
.vinyl-stage.vinyl-live .vinyl-disc {
  animation-duration: 1.8s;
  box-shadow:
    0 0 0 1px rgba(74, 141, 255, 0.5),
    0 18px 45px rgba(0, 0, 0, 0.7),
    0 0 55px rgba(28, 111, 255, 0.5),
    0 0 110px rgba(28, 111, 255, 0.22);
}
.vinyl-stage.vinyl-live .vinyl-tonearm {
  transform: rotate(30deg);
}
.vinyl-stage.vinyl-live .vinyl-caption {
  color: var(--blue-bright);
}

@keyframes vinyl-spin {
  to { transform: rotate(360deg); }
}
@keyframes vinyl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

@media (max-width: 980px) {
  .vinyl-stage {
    position: static;
    width: 260px;
    order: -1;
  }
  .vinyl-platter { width: 260px; height: 260px; }
  .preview-layout { gap: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .vinyl-disc { animation: none; }
  .vinyl-caption-dot { animation: none; }
}
.preview-subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}
.preview-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}
.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--blue));
  opacity: 0.6;
}
.preview-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-blue);
}
.preview-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.preview-track-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-dim);
  line-height: 1;
  min-width: 2.2rem;
}
.preview-details h3 {
  font-family: var(--font-condensed);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.preview-artist {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.15rem;
}
.preview-tag {
  margin-left: auto;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red-dim);
  padding: 0.25rem 0.65rem;
  white-space: nowrap;
}

.preview-tag.beat-tag {
  color: var(--blue);
  border-color: rgba(28, 111, 255, 0.35);
}

/* BPM / key / full-length stats shown on each for-sale beat card */
.beat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin-top: 0.5rem;
}
.beat-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  background: rgba(28, 111, 255, 0.05);
}
.beat-stat-label {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.beat-stat-value {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.preview-player {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.preview-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.preview-play-btn:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 18px rgba(28, 111, 255, 0.4);
}
.preview-progress-wrap {
  flex: 1;
  min-width: 0;
}
.preview-progress-bar {
  height: 6px;
  background: var(--text-dim);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.preview-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--blue), var(--red));
  border-radius: 3px;
  transition: width 0.1s linear;
}
.preview-time {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.preview-vol-wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.preview-vol {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 4px;
  background: var(--text-dim);
  border-radius: 2px;
  outline: none;
}
.preview-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-bright);
  border: none;
}
.preview-vol::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-bright);
  border: none;
}

@media (max-width: 600px) {
  .preview-player { flex-wrap: wrap; }
  .preview-vol-wrap { display: none; }
  .preview-info { flex-wrap: wrap; }
  .preview-tag { margin-left: 0; margin-top: 0.5rem; }
}

/* ——— 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: 6.75rem 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: 6.75rem 1.25rem 2rem; }
  .services-checkboxes { grid-template-columns: 1fr; }
}

.featured-beat-card {
  border-color: rgba(28, 111, 255, 0.4);
  position: relative;
}
.featured-beat-card::before {
  background: linear-gradient(to right, var(--blue), #22c55e) !important;
  opacity: 1 !important;
}
.free-beat-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 4px 14px;
  z-index: 2;
}
.free-beat-get-btn {
  margin-top: 1rem;
  width: 100%;
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  border: none;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.2s ease, box-shadow 0.3s ease;
}
.free-beat-get-btn:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* ——— Beats Page — For Sale + Custom Request ———————————————— */
.beats-for-sale {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.beat-get-btn {
  margin-top: 1rem;
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright)) !important;
  border: none;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.2s ease, box-shadow 0.3s ease;
}
.beat-get-btn:hover {
  opacity: 0.9;
  box-shadow: var(--glow-blue);
}
.beats-status {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}
.beats-status a { color: var(--blue-bright); text-decoration: underline; }

.beats-custom-request {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.beats-custom-request .preview-subtitle {
  max-width: 660px;
}

.own-note {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  background: rgba(232, 31, 46, 0.05);
  border-left: 3px solid var(--red);
  padding: 0.9rem 1.1rem;
}

/* ——— Engineer photo → Cloud Portal trigger ——————————————— */
.bio-image-trigger {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bio-image-trigger .bio-image {
  transition: box-shadow 0.4s ease, filter 0.4s ease;
}
.bio-image-trigger:hover { transform: translateY(-6px) scale(1.015); }
.bio-image-trigger:hover .bio-image {
  box-shadow: 0 0 50px rgba(74, 141, 255, 0.55), 0 0 110px rgba(232, 31, 46, 0.18);
  filter: brightness(1.05);
}
.bio-image-trigger:focus-visible { outline: none; }
.bio-image-trigger:focus-visible .bio-image {
  box-shadow: 0 0 0 3px var(--blue-bright), var(--glow-blue-md);
}

.bio-image-hint {
  position: absolute;
  left: 50%;
  bottom: -0.6rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(9, 16, 31, 0.85);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  box-shadow: var(--glow-blue);
  backdrop-filter: blur(4px);
  opacity: 0.9;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.bio-image-trigger:hover .bio-image-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}
.bio-image-hint-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  animation: cp-hint-pulse 1.8s ease-in-out infinite;
}
@keyframes cp-hint-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ——— Cloud Portal overlay ———————————————————————————————— */
body.cp-no-scroll { overflow: hidden; }

.cloud-portal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0s linear 0.7s;
}
.cloud-portal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.9s ease;
}

/* Sky gradient — deep night blue lifting into AMP blue daylight */
.cp-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(232, 31, 46, 0.18) 0%, rgba(232, 31, 46, 0) 45%),
    linear-gradient(180deg, #04060f 0%, #0a1733 26%, #163a78 52%, #2f6bd6 78%, #6fa8ff 100%);
}

/* Soft glow sun/halo behind the title */
.cp-sun {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 620px; height: 620px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(180,210,255,0.22) 32%, rgba(180,210,255,0) 68%);
  filter: blur(4px);
  opacity: 0;
  transition: opacity 1.2s ease 0.2s;
}
.cloud-portal.open .cp-sun { opacity: 1; animation: cp-sun-breathe 7s ease-in-out infinite 1.2s; }
@keyframes cp-sun-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.07); }
}

/* Puffy cloud shape (matches the site's rounded-rect + bumps technique) */
.pcloud {
  position: absolute;
  border-radius: 100px;
  background: rgba(244, 248, 255, 0.92);
  filter: blur(0.5px);
}
.pcloud::before,
.pcloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}
.pcloud::before { width: 60%; height: 160%; top: -55%; left: 12%; }
.pcloud::after  { width: 80%; height: 200%; top: -78%; left: 40%; }

.pc-red  { background: rgba(255, 168, 178, 0.85); }
.pc-blue { background: rgba(176, 208, 255, 0.9); }

/* Background cloud band — drifts across, depth via blur + opacity */
.cp-clouds { position: absolute; inset: 0; }
.pc1 { width: 220px; height: 56px; top: 14%; opacity: 0.85; filter: blur(1px);
       animation: cp-drift-r 46s linear infinite; }
.pc2 { width: 300px; height: 70px; top: 24%; opacity: 0.6;  filter: blur(2px);
       animation: cp-drift-l 60s linear infinite; animation-delay: -18s; }
.pc3 { width: 160px; height: 44px; top: 33%; opacity: 0.95;
       animation: cp-drift-r 38s linear infinite; animation-delay: -8s; }
.pc4 { width: 360px; height: 82px; top: 40%; opacity: 0.5;  filter: blur(3px);
       animation: cp-drift-l 72s linear infinite; animation-delay: -30s; }
.pc5 { width: 200px; height: 52px; top: 60%; opacity: 0.9;
       animation: cp-drift-r 42s linear infinite; animation-delay: -14s; }
.pc6 { width: 280px; height: 66px; top: 70%; opacity: 0.65; filter: blur(2px);
       animation: cp-drift-l 56s linear infinite; animation-delay: -22s; }
.pc7 { width: 180px; height: 48px; top: 80%; opacity: 0.92;
       animation: cp-drift-r 50s linear infinite; animation-delay: -5s; }
.pc8 { width: 240px; height: 60px; top: 88%; opacity: 0.7;  filter: blur(1.5px);
       animation: cp-drift-l 64s linear infinite; animation-delay: -38s; }

/* Big foreground clouds that sweep in fast when the portal opens */
.cp-foreground { position: absolute; inset: 0; pointer-events: none; }
.pcf1 {
  width: 60vw; height: 140px; bottom: -4%; left: -30vw;
  opacity: 0.96; filter: blur(2px);
  animation: cp-drift-r 40s linear infinite;
}
.pcf2 {
  width: 55vw; height: 130px; top: -3%; right: -30vw;
  opacity: 0.9; filter: blur(2.5px);
  background: rgba(210, 228, 255, 0.9);
  animation: cp-drift-l 48s linear infinite;
}

@keyframes cp-drift-r {
  from { transform: translateX(-130%); }
  to   { transform: translateX(130vw); }
}
@keyframes cp-drift-l {
  from { transform: translateX(130vw); }
  to   { transform: translateX(-130%); }
}

/* Centerpiece content — rises up through the clouds */
.cp-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  z-index: 3;
  pointer-events: none;
}
.cp-stage > * {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.cloud-portal.open .cp-stage > * { opacity: 1; transform: translateY(0); }
.cloud-portal.open .cp-avatar { transition-delay: 0.15s; }
.cloud-portal.open .cp-logo   { transition-delay: 0.35s; }
.cloud-portal.open .cp-title  { transition-delay: 0.5s; }
.cloud-portal.open .cp-tag    { transition-delay: 0.7s; }

.cp-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: 0 12px 40px rgba(4, 8, 24, 0.5), var(--glow-blue-md);
  margin-bottom: 1.6rem;
  animation: cp-float 6s ease-in-out infinite;
}
.cp-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cp-logo {
  width: 120px;
  height: auto;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 6px 20px rgba(4, 8, 24, 0.45));
  animation: cp-float 5s ease-in-out infinite 0.5s;
}

.cp-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 30px rgba(4, 8, 24, 0.55), 0 0 60px rgba(74, 141, 255, 0.6);
  margin-bottom: 0.6rem;
}
.cp-tag {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 14px rgba(4, 8, 24, 0.5);
}
.cp-hash {
  display: inline-block;
  margin-left: 0.4rem;
  color: #fff;
  background: linear-gradient(90deg, var(--red-bright), var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

@keyframes cp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Come-back-down button */
.cp-close {
  position: absolute;
  top: 1.6rem; right: 1.8rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem 0.5rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  background: rgba(9, 16, 31, 0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-condensed);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cp-close:hover { background: rgba(232, 31, 46, 0.35); transform: scale(1.04); }
.cp-close-x { font-size: 1.4rem; line-height: 1; }

@media (max-width: 600px) {
  .cp-avatar { width: 100px; height: 100px; }
  .cp-close-label { display: none; }
  .cp-close { padding: 0.5rem 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pcloud, .cp-avatar, .cp-logo, .cp-sun { animation: none !important; }
  .cloud-portal, .cp-stage > * { transition-duration: 0.2s; }
}

/* ═══════════════════════════════════════════════════════════════
   Mobile section tabs — turn the long home page into tap-to-view
   sections on phones. Hidden entirely on desktop (normal scroll).
   ═══════════════════════════════════════════════════════════════ */
/* ───── Tabbed section views ──────────────────────────────────────
   The home page is broken into tab views driven by the top navigation:
   only the active view's section(s) are shown, so a visitor clicks a tab
   and lands on a clean, page-style view instead of one long scroll. The
   `tabbed` class is added by JS, so without scripting the full page still
   renders normally. */
body.tabbed section.tab-section { display: none; }
body.tabbed section.tab-section.tab-active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   Subscribe / mailing-list section
   ═══════════════════════════════════════════════════════════════ */
.subscribe-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.subscribe-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  letter-spacing: 2px;
  color: var(--white);
  margin: 0 0 1rem;
}
.subscribe-intro {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.subscribe-intro strong { color: var(--text); }
#subscribe-form {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  text-align: left;
}
.subscribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.subscribe-grid input[type="text"],
.subscribe-grid input[type="email"],
.subscribe-grid input[type="date"] {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: 9px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  box-sizing: border-box;
}
.subscribe-grid input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--glow-blue);
}
.subscribe-bday {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.subscribe-bday span {
  font-family: var(--font-condensed);
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.subscribe-bday em { color: var(--text-dim); text-transform: none; font-style: normal; }
#subscribe-btn {
  width: 100%;
  margin-top: 1.2rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
}
#subscribe-btn:hover { background: var(--blue-bright); box-shadow: var(--glow-blue-md); }
#subscribe-btn:disabled { opacity: 0.6; cursor: default; }
.subscribe-fineprint {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 0.82rem;
  text-align: center;
  margin: 1rem 0 0;
}
@media (max-width: 540px) {
  .subscribe-grid { grid-template-columns: 1fr; }
}
