/* =============================================================
   Edge Hub — Base: reset + type
   ============================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #ffffff;
  color: var(--fg-body);
  font-family: var(--font-jp);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

:root {
  /* Marker accents — NOT in the brand tokens (brand is navy + one blue).
     Sampled from the comp's hand-drawn highlights. Kept local. */
  --mark-yellow: #F4C544;
  --mark-yellow-soft: rgba(244, 197, 68, 0.42);
  --header-h: 108px;
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
