:root {
  --blue: #215681;
  --yellow: #ffd94f;
  --ink: #10283b;
  --paper: #fffdf5;
  --line: #c9d7df;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

main { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.nav {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark { display: block; width: 130px; height: 72px; overflow: hidden; }

.wordmark img {
  display: block;
  width: 130px;
  height: 130px;
  margin-top: -28px;
  object-fit: contain;
}

.nav-link, .text-link { font-weight: 700; text-underline-offset: 4px; }

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: center;
  gap: 64px;
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2 { margin: 0; color: var(--blue); letter-spacing: -.045em; line-height: 1.03; }

h1 { max-width: 720px; font-size: clamp(3rem, 6.5vw, 5.8rem); }
h2 { font-size: clamp(2.4rem, 4.2vw, 4.25rem); }

.intro { max-width: 640px; margin: 28px 0 34px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 21px;
  border-radius: 100px;
  background: var(--blue);
  color: white;
  font-weight: 750;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.button:hover { transform: translateY(-2px); background: #153f62; }

.hero-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 44% 56% 51% 49% / 55% 45% 55% 45%;
  background: var(--yellow);
}

.hero-mark img { width: 114%; height: 114%; object-fit: contain; }

.focus {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr);
  gap: 64px;
  padding: 76px 0 90px;
  border-top: 1px solid var(--line);
}

.focus-copy { max-width: 630px; font-size: 1.13rem; }
.focus-copy p:first-child { margin-top: 0; }
.text-link { color: var(--blue); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(32px, calc((100vw - 1116px) / 2));
  background: var(--blue);
  color: white;
  font-size: .92rem;
}

footer p { margin: 0; }
footer div { display: flex; gap: 22px; }
footer a { text-underline-offset: 3px; }

@media (max-width: 720px) {
  main { padding: 0 22px; }
  .nav { min-height: 82px; }
  .hero { grid-template-columns: 1fr; gap: 42px; padding: 54px 0 62px; }
  .hero-mark { width: min(100%, 420px); margin: 0 auto; }
  .focus { grid-template-columns: 1fr; gap: 24px; padding: 56px 0 66px; }
  footer { padding: 25px 22px; flex-direction: column; }
  footer div { flex-direction: column; gap: 8px; }
}
