/* Music Pitch — Website Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --text: #e0e0e0;
  --text2: #999;
  --accent: #7c3aed;
  --accent2: #a78bfa;
  --green: #4ade80;
  --yellow: #fbbf24;
  --radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--bg2); }
.section-sub { color: var(--text2); font-size: 18px; margin-top: 8px; text-align: center; }

h1, h2, h3 { line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; text-align: center; }
h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; text-align: center; margin-bottom: 40px; }

a { color: var(--accent2); text-decoration: none; }
a:hover { color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #6d28d9; color: #fff; }
.btn-secondary { background: transparent; border: 2px solid #444; color: var(--text); }
.btn-secondary:hover { border-color: var(--accent); color: #fff; }
.btn-lg { padding: 18px 40px; font-size: 18px; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #222;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo { font-size: 20px; font-weight: 800; color: #fff; }
.nav-logo:hover { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--text2); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: #6d28d9 !important; }

/* ── Hero ── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}
.hero-sub {
  max-width: 680px;
  margin: 20px auto 32px;
  font-size: 18px;
  color: var(--text2);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 14px; color: #666; }

/* ── Problem ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--bg3);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.problem-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.problem-card h3 { font-size: 20px; margin-bottom: 8px; }
.problem-card p { color: var(--text2); font-size: 15px; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg2);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.feature-card h3 { font-size: 17px; margin-bottom: 6px; }
.feature-card p { color: var(--text2); font-size: 14px; }

/* ── Platforms ── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.platform-group {
  background: var(--bg3);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 24px;
}
.platform-group h3 { font-size: 18px; margin-bottom: 12px; text-align: left; }
.platform-group ul { list-style: none; }
.platform-group li {
  padding: 6px 0;
  border-bottom: 1px solid #222;
  font-size: 15px;
  color: var(--text2);
}
.platform-group li:last-child { border-bottom: none; }

/* ── Steps ── */
.steps-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: var(--bg2);
  border: 1px solid #222;
  border-radius: var(--radius);
  padding: 24px;
  width: 200px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 15px; margin-bottom: 6px; }
.step-card p { color: var(--text2); font-size: 13px; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg3);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
}
.price-card-pro {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.price-card h3 { font-size: 24px; margin-bottom: 8px; }
.price { font-size: 48px; font-weight: 900; margin-bottom: 20px; }
.price span { font-size: 16px; font-weight: 400; color: var(--text2); }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card li { padding: 6px 0; font-size: 14px; color: var(--text2); }
.price-card .btn { width: 100%; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #222;
  padding: 16px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  list-style: none;
}
.faq-item summary::before { content: "+ "; color: var(--accent); }
.faq-item[open] summary::before { content: "− "; }
.faq-item p { margin-top: 8px; color: var(--text2); font-size: 15px; }

/* ── CTA ── */
.section-cta {
  text-align: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0a 100%);
  padding: 100px 0;
}
.section-cta p { color: var(--text2); font-size: 18px; margin-bottom: 24px; }

/* ── Footer ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid #222;
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo { font-size: 20px; font-weight: 800; }
.footer-col p { color: var(--text2); font-size: 14px; margin-top: 8px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.footer-col a { display: block; color: var(--text2); font-size: 14px; padding: 3px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid #222; }
.footer-bottom p { color: #444; font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .hero { padding: 120px 0 60px; }
}
