/* ── Base ── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── Nav ── */
.nav-blur {
  background: rgba(13, 11, 30, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  color: white;
  font-weight: 600;
  border-radius: 14px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(124,58,237,0.4);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: white;
  font-weight: 600;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow orbs ── */
.glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-purple { background: rgba(124,58,237,0.18); }
.glow-cyan   { background: rgba(6,182,212,0.12); }

/* ── Phone mock ── */
.phone-frame {
  width: 260px;
  height: 540px;
  background: #1A1035;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #0D0B1E;
  border-radius: 30px;
  overflow: hidden;
}

/* Floating badges */
.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,16,53,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.badge-left  { bottom: 60px; left: -60px; }
.badge-right { top: 80px;    right: -60px; }

/* ── Stat cards ── */
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: rgba(124,58,237,0.3); }

/* ── Feature cards ── */
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ── Step cards ── */
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
}
.step-number {
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
}

/* ── Review cards ── */
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 0.2s;
}
.review-card .flex { color: #F59E0B; font-size: 14px; }
.review-card:hover { border-color: rgba(245,158,11,0.2); }

/* ── Responsive tweaks ── */
@media (max-width: 640px) {
  .badge-left  { left: -20px; bottom: 40px; }
  .badge-right { right: -20px; top: 60px; }
}
