/* ═══════════════════════════════════════════════════════════
   BE30 BASE — reset, typography, global defaults
═══════════════════════════════════════════════════════════ */

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

html {
  /* scroll-behavior handled by Lenis — no CSS smooth here (causes double-smooth conflict) */
  overflow-x: hidden;
}

body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

img, video {
  display: block;
  max-width: 100%;
}

/* Selection */
::selection {
  background: rgba(59, 91, 219, 0.15);
  color: var(--navy);
}

/* Hide native cursor when custom cursor is active */
.be30-cursor-active,
.be30-cursor-active * {
  cursor: none !important;
}

/* Reduced motion: disable all transitions / animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
