/* === BWS NUCLEAR CENTERING RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* === BWS: Everything at body level gets centered === */
body > * {
  width: 100%;
  max-width: var(--max-width);
}

/* === Full-bleed sections override the max-width === */
body > header,
body > footer,
body > .hero,
body > .hero--video,
body > section,
body > .coming-soon-bar,
body > .signup-section,
body > .compliance-bar,
body > .cookie-banner,
body > .site-footer,
body > .site-header {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

/* === BWS: Lists centered with inside position === */
ul, ol {
  list-style-position: inside;
  text-align: center;
}

/* === ZERO text-align: left anywhere === */
