/* ===================================
   Brent Bradley - Ultra Modern Design
   Sleek, Minimal, Bold
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #050508;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --blue-primary: #0ea5e9;
  --blue-light: #38bdf8;
  --blue-glow: rgba(14, 165, 233, 0.4);
  --blue-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --text-dark: #64748b;
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Gradient Orbs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 600px;
  height: 600px;
  background: var(--blue-primary);
  top: -200px;
  right: -200px;
}

body::after {
  width: 500px;
  height: 500px;
  background: #6366f1;
  bottom: -150px;
  left: -150px;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.nav-logo .logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0c1220 100%);
  border: 3px solid var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-light);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px var(--blue-primary);
  box-shadow:
    0 0 30px var(--blue-glow),
    0 0 60px var(--blue-glow),
    0 0 90px rgba(14, 165, 233, 0.3),
    inset 0 0 30px rgba(14, 165, 233, 0.15);
  animation: logoPulse 2.5s ease-in-out infinite;
}

.nav-logo .logo-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--blue-light), transparent, var(--blue-primary)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: logoRing 4s linear infinite;
}

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

@keyframes logoPulse {
  0%, 100% {
    box-shadow:
      0 0 30px var(--blue-glow),
      0 0 60px var(--blue-glow),
      0 0 90px rgba(14, 165, 233, 0.3),
      inset 0 0 30px rgba(14, 165, 233, 0.15);
  }
  50% {
    box-shadow:
      0 0 40px var(--blue-glow),
      0 0 80px var(--blue-glow),
      0 0 120px rgba(14, 165, 233, 0.5),
      inset 0 0 40px rgba(14, 165, 233, 0.25);
  }
}

.nav-logo .logo-text {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 40%, #0369a1 100%);
  padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  margin-left: -1.5rem;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow:
    0 0 40px var(--blue-glow),
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
}

.nav-logo .first {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-logo .last {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-logo .dot {
  display: none;
}

.nav-logo:hover .logo-icon {
  animation: none;
  box-shadow:
    0 0 50px var(--blue-glow),
    0 0 100px var(--blue-glow),
    0 0 150px var(--blue-primary),
    inset 0 0 40px rgba(14, 165, 233, 0.4);
  transform: scale(1.1);
  transition: all 0.3s ease;
  border-color: var(--blue-light);
}

.nav-logo:hover .logo-icon::before {
  animation: none;
  opacity: 0;
}

.nav-logo:hover .logo-text {
  box-shadow:
    0 0 60px var(--blue-glow),
    0 6px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateX(3px);
  transition: all 0.3s ease;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-menu li {
  position: relative;
}

.nav-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--text-white);
  background: rgba(14, 165, 233, 0.15);
  box-shadow:
    0 0 20px rgba(14, 165, 233, 0.3),
    inset 0 0 15px rgba(14, 165, 233, 0.1);
}

.nav-link::after {
  display: none;
}

.nav-cta {
  display: block;
  padding: 0.6rem 1.5rem;
  background: var(--blue-gradient);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  transition: all 0.3s var(--ease-out);
  box-shadow:
    0 0 20px var(--blue-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px var(--blue-glow),
    0 0 50px rgba(14, 165, 233, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-logo .logo-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }

  .nav-logo .logo-icon::before {
    inset: -5px;
  }

  .nav-logo .logo-text {
    padding: 0.6rem 1.25rem 0.6rem 2rem;
    margin-left: -1.25rem;
  }

  .nav-logo .first,
  .nav-logo .last {
    font-size: 1.1rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: right 0.5s var(--ease-out);
  }

  .nav-menu.active { right: 0; }

  .nav-link {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    text-align: center;
  }

  .nav-cta {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    text-align: center;
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-label .status {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .gradient {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

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

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg-dark) 100%);
  z-index: 1;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1rem;
}

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: -30px;
  right: -30px;
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.stat-card {
  flex: 1;
  padding: 1.5rem 1rem;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  /* Animated gradient border via background trick */
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* Rotating gradient border */
.stat-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(
    var(--stat-border-angle, 0deg),
    var(--blue-primary),
    #6366f1,
    #0d9488,
    var(--blue-light)
  );
  z-index: -1;
  animation: rotateBorder 6s linear infinite;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

/* Inner glow overlay */
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  opacity: 1;
}

@keyframes rotateBorder {
  0%   { --stat-border-angle: 0deg; }
  100% { --stat-border-angle: 360deg; }
}

/* Register the custom property for the animation */
@property --stat-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Quote card content */
.quote-card {
  padding: 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.quote-text {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.45;
  transition: color 0.4s ease;
}

.quote-author {
  font-size: 0.7rem;
  color: var(--blue-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.4s ease;
}

.stat-card:hover .quote-text {
  color: #ffffff;
}

.stat-card:hover .quote-author {
  color: #a5b4fc;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--blue-gradient);
  color: var(--text-white);
  box-shadow: 0 0 30px var(--blue-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--blue-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass);
  border-color: var(--blue-primary);
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
}

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* ============ BENTO GRID ============ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.3);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-large { grid-column: span 8; }
.bento-medium { grid-column: span 6; }
.bento-small { grid-column: span 4; }

@media (max-width: 900px) {
  .bento-large, .bento-medium, .bento-small {
    grid-column: span 12;
  }
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.bento-card h3 {
  margin-bottom: 0.75rem;
}

.bento-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--blue-primary);
  transition: gap 0.3s ease;
}

.bento-link:hover {
  gap: 1rem;
}

/* ============ VIDEO SECTION ============ */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
}

.video-showcase {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.play-button {
  width: 100px;
  height: 100px;
  background: var(--blue-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 60px var(--blue-glow);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.play-button:hover {
  transform: scale(1.1);
}

/* ============ SHOWS TABLE ============ */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.show-item {
  display: grid;
  grid-template-columns: 120px 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s var(--ease-out);
}

.show-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(14, 165, 233, 0.3);
}

.show-date {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-light);
}

.show-venue {
  font-weight: 600;
}

.show-location {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .show-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--glass);
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--blue-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* ============ AUDIO PLAYER ============ */
.audio-player {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.audio-player:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.audio-player-btn {
  width: 56px;
  height: 56px;
  background: var(--blue-gradient);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.audio-player-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--blue-glow);
}

.audio-player-info {
  flex: 1;
  min-width: 0;
}

.audio-player-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-progress {
  height: 4px;
  background: var(--glass);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.audio-progress-bar {
  height: 100%;
  background: var(--blue-gradient);
  width: 0%;
  transition: width 0.1s linear;
}

.audio-player-duration {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-top: 0.5rem;
}

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px var(--blue-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dark);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.form-select option {
  background: #1e293b;
  color: #f1f5f9;
}

.form-error {
  color: #f87171;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .form-error { display: block; }
.form-group.error .form-input,
.form-group.error .form-textarea { border-color: #f87171; }

/* ============ FOOTER ============ */
.footer {
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-logo .logo-icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .nav-logo .logo-icon::before {
    inset: -4px;
  }

  .nav-logo .logo-text {
    padding: 0.5rem 1rem 0.5rem 1.75rem;
    margin-left: -1rem;
  }

  .nav-logo .first,
  .nav-logo .last {
    font-size: 0.95rem;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--blue-primary);
}

.footer-text {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--blue-primary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--text-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.875rem;
  color: var(--text-dark);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 12rem 0 5rem;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--blue-primary);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
}

/* ============ UTILITY ============ */
.text-gradient {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HERO ENTRANCE ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered hero content entrance */
.hero-content .hero-label,
.hero-content h1,
.hero-content .hero-text,
.hero-content .hero-buttons {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.hero-content .hero-label { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.25s; }
.hero-content .hero-text { animation-delay: 0.4s; }
.hero-content .hero-buttons { animation-delay: 0.55s; }

/* Hero image entrance */
.hero-visual .hero-image-wrapper {
  opacity: 0;
  animation: slideInRight 1s var(--ease-out) 0.3s forwards;
}

/* Stat cards staggered pop-in */
.hero-stats .stat-card {
  opacity: 0;
  animation: popIn 0.6s var(--ease-out) forwards;
}

.hero-stats .stat-card:nth-child(1) { animation-delay: 0.7s; }
.hero-stats .stat-card:nth-child(2) { animation-delay: 0.85s; }
.hero-stats .stat-card:nth-child(3) { animation-delay: 1.0s; }

/* ============ FLOATING ANIMATION ============ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stats {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* ============ GRADIENT TEXT SHIMMER ============ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero h1 .gradient {
  background: linear-gradient(
    90deg,
    #0ea5e9 0%,
    #38bdf8 25%,
    #7dd3fc 50%,
    #38bdf8 75%,
    #0ea5e9 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ============ BACKGROUND ORB TRAVERSE ============ */
@keyframes orbBlue {
  0%   { transform: translate(0, 0); opacity: 0.3; }
  20%  { transform: translate(-40vw, 30vh); opacity: 0.25; }
  40%  { transform: translate(-60vw, 60vh); opacity: 0.2; }
  60%  { transform: translate(-20vw, 80vh); opacity: 0.25; }
  80%  { transform: translate(10vw, 40vh); opacity: 0.3; }
  100% { transform: translate(0, 0); opacity: 0.3; }
}

@keyframes orbPurple {
  0%   { transform: translate(0, 0); opacity: 0.3; }
  20%  { transform: translate(40vw, -30vh); opacity: 0.25; }
  40%  { transform: translate(60vw, -60vh); opacity: 0.2; }
  60%  { transform: translate(20vw, -80vh); opacity: 0.25; }
  80%  { transform: translate(-10vw, -40vh); opacity: 0.3; }
  100% { transform: translate(0, 0); opacity: 0.3; }
}

@keyframes orbTeal {
  0%   { transform: translate(0, 0); opacity: 0.2; }
  15%  { transform: translate(-30vw, -20vh); opacity: 0.18; }
  35%  { transform: translate(20vw, -50vh); opacity: 0.15; }
  55%  { transform: translate(50vw, 10vh); opacity: 0.18; }
  75%  { transform: translate(15vw, 40vh); opacity: 0.22; }
  100% { transform: translate(0, 0); opacity: 0.2; }
}

body::before {
  animation: orbBlue 45s ease-in-out infinite;
}

body::after {
  animation: orbPurple 50s ease-in-out infinite;
}

/* Third fog orb */
.fog-orb {
  position: fixed;
  width: 550px;
  height: 550px;
  background: #0d9488;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin-top: -275px;
  margin-left: -275px;
  animation: orbTeal 55s ease-in-out infinite;
}

/* ============ STAT CARD HOVER GLOW ============ */
.stat-card {
  transition: all 0.4s var(--ease-out);
}

.stat-card:hover {
  background: rgba(14, 165, 233, 0.06);
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 12px 40px rgba(14, 165, 233, 0.2),
    0 0 60px rgba(14, 165, 233, 0.08);
}

/* ============ BUTTON SHINE EFFECT ============ */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 120%;
}

/* ============ HERO PARALLAX ============ */
.hero-visual {
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* ============ HERO LABEL HOVER ============ */
.hero-label {
  transition: all 0.3s var(--ease-out);
}

.hero-label:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-content .hero-label,
  .hero-content h1,
  .hero-content .hero-text,
  .hero-content .hero-buttons,
  .hero-visual .hero-image-wrapper,
  .hero-stats .stat-card {
    opacity: 1;
    animation: none;
  }

  .hero-visual,
  .hero-stats {
    animation: none;
  }

  .hero h1 .gradient {
    animation: none;
  }

  body::before,
  body::after,
  .fog-orb {
    animation: none;
  }

  .btn-primary::after {
    display: none;
  }

  .stat-card::before {
    animation: none;
    opacity: 0.3;
  }
}

/* Press Grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.press-item {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.press-item:hover {
  border-color: var(--blue-primary);
  transform: translateY(-5px);
}

.press-item-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

/* Equipment List */
.equipment-list {
  list-style: none;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.equipment-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
}

.equipment-list li:last-child { border-bottom: none; }

.equipment-list li::before {
  content: '✓';
  color: var(--blue-primary);
  font-weight: 700;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Card Styles */
.card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.card h4 {
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 6rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 70%);
}

.cta-section h2,
.cta-section p,
.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* Demo List */
.demo-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Samples Grid */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .samples-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ VOICE OVER SAMPLES HERO ============ */
.samples-hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.samples-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.samples-hero-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.samples-hero-header h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1rem;
}

.samples-hero-header p {
  font-size: 1.25rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Featured Demo Player */
.featured-demo {
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
}

.featured-demo-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.featured-audio-player {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(6, 78, 140, 0.15) 100%);
  border: 2px solid var(--blue-primary);
  border-radius: 100px;
  box-shadow:
    0 0 40px var(--blue-glow),
    0 0 80px rgba(14, 165, 233, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.featured-audio-player:hover {
  box-shadow:
    0 0 60px var(--blue-glow),
    0 0 100px rgba(14, 165, 233, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.featured-play-btn {
  width: 70px;
  height: 70px;
  background: var(--blue-gradient);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 30px var(--blue-glow);
}

.featured-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px var(--blue-glow);
}

.featured-audio-info {
  flex: 1;
}

.featured-audio-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.featured-audio-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.featured-audio-progress-bar {
  height: 100%;
  background: var(--blue-gradient);
  width: 0%;
  transition: width 0.1s linear;
}

.featured-audio-duration {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Voice Over Main Layout */
.vo-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.vo-demos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vo-sidebar {
  display: flex;
}

.vo-sidebar .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


@media (max-width: 900px) {
  .vo-main-layout {
    grid-template-columns: 1fr;
  }
}

/* Sample Cards */

.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.sample-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sample-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sample-card:hover::before {
  opacity: 1;
}

.sample-card-icon {
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border-radius: 10px;
  flex-shrink: 0;
}

.sample-card-content {
  width: 100%;
  min-width: 0;
}

.sample-card-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sample-card-content p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0;
}

.sample-progress {
  height: 4px;
  background: var(--glass);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
  cursor: pointer;
}

.sample-progress-bar {
  height: 100%;
  background: var(--blue-gradient);
  width: 0%;
  transition: width 0.1s linear;
}

.sample-duration {
  font-size: 0.75rem;
  color: var(--text-dark);
  margin: 0.2rem 0 0;
}

.sample-card-player {
  flex-shrink: 0;
}

.sample-play-btn {
  width: 46px;
  height: 46px;
  background: var(--blue-gradient);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 20px var(--blue-glow);
}

.sample-play-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 35px var(--blue-glow);
}

.sample-card.playing {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(6, 78, 140, 0.1) 100%);
  border-color: var(--blue-primary);
  box-shadow:
    0 0 30px var(--blue-glow),
    0 20px 40px rgba(0, 0, 0, 0.3);
}

.sample-card.playing::before {
  opacity: 1;
}

/* Samples CTA */
.samples-cta {
  text-align: center;
}

.samples-cta .btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.samples-cta p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}
