/* Shared static HTML — nav, content shell, footer (from app index.css / AppFooter) */

.nav-glass {
  background: rgb(205 205 223 / 35%) !important;
  backdrop-filter: blur(82px) saturate(1%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65) !important;
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.footer-glass {
  background: rgb(205 205 223 / 35%) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
}

.static-legal-advisory {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Premium content card (policy / FAQ pages) */
.premium-glass-card {
  isolation: isolate;
  width: 100%;
  border-radius: 27px;
  padding: 28px 24px 32px;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: rgb(205 205 223 / 35%);
  backdrop-filter: blur(2px) saturate(180%);
  border: 0.215rem solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
}

.premium-glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 20%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.8) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* FAQ search */
.faq-search-input {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.75);
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.9375rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.faq-search-input:focus {
  outline: 2px solid hsl(213 94% 35%);
  outline-offset: 1px;
}

/* Static site footer */
.static-footer-link {
  color: #000;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  font-size: inherit;
}

.static-footer-link:hover {
  color: var(--sv-primary);
}

.static-footer-link[aria-current='page'] {
  color: var(--sv-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.static-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .static-footer-social {
    margin-top: 0;
  }
}

.static-footer-social a {
  display: inline-flex;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.static-footer-social a:hover {
  opacity: 1;
  transform: scale(1.08);
}

.static-footer-social img {
  width: 1rem;
  height: 1rem;
  display: block;
}

.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;
}
