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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 var(--sp-4) 0;
  color: var(--ink);
  text-transform: none;
}
h1 { font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-weight: 700; line-height: 1.1;  letter-spacing: -0.02em; }
h3 { font-weight: 500; line-height: 1.2;  letter-spacing: -0.012em; }

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--sp-4) 0; color: var(--ink-muted); }

a {
  color: var(--blue-700);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--blue-500); }

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-9);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: var(--sp-3);
}

.eyebrow--invert { color: var(--cyan-400); }

.section-title {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.section-title h2 { margin-bottom: var(--sp-3); }
.section-title p { color: var(--ink-muted); max-width: 640px; margin: 0 auto; }

:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--blue-700);
  color: var(--white);
}
