* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, #eef2ff 0%, var(--bg) 60%);
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  margin: 0 0 var(--space-3);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: 32px; letter-spacing: -0.03em; }
h2 { font-size: 24px; letter-spacing: -0.02em; }
h3 { font-size: 19px; letter-spacing: -0.01em; }
h4 { font-size: 16px; letter-spacing: -0.01em; }

p {
  margin: 0 0 var(--space-3);
  color: var(--muted);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.lead {
  font-size: 16px;
  color: #334155;
}

small {
  color: var(--muted);
}

code, pre {
  font-family: var(--font-mono);
}

.container {
  width: min(100% - 2 * var(--space-5), var(--content-max));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}
