/* Prevent rubber-banding and text selection to mimic native apps */
html, body {
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
}

/* Safe Area Insets for iPhones with Notches */
.pwa-header {
  padding-top: env(safe-area-inset-top);
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
}

.pwa-nav {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Active State Haptics Simulation */
.trust-card:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}