/* ─────────────────────────────────────────────
   PAASSY — Site Vitrine · styles.css
   Dark & Light mode, full sections
───────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --purple: #5B13EC;
  --purple-light: #7c40ff;
  --purple-dark: #3d0bb3;
  --purple-glow: rgba(91, 19, 236, .35);
  --heading-font: 'Exo 2', sans-serif;
  --body-font: 'Titillium Web', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── ICONS ── */
.lucide {
  width: 1.25em;
  height: 1.25em;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

[data-theme="light"] .lucide {
  stroke-width: 1.75;
  /* Slightly thicker for light mode clarity */
}

/* ── DARK THEME (default) ── */
[data-theme="dark"] {
  --bg: #110C1A;
  --bg-2: #1C1D27;
  --bg-3: #242535;
  --text: #ffffff;
  --text-muted: #8B919E;
  --border: rgba(255, 255, 255, .08);
  --border-hover: rgba(91, 19, 236, .45);
  --card-bg: #1C1D27;
  --input-bg: #242535;
  --nav-scrolled: rgba(17, 12, 26, .88);
  --orb-opacity: 1;
}

/* ── LIGHT THEME ── */
[data-theme="light"] {
  --bg: #F6F8FC;
  --bg-2: #ffffff;
  --bg-3: #eef1f8;
  --text: #0f0a1e;
  --text-muted: #6B7280;
  --border: rgba(0, 0, 0, .08);
  --border-hover: rgba(91, 19, 236, .4);
  --card-bg: #ffffff;
  --input-bg: #f1f4fb;
  --nav-scrolled: rgba(246, 248, 252, .92);
  --orb-opacity: .5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background .4s ease, color .4s ease;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 30px var(--purple-glow);
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--purple-glow);
}

.btn-secondary {
  background: rgba(91, 19, 236, .1);
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(91, 19, 236, .18);
  transform: translateY(-2px);
  border-color: var(--purple-light);
}

/* Section shared */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(91, 19, 236, .15);
  color: var(--purple-light);
  border: 1px solid rgba(91, 19, 236, .35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--nav-scrolled);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text) 30%, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
  display: inline-block;
  margin-bottom: 2px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(91, 19, 236, .08);
}

.cta-nav {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  box-shadow: 0 0 20px var(--purple-glow);
}

.cta-nav:hover {
  background: var(--purple-light) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Theme & Lang toggles */
.theme-toggle,
.lang-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--text);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: .8rem;
}

.theme-toggle:hover,
.lang-toggle:hover {
  border-color: var(--purple-light);
  transform: rotate(5deg) scale(1.05);
}

.theme-icon {
  position: absolute;
  transition: opacity .3s, transform .3s;
  font-size: 1rem;
}

.theme-icon--sun {
  opacity: 0;
  transform: translateY(-4px);
}

.theme-icon--moon {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="light"] .theme-icon--sun {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="light"] .theme-icon--moon {
  opacity: 0;
  transform: translateY(4px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: var(--orb-opacity);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(91, 19, 236, .22);
  top: -100px;
  right: -150px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, .12);
  bottom: -100px;
  left: -80px;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, .08);
  top: 50%;
  left: 40%;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(91, 19, 236, .5);
  animation: float-particle var(--dur, 8s) linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: .4;
  }

  100% {
    transform: translateY(-10vh) translateX(var(--dx, 30px));
    opacity: 0;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 19, 236, .12);
  border: 1px solid rgba(91, 19, 236, .35);
  color: var(--purple-light);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 8px #22c55e;
  }

  50% {
    box-shadow: 0 0 20px #22c55e;
  }
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
}

.stat-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-light);
}

.stat-label {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── PHONE FRAME ── */
.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--bg-2);
  border-radius: 34px;
  border: 2px solid var(--border);
  padding: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 14px;
  background: var(--bg);
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg);
}

/* ── HERO PHONE APP UI ── */
.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

/* Hero phone wrap */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: phone-float 4s ease-in-out infinite;
}

@keyframes phone-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 19, 236, .45) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.badge-a {
  bottom: 60px;
  left: -40px;
  animation: badge-float-a 5s ease-in-out infinite;
}

.badge-b {
  top: 80px;
  right: -50px;
  animation: badge-float-b 5s ease-in-out infinite 1.5s;
}

@keyframes badge-float-a {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-8px) rotate(-2deg)
  }
}

@keyframes badge-float-b {

  0%,
  100% {
    transform: translateY(0) rotate(2deg)
  }

  50% {
    transform: translateY(-8px) rotate(2deg)
  }
}

.fb-icon {
  font-size: 1.4rem;
}

.fb-title {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text);
}

.fb-sub {
  font-size: .65rem;
  color: var(--text-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(91, 19, 236, .4);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--purple-light);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(12px);
    opacity: 0
  }
}

/* ── TRUSTED ── */
.trusted-section {
  padding: 40px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-logo {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.trusted-logo:hover {
  color: var(--purple-light);
}

/* ── FEATURES ── */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--large {
  grid-column: span 2;
}

.feature-icon-wrap {
  margin-bottom: 16px;
}

.feature-icon {
  font-size: 2rem;
}

.feature-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-desc {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.65;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.chip {
  background: rgba(91, 19, 236, .12);
  color: var(--purple-light);
  border: 1px solid rgba(91, 19, 236, .25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
}

/* ── EVENTS SECTION ── */


/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 19, 236, .08) 0%, transparent 70%);
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 20px;
}

.steps-line {
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-light) 50%, var(--purple) 100%);
  opacity: .3;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(91, 19, 236, .4);
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-desc {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.65;
}

/* ── PRO SECTION ── */
.pro-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pro-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: var(--orb-opacity);
}

.pro-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(91, 19, 236, .18);
  top: -100px;
  right: -100px;
}

.pro-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(168, 85, 247, .1);
  bottom: -80px;
  left: -60px;
}

.pro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pro-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px 0 32px;
  max-width: 440px;
}

.pro-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pro-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: var(--transition);
}

.pro-feature-item:hover {
  border-color: var(--border-hover);
  background: rgba(91, 19, 236, .05);
}

.pro-feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.pro-feature-item h4 {
  font-family: var(--heading-font);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.pro-feature-item p {
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.6;
}

.pro-visual-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: visual-float 6s ease-in-out infinite;
}

@keyframes visual-float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.dash-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.dash-card:hover {
  transform: scale(1.05) translateZ(10px);
  border-color: var(--purple-light);
}

/* Main Chart Card */
.dash-card--main {
  width: 320px;
  height: 220px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(91, 19, 236, 0.1));
}

.dash-card--main:hover {
  /* Merge the positioning translate with the hover scale to prevent flickering */
  transform: translate(-50%, -50%) scale(1.05) translateZ(10px);
}

/* Small Stat Cards */
.dash-card--stat-1 {
  width: 140px;
  top: 10%;
  left: 0;
  z-index: 3;
}

.dash-card--stat-2 {
  width: 160px;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.dash-card--scanner {
  width: 120px;
  top: 15%;
  right: -20px;
  z-index: 1;
  opacity: 0.6;
}

.dash-card h4 {
  font-family: var(--heading-font);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-val {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.dash-trend {
  font-size: 0.7rem;
  color: #4ade80;
  margin-left: 8px;
}

/* Abstract Chart */
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-top: 20px;
}

.dash-chart--bar {
  flex: 1;
  background: var(--purple);
  border-radius: 4px 4px 0 0;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.dash-chart--bar.active {
  opacity: 1;
  background: linear-gradient(to top, var(--purple), var(--purple-light));
}

/* Scanner Abstract */
.dash-scanner-box {
  width: 100%;
  height: 60px;
  border: 1px dashed var(--purple-light);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.dash-scanner-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--purple-light);
  box-shadow: 0 0 10px var(--purple-light);
  animation: dash-scan 2s ease-in-out infinite;
}

@keyframes dash-scan {

  0%,
  100% {
    top: 0;
  }

  50% {
    top: 100%;
  }
}

.scanner-viewfinder {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanner-corner {
  position: absolute;
  width: 16px;
  height: 16px;
}

.scanner-corner.tl {
  top: 0;
  left: 0;
  border: 3px solid var(--purple-light);
  border-right: none;
  border-bottom: none;
  border-radius: 3px 0 0 0;
}

.scanner-corner.tr {
  top: 0;
  right: 0;
  border: 3px solid var(--purple-light);
  border-left: none;
  border-bottom: none;
  border-radius: 0 3px 0 0;
}

.scanner-corner.bl {
  bottom: 0;
  left: 0;
  border: 3px solid var(--purple-light);
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 3px;
}

.scanner-corner.br {
  bottom: 0;
  right: 0;
  border: 3px solid var(--purple-light);
  border-left: none;
  border-top: none;
  border-radius: 0 0 3px 0;
}

.scanner-line {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--purple-light);
  top: 20px;
  animation: scan-line 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--purple-light);
}

@keyframes scan-line {

  0%,
  100% {
    top: 15%
  }

  50% {
    top: 75%
  }
}

.scanner-qr-icon {
  font-size: 1.6rem;
  color: rgba(91, 19, 236, .25);
}

.scanner-status {
  font-size: .6rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.scanner-status.valid {
  background: rgba(34, 197, 94, .15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, .4);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(91, 19, 236, .15), var(--card-bg));
  border-color: rgba(91, 19, 236, .35);
  box-shadow: 0 0 40px rgba(91, 19, 236, .1);
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  flex-shrink: 0;
}

.avatar-1 {
  background: linear-gradient(135deg, #5B13EC, #7c40ff);
  color: #fff;
}

.avatar-2 {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #fff;
}

.avatar-3 {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
}

.author-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
}

.author-loc {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── DOWNLOAD ── */
.download-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.download-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: var(--orb-opacity);
}

.dl-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(91, 19, 236, .2);
  top: -100px;
  left: -100px;
}

.dl-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(236, 72, 153, .08);
  bottom: -50px;
  right: -50px;
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dl-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 16px 0;
  color: var(--text);
}

.dl-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.dl-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 22px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.dl-btn svg,
.btn svg,
.dl-btn .lucide,
.btn .lucide {
  fill: none;
  /* Lucide icons are strokes, not fills */
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.success-icon {
  color: #10b981;
  margin-right: 8px;
  width: 1.2rem;
  height: 1.2rem;
}

.heart-icon {
  color: #ef4444;
  width: 1.1em;
  height: 1.1em;
  fill: #ef4444;
  /* Give the heart a fill */
  display: inline-block;
  vertical-align: sub;
}

.dl-btn:hover {
  background: rgba(91, 19, 236, .1);
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.dl-btn-sub {
  font-size: .7rem;
  color: var(--text-muted);
}

.dl-btn-main {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1rem;
}

/* Coming Soon Badge */
.dl-btn-container {
  position: relative;
  display: inline-block;
}

.badge-soon {
  position: absolute;
  top: -8px;
  right: -5px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(91, 19, 236, 0.4);
  pointer-events: none;
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .badge-soon {
    top: -6px;
    right: -2px;
    font-size: 0.5rem;
  }
}

.dl-phone-float {
  display: flex;
  justify-content: center;
  position: relative;
  animation: phone-float 4s ease-in-out infinite 0.5s;
}

.dl-phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 19, 236, .45) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

.dl-phone {
  width: 260px;
  height: 520px;
}

/* Ticket screen */
.ticket-screen {
  padding: 30px 10px 10px;
  height: 100%;
}

.ticket-header {
  font-family: var(--heading-font);
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  color: var(--text);
}

.ticket-card {
  background: linear-gradient(135deg, var(--bg-2), #2a1050);
  border: 1px solid rgba(91, 19, 236, .35);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.ticket-event-name {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: 4px;
  color: #fff;
}

.ticket-date {
  font-size: .6rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 2px;
}

.ticket-type {
  font-size: .6rem;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.qr-zone {
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
}

.qr-mock {
  display: grid;
  gap: 4px;
}

.qr-row {
  display: flex;
  gap: 4px;
}

.qr-b,
.qr-w {
  width: 28px;
  height: 28px;
  border-radius: 3px;
}

.qr-b {
  background: #111;
}

.qr-w {
  background: #fff;
}

.ticket-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(91, 19, 236, .3);
  border: 1px solid rgba(91, 19, 236, .5);
  border-radius: 8px;
  padding: 3px 8px;
  font-size: .55rem;
  font-weight: 700;
  color: var(--purple-light);
}

/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--border-hover);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.contact-info-val {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}

.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--body-font);
  font-size: .92rem;
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91, 19, 236, .12);
}

.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

.form-success {
  display: none;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #4ade80;
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ── PRIVACY ── */
.privacy-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

/* ── LEGAL PAGE LAYOUT ── */
.policy-page {
  padding-top: 120px;
  min-height: 100vh;
  position: relative;
  /* Removed overflow: hidden as it breaks position: sticky */
}

.policy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-top: 60px;
  position: relative;
}

.policy-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  z-index: 10;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.policy-sidebar-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.8;
}

.policy-nav-list {
  list-style: none;
  padding: 0;
}

.policy-nav-item a {
  display: block;
  padding: 10px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--body-font);
  font-size: 0.95rem;
  transition: var(--transition);
}

.policy-nav-item a:hover {
  color: var(--purple-light);
  transform: translateX(5px);
}

.policy-main {
  max-width: 850px;
}

.policy-header {
  margin-bottom: 60px;
}

.policy-header .section-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 15px 0 20px;
}

.last-updated {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 10px;
}

.policy-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  transition: var(--transition);
}

.policy-card:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.policy-card h2 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
}

.policy-card h2 .lucide {
  width: 32px;
  height: 32px;
}

.policy-card p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.policy-card ul {
  list-style: none;
  padding-left: 0;
}

.policy-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
}

.policy-card strong {
  color: var(--text);
  font-weight: 600;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-bottom: 40px;
}

.back-home:hover {
  color: var(--purple-light);
  transform: translateX(-5px);
}

@media (max-width: 1024px) {
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .policy-sidebar {
    position: static;
    margin-bottom: 30px;
    padding: 20px;
  }

  .policy-nav-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    gap: 15px;
    scrollbar-width: none;
  }

  .policy-nav-list::-webkit-scrollbar {
    display: none;
  }

  .policy-nav-item a {
    white-space: nowrap;
    padding: 5px 0;
  }
}

.privacy-card p strong {
  color: var(--purple-light);
}

.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(91, 19, 236, .08);
  border: 1px solid rgba(91, 19, 236, .25);
  border-radius: 12px;
  padding: 20px 24px;
}

.privacy-notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.privacy-notice p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.6;
}

.privacy-notice a {
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 700;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text);
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--transition);
}

.footer-links-group a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: .82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .82rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--purple-light);
}

/* ── AOS ANIMATIONS ── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-delay="50"] {
  transition-delay: .05s;
}

[data-delay="80"] {
  transition-delay: .08s;
}

[data-delay="100"] {
  transition-delay: .1s;
}

[data-delay="150"] {
  transition-delay: .15s;
}

[data-delay="160"] {
  transition-delay: .16s;
}

[data-delay="200"] {
  transition-delay: .2s;
}

[data-delay="250"] {
  transition-delay: .25s;
}

[data-delay="300"] {
  transition-delay: .3s;
}

[data-delay="350"] {
  transition-delay: .35s;
}

[data-delay="400"] {
  transition-delay: .4s;
}

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle,
  .dl-subtitle,
  .pro-subtitle {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--large {
    grid-column: span 2;
  }

  .pro-inner,
  .download-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .pro-subtitle {
    max-width: 100%;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-scrolled);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 12px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .features-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

  .steps-line {
    display: none;
  }

  .testimonials-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
  }

  .badge-a,
  .badge-b {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:480px) {

  .hero-cta,
  .dl-btns {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: 20px;
  }
}

/* ── POLICY PAGES ── */
.policy-page {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  z-index: 10;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 60px;
  text-align: left;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-section h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--purple);
  border-radius: 4px;
}

.policy-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section ul {
  list-style: none;
  margin-bottom: 16px;
}

.policy-section li {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.policy-section li::before {
  content: '•';
  color: var(--purple-light);
  font-weight: 900;
  margin-top: 2px;
}

.back-home {
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
}

.back-home:hover {
  transform: translateX(-5px);
  color: var(--text);
}

.last-updated {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}