/* Marketing pages: mobile nav — works even if Alpine loads late */
[x-cloak] {
  display: none !important;
}

@media (max-width: 1023px) {
  /* Fallback: keep mobile dropdown closed until Alpine toggles it */
  nav div.lg\:hidden.absolute.top-full[x-cloak] {
    display: none !important;
  }

  body.has-mobile-actions {
    padding-bottom: 4.5rem;
  }

  .mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    gap: 0;
  }

  .mobile-fixed-buttons a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  a[href="download.html"],
  a[href*="download.html"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (min-width: 1024px) {
  .mobile-fixed-buttons {
    display: none !important;
  }
}
