/* DentaPlan public site — mobile / touch UX */
html {
  -webkit-text-size-adjust: 100%;
}

/* Prevent horizontal scroll from blurred glows / wide grids */
body {
  overflow-x: hidden;
}

/* Coarse pointers: drop hover-only transforms on cards */
@media (hover: none), (pointer: coarse) {
  .glass-card:hover {
    transform: none !important;
  }
}

.touch-manipulation {
  touch-action: manipulation;
}

/* Legal & long-form readability */
.overflow-wrap-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
