/* ============================================================
   VibeGuide — site-wide stylesheet
   Shared by index.html, events.html, devices.html, pricing.html,
   about.html, privacy-policy.html, terms-of-service.html
   ============================================================ */

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

:root {
  --bg:         #060610;
  --bg2:        #0c0c1e;
  --bg3:        #11112a;
  --surface:    #16163a;
  --border:     #2a2a5a;
  --text:       #e8e8ff;
  --muted:      #7070a0;
  --blue:       #00c8ff;
  --cyan:       #00c8ff;
  --purple:     #a855f7;
  --pink:       #ff2d78;
  --green:      #00ffaa;
  --yellow:     #ffe040;
  --fg:         #e8e8ff;
  --grad:       linear-gradient(135deg, #00c8ff, #a855f7, #ff2d78);
  --grad2:      linear-gradient(135deg, #a855f7, #ff2d78);
  --grad3:      linear-gradient(135deg, #00c8ff, #00ffaa);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* page-content fills between nav + footer */
main { flex: 1; }

/* Custom cursor — ON by default. Opt-out via cursor-toggle. */
body {
  cursor: url('../cursors/vibeguide-cursor.png') 16 16, url('../cursors/subwoofer.svg') 16 16, default;
}
a, button, [role="button"], label, input[type="submit"] {
  cursor: url('../cursors/vibeguide-cursor-pointer.png') 16 16, url('../cursors/subwoofer-pointer.svg') 16 16, pointer;
}
html.cursor-off body { cursor: auto !important; }
html.cursor-off a,
html.cursor-off button,
html.cursor-off [role="button"],
html.cursor-off label,
html.cursor-off input[type="submit"] { cursor: pointer !important; }

/* ============================
   CURSOR TOGGLE
   ============================ */
.cursor-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
  user-select: none;
}
.cursor-toggle:hover { background: rgba(255,255,255,0.12); border-color: rgba(168,85,247,0.55); transform: translateY(-1px); }
.cursor-toggle:focus-visible { outline: 2px solid #a855f7; outline-offset: 2px; }
.cursor-toggle svg { width: 14px; height: 14px; flex-shrink: 0; }
.cursor-toggle-state {
  display: inline-block;
  min-width: 24px;
  text-align: center;
  padding: 1px 6px;
  border-radius: 99px;
  background: rgba(34,211,238,0.22);
  color: #67e8f9;
  font-size: 0.64rem;
  transition: background 0.2s, color 0.2s;
}
html.cursor-off .cursor-toggle-state { background: rgba(168,85,247,0.22); color: #d8b4fe; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 { line-height: 1.2; }

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

.gradient-text-2 {
  background: var(--grad3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================
   LAYOUT
   ============================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ============================
   NAV (shared)
   ============================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(6,6,16,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 96px; width: auto; display: block; }
.nav-logo .nav-wordmark {
  font-size: 2rem;
  white-space: nowrap;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.nav-mobile-toggle {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1.1rem;
  line-height: 1;
}

/* main padding so content starts below the fixed nav */
.page-shell { padding-top: 72px; }

/* ============================
   PAGE HERO (sub-pages)
   ============================ */
.page-hero {
  padding: 5.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.16) 0%, rgba(0,200,255,0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.35);
  color: #c084fc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

/* ============================
   HERO (homepage)
   ============================ */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.18) 0%, rgba(0,200,255,0.08) 50%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.35);
  color: #c084fc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 22px rgba(168,85,247,0.18);
}
.btn-primary:hover { opacity: 0.95; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(168,85,247,0.32); }

.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); border-color: rgba(168,85,247,0.4); }

.hero-waitlist { margin-bottom: 3.5rem; }
.hero-waitlist-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
  letter-spacing: 0.04em;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

/* ============================
   FEATURES GRID
   ============================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.05rem;
}

.features-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}
.features-intro .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

/* Device tier grid */
.device-tier-section { margin-top: 3rem; }
.device-tier-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.5rem;
  text-align: center;
}
.device-tier-sub {
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.device-tier-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.device-tier-card:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.35); }
.device-tier-card.tier-pulse  { border-color: rgba(0,229,255,0.25); }
.device-tier-card.tier-pulse:hover  { border-color: rgba(0,229,255,0.55); box-shadow: 0 10px 40px rgba(0,229,255,0.18); }
.device-tier-card.tier-beacon { border-color: rgba(192,132,252,0.25); }
.device-tier-card.tier-beacon:hover { border-color: rgba(192,132,252,0.55); box-shadow: 0 10px 40px rgba(192,132,252,0.18); }
.device-tier-card.tier-flagship { border-color: rgba(244,114,182,0.35); box-shadow: 0 0 20px rgba(244,114,182,0.12); }
.device-tier-card.tier-flagship:hover { border-color: rgba(244,114,182,0.65); box-shadow: 0 10px 40px rgba(244,114,182,0.25); }
.tier-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.tier-flagship .tier-badge {
  background: rgba(244,114,182,0.18);
  color: var(--pink);
}
.tier-name {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.tier-pulse    .tier-name { color: var(--cyan); }
.tier-beacon   .tier-name { color: var(--purple); }
.tier-flagship .tier-name { color: var(--pink); }
.tier-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.tier-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-style: italic;
}
.tier-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tier-specs li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.tier-tagline {
  font-size: 0.78rem;
  color: var(--fg);
  font-weight: 600;
  opacity: 0.7;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.gnss-arch-note {
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.gnss-arch-note strong { color: var(--cyan); }

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--card-glow, transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover { transform: translateY(-4px); border-color: #4040a0; box-shadow: 0 14px 36px rgba(0,0,0,0.35); }
.feature-card:hover::before { opacity: 1; }

.feature-preview-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.1rem;
  display: block;
  border: 1px solid rgba(168,85,247,0.25);
  box-shadow: 0 0 16px rgba(168,85,247,0.15), 0 0 4px rgba(255,45,120,0.1);
  transition: box-shadow 0.3s ease;
}
.feature-card:hover .feature-preview-img {
  box-shadow: 0 0 24px rgba(168,85,247,0.35), 0 0 8px rgba(255,45,120,0.2);
}

/* ============================
   DEVICE-FEATURE INTERACTIVE DEMOS
   ============================ */
.device-demo {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: 10px;
  margin-bottom: 1.1rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, #14143a 0%, #06061a 70%);
  border: 1px solid rgba(168,85,247,0.28);
  box-shadow: 0 0 18px rgba(168,85,247,0.18), 0 0 4px rgba(255,45,120,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-card:hover .device-demo {
  box-shadow: 0 0 28px rgba(168,85,247,0.4), 0 0 10px rgba(255,45,120,0.22);
  transform: translateY(-1px);
}
.device-demo .dd-badge {
  position: absolute; top: 8px; left: 10px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
  color: #fff; padding: 3px 7px; border-radius: 4px;
  background: rgba(168,85,247,0.25);
  border: 1px solid rgba(168,85,247,0.55);
  text-transform: uppercase;
  z-index: 3;
}
.device-demo .dd-label {
  position: absolute; bottom: 8px; right: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  z-index: 3;
}

/* Demo 1: BLE Mesh */
.dd-mesh .mesh-node {
  position: absolute; width: 22px; height: 22px; border-radius: 50%;
  background: #11112a; border: 2px solid #a855f7; top: 50%; transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(168,85,247,0.6);
}
.dd-mesh .mesh-node.n1 { left: 12%; }
.dd-mesh .mesh-node.n2 { left: 37%; animation: meshPulse 1.8s ease-in-out infinite 0.4s; }
.dd-mesh .mesh-node.n3 { left: 62%; animation: meshPulse 1.8s ease-in-out infinite 0.8s; }
.dd-mesh .mesh-node.n4 { left: 87%; }
.dd-mesh .mesh-line {
  position: absolute; top: 50%; height: 1px; background: rgba(168,85,247,0.35);
  transform: translateY(-50%);
}
.dd-mesh .mesh-line.l1 { left: 15%; width: 22%; }
.dd-mesh .mesh-line.l2 { left: 40%; width: 22%; }
.dd-mesh .mesh-line.l3 { left: 65%; width: 22%; }
.dd-mesh .mesh-packet {
  position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%;
  background: #ff2d78; box-shadow: 0 0 12px #ff2d78;
  transform: translate(-50%, -50%);
  animation: meshHop 4.5s linear infinite;
}
.dd-mesh .mesh-bubble {
  position: absolute; bottom: 16px; right: 12%; transform: translateX(50%);
  background: linear-gradient(135deg, #ff2d78, #a855f7);
  color: #fff; font-size: 9px; font-weight: 700;
  padding: 4px 8px; border-radius: 10px 10px 2px 10px;
  opacity: 0; animation: bubbleIn 4.5s linear infinite;
  white-space: nowrap;
}
@keyframes meshPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(168,85,247,0.6); }
  50% { box-shadow: 0 0 20px rgba(255,45,120,0.9); border-color: #ff2d78; }
}
@keyframes meshHop {
  0% { left: 12%; opacity: 0; }
  5% { opacity: 1; }
  30% { left: 37%; }
  33% { transform: translate(-50%,-50%) scale(1.6); }
  36% { transform: translate(-50%,-50%) scale(1); }
  55% { left: 62%; }
  58% { transform: translate(-50%,-50%) scale(1.6); }
  61% { transform: translate(-50%,-50%) scale(1); }
  85% { left: 87%; opacity: 1; }
  95% { left: 87%; opacity: 0; }
  100% { left: 87%; opacity: 0; }
}
@keyframes bubbleIn {
  0%, 80% { opacity: 0; transform: translateX(50%) translateY(4px); }
  88%, 96% { opacity: 1; transform: translateX(50%) translateY(0); }
  100% { opacity: 0; }
}

/* Demo 2: LED Compass */
.dd-compass { display: flex; align-items: center; justify-content: center; }
.dd-compass .compass-ring {
  position: relative; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, #0a0a20 55%, #14143a 100%);
  border: 2px solid rgba(0,200,255,0.3);
  box-shadow: inset 0 0 20px rgba(0,200,255,0.15);
}
.dd-compass .led-ptr {
  position: absolute; top: 50%; left: 50%; width: 2px; height: 52px;
  background: linear-gradient(to top, transparent, #00c8ff);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  animation: compassSpin 6s ease-in-out infinite;
  box-shadow: 0 0 10px #00c8ff;
}
.dd-compass .led-tip {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px; border-radius: 50%;
  background: #00c8ff; box-shadow: 0 0 18px #00c8ff, 0 0 30px rgba(0,200,255,0.6);
  transform: translate(-50%, -50%);
  animation: compassTip 6s ease-in-out infinite;
}
.dd-compass .compass-center {
  position: absolute; top: 50%; left: 50%;
  width: 36px; height: 36px; border-radius: 50%;
  background: #06061a; border: 1px solid rgba(0,200,255,0.4);
  transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
  color: #00c8ff; font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
}
@keyframes compassSpin {
  0% { transform: translate(-50%, -100%) rotate(0deg); }
  25% { transform: translate(-50%, -100%) rotate(72deg); }
  55% { transform: translate(-50%, -100%) rotate(-38deg); }
  80% { transform: translate(-50%, -100%) rotate(120deg); }
  100% { transform: translate(-50%, -100%) rotate(360deg); }
}
@keyframes compassTip {
  0%   { transform: translate(calc(-50% + 0px),   calc(-50% - 52px)); }
  25%  { transform: translate(calc(-50% + 49px),  calc(-50% - 16px)); }
  55%  { transform: translate(calc(-50% - 32px),  calc(-50% - 41px)); }
  80%  { transform: translate(calc(-50% + 45px),  calc(-50% + 26px)); }
  100% { transform: translate(calc(-50% + 0px),   calc(-50% - 52px)); }
}

/* Demo 3: Music-Reactive */
.dd-music .music-ring {
  position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid #ff2d78;
  transform: translate(-50%,-50%);
  animation: musicPulse 0.9s ease-out infinite;
}
.dd-music .music-ring.r2 { animation-delay: 0.18s; border-color: #a855f7; }
.dd-music .music-ring.r3 { animation-delay: 0.36s; border-color: #00c8ff; }
.dd-music .music-ring.r4 { animation-delay: 0.54s; border-color: #ff2d78; }
.dd-music .eq-bars {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; gap: 2px; justify-content: center; align-items: flex-end;
  height: 28px;
}
.dd-music .eq-bars span {
  display: block; width: 4px; background: linear-gradient(to top, #ff2d78, #a855f7);
  border-radius: 2px 2px 0 0;
  animation: eqBar 0.55s ease-in-out infinite;
}
.dd-music .eq-bars span:nth-child(1){animation-delay:0s}
.dd-music .eq-bars span:nth-child(2){animation-delay:.08s}
.dd-music .eq-bars span:nth-child(3){animation-delay:.16s}
.dd-music .eq-bars span:nth-child(4){animation-delay:.24s}
.dd-music .eq-bars span:nth-child(5){animation-delay:.12s}
.dd-music .eq-bars span:nth-child(6){animation-delay:.04s}
.dd-music .eq-bars span:nth-child(7){animation-delay:.22s}
.dd-music .eq-bars span:nth-child(8){animation-delay:.14s}
.dd-music .eq-bars span:nth-child(9){animation-delay:.06s}
.dd-music .eq-bars span:nth-child(10){animation-delay:.18s}
.dd-music .eq-bars span:nth-child(11){animation-delay:.1s}
.dd-music .eq-bars span:nth-child(12){animation-delay:.02s}
@keyframes musicPulse {
  0%   { width: 30px; height: 30px; opacity: 0.9; border-width: 3px; }
  100% { width: 190px; height: 190px; opacity: 0; border-width: 1px; }
}
@keyframes eqBar {
  0%, 100% { height: 4px; }
  50% { height: 22px; }
}

/* Demo 4: Custom Themes */
.dd-themes { display: flex; align-items: center; justify-content: center; }
.dd-themes .theme-screen {
  position: relative; width: 120px; height: 120px; border-radius: 14px;
  overflow: hidden; border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(168,85,247,0.35);
}
.dd-themes .theme-layer {
  position: absolute; inset: 0; opacity: 0;
  animation: themeCycle 8s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em; color: #fff;
}
.dd-themes .theme-layer.t1 {
  background: radial-gradient(circle, #ff2d78, #06061a 75%);
  animation-delay: 0s;
}
.dd-themes .theme-layer.t2 {
  background: repeating-conic-gradient(from 0deg, #00c8ff 0 15deg, #06061a 15deg 30deg);
  animation-delay: 2s;
}
.dd-themes .theme-layer.t3 {
  background: linear-gradient(135deg, #00ffaa, #a855f7, #ff2d78);
  animation-delay: 4s;
}
.dd-themes .theme-layer.t4 {
  background: radial-gradient(circle at 30% 40%, #a855f7, transparent 60%),
              radial-gradient(circle at 70% 70%, #00c8ff, transparent 55%),
              #06061a;
  animation-delay: 6s;
}
.dd-themes .theme-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.dd-themes .theme-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2);
  animation: themeDot 8s ease-in-out infinite;
}
.dd-themes .theme-dots span:nth-child(1) { animation-delay: 0s; }
.dd-themes .theme-dots span:nth-child(2) { animation-delay: 2s; }
.dd-themes .theme-dots span:nth-child(3) { animation-delay: 4s; }
.dd-themes .theme-dots span:nth-child(4) { animation-delay: 6s; }
@keyframes themeCycle {
  0%, 22% { opacity: 1; }
  25%, 97% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes themeDot {
  0%, 22% { background: #fff; box-shadow: 0 0 6px #fff; }
  25%, 97% { background: rgba(255,255,255,0.2); box-shadow: none; }
}

/* Demo 5: Vibe Mode */
.dd-vibe { background: #000; }
.dd-vibe .dd-vibe-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.2) contrast(1.05);
}
.dd-vibe .dd-vibe-vignette {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(6,6,26,0.55) 100%),
    linear-gradient(180deg, rgba(6,6,26,0.25) 0%, transparent 30%, transparent 75%, rgba(6,6,26,0.55) 100%);
}
.dd-vibe .dd-vibe-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  top: 50%; left: 50%;
  z-index: 3;
  animation: dotBlink 3s linear infinite;
}
.dd-vibe .dd-vd1 {
  background: #00c8ff; box-shadow: 0 0 12px #00c8ff, 0 0 22px rgba(0,200,255,0.5);
  animation: dotBlink 3s linear infinite, ddVibeFloat1 9s ease-in-out infinite;
}
.dd-vibe .dd-vd2 {
  background: #ff2d78; box-shadow: 0 0 12px #ff2d78, 0 0 22px rgba(255,45,120,0.5);
  animation: dotBlink 3s linear infinite 0.7s, ddVibeFloat2 9s ease-in-out infinite;
}
.dd-vibe .dd-vd3 {
  background: #00ffaa; box-shadow: 0 0 12px #00ffaa, 0 0 22px rgba(0,255,170,0.45);
  animation: dotBlink 3s linear infinite 1.5s, ddVibeFloat3 9s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 70% { opacity: 1; }
  71%, 76% { opacity: 0.3; }
  77%, 100% { opacity: 1; }
}
@keyframes ddVibeFloat1 {
  0%, 100% { transform: translate(-50%,-50%) translate(38px,-22px); }
  50%      { transform: translate(-50%,-50%) translate(46px,-30px); }
}
@keyframes ddVibeFloat2 {
  0%, 100% { transform: translate(-50%,-50%) translate(-32px,28px); }
  50%      { transform: translate(-50%,-50%) translate(-40px,22px); }
}
@keyframes ddVibeFloat3 {
  0%, 100% { transform: translate(-50%,-50%) translate(55px,32px); }
  50%      { transform: translate(-50%,-50%) translate(48px,40px); }
}

/* Demo 6: Friend Finder */
.dd-finder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.dd-finder .finder-arrow {
  width: 0; height: 0; border-left: 22px solid transparent; border-right: 22px solid transparent;
  border-bottom: 44px solid #00c8ff;
  filter: drop-shadow(0 0 10px #00c8ff);
  transform-origin: 50% 70%;
  animation: finderSweep 5s ease-in-out infinite;
  margin-top: 4px;
}
.dd-finder .finder-label {
  color: #fff; font-weight: 800; font-size: 11px; letter-spacing: 0.06em;
  text-align: center;
}
.dd-finder .finder-dist {
  color: #00c8ff; font-size: 22px; font-weight: 900; letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.dd-finder .finder-sub {
  color: rgba(255,255,255,0.5); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
}
@keyframes finderSweep {
  0%   { transform: rotate(-35deg); }
  25%  { transform: rotate(18deg); }
  55%  { transform: rotate(-12deg); }
  80%  { transform: rotate(40deg); }
  100% { transform: rotate(-35deg); }
}

/* Card glow tints */
.feature-card.blue   { --card-glow: radial-gradient(circle at top left, rgba(0,200,255,0.08), transparent 60%); }
.feature-card.pink   { --card-glow: radial-gradient(circle at top left, rgba(255,45,120,0.08), transparent 60%); }
.feature-card.green  { --card-glow: radial-gradient(circle at top left, rgba(0,255,170,0.08), transparent 60%); }
.feature-card.purple { --card-glow: radial-gradient(circle at top left, rgba(168,85,247,0.08), transparent 60%); }
.feature-card.yellow { --card-glow: radial-gradient(circle at top left, rgba(255,224,64,0.08), transparent 60%); }
.feature-card.mixed  { --card-glow: radial-gradient(circle at top left, rgba(0,200,255,0.06), transparent 60%); }

.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

.feature-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-top: 0.8rem;
}
.badge-blue   { background: rgba(0,200,255,0.15);  color: var(--blue);   border: 1px solid rgba(0,200,255,0.3); }
.badge-pink   { background: rgba(255,45,120,0.15); color: var(--pink);   border: 1px solid rgba(255,45,120,0.3); }
.badge-green  { background: rgba(0,255,170,0.15);  color: var(--green);  border: 1px solid rgba(0,255,170,0.3); }
.badge-purple { background: rgba(168,85,247,0.15); color: var(--purple); border: 1px solid rgba(168,85,247,0.3); }
.badge-yellow { background: rgba(255,224,64,0.15); color: var(--yellow); border: 1px solid rgba(255,224,64,0.3); }

/* Feature category headers */
.category-block { margin-bottom: 4rem; }
.category-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.category-header.offline { background: rgba(0,255,170,0.05); border: 1px solid rgba(0,255,170,0.22); }
.category-header.signal  { background: rgba(255,224,64,0.05); border: 1px solid rgba(255,224,64,0.25); }
.category-header.device  { background: rgba(168,85,247,0.07); border: 1px solid rgba(168,85,247,0.3); }
.category-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.15rem; }
.category-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.35rem; }
.category-header.offline .category-title { color: var(--green); }
.category-header.signal  .category-title { color: var(--yellow); }
.category-header.device  .category-title { color: var(--purple); }
.category-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

.signal-warning {
  background: rgba(255,224,64,0.08);
  border: 1px solid rgba(255,224,64,0.28);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  color: var(--yellow);
  margin-top: 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(168,85,247,0.18);
  border: 1px solid rgba(168,85,247,0.45);
  color: #c084fc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.8rem;
}

.device-waitlist-inline {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 1.75rem;
}
.device-waitlist-inline p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.device-waitlist-inline .waitlist-form { margin-bottom: 0; }

/* ============================
   ALERTS
   ============================ */
.alerts-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.alerts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.alert-card {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.alert-card.friend {
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(0,200,255,0.08));
  border: 1px solid rgba(168,85,247,0.4);
}
.alert-card.emergency {
  background: linear-gradient(135deg, rgba(255,45,120,0.15), rgba(255,80,40,0.08));
  border: 1px solid rgba(255,45,120,0.4);
}
.alert-icon-ring {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.alert-card.friend    .alert-icon-ring { background: rgba(168,85,247,0.2); border: 1px solid rgba(168,85,247,0.5); }
.alert-card.emergency .alert-icon-ring { background: rgba(255,45,120,0.2); border: 1px solid rgba(255,45,120,0.5); }
.alert-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.alert-card.friend h3    { color: #c084fc; }
.alert-card.emergency h3 { color: #ff6b9d; }
.alert-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.alert-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-top: 1rem;
}
.alert-card.friend    .alert-pill { background: rgba(168,85,247,0.25); color: #c084fc; }
.alert-card.emergency .alert-pill { background: rgba(255,45,120,0.25); color: #ff6b9d; }

/* ============================
   HOW IT WORKS
   ============================ */
.how-section { background: var(--bg); }
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  counter-reset: steps;
}
.step {
  position: relative;
  counter-increment: steps;
  text-align: center;
}
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(168,85,247,0.32);
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p   { color: var(--muted); font-size: 0.88rem; }

/* ============================
   OFFLINE STRIP
   ============================ */
.offline-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(0,200,255,0.06) 0%, rgba(0,255,170,0.04) 100%);
  border-top: 1px solid rgba(0,200,255,0.12);
  border-bottom: 1px solid rgba(0,200,255,0.12);
}
.offline-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.offline-text { flex: 1; min-width: 240px; }
.offline-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 0.6rem; }
.offline-text p  { color: var(--muted); max-width: 480px; }
.offline-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; flex: 0 0 auto; }
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.25);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
}
.tech-pill.coming {
  background: rgba(168,85,247,0.08);
  border-color: rgba(168,85,247,0.25);
  color: var(--purple);
}

/* ============================
   PRICING
   ============================ */
.pricing-section { background: var(--bg2); border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.pricing-card.featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, rgba(168,85,247,0.1), var(--bg3));
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-price.free-price { color: var(--green); }
.pricing-price.pro-price  { background: var(--grad);  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-price.vip-price  { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-price.life-price { color: var(--yellow); }
.pricing-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.88rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 0.75rem;
  color: var(--yellow);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* 3-column pricing grid */
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* 6-card pricing grid — 3-col desktop / 2-col tablet / 1-col mobile.
   Used on /pricing for Free + Pro Monthly + Pro Annual + VIP + Lifetime + Enterprise. */
.pricing-grid-6 {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .pricing-grid-6 { grid-template-columns: repeat(2, 1fr) !important; max-width: 800px; }
}
@media (max-width: 640px) {
  .pricing-grid-6 { grid-template-columns: 1fr !important; max-width: 380px; }
}

/* Sale badge — neon gradient */
.sale-badge {
  position: absolute;
  top: -14px;
  right: 16px;
  background: linear-gradient(135deg, #00ffaa, #00c8ff, #a855f7);
  color: #060610;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,255,170,0.3);
  animation: sale-glow 2s ease-in-out infinite alternate;
}
@keyframes sale-glow {
  0%   { box-shadow: 0 4px 16px rgba(0,255,170,0.3); }
  100% { box-shadow: 0 4px 24px rgba(0,200,255,0.5), 0 0 40px rgba(168,85,247,0.2); }
}

/* Struck-through original price */
.price-struck {
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 0.4rem;
  -webkit-text-fill-color: var(--muted) !important;
}

/* Checkout message banner */
.checkout-message {
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.checkout-success {
  background: rgba(0,255,170,0.1);
  border: 1px solid rgba(0,255,170,0.4);
  color: var(--green);
}
.checkout-error {
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.4);
  color: var(--pink);
}

/* Subscribe button as <button> element — match existing <a> styling */
button.subscribe-btn {
  font-family: inherit;
  border: none;
  outline: none;
}
button.subscribe-btn:disabled {
  opacity: 0.6;
  cursor: wait !important;
}

@media (max-width: 768px) {
  .pricing-grid-3 { grid-template-columns: 1fr !important; max-width: 380px; }
}

/* ============================
   WAITLIST
   ============================ */
.waitlist-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist-section::before {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,45,120,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.waitlist-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-input {
  flex: 1;
  min-width: 220px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.85rem 1.4rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(168,85,247,0.18); }
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-btn {
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(168,85,247,0.22);
}
.waitlist-btn:hover { opacity: 0.95; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(168,85,247,0.36); }
.waitlist-note { font-size: 0.8rem; color: var(--muted); }
.waitlist-note a { color: var(--muted); }
.waitlist-success-msg {
  display: none;
  margin-top: 1.25rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================
   FOOTER
   ============================ */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-top: auto;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.78rem; color: #404060; }

/* ============================
   VIBE MODE SECTION (devices)
   ============================ */
.vibe-mode-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.vibe-mode-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,200,255,0.06) 0%, rgba(168,85,247,0.05) 40%, transparent 70%);
  pointer-events: none;
}
.vibe-mode-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vibe-mode-text .section-label { color: var(--blue); }
.vibe-mode-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.vibe-mode-text p  { color: var(--muted); font-size: 0.97rem; line-height: 1.7; margin-bottom: 1rem; }

.device-coming-soon-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.4);
  color: #c084fc;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.vibe-mode-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.vibe-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}
.vibe-pill.blue   { background: rgba(0,200,255,0.12);  color: var(--blue);   border: 1px solid rgba(0,200,255,0.3); }
.vibe-pill.purple { background: rgba(168,85,247,0.12); color: var(--purple); border: 1px solid rgba(168,85,247,0.3); }
.vibe-pill.pink   { background: rgba(255,45,120,0.12); color: var(--pink);   border: 1px solid rgba(255,45,120,0.3); }
.vibe-pill.green  { background: rgba(0,255,170,0.12);  color: var(--green);  border: 1px solid rgba(0,255,170,0.3); }

.battery-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--yellow);
  background: rgba(255,224,64,0.08);
  border: 1px solid rgba(255,224,64,0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-top: 1rem;
}

.vibe-video-container {
  width: 100%;
  max-width: 380px;
  height: 310px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,200,255,0.35);
  box-shadow: 0 0 30px rgba(0,200,255,0.18), 0 0 60px rgba(168,85,247,0.1);
  margin: 0 auto;
}
.vibe-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.vibe-overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(6,6,16,0.45) 100%);
}
.vibe-dot-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vibe-friend-dot {
  position: absolute;
  top: 50%; left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: var(--orbit-anim, orbit80) var(--orbit-dur, 10s) linear infinite;
  animation-delay: var(--orbit-delay, 0s);
}
.vibe-dot-inner {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--dc, #00ffaa);
  box-shadow: 0 0 8px var(--dc, #00ffaa), 0 0 18px var(--dc, #00ffaa);
  margin-bottom: 3px;
}
.vibe-dot-name {
  font-size: 0.52rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 1px 5px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid var(--dc, #00ffaa);
}
.vibe-friend-dot.vd1 { --dc:#00ffaa; --orbit-dur:8s;  --orbit-anim:orbit80; }
.vibe-friend-dot.vd2 { --dc:#00c8ff; --orbit-dur:13s; --orbit-anim:orbit110; animation-direction:reverse; }
.vibe-friend-dot.vd3 { --dc:#ffe040; --orbit-dur:10s; --orbit-delay:-3s; --orbit-anim:orbit65; }
.vibe-friend-dot.vd4 { --dc:#ff2d78; --orbit-dur:16s; --orbit-delay:-7s; --orbit-anim:orbit130; }
.vibe-friend-dot.vd5 { --dc:#ff7a2f; --orbit-dur:11s; --orbit-delay:-5s; --orbit-anim:orbit95; }
@keyframes orbit65  { from{transform:translate(-50%,-50%) rotate(0deg)   translateX(65px)  rotate(0deg)  } to{transform:translate(-50%,-50%) rotate(360deg)  translateX(65px)  rotate(-360deg) } }
@keyframes orbit80  { from{transform:translate(-50%,-50%) rotate(0deg)   translateX(80px)  rotate(0deg)  } to{transform:translate(-50%,-50%) rotate(360deg)  translateX(80px)  rotate(-360deg) } }
@keyframes orbit95  { from{transform:translate(-50%,-50%) rotate(180deg) translateX(95px)  rotate(-180deg)} to{transform:translate(-50%,-50%) rotate(540deg)  translateX(95px)  rotate(-540deg)} }
@keyframes orbit110 { from{transform:translate(-50%,-50%) rotate(90deg)  translateX(110px) rotate(-90deg) } to{transform:translate(-50%,-50%) rotate(450deg)  translateX(110px) rotate(-450deg)} }
@keyframes orbit130 { from{transform:translate(-50%,-50%) rotate(270deg) translateX(115px) rotate(-270deg)} to{transform:translate(-50%,-50%) rotate(630deg)  translateX(115px) rotate(-630deg)} }
.vibe-static-pin {
  position: absolute;
  top: 18%; left: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vibe-pin-icon { font-size: 1rem; filter: drop-shadow(0 0 5px rgba(255,224,64,0.7)); }
.vibe-pin-lbl {
  font-size: 0.49rem;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(0,0,0,0.75);
  padding: 1px 4px;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 2px;
  border: 1px solid rgba(255,224,64,0.45);
}

/* ============================
   PROMO + SUBSCRIBE
   ============================ */
.subscribe-btn {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: 100px;
  border: none;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  cursor: url('../cursors/vibeguide-cursor-pointer.png') 16 16, url('../cursors/subwoofer-pointer.svg') 16 16, pointer;
  box-shadow: 0 4px 16px rgba(168,85,247,0.22);
}
html.cursor-off .subscribe-btn { cursor: pointer !important; }
.subscribe-btn:hover { opacity: 0.95; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(168,85,247,0.36); }
.subscribe-btn.vip-sub { background: var(--grad2); }
.subscribe-btn.founders-sub { background: linear-gradient(135deg,#ffe040,#ff9900); color: #060610; }

/* ============================
   COMPETITOR COMPARISON
   ============================ */
.compare-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.compare-intro { text-align: center; margin-bottom: 2.5rem; }
.compare-scroll-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: none;
}
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg2);
}
.compare-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table thead th:first-child,
.compare-table tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 205px;
  padding-left: 1.5rem;
  text-align: left;
  background: var(--bg3);
}
.compare-table thead th {
  padding: 1.25rem 1rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  background: var(--bg3);
}
.col-us {
  background: rgba(168, 85, 247, 0.07) !important;
  border-left: 1px solid rgba(168, 85, 247, 0.35);
  border-right: 1px solid rgba(168, 85, 247, 0.35);
}
.compare-table thead th.col-us {
  background: linear-gradient(180deg, rgba(168,85,247,0.2) 0%, rgba(0,200,255,0.08) 100%) !important;
}
.compare-table tbody tr {
  border-bottom: 1px solid rgba(42,42,90,0.5);
  transition: background 0.15s;
}
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare-table tbody td {
  padding: 0.85rem 1rem;
  text-align: center;
  color: var(--muted);
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
}
.cmp-yes  { color: var(--green); font-size: 1.1rem; font-weight: 700; }
.cmp-no   { color: #2e2e60; font-size: 1.1rem; }
.cmp-part { color: var(--yellow); font-size: 0.82rem; font-weight: 600; }
.cmp-val  { color: var(--text);  font-weight: 600; font-size: 0.85rem; }
.cmp-us   {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 0.88rem;
}
.compare-th-us .th-name {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  font-weight: 800;
}
.compare-th-badge {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #a855f7, #00c8ff);
  color: #fff;
}
.compare-th-name { display: block; font-weight: 700; font-size: 0.88rem; color: var(--text); }
.compare-th-desc { display: block; font-size: 0.73rem; color: var(--muted); margin-top: 0.1rem; }
.compare-callout {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(0,200,255,0.06));
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 16px;
}
.compare-callout-body { flex: 1; min-width: 220px; }
.compare-callout-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.compare-callout-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* ============================
   COMPASS ANIMATION
   ============================ */
.compass-demo {
  width: 100%;
  max-width: 160px;
  height: 120px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compass-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.08), rgba(6,6,16,0.9));
  border: 2px solid rgba(0,200,255,0.4);
  box-shadow: 0 0 20px rgba(0,200,255,0.2), inset 0 0 20px rgba(0,200,255,0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compass-cardinal {
  position: absolute;
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(0,200,255,0.75);
}
.compass-cardinal.n { top: 5px; left: 50%; transform: translateX(-50%); }
.compass-cardinal.s { bottom: 5px; left: 50%; transform: translateX(-50%); }
.compass-cardinal.e { right: 7px; top: 50%; transform: translateY(-50%); }
.compass-cardinal.w { left: 7px; top: 50%; transform: translateY(-50%); }
.compass-needle {
  width: 4px;
  height: 56px;
  position: relative;
  animation: compassSway 4.5s ease-in-out infinite;
  transform-origin: 50% 72%;
}
.compass-needle-north {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 28px solid #ff2d78;
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
}
.compass-needle-south {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 22px solid rgba(255,255,255,0.25);
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
}
.compass-dot-center {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes compassSway {
  0%   { transform: rotate(-28deg); }
  28%  { transform: rotate(20deg); }
  52%  { transform: rotate(-12deg); }
  72%  { transform: rotate(9deg); }
  88%  { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}

/* ============================
   HEATMAP DEMO
   ============================ */
.heatmap-demo {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(168,85,247,0.08), transparent 60%),
    linear-gradient(180deg, #05051a 0%, #0a0a22 100%);
  border: 1px solid rgba(255,45,120,0.25);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}
.heatmap-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: gridDrift 20s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 28px 28px, 28px 28px; }
}
.heatmap-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  mix-blend-mode: screen;
}
.heatmap-blob.h1 {
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(255,45,120,0.95) 0%, rgba(255,45,120,0) 70%);
  top: 18%; left: 8%;
  animation: blobDrift1 9s ease-in-out infinite, blobPulse 2.2s ease-in-out infinite;
}
.heatmap-blob.h2 {
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(255,120,0,0.85) 0%, rgba(255,120,0,0) 70%);
  top: 8%; left: 30%;
  animation: blobDrift2 11s ease-in-out infinite, blobPulse 1.9s ease-in-out infinite 0.4s;
}
.heatmap-blob.h3 {
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(255,224,64,0.7) 0%, rgba(255,224,64,0) 70%);
  top: 22%; left: 58%;
  animation: blobDrift3 10s ease-in-out infinite, blobPulse 2.5s ease-in-out infinite 0.8s;
}
.heatmap-blob.h4 {
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(0,200,255,0.6) 0%, rgba(0,200,255,0) 70%);
  top: 30%; left: 80%;
  animation: blobDrift4 12s ease-in-out infinite, blobPulse 2.8s ease-in-out infinite 1.2s;
}
@keyframes blobDrift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -10px); } }
@keyframes blobDrift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px, 15px); } }
@keyframes blobDrift3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(25px, 8px); } }
@keyframes blobDrift4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-18px, -12px); } }
@keyframes blobPulse  { 0%,100% { transform: scale(1); opacity: 0.75; } 50% { transform: scale(1.15); opacity: 1; } }

.heatmap-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
  animation: dotSwarm var(--dot-dur,7s) linear infinite;
  animation-delay: var(--dot-delay,0s);
  opacity: 0;
}
@keyframes dotSwarm {
  0%   { transform: translate(var(--x0,0), var(--y0,0)) scale(0.4); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { transform: translate(var(--x1,40px), var(--y1,-20px)) scale(1); opacity: 0; }
}
.heatmap-stage {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  color: #fff;
  font-weight: 800;
  background: rgba(0,0,0,0.7);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}
.heatmap-stage .dot {
  width: 6px; height: 6px; border-radius: 50%;
  animation: stageBlink 1.4s ease-in-out infinite;
}
.heatmap-stage.packed .dot { background: #ff2d78; box-shadow: 0 0 8px #ff2d78; }
.heatmap-stage.moshy  .dot { background: #ff7800; box-shadow: 0 0 8px #ff7800; }
.heatmap-stage.high   .dot { background: #ffe040; box-shadow: 0 0 8px #ffe040; }
.heatmap-stage.chill  .dot { background: #00c8ff; box-shadow: 0 0 8px #00c8ff; }
@keyframes stageBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.heatmap-legend {
  position: absolute;
  bottom: 8px; right: 8px;
  display: flex;
  gap: 8px;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 4;
}
.heatmap-legend span { display: inline-flex; align-items: center; gap: 3px; }
.heatmap-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.heatmap-live {
  position: absolute; top: 8px; left: 8px;
  font-size: 0.55rem; color: #fff; font-weight: 800;
  background: rgba(255,45,120,0.9);
  padding: 3px 8px; border-radius: 20px;
  display: flex; align-items: center; gap: 4px;
  letter-spacing: 0.06em;
  z-index: 4;
}
.heatmap-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; animation: stageBlink 1s ease-in-out infinite;
}

/* ============================
   OFFLINE MAP DEMO
   ============================ */
.offline-map-demo {
  width: 100%;
  height: 105px;
  border-radius: 10px;
  background: #07071a;
  border: 1px solid rgba(0,200,255,0.25);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.map-path {
  position: absolute;
  background: rgba(0,200,255,0.18);
  border-radius: 2px;
}
.map-stage-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.map-pin-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
}
.map-pin-lbl {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  background: rgba(0,0,0,0.6);
  padding: 0 3px;
  border-radius: 2px;
}
.map-download-btn {
  position: absolute;
  top: 7px; right: 7px;
  background: linear-gradient(135deg, #00c8ff, #00ffaa);
  color: #060610;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.28rem 0.6rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  animation: dlPulse 2.2s ease-in-out infinite;
}
@keyframes dlPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,255,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(0,200,255,0); }
}

/* ============================
   STAGE SCHEDULE DEMO
   ============================ */
.schedule-demo {
  width: 100%;
  border-radius: 10px;
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.2);
  padding: 0.65rem 0.7rem;
  margin-bottom: 1rem;
}
.schedule-event-name {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.45rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(168,85,247,0.2);
}
.schedule-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(168,85,247,0.07);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-time {
  color: var(--muted);
  font-size: 0.6rem;
  flex-shrink: 0;
  min-width: 48px;
}
.schedule-artist {
  color: var(--text);
  font-weight: 600;
  font-size: 0.7rem;
  flex: 1;
}
.schedule-stage {
  color: var(--purple);
  font-size: 0.58rem;
  font-weight: 600;
  flex-shrink: 0;
}
.sched-alert-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 4px var(--pink);
  flex-shrink: 0;
}

/* ============================
   SAVED-SPOTS DEMO
   ============================ */
.saved-spots-demo {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  width: 100%;
}
.elements-photo-wrap {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,255,170,0.3);
  box-shadow: 0 0 10px rgba(0,255,170,0.1);
  min-width: 0;
}
.elements-photo-wrap img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  display: block;
}
.spot-badge {
  background: rgba(0,0,0,0.75);
  padding: 0.18rem 0.4rem;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.spot-arrow {
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.1rem;
  align-self: center;
  font-weight: 700;
}
.phone-mockup-mini {
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,255,170,0.3);
  background: #0a0a20;
  box-shadow: 0 0 10px rgba(0,255,170,0.1);
}
.phone-map-area {
  height: 75px;
  background: #07071a;
  position: relative;
  overflow: hidden;
}
.phone-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,170,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,170,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
}
.phone-pin {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-pin-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.phone-pin-stem { width: 2px; height: 7px; background: var(--green); }
.phone-pin-label {
  font-size: 0.48rem;
  font-weight: 800;
  color: var(--green);
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(0,255,170,0.45);
  padding: 1px 4px;
  border-radius: 3px;
  white-space: nowrap;
}
.phone-bottom-bar {
  padding: 0.18rem 0.4rem;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  background: rgba(0,255,170,0.06);
  border-top: 1px solid rgba(0,255,170,0.15);
}

/* ============================
   SIGNAL-FEATURE DEMOS
   ============================ */
/* Satellite SOS */
.sos-demo {
  width: 100%; height: 170px; border-radius: 12px;
  position: relative; overflow: hidden; margin-bottom: 1rem;
  background: radial-gradient(ellipse at 50% 120%, rgba(0,255,170,0.08), transparent 55%),
              linear-gradient(180deg, #03030e 0%, #060614 100%);
  border: 1px solid rgba(0,255,170,0.22);
}
.sos-stars {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.75) 1px, transparent 1px);
  background-size: 40px 30px; background-position: 10px 7px; opacity: 0.2;
}
.sos-orbit-path {
  position: absolute; width: 70%; height: 52%; top: 10%; left: 15%;
  border: 1px dashed rgba(0,255,170,0.18); border-radius: 50%;
}
.sos-satellite {
  position: absolute; font-size: 20px; line-height: 1;
  transform: translate(-50%, -50%);
  animation: sosOrbit 6s ease-in-out infinite; z-index: 3;
  filter: drop-shadow(0 0 8px rgba(0,255,170,0.6));
}
.sos-beam {
  position: absolute; top: 14%; left: 50%;
  width: 1.5px; border-radius: 1px;
  background: linear-gradient(to bottom, rgba(0,255,170,0.95), rgba(0,255,170,0));
  transform-origin: top center; opacity: 0;
}
.sos-beam.sb1 { height: 70px; animation: sosBeam 6s linear infinite 1.5s; transform: translateX(-50%) rotate(-10deg); }
.sos-beam.sb2 { height: 75px; animation: sosBeam 6s linear infinite 1.8s; transform: translateX(-50%) rotate(0deg); }
.sos-beam.sb3 { height: 70px; animation: sosBeam 6s linear infinite 2.1s; transform: translateX(-50%) rotate(10deg); }
.sos-ground {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px; z-index: 3;
}
.sos-phone-icon { font-size: 20px; line-height: 1; }
.sos-ground-lbl {
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.12em;
  color: #00ffaa; text-transform: uppercase; animation: sosBlink 1.2s step-end infinite;
}
.sos-badge {
  position: absolute; top: 8px; left: 10px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em; color: #fff;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase; z-index: 3;
  background: rgba(0,255,170,0.18); border: 1px solid rgba(0,255,170,0.5);
}
@keyframes sosOrbit {
  0%   { left: 15%; top: 38%; }
  25%  { left: 50%; top: 12%; }
  50%  { left: 85%; top: 38%; }
  75%  { left: 50%; top: 60%; }
  100% { left: 15%; top: 38%; }
}
@keyframes sosBeam {
  0%, 17% { opacity: 0; }
  26%, 44% { opacity: 1; }
  54%, 100% { opacity: 0; }
}
@keyframes sosBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Live friend location */
.loc-demo {
  width: 100%; height: 170px; border-radius: 12px;
  position: relative; overflow: hidden; margin-bottom: 1rem;
  background: linear-gradient(180deg, #030510 0%, #050820 100%);
  border: 1px solid rgba(0,200,255,0.22);
}
.loc-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.loc-friend {
  position: absolute; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; transform: translate(-50%, -50%); z-index: 3;
}
.loc-friend.lf1 { background: rgba(255,45,120,0.9); box-shadow: 0 0 14px #ff2d78; top: 30%; left: 22%; color: #fff; animation: lfDrift1 7s ease-in-out infinite; }
.loc-friend.lf2 { background: rgba(168,85,247,0.9); box-shadow: 0 0 14px #a855f7; top: 28%; left: 76%; color: #fff; animation: lfDrift2 9s ease-in-out infinite; }
.loc-friend.lf3 { background: rgba(0,255,170,0.9); box-shadow: 0 0 14px #00ffaa; top: 65%; left: 46%; color: #050514; animation: lfDrift3 8s ease-in-out infinite; }
.loc-you {
  position: absolute; width: 32px; height: 32px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: rgba(0,200,255,0.9); box-shadow: 0 0 18px #00c8ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 900; color: #050514; letter-spacing: 0.05em; z-index: 4;
}
.loc-ping {
  position: absolute; border-radius: 50%;
  border-width: 1.5px; border-style: solid;
  transform: translate(-50%, -50%); opacity: 0; z-index: 2; pointer-events: none;
}
.loc-ping.lp1 { border-color: rgba(255,45,120,0.7); width: 28px; height: 28px; top: 30%; left: 22%; animation: locPingAnim 3s ease-out infinite 0.3s; }
.loc-ping.lp2 { border-color: rgba(168,85,247,0.7); width: 28px; height: 28px; top: 28%; left: 76%; animation: locPingAnim 3s ease-out infinite 1.3s; }
.loc-ping.lp3 { border-color: rgba(0,255,170,0.7); width: 28px; height: 28px; top: 65%; left: 46%; animation: locPingAnim 3s ease-out infinite 2.3s; }
.loc-status-bar {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 700; color: #00c8ff; letter-spacing: 0.1em;
  white-space: nowrap; z-index: 5;
}
@keyframes lfDrift1 { 0%,100% { top:30%; left:22%; } 50% { top:26%; left:25%; } }
@keyframes lfDrift2 { 0%,100% { top:28%; left:76%; } 50% { top:24%; left:80%; } }
@keyframes lfDrift3 { 0%,100% { top:65%; left:46%; } 50% { top:61%; left:43%; } }
@keyframes locPingAnim {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.85; }
  100% { transform: translate(-50%,-50%) scale(4.5); opacity: 0; }
}

/* Group chat */
.chat-demo {
  width: 100%; height: 170px; border-radius: 12px;
  position: relative; overflow: hidden; margin-bottom: 1rem;
  background: linear-gradient(180deg, #060610 0%, #0a060f 100%);
  border: 1px solid rgba(255,45,120,0.22);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10px 12px; gap: 6px;
}
.chat-msg {
  max-width: 80%; padding: 6px 10px; border-radius: 12px;
  font-size: 9.5px; font-weight: 600; line-height: 1.4;
  opacity: 0; flex-shrink: 0;
}
.chat-msg.sent { align-self: flex-end; background: linear-gradient(135deg, #ff2d78, #a855f7); color: #fff; border-radius: 12px 12px 3px 12px; }
.chat-msg.recv { align-self: flex-start; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-radius: 12px 12px 12px 3px; }
.chat-msg.cm1 { animation: chatAppear 10s ease infinite; }
.chat-msg.cm2 { animation: chatAppear 10s ease infinite 2.5s; }
.chat-msg.cm3 { animation: chatAppear 10s ease infinite 5s; }
.chat-typing {
  display: flex; gap: 4px; padding: 4px 7px; align-self: flex-start;
  background: rgba(255,255,255,0.07); border-radius: 8px;
  opacity: 0; flex-shrink: 0; animation: typingVisible 10s ease infinite 7.5s;
}
.chat-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,45,120,0.7);
}
.chat-typing span:nth-child(1) { animation: typingDot 0.9s ease infinite; }
.chat-typing span:nth-child(2) { animation: typingDot 0.9s ease infinite 0.2s; }
.chat-typing span:nth-child(3) { animation: typingDot 0.9s ease infinite 0.4s; }
@keyframes chatAppear {
  0%, 4%  { opacity: 0; transform: translateY(6px); }
  12%, 88% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; }
}
@keyframes typingVisible { 0%, 5% { opacity: 0; } 15%, 75% { opacity: 1; } 85%, 100% { opacity: 0; } }
@keyframes typingDot { 0%,100% { transform:translateY(0); opacity:0.5; } 50% { transform:translateY(-4px); opacity:1; } }

/* Festival channel */
.channel-demo {
  width: 100%; height: 170px; border-radius: 12px;
  position: relative; overflow: hidden; margin-bottom: 1rem;
  background: linear-gradient(180deg, #030a08 0%, #050e0a 100%);
  border: 1px solid rgba(0,255,170,0.22);
  display: flex; flex-direction: column;
}
.channel-header-bar {
  padding: 6px 10px; background: rgba(0,255,170,0.08);
  border-bottom: 1px solid rgba(0,255,170,0.2);
  font-size: 8.5px; font-weight: 800; color: #00ffaa;
  letter-spacing: 0.08em; flex-shrink: 0;
}
.channel-post { display: flex; align-items: flex-start; gap: 7px; padding: 7px 10px; opacity: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.channel-post.cp1 { animation: postSlide 10s ease infinite; }
.channel-post.cp2 { animation: postSlide 10s ease infinite 2s; }
.channel-post.cp3 { animation: postSlide 10s ease infinite 4s; }
.cp-ava { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; color: #fff; flex-shrink: 0; }
.cp-ava.av1 { background: linear-gradient(135deg, #a855f7, #ff2d78); }
.cp-ava.av2 { background: linear-gradient(135deg, #00c8ff, #a855f7); }
.cp-ava.av3 { background: linear-gradient(135deg, #00ffaa, #00c8ff); color: #050a10; }
.cp-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cp-uname { font-size: 8.5px; font-weight: 800; color: var(--purple); }
.cp-txt   { font-size: 9px; color: rgba(255,255,255,0.8); line-height: 1.35; }
@keyframes postSlide { 0%,3% { opacity:0; transform:translateX(-10px); } 12%,78% { opacity:1; transform:translateX(0); } 88%,100% { opacity:0; } }

/* Push notifications */
.notif-demo {
  width: 100%; height: 170px; border-radius: 12px;
  position: relative; overflow: hidden; margin-bottom: 1rem;
  background: linear-gradient(180deg, #060610 0%, #08060f 100%);
  border: 1px solid rgba(168,85,247,0.22);
  display: flex; flex-direction: column; justify-content: center; padding: 10px; gap: 7px;
}
.notif-card { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.07); border: 1px solid rgba(168,85,247,0.3); border-radius: 10px; padding: 7px 10px; opacity: 0; flex-shrink: 0; }
.notif-card.nc1 { animation: notifDrop 10s ease infinite; }
.notif-card.nc2 { animation: notifDrop 10s ease infinite 2s; }
.notif-card.nc3 { animation: notifDrop 10s ease infinite 4s; }
.notif-icon { font-size: 16px; flex-shrink: 0; }
.notif-body { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.notif-app  { font-size: 7.5px; font-weight: 800; color: #a855f7; letter-spacing: 0.1em; text-transform: uppercase; }
.notif-txt  { font-size: 9px; color: rgba(255,255,255,0.85); line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-time { font-size: 7.5px; color: rgba(255,255,255,0.3); flex-shrink: 0; }
@keyframes notifDrop { 0%,3% { opacity:0; transform:translateY(-10px); } 12%,75% { opacity:1; transform:translateY(0); } 85%,100% { opacity:0; } }

/* ============================
   EVENTS GRID
   ============================ */
.events-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(139,92,246,0.04) 50%, transparent 100%);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(310px, 100%), 1fr));
  gap: 1rem;
}
.event-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.25s;
  position: relative;
}
.event-card:hover {
  border-color: rgba(139,92,246,0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139,92,246,0.18);
}
.event-date-badge {
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 7px;
  color: #a78bfa;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  white-space: nowrap;
  min-width: 62px;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
}
.event-info { flex: 1; min-width: 0; }
.event-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-location {
  font-size: 0.77rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.event-lineup {
  font-size: 0.73rem;
  color: rgba(148,163,184,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}
.event-tag.edm   { background: rgba(0,212,255,0.12); color: #00d4ff; border: 1px solid rgba(0,212,255,0.25); }
.event-tag.multi { background: rgba(236,72,153,0.12); color: #ec4899; border: 1px solid rgba(236,72,153,0.25); }
.event-tag.forest{ background: rgba(34,197,94,0.12);  color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.event-tag.burn  { background: rgba(249,115,22,0.12); color: #fb923c; border: 1px solid rgba(249,115,22,0.25); }
.event-tag.bass  { background: rgba(139,92,246,0.15); color: #a78bfa; border: 1px solid rgba(139,92,246,0.35); }

/* ============================
   MOBILE
   ============================ */
@media (max-width: 768px) {
  nav { padding: 0.9rem 1rem; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(6,6,16,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.28s ease;
    pointer-events: none;
    z-index: 99;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links li:last-child { border-bottom: none; padding-top: 0.85rem; }
  .nav-links a { font-size: 1rem; min-height: 44px; display: inline-flex; align-items: center; }
  .nav-links a.active::after { display: none; }
  .nav-links .nav-cta { display: inline-flex; align-items: center; padding: 0.55rem 1.2rem; min-height: 44px; }
  .nav-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
  .nav-logo img { height: 48px; }
  .nav-logo .nav-wordmark { font-size: 1.4rem; }

  .hero { padding-top: 6rem; }
  .alerts-grid { grid-template-columns: 1fr; }
  .offline-inner { flex-direction: column; gap: 1.5rem; }
  .offline-pills { justify-content: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .waitlist-form { flex-direction: column; align-items: stretch; }
  .waitlist-input { min-width: unset; }
  .vibe-mode-inner { grid-template-columns: 1fr; gap: 2rem; }
  .category-header { flex-direction: column; gap: 0.75rem; }
  .device-grid { grid-template-columns: 1fr; }
  .compare-scroll-hint { display: block; }
  .compare-callout { flex-direction: column; text-align: center; }

  /* Features grid — single column on tablets */
  .features-grid { grid-template-columns: 1fr; }

  /* Heatmap demo — scale down blob sizes */
  .heatmap-blob.h1 { width: 90px; height: 90px; }
  .heatmap-blob.h2 { width: 120px; height: 120px; }
  .heatmap-blob.h3 { width: 80px; height: 80px; }
  .heatmap-blob.h4 { width: 60px; height: 60px; }

  /* Vibe video container — fit mobile */
  .vibe-video-container { max-width: 300px; height: 260px; }

  /* Steps list — single column */
  .steps-list { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Footer links wrap */
  .footer-links { gap: 1rem 1.5rem; }

  /* Page hero spacing */
  .page-hero { padding: 4rem 0 2.5rem; }

  /* Home quick grid — 2 columns */
  .home-quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.4rem; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 3.2rem); }
  .features-grid { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .event-name { white-space: normal; }
  .btn-primary, .btn-secondary { display: block; width: 100%; text-align: center; padding: 0.9rem 1.2rem; min-height: 48px; }
  .waitlist-btn { min-height: 48px; font-size: 0.95rem; }
  .waitlist-input { min-height: 48px; font-size: 1rem; }
  .nav-cta { min-height: 44px; display: inline-flex; align-items: center; }
  img { max-width: 100%; height: auto; }

  /* Nav logo — smaller on small phones */
  .nav-logo img { height: 40px; }
  .nav-logo .nav-wordmark { font-size: 1.2rem; }

  /* Page shell — match nav height on mobile */
  .page-shell { padding-top: 68px; }

  /* Hero — tighter on mobile */
  .hero { padding-top: 5rem; padding-bottom: 3rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-waitlist { margin-bottom: 2rem; }

  /* Home quick grid — single column on small phones */
  .home-quick-grid { grid-template-columns: 1fr; }

  /* Device demo height — shorter on mobile */
  .device-demo { height: 140px; }

  /* Compass ring — scale down */
  .dd-compass .compass-ring { width: 100px; height: 100px; }
  .dd-compass .led-ptr { height: 40px; }

  /* Music demo — contained by overflow:hidden on .device-demo */

  /* Finder dist — smaller on mobile */
  .dd-finder .finder-dist { font-size: 18px; }
  .dd-finder .finder-arrow { border-left-width: 18px; border-right-width: 18px; border-bottom-width: 36px; }

  /* Pricing card — full width */
  .pricing-card { padding: 1.5rem 1.25rem; }
  .pricing-price { font-size: 2rem; }

  /* Alert cards — smaller padding */
  .alert-card { padding: 1.75rem 1.25rem; }

  /* Section heading — smaller */
  .section-heading { font-size: clamp(1.4rem, 5vw, 2.2rem); }

  /* Heatmap stage labels — smaller */
  .heatmap-stage { font-size: 0.55rem; padding: 2px 6px; }
  .heatmap-legend { font-size: 0.5rem; gap: 5px; padding: 3px 6px; }

  /* Vibe video container — fit 375px */
  .vibe-video-container { max-width: 260px; height: 220px; }

  /* Offline text heading */
  .offline-text h2 { font-size: 1.5rem; }

  /* Tier card specs */
  .tier-specs li { font-size: 0.8rem; }
  .tier-name { font-size: 1.3rem; }

  /* Category header padding */
  .category-header { padding: 1rem 1.25rem; }

  /* Compare callout padding */
  .compare-callout { padding: 1.25rem; }

  /* Footer ecosystem links */
  .footer-links { gap: 0.75rem 1.25rem; }
  .footer-links a { font-size: 0.82rem; min-height: 44px; display: inline-flex; align-items: center; }

  /* Ensure all touch targets are 44px min */
  .cursor-toggle { min-height: 44px; padding: 8px 14px; }
  .subscribe-btn { min-height: 48px; }
  .tech-pill { min-height: 44px; }
  .vibe-pill { min-height: 36px; }
}

/* ============================================================
   FESTIVAL ENERGY EFFECTS
   ============================================================ */

/* ── Hero Floating Particles ─────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* ── Neon Glow CTAs ─────────────────────────────── */
.btn-primary {
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3), 0 0 30px rgba(168, 85, 247, 0.1);
}
.btn-primary:hover {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.2);
}

/* ── LED Ring Pulse on Waitlist Button ─────────────── */
.waitlist-btn {
  position: relative;
}
.waitlist-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--purple), var(--cyan), var(--pink)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: led-ring-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes led-ring-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.02); }
}
