/* Reset + base element styles. Loads after tokens.css. */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
button {
  font: inherit;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.wrap-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.eyebrow--muted {
  color: var(--text-secondary);
}
.eyebrow--muted::before {
  display: none;
}

.section-head {
  max-width: 42ch;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: var(--tracking-snug);
  margin: 16px 0 18px;
}
.section-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.accent {
  color: var(--accent);
}

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