/* ==========================================================================
   GLOBAL BASE — Marine Inspection AI
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  color: #0b2239;
  background: #ffffff;
  overflow-x: hidden;

  /* hidden until the header + hero components are injected (loader adds .page-ready) */
  opacity: 0;
}

body.page-ready {
  opacity: 1;
  transition: opacity 0.35s ease;
}

img { max-width: 100%; }

[data-theme="dark"] body {
  color: #e6eef7;
  background: #04101d;
}
