/* Landing page styles (extracted from templates/index.html) */
.vb-hero-shell {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  background: radial-gradient(circle at top left, #22c55e 0, #16a34a 24%, #065f46 60%, #022c22 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
  isolation: isolate;
}
.vb-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.20;
  background-image:
    radial-gradient(#6ee7b7 0.75px, transparent 0.75px),
    radial-gradient(#22c55e 0.75px, transparent 0.75px);
  background-size: 14px 14px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.vb-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.65;
  mix-blend-mode: screen;
  animation: vb-blob-float 18s ease-in-out infinite alternate;
}
.vb-blob-1 {
  width: 340px;
  height: 340px;
  background: #4ade80;
  top: -40px;
  left: -40px;
}
.vb-blob-2 {
  width: 260px;
  height: 260px;
  background: #22d3ee;
  bottom: -60px;
  right: 8%;
  animation-delay: 4s;
}
.vb-blob-3 {
  width: 240px;
  height: 240px;
  background: #f97316;
  top: 30%;
  right: -60px;
  animation-delay: 8s;
}
@keyframes vb-blob-float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(20px, -20px, 0) scale(1.05); }
  100% { transform: translate3d(-16px, 24px, 0) scale(1.02); }
}

.vb-glass {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.18), rgba(15, 23, 42, 0.85));
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.30);
  box-shadow:
    0 18px 60px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(15, 23, 42, 0.3) inset;
  backdrop-filter: blur(20px);
}
.vb-glass-light {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.93), rgba(226, 232, 240, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(16px);
}

.feature-card-wrapper {
  transition: transform 0.18s ease, box-shadow 0.18s ease, translate 0.18s ease;
}
.feature-card-wrapper:hover .feature-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: #059669;
  font-size: 0.9rem;
}
.feature-link svg {
  transition: transform 0.18s ease;
}
.feature-link:hover svg {
  transform: translateX(4px);
}

.vb-pill {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.25rem 0.75rem;
  backdrop-filter: blur(12px);
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.1));
}

.vb-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.vb-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #e5e7eb, #f3f4f6, #e5e7eb);
  background-size: 200% 100%;
  animation: vb-shimmer 2.4s ease-in-out infinite;
}
@keyframes vb-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .vb-blob,
  .vb-shimmer {
    animation: none !important;
  }
  .feature-card-wrapper,
  .feature-link svg {
    transition: none !important;
  }
}
