/* AAKS � Responsive utilities & motion preferences
   Breakpoints: 480px, 768px, 1024px, 1100px, 1280px, 1440px
   Most component media queries live in header.css / hero.css / homepage.css
*/

/* Global overflow lock (mobile safety) */
html,
body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .site-header {
    height: 72px;
  }

  .brand__tag {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(72px + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .hero__container {
    gap: 1.5rem;
  }

  .hero__subtitle {
    margin-bottom: 1.25rem;
  }

  .hero-card__value {
    font-size: 1.05rem;
  }

  .hero-card__label {
    font-size: 0.75rem;
  }
}

   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .hero__gradient-anim,
  .hero__light,
  .hero__particle,
  .hero__scroll-line,
  .hero-card,
  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions {
    animation: none !important;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero-card {
    opacity: 1;
    transform: none;
  }
}
