/* Botzz reset + base — replaces Bootstrap reboot for public surfaces */

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

html { -webkit-text-size-adjust: 100%; tab-size: 4; }

html, body { height: 100%; }

body {
  font-family: var(--bz-font-body);
  font-size: var(--bz-fs-16);
  line-height: 1.55;
  color: var(--bz-text);
  background: var(--bz-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

img, video { height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bz-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bz-text);
}

p { color: var(--bz-text-soft); }

ul, ol { padding: 0; list-style: none; }

::selection { background: var(--bz-cyan); color: var(--bz-ink); }

:focus-visible {
  outline: 2px solid var(--bz-cyan);
  outline-offset: 2px;
  border-radius: var(--bz-r-1);
}

/* Layout primitives */
.bz-container {
  width: 100%;
  max-width: var(--bz-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.bz-container--narrow { max-width: var(--bz-container-narrow); }
.bz-container--prose { max-width: var(--bz-container-prose); }

.bz-stack { display: flex; flex-direction: column; }
.bz-row { display: flex; flex-wrap: wrap; }

.bz-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.bz-eyebrow {
  display: inline-block;
  font-family: var(--bz-font-display);
  font-size: var(--bz-fs-12);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bz-text-soft);
}

.bz-eyebrow--cyan { color: var(--bz-cyan-lo); }

.bz-cyan-text { color: var(--bz-cyan-lo); }
[data-theme="dark"] .bz-cyan-text { color: var(--bz-cyan); }

/* Icons (inline svg) */
.bz-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -0.125em;
}
