*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bwv-font-body);
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--bwv-text);
  background: var(--bwv-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bwv-violet-dim);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--bwv-signal-dim);
}

:focus-visible {
  outline: 2px solid var(--bwv-ring);
  outline-offset: 2px;
}

.bwv-container {
  width: var(--bwv-container);
  margin-inline: auto;
}

.bwv-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3 {
  font-family: var(--bwv-font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  font-style: normal;
  margin: 0 0 var(--bwv-space-md);
}

h1 {
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  font-style: normal;
  font-family: var(--bwv-font-display);
  font-weight: 600;
}

p {
  margin: 0 0 var(--bwv-space-md);
}

ul,
ol {
  margin: 0 0 var(--bwv-space-md);
  padding-left: 1.25rem;
}

.bwv-section {
  padding-block: var(--bwv-space-2xl);
}

.bwv-section--tight {
  padding-block: var(--bwv-space-xl);
}

.bwv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--bwv-font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bwv-ink);
  margin-bottom: var(--bwv-space-sm);
  padding: 0.4rem 0.75rem;
  border-left: 4px solid var(--bwv-signal);
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.12), transparent);
}

.bwv-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bwv-live);
  box-shadow: 0 0 0 2px var(--bwv-ink);
  flex-shrink: 0;
}

.bwv-kicker::after {
  display: none;
}
