:root {
  --brand2: #22d3ee;
  --brand3: #ff6bcb;
}

body { overflow-x: hidden; }

/* ---------- animated background blobs ---------- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; top: -120px; left: -100px; background: var(--brand); animation-delay: 0s; }
.blob-2 { width: 420px; height: 420px; top: 200px; right: -140px; background: var(--brand2); animation-delay: -6s; }
.blob-3 { width: 380px; height: 380px; bottom: -160px; left: 30%; background: var(--brand3); animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* ---------- nav ---------- */
.nav-glass {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---------- hero ---------- */
.hero-flashy {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  background: linear-gradient(90deg, rgba(91,91,214,.12), rgba(34,211,238,.12));
  border: 1px solid rgba(91,91,214,.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--brand), var(--brand2) 60%, var(--brand3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content > p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 480px;
}

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

.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 10px; }

.btn-lg.btn {
  box-shadow: 0 10px 30px -8px rgba(91,91,214,.55);
}

.hero-trust { font-size: 13px; color: var(--muted); }

/* ---------- hero video ---------- */
.hero-media { display: flex; justify-content: center; }

.video-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  padding: 4px;
  background: linear-gradient(135deg, var(--brand), var(--brand2), var(--brand3));
  box-shadow: 0 30px 60px -20px rgba(30, 20, 90, .35);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 21px;
  display: block;
  background: #111;
}

.video-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 20, 30, .68);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.video-credit {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.video-credit a { color: var(--muted); }

/* ---------- stats strip ---------- */
.stats-strip {
  max-width: 1000px;
  margin: 24px auto 80px;
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat strong { display: block; font-size: 26px; background: linear-gradient(90deg, var(--brand), var(--brand2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 13px; color: var(--muted); }

/* ---------- features ---------- */
.section-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.section-head h2 { font-size: 30px; margin: 0 0 10px; letter-spacing: -0.01em; }

.features-flashy { max-width: 1080px; margin: 0 auto 90px; padding: 0 24px; }

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(30,20,90,.25);
  border-color: rgba(91,91,214,.35);
}
.feature-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(91,91,214,.15), rgba(34,211,238,.15));
  margin-bottom: 14px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 16px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ---------- CTA banner ---------- */
.cta-banner {
  max-width: 1080px;
  margin: 0 auto 90px;
  padding: 64px 40px;
  border-radius: 24px;
  background: linear-gradient(120deg, var(--brand), #7c6fe8 45%, var(--brand2));
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-size: 30px; margin: 0 0 24px; }
.btn-white { background: #fff; color: var(--brand-dark); box-shadow: 0 10px 30px -10px rgba(0,0,0,.35); }
.btn-white:hover { background: #f2f2ff; }

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  padding: 28px 20px 40px;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-flashy { grid-template-columns: 1fr; padding-top: 40px; text-align: center; }
  .hero-content > p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-content h1 { font-size: 38px; }
  .video-frame { max-width: 340px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
}
