* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  color: var(--text);
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--size-16);
  line-height: 1.65;
  color: var(--text);
  background: linear-gradient(180deg, #f5f4f1 0%, var(--bg) 100%);
  padding: var(--space-32) var(--space-16) var(--space-48);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}

.skip-link:focus {
  left: var(--space-16);
  top: var(--space-16);
  width: auto;
  height: auto;
  padding: var(--space-8) var(--space-12);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-4);
}

.eyebrow {
  margin: 0;
  font-size: var(--size-12);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  margin: 0;
  font-size: var(--size-14);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-title {
  margin: var(--space-12) 0 0;
  font-size: clamp(2rem, 4vw, var(--size-44));
  line-height: 1.06;
  letter-spacing: -0.026em;
  font-weight: 700;
  max-width: 18ch;
}

.lede {
  margin: var(--space-12) 0 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

@media (max-width: 800px) {
  body {
    padding: var(--space-16) var(--space-12) var(--space-32);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
