*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 1.05rem;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,145,178,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,145,178,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
code { font-family: var(--font-mono); }

.page-body {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}
.view { display: none; }
.view.is-active { display: block; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-header {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}
.section { padding: 3rem 0 5rem; }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-label);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 720px;
  line-height: 1.75;
}
.subtle { color: var(--text-muted); }
.mono { font-family: var(--font-mono); }
