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

:root {
  --bg:       #08090e;
  --surface:  #0f1117;
  --surface2: #141820;
  --border:   #1e2433;
  --cyan:     #00F0FF;
  --magenta:  #FF2D78;
  --amber:    #FFB800;
  --text:     #e2e8f0;
  --text-dim: #7a8499;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-dim); }

.highlight { color: var(--cyan); }

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 2rem;
}

.hero-text h1 { margin-bottom: 1.5rem; }
.lede { font-size: 1.15rem; max-width: 440px; }

/* ── PHONE MOCK ── */
.hero-card {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone-mock {
  width: 260px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 2.2rem;
  padding: 1.4rem 1.2rem 1.8rem;
  box-shadow:
    0 0 0 1px rgba(0,240,255,0.08),
    0 32px 64px rgba(0,0,0,0.6),
    0 0 80px rgba(0,240,255,0.05);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s ease;
}
.phone-mock:hover { transform: rotateY(0deg) rotateX(0deg); }

.phone-notch {
  width: 80px;
  height: 20px;
  background: var(--bg);
  border-radius: 0 0 1rem 1rem;
  margin: -1.4rem -1.2rem 1.2rem;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.app-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff88;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #00ff88; }
  50% { opacity: 0.6; box-shadow: 0 0 12px #00ff88; }
}

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.venue-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.venue-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 0.2rem 0 0.9rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.metric {
  background: var(--surface2);
  border-radius: 0.6rem;
  padding: 0.6rem 0.5rem;
  text-align: center;
  border: 1px solid var(--border);
}

.metric-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin: 0.2rem 0 0;
}

.metric-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.music-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.8rem;
}

.music-icon { color: var(--magenta); font-size: 0.9rem; }
.music-type { font-size: 0.8rem; color: var(--text); }

.points-badge {
  background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(255,45,120,0.1));
  border: 1px solid rgba(0,240,255,0.25);
  border-radius: 0.6rem;
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.points-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cyan);
}

.points-label { font-size: 0.75rem; color: var(--text-dim); }

/* ── FEATURES ── */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(0,240,255,0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(255,45,120,0.08));
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

.feature-card h3 { margin-bottom: 0.6rem; color: #fff; }
.feature-card p { font-size: 0.9rem; line-height: 1.6; }

/* ── WHY / STATS ── */
.why {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: var(--magenta);
  line-height: 1;
}

.stat-unit {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 200px;
  margin-top: 0.5rem;
}

.why-text h2 { margin-bottom: 1rem; }
.why-text p { max-width: 500px; font-size: 1rem; }

/* ── HOW IT WORKS ── */
.how {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  position: relative;
  padding-left: 0;
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--surface2);
  line-height: 1;
  margin-bottom: 0.5rem;
  -webkit-text-stroke: 1px rgba(0,240,255,0.2);
}

.step-body h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-body p { font-size: 0.9rem; }

/* ── CLOSING ── */
.closing {
  padding: 7rem 2rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,240,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.2rem;
}

.closing-inner p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cyan);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-left: 0.8rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero { padding-top: 4rem; }
  .lede { max-width: 100%; margin: 0 auto; }
  .hero-card { margin-top: 2rem; }
  .phone-mock { transform: none; }
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-num { font-size: 4rem; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .feature-grid { gap: 1rem; }
  .feature-card { padding: 1.4rem; }
  .footer-inner { flex-direction: column; gap: 0.8rem; text-align: center; }
}

/* ── CTA Button (used in closing section) ── */
.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: var(--cyan);
  color: #000;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.cta-btn:hover { opacity: 0.85; }

/* ── Footer App Link ── */
.footer-app-link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 1rem;
  transition: border-color 0.15s, background 0.15s;
}
.footer-app-link:hover { border-color: var(--cyan); background: rgba(0, 240, 255, 0.05); }
