/* Arodus demo — hard desktop-only gate. Below 1024px the entire app is hidden and a
   full-screen interstitial is shown with no bypass. Targets the real top-level wrappers:
   .app on the product pages, .auth on sign-in. */
@media (max-width: 1023px) {
  .app, .auth { display: none !important; }
  #demo-mobile-gate {
    display: flex; align-items: center; justify-content: center;
    position: fixed; inset: 0; padding: 24px;
    text-align: center; background: #0D1521; color: #fff;
    font-family: 'Hanken Grotesk', system-ui, sans-serif; z-index: 999999;
  }
  .dmg-title { font-size:var(--fs-7); font-weight: 600; margin: 0 0 12px; }
  .dmg-body  { font-size:var(--fs-5); line-height: 1.5; color: #8AB0F5; max-width: 340px; margin: 0 auto; }
}
@media (min-width: 1024px) { #demo-mobile-gate { display: none; } }
