:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #14213d;
  background: #f7fbff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.55;
}
a {
  color: #075985;
}
.shell {
  width: min(1080px, calc(100% - 2rem));
  margin: auto;
}
header {
  padding: 1.15rem 0;
  border-bottom: 1px solid #d9e8f2;
  background: #fff;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img {
  display: block;
  width: 148px;
  height: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
nav a {
  font-weight: 700;
  text-decoration: none;
}
main {
  padding: 4.5rem 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
}
.eyebrow {
  color: #087f8c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1 {
  max-width: 720px;
  margin: 0.45rem 0 1rem;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
h2 {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}
.lede {
  max-width: 650px;
  font-size: 1.18rem;
  color: #3b5269;
}
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.78rem 1.05rem;
  border-radius: 0.65rem;
  background: #087f8c;
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.art {
  width: min(100%, 350px);
  justify-self: end;
}
.card {
  max-width: 820px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid #d9e8f2;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 36px #1d4d6d12;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.grid article {
  padding: 1.25rem;
  border-radius: 0.8rem;
  background: #eaf8fb;
}
footer {
  padding: 2rem 0;
  border-top: 1px solid #d9e8f2;
  color: #53677a;
  font-size: 0.92rem;
}
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .art {
    justify-self: start;
    width: 230px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  main {
    padding: 3rem 0;
  }
}
