/* FAMSS marketing — design tokens & site styles (pairs with Tailwind CDN) */
:root {
  --brand-navy: #0b1f3a;
  --brand-navy-deep: #061427;
  --accent: #0f766e;
  --accent-bright: #14b8a6;
  --surface: #f4f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --warning: #b45309;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

.font-brand {
  font-family: "Source Serif 4", Georgia, serif;
}

/* Sticky nav blur */
.site-nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(244, 247, 251, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
}

/* Hero entrance */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

.animate-fade-up-delay {
  animation: fade-up 0.7s ease-out 0.15s both;
}

.animate-fade-up-delay-2 {
  animation: fade-up 0.7s ease-out 0.3s both;
}

/* Results reveal */
@keyframes results-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.results-reveal {
  animation: results-in 0.5s ease-out both;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--brand-navy-deep);
  box-shadow: 0 25px 50px -12px rgba(11, 31, 58, 0.35);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.img-slot {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
  border: 1px dashed #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  min-height: 12rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Match famss.app — hide Enterprise badge (privacy text lives near forms) */
.grecaptcha-badge {
  visibility: hidden !important;
}

.prose-faq details summary {
  cursor: pointer;
  list-style: none;
}

.prose-faq details summary::-webkit-details-marker {
  display: none;
}
