* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-display);
  margin: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

p {
  color: var(--color-muted);
  line-height: 1.65;
}

.container {
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: 22px;
  width: 100%;
}

.section {
  padding-block: clamp(56px, 8vw, 96px);
}

.section-soft {
  background: #eef2f5;
}

.page {
  padding-top: 96px;
}

.page-header {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 34px;
  padding-top: 34px;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 780px;
}

.eyebrow {
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}
