/* ═══════════════════════════════════════════════
   Photobooth 360 — Landing Page
   Diseño: dark, moderno, glassmorphism
   ═══════════════════════════════════════════════ */

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

:root {
  --primary:    #6C63FF;
  --primary-d:  #5248d4;
  --cyan:       #00D4FF;
  --pink:       #FF6584;
  --green:      #00C48C;
  --orange:     #F5A623;
  --purple:     #A855F7;
  --bg:         #0a0a14;
  --bg-2:       #0f0f1a;
  --bg-card:    #13132a;
  --bg-card-2:  #16162e;
  --border:     rgba(255,255,255,0.07);
  --text:       #e8e8f0;
  --text-2:     #9191b0;
  --text-3:     #5f5f80;
  --r:          16px;
  --r-lg:       24px;
  --shadow:     0 24px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Utils ─────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: rgba(108,99,255,0.15);
  color: var(--primary);
  border: 1px solid rgba(108,99,255,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-head p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #5146d4);
  color: #fff;
  box-shadow: 0 8px 30px rgba(108,99,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108,99,255,0.55);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary), #5146d4);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(108,99,255,0.5); }

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.nav--scrolled {
  background: rgba(10,10,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 24px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-accent {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--cyan); top: 100px; right: -50px; animation-delay: -3s; opacity: 0.12; }
.blob-3 { width: 300px; height: 300px; background: var(--pink); bottom: 0; left: 30%; animation-delay: -5s; opacity: 0.1; }

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: #a09df8;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

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

.stat { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.stat-label { font-size: 12px; color: var(--text-3); font-weight: 500; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ── PHONE MOCKUPS ──────────────────────────── */
.hero-phones {
  position: relative;
  height: 580px;
  display: flex;
  justify-content: flex-end;
}

.phone {
  position: absolute;
  width: 230px;
}

.phone-back {
  right: 0;
  top: 60px;
  transform: rotate(6deg);
  z-index: 1;
  opacity: 0.8;
}

.phone-front {
  right: 130px;
  top: 0;
  z-index: 2;
}

.phone-frame {
  background: #0d0d1e;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  padding: 16px 10px;
  position: relative;
}

.phone-notch {
  width: 80px; height: 18px;
  background: #0d0d1e;
  border-radius: 0 0 12px 12px;
  margin: -8px auto 10px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  font-size: 11px;
}

/* Settings screen */
.screen-settings {
  background: #0f0f1a;
  padding: 14px 12px;
}

.s-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
  color: #c0c0e0;
}

.s-icon { font-size: 16px; }

.s-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.s-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #c0c0e0;
}

.s-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.s-dot.slow { background: #6C63FF; box-shadow: 0 0 6px #6C63FF; }
.s-dot.fast { background: #F5A623; box-shadow: 0 0 6px #F5A623; }
.s-dot.rev  { background: #FF6584; box-shadow: 0 0 6px #FF6584; }
.s-dot.deco { background: #00D4FF; box-shadow: 0 0 6px #00D4FF; }

.s-toggle {
  margin-left: auto;
  width: 28px; height: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}
.s-toggle.on { background: #6C63FF; }
.s-toggle.on::after {
  content: '';
  position: absolute;
  right: 2px; top: 2px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
}
.s-toggle::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

.s-slider { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.s-slider-track { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; }
.s-slider-fill { height: 100%; background: #6C63FF; border-radius: 2px; }
.s-val { font-size: 10px; color: #6C63FF; font-weight: 600; }
.s-badge {
  margin-left: auto;
  font-size: 9px;
  background: rgba(0,212,255,0.15);
  color: #00D4FF;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* Home screen */
.screen-home {
  background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sh-top { display: flex; align-items: center; justify-content: space-between; }
.sh-logo { font-weight: 800; font-size: 11px; color: #a09df8; }
.sh-lic {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; color: #00C48C; font-weight: 600;
}
.sh-lic-dot {
  width: 5px; height: 5px;
  background: #00C48C;
  border-radius: 50%;
  box-shadow: 0 0 6px #00C48C;
}

.sh-preview {
  background: rgba(0,0,0,0.4);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 180px;
}

.sh-cam-icon { opacity: 0.5; }
.sh-rec-hint { font-size: 10px; color: var(--text-3); }

.sh-event {
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 10px;
  padding: 8px 12px;
}
.sh-event-label { font-size: 9px; color: #a09df8; font-weight: 500; margin-bottom: 2px; }
.sh-event-name { font-size: 12px; font-weight: 700; color: var(--text); }

.sh-btn-row { display: flex; justify-content: center; padding: 4px 0; }
.sh-btn-rec {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #FF6584, #e04060);
  border-radius: 50%;
  border: 3px solid rgba(255,101,132,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.sh-btn-rec-inner {
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 4px;
}

.sh-timer { text-align: center; font-size: 20px; font-weight: 800; color: #FF6584; letter-spacing: 0.05em; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ── TRUST STRIP ────────────────────────────── */
.trust-strip {
  background: var(--bg-2);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 1; }

/* ── FEATURES ───────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--bg-2);
}

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

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,99,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,99,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.feat-card:hover::before { opacity: 1; }

.feat-card--highlight {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(0,212,255,0.05));
  border-color: rgba(108,99,255,0.25);
}

.feat-icon {
  width: 52px; height: 52px;
  background: rgba(108,99,255,0.15);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon--purple { background: rgba(168,85,247,0.15); color: var(--purple); }
.feat-icon--cyan   { background: rgba(0,212,255,0.12); color: var(--cyan); }
.feat-icon--green  { background: rgba(0,196,140,0.12); color: var(--green); }
.feat-icon--pink   { background: rgba(255,101,132,0.12); color: var(--pink); }
.feat-icon--orange { background: rgba(245,166,35,0.12); color: var(--orange); }

.feat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feat-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.feat-tags span {
  font-size: 11px;
  font-weight: 600;
  background: rgba(108,99,255,0.12);
  color: #a09df8;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(108,99,255,0.2);
}

/* ── HOW ────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--bg);
}

.how-steps { display: flex; flex-direction: column; gap: 0; }

.how-step { position: relative; }

.how-num {
  font-size: 80px;
  font-weight: 900;
  color: rgba(108,99,255,0.08);
  letter-spacing: -0.04em;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: -10px;
  pointer-events: none;
  user-select: none;
}

.how-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.how-content--rev { direction: rtl; }
.how-content--rev > * { direction: ltr; }

.how-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.connector-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(108,99,255,0.4), transparent); }
.connector-arrow { color: var(--primary); font-size: 18px; opacity: 0.5; }

.how-text h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.how-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.how-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.how-list li { font-size: 15px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }

.how-progress-demo { display: flex; flex-direction: column; gap: 6px; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--cyan)); border-radius: 3px; animation: progressAnim 3s ease-in-out infinite alternate; }
@keyframes progressAnim { from { width: 60%; } to { width: 90%; } }
.how-progress-demo span { font-size: 12px; color: var(--text-3); }

/* Mockups ── */
.how-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mock-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.mock-dot:first-child { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:last-child { background: #28c840; }

.mock-camera { padding: 20px; }
.mock-viewfinder {
  background: #0a0a14;
  border-radius: 12px;
  border: 2px solid rgba(255,101,132,0.3);
  min-height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.mock-subject {
  width: 60px; height: 120px;
  background: rgba(108,99,255,0.15);
  border-radius: 30px 30px 20px 20px;
  position: relative;
}
.mock-subject::before {
  content: '';
  position: absolute;
  top: -25px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: rgba(108,99,255,0.2);
  border-radius: 50%;
}

.mock-rec-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #FF6584;
  animation: blinkRec 1.2s ease-in-out infinite;
}
@keyframes blinkRec { 0%,100%{opacity:1} 50%{opacity:0.2} }

.mock-timer {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: 0.05em;
}

.mock-rec-btn {
  width: 48px; height: 48px;
  background: #FF6584;
  border-radius: 50%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(255,101,132,0.5);
}
.mock-rec-inner { width: 18px; height: 18px; background: #fff; border-radius: 3px; }

.mock-proc { padding: 24px; text-align: center; }
.proc-ring { position: relative; width: 80px; height: 80px; margin: 0 auto 16px; }
.proc-svg { transform: rotate(-90deg); }
.proc-pct {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px; font-weight: 800; color: var(--primary);
}
.proc-status { font-size: 12px; color: var(--text-2); margin-bottom: 16px; }
.proc-steps { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.proc-step { font-size: 11px; color: var(--text-3); padding: 4px 8px; border-radius: 6px; }
.proc-step.done { color: var(--green); }
.proc-step.active { color: var(--primary); background: rgba(108,99,255,0.08); font-weight: 600; }

.mock-qr-screen { padding: 20px; text-align: center; }
.mock-qr-title { font-size: 14px; font-weight: 800; margin-bottom: 16px; color: var(--green); }
.mock-qr-code {
  display: flex; justify-content: center;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.mock-qr-hint { font-size: 11px; color: var(--text-2); margin-bottom: 6px; }
.mock-qr-url { font-size: 10px; color: var(--primary); font-weight: 600; }

/* ── EFFECTS ────────────────────────────────── */
.effects {
  padding: 100px 0;
  background: var(--bg-2);
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.effect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.effect-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.effect-preview {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-slow  { background: linear-gradient(135deg, #1a0f3a, #2d1a6e); }
.preview-fast  { background: linear-gradient(135deg, #2a1a00, #5a3600); }
.preview-reverse { background: linear-gradient(135deg, #1a0020, #4a0050); }
.preview-neon  { background: linear-gradient(135deg, #001a1a, #002a2a); }

.preview-overlay {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 10;
}
.preview-badge {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}

.preview-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.pv-person {
  width: 40px; height: 90px;
  border-radius: 20px 20px 12px 12px;
  position: relative;
}
.pv-person::before {
  content: '';
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
}

.pv-slow  { background: rgba(108,99,255,0.4); }
.pv-slow::before { background: rgba(108,99,255,0.4); }
.pv-fast  { background: rgba(245,166,35,0.4); }
.pv-fast::before { background: rgba(245,166,35,0.4); }
.pv-rev   { background: rgba(255,101,132,0.4); }
.pv-rev::before { background: rgba(255,101,132,0.4); }
.pv-neon  { background: rgba(0,212,255,0.3); box-shadow: 0 0 20px rgba(0,212,255,0.3); }
.pv-neon::before { background: rgba(0,212,255,0.3); box-shadow: 0 0 15px rgba(0,212,255,0.4); }

.pv-slow { animation: personSlow 3s ease-in-out infinite; }
@keyframes personSlow { 0%,100%{transform:rotate(-5deg)} 50%{transform:rotate(5deg)} }

.pv-fast { animation: personFast 0.5s ease-in-out infinite alternate; }
@keyframes personFast { from{transform:rotate(-8deg) translateX(-5px)} to{transform:rotate(8deg) translateX(5px)} }

.pv-rev { animation: personRev 2s ease-in-out infinite reverse; }
@keyframes personRev { 0%{transform:translateX(-20px)} 100%{transform:translateX(20px)} }

.pv-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); }
.pv-bar { width: 100px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.pv-fill { height: 100%; background: var(--primary); border-radius: 2px; animation: fillAnim 2s ease-in-out infinite; }
@keyframes fillAnim { 0%,100%{width:25%} 50%{width:60%} }
.pv-fill-fast { background: var(--orange); animation: fillFast 0.8s ease-in-out infinite; }
@keyframes fillFast { 0%{width:20%} 100%{width:95%} }
.pv-arrows { font-size: 18px; color: var(--pink); animation: arrowFade 1s ease-in-out infinite; letter-spacing: 4px; }
@keyframes arrowFade { 0%,100%{opacity:0.3} 50%{opacity:1} }

.neon-frame {
  position: absolute;
  inset: 12px;
  border: 4px solid #0ff;
  border-radius: 8px;
  box-shadow: 0 0 20px #0ff, inset 0 0 20px rgba(0,255,255,0.05);
  animation: neonPulse 2s ease-in-out infinite;
}
@keyframes neonPulse { 0%,100%{box-shadow:0 0 20px #0ff, inset 0 0 20px rgba(0,255,255,0.05)} 50%{box-shadow:0 0 40px #0ff, 0 0 80px rgba(0,255,255,0.3), inset 0 0 40px rgba(0,255,255,0.1)} }

.effect-info {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  align-items: flex-start;
}

.effect-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.slow-wrap { background: rgba(108,99,255,0.15); color: var(--primary); }
.fast-wrap { background: rgba(245,166,35,0.15); color: var(--orange); }
.rev-wrap  { background: rgba(255,101,132,0.15); color: var(--pink); }
.neon-wrap { background: rgba(0,212,255,0.12); color: var(--cyan); }

.effect-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.effect-info p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── PORTAL ─────────────────────────────────── */
.portal-section {
  padding: 100px 0;
  background: var(--bg);
}

.portal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.portal-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.portal-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.portal-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.portal-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-2); }
.pl-icon { font-size: 22px; flex-shrink: 0; }

.portal-browser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-3);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-content { padding: 20px; }

.bc-header { margin-bottom: 16px; }
.bc-logo { font-size: 12px; font-weight: 700; color: #a09df8; margin-bottom: 4px; }
.bc-event-name { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }

.bc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.bc-video-thumb {
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  border: 1px solid var(--border);
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.bc-video-thumb:hover { border-color: rgba(108,99,255,0.4); }
.bct-play { font-size: 22px; color: rgba(255,255,255,0.7); }
.bct-duration { font-size: 10px; color: var(--text-3); font-weight: 600; }
.bc-video-new { border-color: rgba(0,196,140,0.3); }
.bct-new {
  position: absolute; top: 6px; right: 6px;
  font-size: 9px; font-weight: 700;
  background: var(--green); color: #fff;
  padding: 2px 6px; border-radius: 4px;
}

.bc-footer { font-size: 11px; color: var(--text-3); text-align: center; }

/* ── PRICING ────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--bg-2);
}

.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.price-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  transition: all 0.3s ease;
}

.price-card--pro {
  border-color: rgba(108,99,255,0.35);
  background: linear-gradient(160deg, rgba(108,99,255,0.1), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(108,99,255,0.2), 0 30px 60px rgba(108,99,255,0.15);
}

.price-badge-popular {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 14px;
  line-height: 1;
}
.price-cur { font-size: 24px; font-weight: 700; margin-top: 8px; color: var(--text-2); }
.price-num { font-size: 60px; font-weight: 900; letter-spacing: -0.04em; }
.price-period { font-size: 13px; color: var(--text-3); margin-top: 44px; margin-left: 4px; }

.price-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 60px;
}

.price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-feats li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-ok::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.feat-no::before { content: '✕'; color: rgba(255,255,255,0.2); font-weight: 700; flex-shrink: 0; }
.feat-no { color: var(--text-3); text-decoration: line-through; }

.price-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
}

.pricing-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
}
.pricing-footer a { color: var(--primary); text-decoration: none; }
.pricing-footer a:hover { text-decoration: underline; }

/* ── FAQ ────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(108,99,255,0.3); }

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: #a09df8; }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── CTA FINAL ──────────────────────────────── */
.cta-final {
  padding: 100px 0;
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.cta-final h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: #070710;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 300px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── ANIMATIONS ─────────────────────────────── */
.anim-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-hidden.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-phones { display: none; }
  .hero-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .hero-text { text-align: center; }
  .hero-desc, .hero-badge { max-width: none; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .effects-grid  { grid-template-columns: 1fr; }
  .how-content   { grid-template-columns: 1fr; gap: 32px; }
  .how-content--rev { direction: ltr; }
  .portal-inner  { grid-template-columns: 1fr; }
  .pricing-cards { flex-direction: column; max-width: 420px; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-links  { gap: 40px; }
  .how-num { font-size: 48px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-btns  { flex-direction: column; align-items: center; }
}
