:root {
  --ink: #0a0710;
  --ink-800: #120b1e;
  --ink-700: #1a1029;
  --surface: #171022;
  --surface-raised: #221634;
  --neon-pink: #ff2e97;
  --neon-purple: #9d4edd;
  --neon-blue: #4cc9f0;
  --neon-green: #39ff14;
  --text-primary: #f5f3ff;
  --text-secondary: #b7aecb;
  --text-muted: #7c7393;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --max-width: 1120px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--max-width));
  margin-inline: auto;
}

/* ─── Ambient background ─────────────────────────────────────────────────── */

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-glow::before,
.page-glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.page-glow::before {
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: var(--neon-purple);
  opacity: 0.18;
}

.page-glow::after {
  bottom: -160px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: var(--neon-blue);
  opacity: 0.1;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */

.site-header {
  padding: 20px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  padding: 72px 0 96px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 32px;
  max-width: 52ch;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.9375rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ─── Phone mockup ───────────────────────────────────────────────────────── */

.phone-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 46, 151, 0.12), rgba(157, 78, 221, 0.08));
  pointer-events: none;
}

.phone-inner {
  position: relative;
  border-radius: 22px;
  background: var(--ink-700);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 20px;
}

.phone-header {
  margin-bottom: 18px;
}

.phone-header h2 {
  margin: 0 0 4px;
  font-size: 1.125rem;
  font-weight: 800;
}

.phone-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.queue {
  display: grid;
  gap: 10px;
}

.queue-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.queue-rank {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
}

.queue-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-artist {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.vote-pill {
  min-width: 44px;
  padding: 6px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
}

.queue-item.now-playing {
  border-color: rgba(76, 201, 240, 0.35);
  background: rgba(76, 201, 240, 0.08);
}

.queue-item.now-playing .vote-pill {
  background: rgba(76, 201, 240, 0.2);
  color: var(--neon-blue);
}

/* ─── Sections ───────────────────────────────────────────────────────────── */

.section {
  padding: 80px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.features-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 700px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 46, 151, 0.2), rgba(157, 78, 221, 0.2));
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ─── Steps ──────────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 0.8125rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ─── CTA band ───────────────────────────────────────────────────────────── */

.cta-band {
  margin: 0 0 80px;
}

.cta-inner {
  padding: 48px 32px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 46, 151, 0.14), rgba(157, 78, 221, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-inner p {
  margin: 0 auto 28px;
  max-width: 48ch;
  color: var(--text-secondary);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  min-width: 180px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.store-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.store-btn small {
  display: block;
  font-size: 0.625rem;
  color: var(--text-muted);
  text-align: left;
}

.store-btn strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer a {
  color: var(--text-secondary);
}

.site-footer a:hover {
  color: var(--text-primary);
}
