/* Shared mobile polish for static SEO landings (Ads / organic). Desktop unchanged. */
@media (max-width: 768px) {
  main {
    padding: 1rem 1rem 5.75rem;
  }

  .brand {
    margin-bottom: 1rem;
  }

  .brand span {
    display: none;
  }

  nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem;
    margin: 0 0 1.1rem;
    padding: 0.65rem 0;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    white-space: nowrap;
    font-size: 0.85rem;
  }

  .kicker {
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    max-width: none;
    margin-bottom: 0.75rem;
  }

  h2 {
    margin-top: 1.75rem;
    font-size: 1.25rem;
  }

  .muted {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .panel {
    padding: 0.95rem 1rem;
    margin: 1rem 0;
  }

  /* Sticky primary CTA; hide later in-flow duplicates */
  main > a.cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    margin: 0;
    border-radius: 12px 12px 0 0;
    text-align: center;
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 0, 128, 0.28);
  }

  main > a.cta ~ a.cta {
    display: none !important;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.85rem;
  }

  footer {
    margin-top: 1.75rem;
    padding-bottom: 0.5rem;
  }
}

/* iOS / coarse pointers: fixed parallax backgrounds stutter under sticky CTA */
@media (hover: none), (pointer: coarse) {
  body {
    background-attachment: scroll !important;
  }
}
