/* Cross-page accessibility and small-screen hardening. Loaded after page CSS. */
:root {
  --faint: #7d889b !important;
}

:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #ffb84d;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(245, 146, 30, 0.22);
  border-radius: 6px;
}

:where(a, button, summary) {
  -webkit-tap-highlight-color: rgba(245, 146, 30, 0.22);
}

.mnav > summary,
.nav > .wrap > .btn,
.nav-inner > .btn {
  min-height: 44px;
}

.mnav-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.faq summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::after {
  float: none !important;
}

.review-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.foot-links a,
.legal-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

body.products-page .go,
body.contact-page .link,
body.error-page main a:not(.btn) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.mobile-swipe-hint {
  display: none;
}

.game-disclaimer {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  color: var(--faint, #7d889b);
  font-size: 12.5px;
  text-align: center;
}

@media (max-width: 720px) {
  .foot-links {
    column-gap: 18px !important;
    row-gap: 2px !important;
  }

  body.products-page .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.products-page .card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.products-page .hero,
  body.contact-page .hero {
    padding-top: 58px;
  }

  body.products-page .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.legal-page .topnav {
    gap: 4px 14px;
  }

  body.legal-page .topnav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -20px 0 12px;
    color: var(--muted, #98a2b3);
    font-size: 13px;
    font-weight: 500;
  }

  .mobile-swipe-hint::before {
    content: "↔";
    color: var(--orange, #f5921e);
    font-size: 17px;
  }

  body.home-page #pricing .mobile-swipe-hint {
    margin: 0 0 8px;
  }

  body.home-page .plans-3,
  body.home-page #included .grid-2,
  body.home-page #features .grid-3 {
    scroll-padding-inline: 16px;
  }

  body.home-page .plans-3::after,
  body.home-page #included .grid-2::after,
  body.home-page #features .grid-3::after {
    content: "";
    flex: 0 0 1px;
  }
}

@media (max-width: 360px) {
  .mnav-panel {
    position: fixed !important;
    top: 66px !important;
    left: 16px !important;
    right: 16px !important;
    min-width: 0 !important;
  }

  .review-rating {
    min-width: 0;
  }

  .review-score {
    font-size: 14px !important;
    white-space: nowrap;
  }

  .review-score > span + span {
    margin-left: 2px;
  }

  body.products-page .wrap,
  body.contact-page .wrap,
  body.voice-page .wrap,
  body.error-page .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.products-page .card {
    padding: 22px 20px;
  }

  body.home-page .nav-inner,
  body.products-page .nav-inner,
  body.contact-page .nav-inner,
  body.voice-page .nav-inner,
  body.error-page .nav-inner {
    gap: 6px;
  }

  .nav-logo img {
    max-width: 68px;
    object-fit: contain;
  }

  .nav .btn,
  .nav .btn-sm {
    padding-inline: 9px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
