/* ============================================================
   AMPLIFY MUSIC GROUP — Global Design System
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --bg:           #0a0a0a;
  --surface:      #111111;
  --surface-2:    #161616;
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text:         #ffffff;
  --text-muted:   #999999;
  --text-dim:     #666666;

  /* Artist palette */
  --artist:       #8B5CF6;
  --artist-2:     #ec4899;
  --artist-glow:  rgba(139, 92, 246, 0.35);
  --artist-bg:    rgba(139, 92, 246, 0.08);
  --artist-grad:  linear-gradient(135deg, #8B5CF6, #ec4899);

  /* Creator palette */
  --creator:      #22c55e;
  --creator-2:    #06b6d4;
  --creator-glow: rgba(34, 197, 94, 0.35);
  --creator-bg:   rgba(34, 197, 94, 0.08);
  --creator-grad: linear-gradient(135deg, #22c55e, #06b6d4);

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  60px;

  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.7);

  --transition:   0.2s ease;
  --nav-h:        72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo svg { width: 36px; height: 36px; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-user-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 20px 48px; font-size: 18px; letter-spacing: 1px; }
.btn-block { width: 100%; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
}

.btn-artist {
  background: var(--artist-grad);
  color: #fff;
  box-shadow: 0 4px 20px var(--artist-glow);
}
.btn-artist:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--artist-glow);
}

.btn-creator {
  background: var(--creator-grad);
  color: #0a0a0a;
  box-shadow: 0 4px 20px var(--creator-glow);
}
.btn-creator:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--creator-glow);
}

.btn-white {
  background: #fff;
  color: #0a0a0a;
}
.btn-white:hover {
  background: #eee;
  transform: translateY(-1px);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.btn-danger:hover { background: rgba(239, 68, 68, 0.25); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
}

.card-artist {
  border-color: rgba(139, 92, 246, 0.2);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent);
}

.card-creator {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), transparent);
}

/* ============================================================
   BADGES / TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-pending  { background: rgba(251,191,36,0.15); color: #fbbf24; }
.badge-matched  { background: rgba(139,92,246,0.15); color: #8B5CF6; }
.badge-live     { background: rgba(34,197,94,0.15);  color: #22c55e; }
.badge-completed{ background: rgba(99,102,241,0.15); color: #818cf8; }
.badge-accepted { background: rgba(6,182,212,0.15);  color: #06b6d4; }
.badge-paid     { background: rgba(34,197,94,0.15);  color: #22c55e; }
.badge-new      { background: rgba(236,72,153,0.15); color: #ec4899; }
.badge-verified { background: rgba(34,197,94,0.15);  color: #22c55e; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-label span { color: #ef4444; margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--artist);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

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

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option { background: #1a1a1a; color: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-hint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: -4px;
}

/* Checkboxes & Radios */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.check-item:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.check-item.selected {
  border-color: var(--artist);
  background: var(--artist-bg);
  color: var(--text);
}

.check-item.selected-creator {
  border-color: var(--creator);
  background: var(--creator-bg);
  color: var(--text);
}

.check-item input { display: none; }

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.radio-item:hover { border-color: var(--border-hover); }

.radio-item.selected {
  border-color: var(--artist);
  background: var(--artist-bg);
}

.radio-item input { display: none; }

.radio-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-hover);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.radio-item.selected .radio-dot {
  border-color: var(--artist);
  background: var(--artist);
}

.radio-item.selected .radio-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}

.radio-label { font-size: 14px; font-weight: 600; color: var(--text); }
.radio-sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ============================================================
   HERO SHARED
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 80px 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--artist);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.grad-artist {
  background: var(--artist-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-creator {
  background: var(--creator-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}

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

/* Glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.glow-purple {
  width: 500px; height: 500px;
  background: rgba(139, 92, 246, 0.18);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}

.glow-pink {
  width: 300px; height: 300px;
  background: rgba(236, 72, 153, 0.12);
  bottom: 100px; right: -50px;
}

.glow-green {
  width: 400px; height: 400px;
  background: rgba(34, 197, 94, 0.15);
  top: -50px; left: 50%;
  transform: translateX(-50%);
}

.glow-cyan {
  width: 300px; height: 300px;
  background: rgba(6, 182, 212, 0.12);
  bottom: 50px; right: -50px;
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   SECTION CONTAINERS
   ============================================================ */
.section {
  padding: 100px 40px;
}

.section-sm { padding: 60px 40px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--artist);
  margin-bottom: 16px;
}

.section-tag-creator { color: var(--creator); }

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-num-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--artist);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  background: var(--bg);
  transition: all var(--transition);
}

.step-card:hover .step-num-circle {
  border-color: var(--artist);
  background: var(--artist-bg);
  transform: scale(1.05);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   FEATURE / BENEFIT CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: var(--artist-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   TABS
   ============================================================ */
.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.tab-btn.active-artist {
  background: var(--artist-grad);
  color: #fff;
}

.tab-btn.active-creator {
  background: var(--creator-grad);
  color: #0a0a0a;
}

/* ============================================================
   SOUNDWAVE ANIMATION
   ============================================================ */
.soundwave {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  margin: 32px auto;
  height: 40px;
}

.soundwave .bar {
  width: 3px;
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.3); }
}

.soundwave .bar:nth-child(1)  { animation-delay: 0.0s; height: 12px; }
.soundwave .bar:nth-child(2)  { animation-delay: 0.1s; height: 24px; }
.soundwave .bar:nth-child(3)  { animation-delay: 0.2s; height: 18px; }
.soundwave .bar:nth-child(4)  { animation-delay: 0.3s; height: 32px; }
.soundwave .bar:nth-child(5)  { animation-delay: 0.4s; height: 14px; }
.soundwave .bar:nth-child(6)  { animation-delay: 0.5s; height: 28px; }
.soundwave .bar:nth-child(7)  { animation-delay: 0.6s; height: 20px; }
.soundwave .bar:nth-child(8)  { animation-delay: 0.7s; height: 36px; }
.soundwave .bar:nth-child(9)  { animation-delay: 0.8s; height: 16px; }
.soundwave .bar:nth-child(10) { animation-delay: 0.9s; height: 26px; }
.soundwave .bar:nth-child(11) { animation-delay: 1.0s; height: 12px; }
.soundwave .bar:nth-child(12) { animation-delay: 1.1s; height: 30px; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card.popular {
  border-color: var(--artist);
  transform: scale(1.03);
}

.pricing-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--artist-grad);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pricing-feature::before {
  content: '✓';
  color: var(--artist);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================================
   DASHBOARD LAYOUT
   ============================================================ */
.dash-layout {
  display: flex;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.dash-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 32px 0;
  position: fixed;
  top: var(--nav-h);
  bottom: 0;
  left: 0;
  overflow-y: auto;
  z-index: 50;
}

.dash-nav-section {
  padding: 0 16px;
  margin-bottom: 8px;
}

.dash-nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 12px;
  margin-bottom: 8px;
  margin-top: 24px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  border: none;
  background: none;
  text-align: left;
}

.dash-nav-item:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.dash-nav-item.active {
  background: var(--artist-bg);
  color: var(--artist);
  font-weight: 600;
}

.dash-nav-item.active-creator {
  background: var(--creator-bg);
  color: var(--creator);
  font-weight: 600;
}

.dash-nav-icon { font-size: 18px; width: 20px; text-align: center; }

.dash-main {
  flex: 1;
  margin-left: 260px;
  padding: 40px;
  min-width: 0;
}

.dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-title { font-size: 28px; font-weight: 900; letter-spacing: -0.5px; }
.dash-subtitle { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* Stats Overview */
.stats-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.stat-card-value {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card-change {
  font-size: 12px;
  color: var(--creator);
  margin-top: 6px;
  font-weight: 600;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}

.table tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: rgba(255,255,255,0.02); }

.table .td-main { color: var(--text); font-weight: 600; }

/* Creator cards grid */
.creator-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.creator-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.creator-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.creator-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.creator-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.creator-card-name { font-size: 16px; font-weight: 700; }
.creator-card-handle { font-size: 13px; color: var(--text-muted); }

.creator-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.creator-stat { font-size: 13px; color: var(--text-muted); }
.creator-stat strong { display: block; font-size: 15px; color: var(--text); font-weight: 700; }

/* Song / Opportunity cards */
.opp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}

.opp-card:hover { border-color: var(--border-hover); }

.opp-cover {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.opp-info { flex: 1; min-width: 0; }
.opp-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.opp-artist { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.opp-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.opp-meta { text-align: right; flex-shrink: 0; }
.opp-pay { font-size: 20px; font-weight: 900; color: var(--creator); }
.opp-pay-label { font-size: 11px; color: var(--text-dim); margin-bottom: 12px; }
.opp-deadline { font-size: 12px; color: var(--text-dim); margin-top: 8px; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.modal-title { font-size: 22px; font-weight: 800; }

.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover { color: var(--text); border-color: var(--border-hover); }

/* Toast */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.toast {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Auth page */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.auth-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.auth-title { font-size: 26px; font-weight: 900; text-align: center; margin-bottom: 8px; }
.auth-sub { font-size: 15px; color: var(--text-muted); text-align: center; margin-bottom: 32px; }

.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--surface-2);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 28px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
  text-align: center;
}

.auth-tab.active {
  background: var(--artist-grad);
  color: #fff;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-dim);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Role selector */
.role-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.role-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.role-card:hover { border-color: var(--border-hover); }

.role-card.selected-artist {
  border-color: var(--artist);
  background: var(--artist-bg);
}

.role-card.selected-creator {
  border-color: var(--creator);
  background: var(--creator-bg);
}

.role-emoji { font-size: 32px; margin-bottom: 8px; }
.role-name { font-size: 15px; font-weight: 700; }
.role-desc { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Utility */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.font-bold { font-weight: 700; }
.text-artist { color: var(--artist); }
.text-creator { color: var(--creator); }
.hidden { display: none !important; }

/* Section split */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.split-panel {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-panel-artist {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.1));
  border: 1px solid rgba(139,92,246,0.2);
}

.split-panel-creator {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(6,182,212,0.1));
  border: 1px solid rgba(34,197,94,0.2);
}

/* Inline form in dashboard */
.form-stack { display: flex; flex-direction: column; gap: 20px; }

/* Panel sections in dashboard */
.dash-section { margin-bottom: 40px; }
.dash-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-section-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state-title { font-size: 18px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-overview { grid-template-columns: repeat(2, 1fr); }
  .dash-sidebar { width: 220px; }
  .dash-main { margin-left: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 20px; }
  .section-sm { padding: 48px 20px; }
  .stats-bar { padding: 24px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .split-hero { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-main { margin-left: 0; padding: 24px 20px; }
  .stats-overview { grid-template-columns: 1fr; }
  .creator-cards { grid-template-columns: 1fr; }
  .opp-card { flex-direction: column; }
  .opp-meta { text-align: left; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .auth-box { padding: 32px 24px; }
  .role-selector { grid-template-columns: 1fr; }
  .hero-title { font-size: 42px; letter-spacing: -1px; }
}

@media (max-width: 480px) {
  .check-grid { grid-template-columns: 1fr 1fr; }
  .radio-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 24px; }
}
