/* Integration-level glue only — each section owns its own look via
   sections/*.css. This file holds the small cross-cutting bits that don't
   belong to any single section: a reset, smooth in-page anchor scrolling
   compensated for the sticky nav's height, and the rotating-text mount
   line in the pricing section (rotating-text.css styles the animation
   mechanics, not this specific line's typography). */

*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}

/* No visible scrollbars anywhere — page and inner scroll areas still
   scroll normally with wheel, trackpad, touch, and keyboard. */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* clears the sticky .nav bar on anchor jumps */
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 84px; /* nav CTA grows to a 48px tap target at this width */
  }
}

.pricing-fun {
  margin: var(--space-3) 0 0;
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
}
.pricing-fun-pill {
  color: var(--color-accent);
  font-weight: 600;
}
