:root {
  --bg: #07070f;
  --bg-2: #0d0d1a;
  --bg-3: #111127;
  --fg: #f0eef8;
  --fg-muted: #9994b8;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.35);
  --magenta: #FF2D7B;
  --magenta-dim: rgba(255, 45, 123, 0.12);
  --teal: #00D4B4;
  --teal-dim: rgba(0, 212, 180, 0.12);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 100px 80px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}
.hero-glow--primary {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  top: -100px; left: 20%;
}
.hero-glow--secondary {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,45,123,0.12) 0%, transparent 70%);
  bottom: 50px; right: 25%;
  animation-delay: 1.5s;
}
.hero-glow--tertiary {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,180,0.1) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation-delay: 0.8s;
}
@keyframes pulse-glow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}
.glow-text {
  color: var(--accent);
  text-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(245,166,35,0.2);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* DJ Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-left: 80px;
}

.dj-mix {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 140px;
}
.mix-bar {
  width: 8px;
  background: var(--accent);
  border-radius: 4px;
  animation: mix-anim 1.2s ease-in-out infinite alternate;
  box-shadow: 0 0 12px rgba(245,166,35,0.5);
}
.mix-bar--1 { height: 30%; animation-delay: 0s; }
.mix-bar--2 { height: 60%; animation-delay: 0.1s; }
.mix-bar--3 { height: 90%; animation-delay: 0.2s; }
.mix-bar--4 { height: 45%; animation-delay: 0.3s; }
.mix-bar--5 { height: 75%; animation-delay: 0.4s; }
.mix-bar--6 { height: 55%; animation-delay: 0.5s; }
.mix-bar--7 { height: 85%; animation-delay: 0.6s; }
.mix-bar--8 { height: 40%; animation-delay: 0.7s; }
@keyframes mix-anim {
  0% { transform: scaleY(0.4); opacity: 0.5; }
  100% { transform: scaleY(1); opacity: 1; }
}
.deck-text {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ===== SHARED SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.section-desc {
  margin-top: 20px;
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== VIBES ===== */
.vibes {
  padding: 100px 80px;
  background: var(--bg-2);
  position: relative;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vibe-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.vibe-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
}
.vibe-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
}
.vibe-icon svg { width: 100%; height: 100%; }
.vibe-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
}
.vibe-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== PROFILES ===== */
.profiles {
  padding: 100px 80px;
  background: var(--bg);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.profile-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.profile-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
}
.profile-card--featured {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(135deg, rgba(245,166,35,0.05) 0%, var(--bg-3) 60%);
}

.profile-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.profile-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.profile-artist { display: flex; align-items: center; gap: 14px; }
.artist-avatar { flex-shrink: 0; }
.avatar-inner {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.avatar-inner svg { width: 40px; height: 40px; }
.artist-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.artist-location {
  font-size: 12px;
  color: var(--fg-muted);
}
.profile-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  text-align: right;
}
.price-unit {
  font-size: 11px;
  color: var(--fg-muted);
  display: block;
  font-family: var(--font-body);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.tag--amapiano { background: rgba(245,166,35,0.15); color: var(--accent); }
.tag--deep { background: rgba(0,212,180,0.12); color: var(--teal); }
.tag--afro { background: rgba(255,45,123,0.12); color: var(--magenta); }
.tag--house { background: rgba(168,85,247,0.15); color: #a855f7; }
.tag--rnb { background: rgba(59,130,246,0.12); color: #60a5fa; }
.tag--gqom { background: rgba(245,166,35,0.12); color: var(--accent); }

.profile-vibe {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}
.profile-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-item {
  font-size: 12px;
  color: var(--fg-muted);
}

.profiles-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== HOW ===== */
.how {
  padding: 100px 80px;
  background: var(--bg-2);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 300px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: rgba(245,166,35,0.2);
  margin: 28px 20px 0;
  flex-shrink: 0;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.manifesto-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}
.manifesto-tagline {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-shadow: 0 0 40px var(--accent-glow);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 80px 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--fg);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
}
.footer-copy { font-size: 13px; color: var(--fg-muted); }
.footer-made { font-size: 12px; color: var(--fg-muted); opacity: 0.5; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 24px 60px;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: 64px; }
  .vibes, .profiles, .how, .manifesto, .footer { padding: 60px 24px; }
  .vibe-grid { grid-template-columns: 1fr 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .vibe-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 52px; }
  .manifesto-headline { font-size: 28px; }
  .manifesto-tagline { font-size: 32px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 28px; }
}