/* ═══════════════════════════════════════════════════════════════ */
/* SoraSend Custom Styles                                           */
/* ═══════════════════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scroll reveal animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Slow pulse animation for background orbs ────────────────── */
@keyframes slow-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.animate-slow-pulse {
  animation: slow-pulse 8s ease-in-out infinite;
}

/* ── Navbar scroll effect ────────────────────────────────────── */
#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* ── Details/summary styling (FAQ) ───────────────────────────── */
details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: #1d4ed8;
}

/* ── Focus accessibility ─────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Selection color ─────────────────────────────────────────── */
::selection {
  background-color: #bfdbfe;
  color: #1e3a8a;
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
