/* Bandalog — Neon Blue Studio Aesthetic */

:root {
  --bg: #0b0e1a;
  --bg-card: #111427;
  --neon: #00c8ff;
  --neon-dim: #007aa3;
  --neon-glow: rgba(0, 200, 255, 0.15);
  --neon-glow-strong: rgba(0, 200, 255, 0.35);
  --accent: #6c63ff;
  --text: #e8edf5;
  --text-muted: #6b7a99;
  --border: rgba(0, 200, 255, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(11, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--neon); }

.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--neon); }

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--neon);
  color: #0b0e1a;
  box-shadow: 0 0 24px var(--neon-glow-strong);
}

.btn-primary:hover {
  background: #22d5ff;
  box-shadow: 0 0 36px var(--neon-glow-strong);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon);
}

.btn-outline:hover {
  background: var(--neon-glow);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_189881/2dcf19c1-d3fa-4dea-9bc2-85e96a8f7029.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,14,26,0.4) 0%, rgba(11,14,26,0.8) 100%);
}

.hero-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,200,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-tracks {
  margin-top: 56px;
  padding: 20px 28px;
  background: rgba(17, 20, 39, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.hero-tracks p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-tracks span {
  color: var(--neon);
  font-size: 1.4rem;
  font-weight: 700;
}

/* ─── SECTION BASE ─── */
section { padding: 100px 48px; }
section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
section .subhead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}
.container { max-width: 1100px; margin: 0 auto; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── WHAT IS BANDALOG ─── */
.what { background: var(--bg-card); }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
.what-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.what-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}
.what-visual {
  background: linear-gradient(135deg, rgba(0,200,255,0.08), rgba(108,99,255,0.08));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box { text-align: center; }
.stat-box .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--neon);
  display: block;
}
.stat-box .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ─── GENRES ─── */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.genre-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.genre-card:hover {
  border-color: var(--neon);
  box-shadow: 0 0 30px var(--neon-glow);
}
.genre-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  filter: hue-rotate(180deg) brightness(1.5);
}
.genre-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.genre-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ─── PLATFORMS ─── */
.platforms { background: var(--bg-card); }
.platform-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 52px;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.25s;
}
.platform-badge:hover { border-color: var(--neon); color: var(--text); box-shadow: 0 0 20px var(--neon-glow); }
.platform-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

/* ─── FOR CREATORS / FOR PRODUCERS (split) ─── */
.split-section { background: var(--bg); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 52px;
}
.split-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}
.split-card .card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 14px;
}
.split-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.split-card > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}
.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 0.7rem;
  color: var(--neon);
  font-weight: 700;
}

/* ─── CTA ─── */
.cta-section {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.cta-section p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── EMAIL FORM ─── */
.email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.email-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-form input::placeholder { color: var(--text-muted); }
.email-form input:focus { border-color: var(--neon); }
.email-form button { flex-shrink: 0; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
footer .logo { font-size: 1rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--neon); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .what-grid, .split-grid { grid-template-columns: 1fr; }
  .genre-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 0 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { gap: 16px; }
  .what-visual { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
}