:root {
  color-scheme: light;
  --background: #f3fbf9;
  --surface: #ffffff;
  --navy: #082451;
  --teal: #00786f;
  --mint: #ddf5f0;
  --text: #243248;
  --muted: #657086;
  --border: #d9e7e4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 95% 4%, #d8f2ed 0 130px, transparent 132px),
    var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: var(--teal);
}

a:hover {
  text-decoration-thickness: 2px;
}

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

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.brand {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

main {
  display: grid;
  gap: 24px;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 62px);
  letter-spacing: -0.035em;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

p,
ul,
ol {
  margin-top: 0;
}

.intro {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgb(8 36 81 / 7%);
}

.contact {
  background: var(--navy);
  color: white;
}

.contact h2,
.contact a {
  color: white;
}

.contact p:last-child,
.card p:last-child,
.card ul:last-child,
.card ol:last-child {
  margin-bottom: 0;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

footer {
  margin-top: 48px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 560px) {
  header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 44px;
  }

  .card {
    padding: 22px;
  }
}
