:root {
  color-scheme: light;
  --ink: #1f2630;
  --muted: #626e7a;
  --line: #dfe5ea;
  --paper: #fffdf9;
  --wash: #f7f9fb;
  --navy: #081622;
  --blue: #3554da;
  --teal: #00b1be;
  --gold: #daa640;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.hero {
  min-height: 540px;
  color: white;
  background:
    radial-gradient(circle at 78% 22%, rgb(0 177 190 / 42%), transparent 28%),
    radial-gradient(circle at 16% 88%, rgb(218 166 64 / 34%), transparent 24%),
    linear-gradient(135deg, #081622 0%, #123047 58%, #17394d 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: white;
  color: var(--blue);
  font-size: 15px;
}

.nav-links a {
  color: rgb(255 255 255 / 78%);
  font-weight: 700;
  text-decoration: none;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 24px 112px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgb(255 255 255 / 82%);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 8px;
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--blue);
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 24px;
}

.summary-band h2 {
  font-size: 26px;
}

.summary-band p,
.content p {
  color: var(--muted);
}

.content {
  max-width: 880px;
  margin: 0 auto;
  padding: 68px 24px;
  border-top: 1px solid var(--line);
}

.content.alt {
  max-width: none;
  background: var(--wash);
}

.content.alt > * {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.content h2 {
  margin-bottom: 28px;
  font-size: 42px;
  line-height: 1.12;
}

.content h3 {
  margin: 30px 0 8px;
  font-size: 22px;
}

.contact a {
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 24px 48px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 720px) {
  .nav,
  .summary-band,
  footer {
    display: block;
  }

  .nav-links {
    margin-top: 22px;
  }

  .hero-content {
    padding-top: 42px;
  }

  .summary-band > div + div {
    margin-top: 28px;
  }

  .content h2 {
    font-size: 34px;
  }
}
