@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400..800;1,9..40,400..800&display=swap');

:root {
  --bg-dark: #070707;
  --bg-dark-card: #111111;
  --bg-dark-card-hover: #171717;
  --bg-light: #f4f4f0;
  --bg-light-card: #ffffff;
  --bg-light-border: #cfcfca;
  --text-dark: #0b0b0b;
  --text-dark-muted: #565651;
  --text-light: #ffffff;
  --text-light-muted: rgba(255, 255, 255, 0.68);
  --text-light-dim: rgba(255, 255, 255, 0.42);
  --electric-blue: #2563eb;
  --electric-blue-hover: #1d4ed8;
  --electric-blue-glow: rgba(37, 99, 235, 0.25);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--electric-blue);
  color: #fff;
}

/* Base Container & Utilities (Expansive Full-Width Modern Architecture) */
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--electric-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--electric-blue);
  display: inline-block;
}

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.88;
  font-weight: 800;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-tight {
  padding: 80px 0;
}

.light-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

.dark-section {
  background: var(--bg-dark);
  color: var(--text-light);
}

.blue-line {
  width: 64px;
  height: 3px;
  background: var(--electric-blue);
  margin: 0 auto 28px;
}

.blue-line-left {
  width: 50px;
  height: 3px;
  background: var(--electric-blue);
  margin: 20px 0;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--electric-blue);
  color: #ffffff;
  border-color: var(--electric-blue);
}

.button-primary:hover {
  background: var(--electric-blue-hover);
  border-color: var(--electric-blue-hover);
}

.button-light {
  background: #ffffff;
  color: var(--text-dark);
  border-color: #ffffff;
}

.button-light:hover {
  background: var(--bg-light);
  color: #000000;
}

.button-dark {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.button-dark:hover {
  background: #1a1a1a;
}

.button-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.button-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: #0b0b0b;
}

.button-outline-dark:hover {
  background: #0b0b0b;
  color: #ffffff;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.nav-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  overflow: hidden;
}

.logo-image {
  display: block;
  width: 200px;
  max-width: 220px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo-image:hover {
  transform: scale(1.03);
}

.logo-image-invert {
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--electric-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-link {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #ffffff;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 800px;
  padding: 180px 0 100px;
  background: var(--bg-dark);
  color: #ffffff;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 85% 45%, rgba(37, 99, 235, 0.15), transparent 40%),
              linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.03) 48.1%, transparent 48.2%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  margin: 24px 0 28px;
  font-size: clamp(76px, 11vw, 170px);
  max-width: 820px;
  letter-spacing: -0.04em;
}

.hero h1 .blue {
  color: var(--electric-blue);
}

.hero-copy {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

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

.hero-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Sound Waveform Visual */
.sound-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-visual::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.02), 0 0 0 88px rgba(255, 255, 255, 0.015);
}

.sound-visual::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(37, 99, 235, 0.5);
  border-radius: 50%;
}

.wave {
  position: relative;
  width: 80%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0.85;
}

.wave i {
  display: block;
  width: 2px;
  background: var(--bg-light);
  transform-origin: center;
  animation: pulse 2s ease-in-out infinite alternate;
}

.wave i:nth-child(3n) {
  background: var(--electric-blue);
}

.wave i:nth-child(2n) {
  opacity: 0.6;
}

.wave i:nth-child(1) { height: 25%; }
.wave i:nth-child(2) { height: 45%; animation-delay: -0.3s; }
.wave i:nth-child(3) { height: 75%; animation-delay: -0.8s; }
.wave i:nth-child(4) { height: 48%; animation-delay: -0.4s; }
.wave i:nth-child(5) { height: 95%; animation-delay: -0.9s; }
.wave i:nth-child(6) { height: 60%; animation-delay: -0.2s; }
.wave i:nth-child(7) { height: 38%; animation-delay: -0.6s; }
.wave i:nth-child(8) { height: 85%; animation-delay: -0.1s; }
.wave i:nth-child(9) { height: 50%; animation-delay: -0.7s; }
.wave i:nth-child(10) { height: 100%; animation-delay: -0.4s; }
.wave i:nth-child(11) { height: 66%; animation-delay: -0.9s; }
.wave i:nth-child(12) { height: 34%; animation-delay: -0.3s; }
.wave i:nth-child(13) { height: 72%; animation-delay: -0.5s; }
.wave i:nth-child(14) { height: 44%; animation-delay: -0.1s; }
.wave i:nth-child(15) { height: 88%; animation-delay: -0.8s; }
.wave i:nth-child(16) { height: 56%; animation-delay: -0.2s; }
.wave i:nth-child(17) { height: 30%; animation-delay: -0.6s; }
.wave i:nth-child(18) { height: 62%; animation-delay: -0.4s; }
.wave i:nth-child(19) { height: 42%; animation-delay: -0.9s; }
.wave i:nth-child(20) { height: 24%; animation-delay: -0.5s; }

@keyframes pulse {
  from { transform: scaleY(0.6); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 1; }
}

.visual-label {
  position: absolute;
  bottom: 18px;
  right: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Statistics Bar */
.stats {
  background: #111111;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 38px 30px 34px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat + .stat {
  padding-left: 30px;
}

.stat:last-child {
  border-right: 0;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.stat-label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}

.disclaimer {
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

/* Why PRIMEONE Section */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: clamp(54px, 7.5vw, 110px);
  margin: 14px 0 0;
  max-width: 800px;
}

.section-header p {
  margin: 12px 0 0;
  max-width: 460px;
  color: var(--text-dark-muted);
  font-size: 17px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bg-light-border);
  border-left: 1px solid var(--bg-light-border);
}

.feature {
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--bg-light-border);
  border-bottom: 1px solid var(--bg-light-border);
  background: var(--bg-light);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.feature:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.feature-index {
  color: var(--electric-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.feature h3 {
  margin: 48px 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

.feature p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
}

/* Statement Section */
.statement {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 160px 0;
  text-align: center;
}

.statement h2 {
  margin: 0 auto 32px;
  font-size: clamp(64px, 10vw, 150px);
  max-width: 1100px;
  line-height: 0.9;
}

.statement p {
  margin: 0 auto;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

/* How It Works Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--bg-light-border);
}

.process-step {
  position: relative;
  padding: 32px 28px 32px 0;
  min-height: 240px;
}

.process-step + .process-step {
  padding-left: 28px;
  border-left: 1px solid var(--bg-light-border);
}

.process-step::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--electric-blue);
}

.process-step + .process-step::before {
  left: -5px;
}

.step-number {
  color: var(--electric-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 48px 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 0.9;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 230px;
}

/* Global Distribution Section */
.global-section {
  background: #0f0f0f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: 'WORLDWIDE';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.global-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.global-grid h2 {
  margin: 16px 0 24px;
  font-size: clamp(68px, 9vw, 138px);
  max-width: 720px;
}

.global-grid p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.platform-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.platform-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.platform-badge:hover {
  border-color: var(--electric-blue);
  background: rgba(37, 99, 235, 0.08);
}

.platform-badge i {
  width: 6px;
  height: 6px;
  background: var(--electric-blue);
  border-radius: 50%;
}

.platform-note {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.platform-note strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 0.9;
  text-transform: uppercase;
}

/* Ownership Section */
.ownership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.ownership-grid h2 {
  margin: 15px 0 0;
  font-size: clamp(68px, 8.5vw, 130px);
}

.ownership-copy {
  padding-top: 40px;
}

.ownership-copy p {
  max-width: 480px;
  color: var(--text-dark-muted);
  font-size: 18px;
  line-height: 1.6;
}

.ownership-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.ownership-point {
  padding-top: 16px;
  border-top: 2px solid #0b0b0b;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 0.95;
  text-transform: uppercase;
}

/* Audience Section (Who is PRIMEONE for?) */
.audience-section {
  background: var(--bg-dark);
  color: #ffffff;
}

.audience-section h2 {
  margin: 16px 0 60px;
  font-size: clamp(64px, 8.5vw, 130px);
  max-width: 720px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.audience-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  background: var(--bg-dark);
  transition: background-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.audience-card:hover {
  background: var(--bg-dark-card-hover);
}

.audience-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 0.85;
  text-transform: uppercase;
}

.audience-card p {
  margin: 0;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  font-size: 14px;
}

.audience-card .card-mark {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--electric-blue);
}

/* Simple Section */
.simple {
  text-align: center;
}

.simple h2 {
  margin: 20px auto 28px;
  max-width: 1050px;
  font-size: clamp(64px, 9vw, 140px);
}

.simple p {
  max-width: 480px;
  margin: 0 auto;
  color: var(--text-dark-muted);
  font-size: 17px;
  line-height: 1.6;
}

.simple-points {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 55px;
}

.simple-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 0.9;
  text-transform: uppercase;
}

.simple-point i {
  width: 8px;
  height: 8px;
  background: var(--electric-blue);
}

/* CTA Block */
.cta-block {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #ffffff;
}

.cta-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.cta-block h2 {
  margin: 16px 0 0;
  font-size: clamp(60px, 8vw, 120px);
  max-width: 760px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.faq-grid h2 {
  margin: 15px 0 0;
  font-size: clamp(60px, 7.5vw, 110px);
}

.faq-list {
  border-top: 1px solid var(--bg-light-border);
}

.faq-item {
  border-bottom: 1px solid var(--bg-light-border);
}

.faq-trigger {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--electric-blue);
}

.faq-trigger svg {
  flex: 0 0 auto;
  color: var(--electric-blue);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-width: 640px;
  padding: 0 40px 24px 0;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Contact Strip */
.contact-strip {
  background: var(--electric-blue);
  color: #ffffff;
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}

.contact-grid h2 {
  margin: 14px 0 0;
  font-size: clamp(60px, 7.5vw, 105px);
}

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.contact-detail:hover {
  opacity: 0.85;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Signature Section */
.signature {
  padding: 150px 0 130px;
  background: var(--bg-dark);
  color: #ffffff;
  text-align: center;
}

.signature .logo-image {
  width: clamp(200px, 25vw, 360px);
  height: clamp(65px, 8vw, 110px);
  margin: 0 auto;
}

.signature h2 {
  margin: 40px auto 24px;
  font-size: clamp(42px, 6vw, 80px);
}

.signature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 70px;
}

.footer-brand p {
  max-width: 240px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.5;
}

.footer-heading {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Generic Page Hero */
.page-hero {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 190px 0 100px;
  position: relative;
}

.page-hero h1 {
  margin: 20px 0 24px;
  max-width: 900px;
  font-size: clamp(68px, 10vw, 150px);
}

.page-hero p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.6;
}

/* Detail Card List */
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--bg-light-border);
  margin-top: 60px;
}

.detail-card {
  padding: 36px 36px 36px 0;
  border-bottom: 1px solid var(--bg-light-border);
}

.detail-card:nth-child(odd) {
  padding-right: 44px;
  border-right: 1px solid var(--bg-light-border);
}

.detail-card:nth-child(even) {
  padding-left: 36px;
}

.detail-card .number {
  color: var(--electric-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.detail-card h3 {
  margin: 24px 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 0.92;
  text-transform: uppercase;
}

.detail-card p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================================================= */
/* DEDICATED PRICING PAGE STYLES (Strict Brief Implementation)               */
/* ========================================================================= */
.pricing-hero {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 190px 0 90px;
  text-align: left;
}

.pricing-hero h1 {
  font-size: clamp(68px, 10vw, 150px);
  margin: 20px 0 24px;
}

.pricing-hero-copy {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.pricing-hero-copy p + p {
  margin-top: 8px;
}

.pricing-single-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 110px 0;
}

.pricing-single-section h2 {
  font-size: clamp(54px, 7.5vw, 110px);
  margin-bottom: 50px;
}

.single-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card-light {
  background: #ffffff;
  border: 1px solid var(--bg-light-border);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card-light:hover {
  transform: translateY(-4px);
  border-color: #0b0b0b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pricing-card-light .plan-type {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 0.9;
  text-transform: uppercase;
}

.pricing-card-light .price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.88;
  margin: 20px 0 6px;
}

.pricing-card-light .price-period {
  font-size: 12px;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.pricing-card-light .plan-desc {
  margin: 18px 0 24px;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.5;
  min-height: 42px;
}

.pricing-feature-list {
  list-style: none;
  margin: 24px 0 36px;
  border-top: 1px solid var(--bg-light-border);
  padding-top: 20px;
  display: grid;
  gap: 12px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.pricing-feature-item svg {
  color: var(--electric-blue);
  flex-shrink: 0;
}

/* Annual / Monthly Section */
.annual-pricing-section {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 120px 0;
  position: relative;
}

.annual-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.annual-header h2 {
  font-size: clamp(54px, 7.5vw, 110px);
  margin: 14px 0 0;
}

/* Billing Toggle Switch */
.billing-toggle-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.billing-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px;
  border-radius: 4px;
  gap: 4px;
}

.billing-switch-btn {
  padding: 8px 18px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 2px;
}

.billing-switch-btn.active {
  background: #ffffff;
  color: #000000;
}

.billing-helper-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.annual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pricing-card-dark {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 580px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pricing-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
}

.pricing-card-dark.best-value {
  border: 2px solid var(--electric-blue);
  background: #12151d;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.12);
}

.plan-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--electric-blue);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: 2px;
}

.plan-badge-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card-dark .plan-type {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 0.9;
  text-transform: uppercase;
}

.pricing-card-dark .price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.88;
  margin: 22px 0 6px;
}

.pricing-card-dark .price-period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.pricing-card-dark .price-subtext {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.pricing-card-dark .plan-desc {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-feature-list-dark {
  list-style: none;
  margin: 24px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: grid;
  gap: 14px;
}

.pricing-feature-list-dark li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-feature-list-dark li svg {
  color: var(--electric-blue);
  flex-shrink: 0;
}

/* Interactive Extra Artist Calculator */
.extra-artist-box {
  margin-top: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.extra-artist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.artist-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.artist-counter-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.artist-counter-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.artist-counter-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}

.extra-artist-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* Pricing Comparison Table */
.comparison-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 120px 0;
}

.comparison-section h2 {
  font-size: clamp(54px, 7.5vw, 110px);
  margin-bottom: 50px;
}

.table-wrapper {
  overflow-x: auto;
  border-top: 2px solid #0b0b0b;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 740px;
}

.comparison-table th, .comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--bg-light-border);
  font-size: 14px;
}

.comparison-table th {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  background: #e8e8e3;
}

.comparison-table th:first-child {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-dark-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-table tr:hover td {
  background: rgba(0, 0, 0, 0.02);
}

/* Decision Shortcuts Section */
.decision-section {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 130px 0;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.decision-item h3 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.decision-item h3 span {
  color: var(--electric-blue);
}

.decision-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* ========================================================================= */
/* INTERACTIVE RELEASE SUBMISSION MODAL                                     */
/* ========================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease-out;
}

.modal-dialog {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: min(600px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  border-radius: 4px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 8px 0 14px;
}

.modal-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  background: rgba(255, 255, 255, 0.09);
}

.form-select option {
  background: #111111;
  color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* ========================================================================= */
/* RESPONSIVE DESIGN                                                         */
/* ========================================================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sound-visual {
    min-height: 300px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-step + .process-step {
    border-left: 0;
    padding-left: 0;
  }
  .single-pricing-grid {
    grid-template-columns: 1fr;
  }
  .annual-grid {
    grid-template-columns: 1fr;
  }
  .decision-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 36px, 600px);
  }
  .section {
    padding: 80px 0;
  }
  .site-header {
    background: rgba(7, 7, 7, 0.95);
  }
  .nav-inner {
    height: 68px;
  }
  .logo-image {
    width: 104px;
    height: 36px;
  }
  .nav-links, .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px 24px 30px;
    background: #070707;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .mobile-menu[hidden] {
    display: none;
  }
  .mobile-link {
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    font-weight: 600;
  }
  .hero {
    min-height: 720px;
    padding: 140px 0 60px;
  }
  .hero h1 {
    font-size: clamp(64px, 18vw, 110px);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    padding: 24px 16px 24px 0;
  }
  .stat + .stat {
    padding-left: 16px;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(3), .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .section-header, .faq-grid, .global-grid, .ownership-grid, .contact-grid {
    display: block;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header p {
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    padding: 24px 0 28px 24px;
    border-left: 1px solid var(--bg-light-border);
  }
  .process-step::before {
    left: -5px;
    top: 28px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    min-height: 240px;
  }
  .cta-flex {
    display: block;
  }
  .cta-actions {
    margin-top: 30px;
    justify-content: flex-start;
  }
  .contact-actions {
    display: grid;
  }
  .contact-actions .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .annual-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .billing-toggle-container {
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━ DYNAMIC FLOATING STUDIO INSTRUMENTS ━━━━━━━━━━━━━━━━━━━━━━ */
.floating-instrument {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  will-change: transform, opacity;
}

.floating-instrument.in-view {
  opacity: 0.88;
}

.floating-instrument:hover {
  opacity: 1;
}

/* 1. Electric Guitar (Left Float) */
.float-guitar {
  top: 15%;
  left: -40px;
  width: 240px;
  max-width: 28vw;
  transform: translateX(-80px) rotate(-14deg);
  animation: guitarBob 8s ease-in-out infinite alternate;
}

.float-guitar.in-view {
  transform: translateX(0) rotate(-6deg);
}

/* 2. Studio Microphone (Right Float) */
.float-mic {
  top: 25%;
  right: -20px;
  width: 210px;
  max-width: 26vw;
  transform: translateX(80px) rotate(12deg);
  animation: micBob 7s ease-in-out infinite alternate;
}

.float-mic.in-view {
  transform: translateX(0) rotate(4deg);
}

/* 3. Studio Headphones (Hero Float) */
.float-headphones {
  bottom: 12%;
  right: 4%;
  width: 190px;
  max-width: 24vw;
  transform: translateY(60px) rotate(-10deg);
  animation: headphoneFloat 6.5s ease-in-out infinite alternate;
}

.float-headphones.in-view {
  transform: translateY(0) rotate(-4deg);
}

/* 4. Grand Piano / Synth Keys (Bottom-Left Float) */
.float-piano {
  bottom: 8%;
  left: -20px;
  width: 260px;
  max-width: 32vw;
  transform: translateX(-70px) rotate(8deg);
  animation: pianoFloat 9s ease-in-out infinite alternate;
}

.float-piano.in-view {
  transform: translateX(0) rotate(2deg);
}

/* 5. Gold Master Vinyl Record (Rotating Float) */
.float-vinyl {
  top: 18%;
  right: -30px;
  width: 220px;
  max-width: 28vw;
  transform: translateX(70px) scale(0.9);
  animation: vinylSpin 24s linear infinite;
}

.float-vinyl.in-view {
  transform: translateX(0) scale(1);
}

/* Keyframe Floating Animations */
@keyframes guitarBob {
  0% { transform: translateY(0px) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(-4deg); }
  100% { transform: translateY(8px) rotate(-8deg); }
}

@keyframes micBob {
  0% { transform: translateY(0px) rotate(4deg); }
  50% { transform: translateY(-14px) rotate(7deg); }
  100% { transform: translateY(10px) rotate(2deg); }
}

@keyframes headphoneFloat {
  0% { transform: translateY(0px) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(-1deg); }
  100% { transform: translateY(6px) rotate(-6deg); }
}

@keyframes pianoFloat {
  0% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
  100% { transform: translateY(10px) rotate(0deg); }
}

@keyframes vinylSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━ INTERACTIVE REAL STUDIO INSTRUMENTS ━━━━━━━━━━━━━━━━━━━━━━ */
.interactive-instrument {
  pointer-events: auto !important;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.interactive-instrument:hover {
  filter: drop-shadow(0 0 25px rgba(37, 99, 235, 0.8)) brightness(1.2) !important;
  transform: scale(1.06) !important;
  opacity: 1 !important;
}

.interactive-instrument.playing {
  animation: pulseMusic 1.2s infinite alternate !important;
  filter: drop-shadow(0 0 35px rgba(37, 99, 235, 0.9)) !important;
  opacity: 1 !important;
}

.instrument-hint {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.interactive-instrument:hover .instrument-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━ PLAYABLE PIANO KEYBOARD COMPONENT ━━━━━━━━━━━━━━━━━━━━━━ */
.piano-section {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.piano-container {
  display: inline-flex;
  position: relative;
  background: #000000;
  padding: 16px 20px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.15);
  user-select: none;
  margin-top: 24px;
}

.piano-key {
  position: relative;
  cursor: pointer;
  transition: background-color 0.05s ease, transform 0.05s ease;
  user-select: none;
}

.piano-white-key {
  width: 52px;
  height: 180px;
  background: linear-gradient(to bottom, #fcfcfc 0%, #ebebeb 90%, #d8d8d8 100%);
  border: 1px solid #111111;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #888888;
}

.piano-white-key:hover {
  background: #f0f4ff;
}

.piano-white-key.active, .piano-white-key:active {
  background: #60a5fa !important;
  color: #ffffff !important;
  transform: translateY(3px) scaleY(0.98);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3), 0 0 16px rgba(37, 99, 235, 0.6);
}

.piano-black-key {
  position: absolute;
  width: 32px;
  height: 110px;
  background: linear-gradient(to bottom, #2a2a2a 0%, #111111 100%);
  border: 1px solid #000000;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 2;
  top: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  color: #aaaaaa;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.piano-black-key:hover {
  background: #333333;
}

.piano-black-key.active, .piano-black-key:active {
  background: #2563eb !important;
  color: #ffffff !important;
  transform: translateY(2px) scaleY(0.98);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.8);
}

/* ━━━━━━━━━━━━━━━━━━━━━━ FLOATING NOW-PLAYING AUDIO TOAST ━━━━━━━━━━━━━━━━━━━━━━ */
.now-playing-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid #2563eb;
  border-radius: 40px;
  padding: 10px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 99, 235, 0.35);
  animation: slideUpToast 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spinning-disc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vinylSpin 3s linear infinite;
}

.disc-center {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60a5fa;
}

.toast-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.toast-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.toast-sub {
  font-size: 10px;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 6px;
}

.toast-btn {
  background: #2563eb;
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.15s ease;
}

.toast-btn:hover {
  transform: scale(1.1);
}

.toast-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.toast-wave-bar {
  width: 2.5px;
  background: #60a5fa;
  border-radius: 1px;
  animation: waveBar 0.8s infinite alternate ease-in-out;
}

.toast-wave-bar:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.toast-wave-bar:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.toast-wave-bar:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.toast-wave-bar:nth-child(4) { height: 14px; animation-delay: 0.4s; }

@keyframes waveBar {
  0% { height: 3px; }
  100% { height: 14px; }
}

@keyframes pulseMusic {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(2deg); }
}

@keyframes slideUpToast {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━ KINETIC VIDEO & MOTION GRAPHICS SHOWCASE ━━━━━━━━━━━━━━━━━━━━━━ */
.motion-showcase-section {
  background: radial-gradient(circle at 50% 50%, #151515 0%, #080808 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.motion-video-box {
  position: relative;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(37, 99, 235, 0.18);
}

.motion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.motion-overlay-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 30px;
  max-width: 860px;
  pointer-events: none;
}

.kinetic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid #2563eb;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #60a5fa;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: badgePulse 2s infinite ease-in-out;
}

.kinetic-heading-wrap {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kinetic-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(37, 99, 235, 0.5);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.kinetic-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

.motion-controls-bar {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.motion-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: blinkRec 1s infinite;
}

@keyframes blinkRec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━ MOBILE RESPONSIVE (≤768px) — FULL OVERHAUL ━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {

  /* ── Typography Scale ── */
  .display, h1.display {
    font-size: clamp(40px, 14vw, 80px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.02em;
  }
  h2 { font-size: clamp(26px, 8vw, 42px) !important; }
  h3 { font-size: clamp(18px, 5vw, 26px) !important; }

  /* ── Section spacing ── */
  .section { padding: 56px 0 !important; }
  .section-tight { padding: 40px 0 !important; }

  /* ── Buttons: full width on mobile ── */
  .button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 13px !important;
  }
  .nav-actions .button { width: auto; }

  /* ── Hero ── */
  .hero {
    min-height: auto !important;
    padding: 120px 0 60px !important;
    text-align: center;
  }
  .hero-badge { margin: 0 auto 20px; }
  .hero-desc { font-size: 15px !important; max-width: 100%; }
  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  .hero-actions .button { width: 100% !important; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 8px !important; }

  /* ── Stats grid ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }
  .stat { padding: 20px 12px !important; }

  /* ── Feature / process grids ── */
  .feature-grid, .process-grid, .audience-grid,
  .global-grid, .ownership-grid, .faq-grid,
  .contact-grid, .single-pricing-grid, .annual-grid,
  .decision-grid, .section-header {
    grid-template-columns: 1fr !important;
    display: block !important;
  }

  /* ── Pricing cards ── */
  .pricing-card {
    padding: 28px 20px !important;
    margin-bottom: 16px;
  }
  .pricing-price { font-size: 36px !important; }

  /* ── Admin table — horizontal scroll ── */
  .admin-table-wrapper,
  .admin-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .admin-table th, .admin-table td {
    padding: 10px 12px !important;
    font-size: 12px !important;
  }

  /* ── Step cards (Release Submit form) ── */
  .step-card {
    padding: 20px 16px !important;
    margin-bottom: 16px !important;
    border-radius: 4px;
  }

  /* ── Form inputs ── */
  .form-input, .form-select, .form-textarea {
    font-size: 16px !important; /* prevents iOS zoom */
    min-height: 48px;
    padding: 12px 14px !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .form-group { margin-bottom: 14px; }

  /* ── Tab buttons ── */
  .tab-btn {
    padding: 10px 14px !important;
    font-size: 10px !important;
  }

  /* ── Modal ── */
  .modal-dialog {
    margin: 16px !important;
    max-width: calc(100vw - 32px) !important;
    padding: 24px 18px !important;
    border-radius: 6px;
  }
  .modal-dialog .form-row { grid-template-columns: 1fr !important; }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    font-size: 11px;
  }

  /* ── Review / status tags ── */
  .status-tag { font-size: 9px !important; padding: 2px 6px !important; }

  /* ── Piano — hide on very small screens (not touch-friendly) ── */
  .piano-section { display: none !important; }

  /* ── Motion showcase: reduce height ── */
  .motion-video-box { height: 260px !important; }
  .kinetic-heading { font-size: clamp(28px, 10vw, 50px) !important; }

  /* ── Floating instruments — hide on mobile ── */
  .floating-instrument { display: none !important; }

  /* ── Billing toggle ── */
  .billing-toggle-container {
    width: 100%;
    justify-content: stretch;
  }
  .billing-toggle-btn { flex: 1; justify-content: center; }

  /* ── Annual header ── */
  .annual-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  /* ── Contact actions ── */
  .contact-actions {
    grid-template-columns: 1fr !important;
  }
  .contact-actions .button { width: 100% !important; }

  /* ── CTA flex ── */
  .cta-flex { display: block !important; }
  .cta-actions {
    margin-top: 24px !important;
    justify-content: flex-start !important;
    flex-direction: column;
    gap: 12px;
  }

  /* ── Now-playing toast ── */
  .now-playing-toast {
    bottom: 16px;
    right: 12px;
    left: 12px;
    border-radius: 16px;
    padding: 10px 14px;
  }

  /* ── Admin tab buttons wrap ── */
  .tab-row-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* ── Logo ── */
  .logo-image {
    width: 100px !important;
    height: auto !important;
  }

  /* ── Process steps ── */
  .process-step {
    padding: 20px 0 24px 20px !important;
    border-left: 1px solid var(--bg-light-border) !important;
  }

  /* ── Audience cards ── */
  .audience-card { min-height: 200px !important; }

  /* ── DSP logo strip / scroll ── */
  .dsp-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 8px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━ EXTRA SMALL PHONES (≤480px) ━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
  .container { width: calc(100% - 28px) !important; }
  .section { padding: 44px 0 !important; }

  .display, h1.display {
    font-size: clamp(34px, 13vw, 64px) !important;
  }

  .stats-grid { grid-template-columns: 1fr !important; }
  .stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); }

  .step-card { padding: 16px 12px !important; }

  .admin-table th, .admin-table td {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }

  .modal-dialog { padding: 20px 14px !important; }

  .button {
    min-height: 50px !important;
    font-size: 12px !important;
  }

  .motion-video-box { height: 200px !important; }

  .verified-badge { font-size: 10px !important; padding: 4px 10px !important; }
  .error-box, .success-box { font-size: 12px !important; padding: 10px 12px !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━ TABLET (769px–1024px) — INTERMEDIATE ━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { width: min(100% - 40px, 960px); }

  .feature-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .process-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .annual-grid { grid-template-columns: 1fr !important; }
  .single-pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr) !important; gap: 32px !important; }

  .hero h1 { font-size: clamp(56px, 10vw, 100px) !important; }

  .admin-table th, .admin-table td { font-size: 12px; padding: 10px 12px; }

  .modal-dialog { max-width: 560px !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━ TOUCH DEVICE IMPROVEMENTS ━━━━━━━━━━━━━━━━━━━━━━ */
@media (hover: none) and (pointer: coarse) {
  /* Enlarge all tap targets */
  .button, .tab-btn, .stepper-btn, .modal-close {
    min-height: 48px !important;
    min-width: 48px;
  }

  /* Remove hover-only effects that don't work on touch */
  .floating-instrument:hover { opacity: 0.88 !important; transform: none !important; }
  .interactive-instrument:hover { transform: none !important; filter: none !important; }

  /* Disable hover animations on instruments */
  .float-guitar, .float-mic, .float-headphones, .float-piano, .float-vinyl {
    display: none !important;
  }

  /* Better tap highlight */
  a, button { -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2); }

  /* Form inputs: prevent zoom on iOS */
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="number"], select, textarea {
    font-size: 16px !important;
  }
}

