/* ═══ BeatForge Studio Landing ═══ */
:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --card: #16161f;
  --border: rgba(255,255,255,0.07);
  --text: #e4e4e7;
  --muted: #8b8b9e;
  --primary: #3b82f6;
  --accent: #7c3aed;
  --gradient: linear-gradient(135deg, #3b82f6, #7c3aed);
  --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ═══ NAV ═══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.logo-mark { flex-shrink: 0; line-height: 0; }
.logo-text { font-weight: 300; font-size: 19px; letter-spacing: -0.01em; }
.logo-bold { font-weight: 800; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 28px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .15s ease;
}
.btn-sm { padding: 8px 20px; font-size: 13px; border-radius: 6px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59,130,246,0.35); }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: #e5e5e5; }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-full { width: 100%; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 100vh;
}
/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,15,0.85) 0%,
    rgba(10,10,15,0.7) 40%,
    rgba(10,10,15,0.85) 100%
  );
}
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.hero-img img {
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06);
}

/* ═══ SECTIONS ═══ */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 60px;
}

/* ═══ SPLIT ROWS (image + text side by side) ═══ */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.split-img img {
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.split-text h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.split-text > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Feature pills (small text blocks under split) */
.feature-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.pill {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.pill strong { color: #fff; display: block; margin-bottom: 2px; }
.pill-line {
  width: 32px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* Stat row */
.stat-row { display: flex; gap: 40px; margin-top: 36px; }
.stat-block { text-align: left; }
.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.stat-desc { font-size: 13px; color: var(--muted); }

/* ═══ BENTO GRID ═══ */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bento-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 36px;
  transition: border-color .3s, transform .3s;
  overflow: hidden;
  position: relative;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .3s;
}
.bento-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.bento-card:hover::before { opacity: 1; }
.bento-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Hero card — full width */
.bento-hero { grid-column: 1 / -1; }
.bento-card-inner { display: flex; align-items: center; gap: 48px; }
.bento-left { flex: 1; }
.bento-num {
  font-size: 64px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}

/* Animated soundwave bars */
.bento-bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 140px; flex-shrink: 0;
}
.bar {
  width: 16px;
  height: var(--h);
  background: var(--c);
  border-radius: 4px 4px 0 0;
  animation: barPulse 1.8s ease-in-out var(--d) infinite alternate;
  opacity: 0.7;
}
@keyframes barPulse {
  0% { height: var(--h); opacity: 0.7; }
  100% { height: calc(var(--h) * 0.5 + 20%); opacity: 1; }
}

/* Medium cards */
.bento-mid { }
.bento-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--accent); margin-bottom: 12px;
  text-transform: uppercase;
}

/* EQ curve visual */
.bento-eq { margin-top: 24px; }
.eq-curve { width: 100%; height: 50px; }

/* LUFS meter visual */
.bento-meter { margin-top: 24px; }
.meter-bar {
  height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.meter-fill {
  height: 100%; width: var(--w);
  background: linear-gradient(90deg, var(--accent), #a78bfa);
  border-radius: 4px;
  animation: meterGrow 2s ease-out forwards;
}
@keyframes meterGrow { from { width: 0; } to { width: var(--w); } }
.meter-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted); margin-top: 6px;
  font-family: 'Courier New', monospace;
}
.meter-labels span:last-child { color: var(--accent); font-weight: 700; }

/* Small cards */
.bento-sm {
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
}
.bento-sm h3 { font-size: 16px; }

/* ═══ VOICES / TESTIMONIALS ═══ */
.voices-section { padding: 120px 0; }

/* Hero quote */
.voice-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  position: relative;
}
.voice-quote-mark {
  font-size: 120px;
  font-weight: 900;
  line-height: 0.5;
  background: linear-gradient(135deg, #818cf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  user-select: none;
}
.voice-hero blockquote {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.voice-author-hero {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.voice-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.voice-avatar-sm { width: 36px; height: 36px; font-size: 13px; }
.voice-avatar-img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}
.voice-avatar-img-sm {
  width: 40px; height: 40px;
}
.voice-author-hero strong { display: block; font-size: 15px; }
.voice-author-hero span { font-size: 13px; color: var(--muted); }

/* Secondary cards */
.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.voice-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
}
.voice-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.voice-top strong { display: block; font-size: 14px; }
.voice-top span { font-size: 12px; color: var(--muted); }
.voice-card > p {
  font-size: 15px; color: #bbb;
  line-height: 1.7;
  margin-bottom: 24px;
}
.voice-metric {
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric-num {
  font-size: 24px; font-weight: 900;
  background: linear-gradient(135deg, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-label { font-size: 13px; color: var(--muted); }

/* Trust stats bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 32px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.trust-item > span:last-child {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.trust-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* ═══ BLUE CTA BANNER ═══ */
.banner-cta {
  padding: 80px 0;
  background: #22d3ee;
  color: #000;
}
.banner-cta h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.banner-cta p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 32px;
  opacity: 0.8;
}
.btn-dark {
  background: #000;
  color: #fff;
  border: none;
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ═══ CTA / DOWNLOAD ═══ */
.cta-section { padding: 120px 0; }
.cta-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-box > p { color: var(--muted); font-size: 17px; margin-bottom: 40px; }
.cta-form { max-width: 520px; margin: 0 auto; }
.form-row {
  display: flex; gap: 12px;
}
.form-row input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff; font-size: 15px; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.form-row input:focus { border-color: var(--primary); }
.form-row input::placeholder { color: var(--muted); }
.form-fine { font-size: 12px; color: var(--muted); margin-top: 14px; }

.dl-success { padding: 24px 0; }
.dl-icon { font-size: 48px; margin-bottom: 12px; }
.dl-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.dl-success p { color: var(--muted); font-size: 14px; }
.dl-hint { margin-top: 12px; }
.dl-hint a { color: var(--primary); text-decoration: underline; }
.dl-sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }

/* Install steps */
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 28px;
}
.install-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.install-step:last-child { border-bottom: none; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.install-step strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.install-step span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══ FOOTER ═══ */
.footer { padding: 60px 0 28px; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; color: #999; text-decoration: none; font-size: 14px; padding: 3px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: #666;
}
.footer-bottom a { color: #666; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero-split, .split-row, .split-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split-row.reverse { direction: ltr; }
  .hero-text h1 { font-size: 32px; }
  .bento { grid-template-columns: 1fr; }
  .bento-card-inner { flex-direction: column; gap: 24px; }
  .bento-bars { height: 80px; }
  .voices-grid { grid-template-columns: 1fr; }
  .voice-hero blockquote { font-size: 20px; }
  .trust-bar { flex-wrap: wrap; gap: 24px; }
  .reviews-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat-row { flex-wrap: wrap; gap: 24px; }
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .form-row { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
