/*
  Demo page styling — NOT part of the reusable header component.
  Exists only to showcase the header in a realistic page context.
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111111;
  background: #FFFFFF;
}

/* Hero styling lives in components/hero/hero.css; all sections are
   self-contained components — this file only carries the base reset. */
