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

:root {
  --bg: #070010;
  --bg-2: #0d0022;
  --surface: #130030;
  --surface-2: #1a0040;
  --primary: #c800ff;
  --primary-dim: rgba(200, 0, 255, 0.15);
  --accent: #ff6b35;
  --cyan: #00d4ff;
  --text: #f0e6ff;
  --text-dim: rgba(240, 230, 255, 0.55);
  --text-muted: rgba(240, 230, 255, 0.3);
  --border: rgba(200, 0, 255, 0.2);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

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;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(7, 0, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c800ff 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
  bottom: -80px;
  left: 20%;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: 40%;
  left: 0;
  animation-delay: -6s;
  opacity: 0.25;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

.noise-layer {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  font-family: var(--font-head);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #c800ff 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  background: var(--surface);
  border-radius: 44px;
  padding: 16px;
  border: 1.5px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(200,0,255,0.1),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(200,0,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(160deg, #0d0022 0%, #070010 100%);
  border-radius: 30px;
  padding: 48px 20px 24px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.screen-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
}

.screen-dot.live {
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}

.screen-match {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-card {
  width: 100%;
  background: linear-gradient(135deg, #1a0040, #130030);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(200,0,255,0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.match-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(200,0,255,0.2) 0%, transparent 60%);
}

.match-artist {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  position: relative;
}

.match-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 16px;
  position: relative;
}

.match-plur {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,0,255,0.15);
  border: 1px solid rgba(200,0,255,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.screen-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.action-btn {
  padding: 12px;
  border-radius: 14px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: default;
}

.rave-btn {
  background: linear-gradient(135deg, #c800ff, #9b00d4);
  color: white;
  box-shadow: 0 4px 20px rgba(200,0,255,0.4);
}

.pass-btn {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}

.screen-events {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-tag {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 32px;
  font-family: var(--font-head);
}

.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 24px;
}

.manifesto-attribution {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 80px;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card:hover {
  border-color: rgba(200,0,255,0.5);
  transform: translateY(-2px);
}

.feature-card--large {
  grid-column: span 2;
}

.feature-card--highlight {
  background: linear-gradient(135deg, #1a0040, #0d0022);
  border-color: rgba(200,0,255,0.4);
}

.feature-icon {
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-icon--white { color: var(--text); }

.feature-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--primary-dim);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

/* ===== PLUR ===== */
.plur-section {
  padding: 100px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.plur-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.plur-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: var(--font-head);
}

.plur-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

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

.plur-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.plur-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(var(--hue), 80%, 60%);
}

.plur-card:hover { transform: translateY(-4px); }

.plur-letter {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  color: hsl(var(--hue), 80%, 55%);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px hsl(var(--hue), 80%, 60%);
}

.plur-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.plur-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,0,255,0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.closing-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
}

.closing-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 40px;
  position: relative;
}

.closing-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0 auto 40px;
  border-radius: 2px;
}

.closing-vision {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
  position: relative;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.7; }

.footer-note {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; }
  .hero-visual { display: none; }
  .features { padding: 80px 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 1; }
  .plur-grid { grid-template-columns: 1fr 1fr; }
  .manifesto, .plur-section, .closing, .footer { padding: 80px 40px; }
  .nav { padding: 16px 24px; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 24px 60px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .plur-grid { grid-template-columns: 1fr; }
  .manifesto, .plur-section, .closing, .footer { padding: 60px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .nav-tagline { display: none; }
}