/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0b;
  --surface:   #131316;
  --border:    #1e1e24;
  --text:      #f0f0f0;
  --muted:     #7a7a8c;
  --accent:    #8b5cf6;   /* electric violet */
  --accent-hi: #a78bfa;
  --success:   #22c55e;
  --error:     #ef4444;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-hi); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--accent-hi);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hi) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ===== EMAIL FORM ===== */
.email-form-wrap { max-width: 480px; }

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}
.email-input::placeholder { color: var(--muted); }
.email-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }

.submit-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.submit-btn:hover { background: var(--accent-hi); transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--success);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-success.show { display: flex; }
.form-row.hidden { display: none; }

.form-error-msg {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--error);
  display: none;
}
.form-error-msg.show { display: block; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.15;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
}

.step-card { position: relative; }
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(139,92,246,0.2);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Inter', monospace;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

.step-arrow {
  position: absolute;
  right: -20px;
  top: 40px;
  color: var(--accent);
  font-size: 1.4rem;
  opacity: 0.4;
}
@media (max-width: 700px) { .step-arrow { display: none; } }

/* ===== ARTISTS GRID ===== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.artist-card:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-3px); }

.artist-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.artist-info { padding: 16px; }
.artist-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.artist-tag {
  display: inline-block;
  background: rgba(139,92,246,0.12);
  color: var(--accent-hi);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== SOCIAL PROOF ===== */
.proof-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.proof-stat {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hi) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}
.proof-label { font-size: 1.1rem; color: var(--muted); }
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  opacity: 0.3;
  flex-wrap: wrap;
}
.proof-logos span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-weight: 700;
  font-size: 1rem;
}
.footer-brand span { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .form-row { flex-direction: column; }
  .submit-btn { width: 100%; }
  .hero { padding: 100px 0 60px; }
  .section { padding: 60px 0; }
}