/* Base layer: safe defaults shared by the CGL Tech interface. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--cgl-font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  color: var(--cgl-text-primary);
  background: var(--cgl-surface-page);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.32);
  outline-offset: 3px;
}
