:root {
  --deep-blue: #1B4B61;
  --aqua: #B5E2E1;
  --aqua-light: #EAF8F7;
  --text: #111111;
  --muted: #555555;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

.page {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 90px 0 70px;
}

.eyebrow {
  color: var(--deep-blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.12;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

p {
  max-width: 760px;
  color: var(--muted);
}

.button {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--deep-blue);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: 56px 0;
  border-top: 1px solid #D8E4E7;
}

.section.soft {
  margin: 40px 0;
  padding: 40px;
  background: var(--aqua-light);
  border-radius: 22px;
  border-top: 0;
}