*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #203f49;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
:focus-visible {
  outline: 3px solid rgba(0, 98, 125, 0.55);
  outline-offset: 3px;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 24px;
}
@media (max-width: 460px) {
  .page {
    padding: 32px 20px 16px;
  }
}
.logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin-bottom: 40px;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 0ms both;
}
@media (max-width: 460px) {
  .logo {
    max-width: 259.2px;
    margin-bottom: 32px;
  }
}
.title {
  font-size: 2.75rem;
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  margin: 0;
  margin-bottom: 20px;
  color: #00627d;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}
.rule {
  width: 120px;
  height: 2px;
  margin: 0;
  margin-bottom: 20px;
  border: 0;
  background: #00627d;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
}
.subtitle {
  font-size: 1.5rem;
  font-size: clamp(1.125rem, 3.5vw, 1.5rem);
  margin: 0;
  margin-bottom: 24px;
  color: #e09e00;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}
.lede {
  max-width: 46ch;
  margin: 0;
  margin-bottom: 40px;
  color: #3c7589;
  font-size: 1.0625rem;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #00627d;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}
.cta:hover {
  background: #004659;
  transform: translateY(-2px);
}
.cta:active {
  transform: translateY(0);
}
.cta__icon {
  width: 20px;
  height: 20px;
  flex: none;
}
.footer {
  position: relative;
  flex: none;
  margin-top: 16px;
}
.waves {
  display: block;
  width: 100%;
  height: clamp(170px, 20vw, 288px);
}
.waves__blue {
  fill: #00627d;
}
.waves__gold {
  fill: #e09e00;
}
.waves__lines--light use {
  stroke: rgba(255, 255, 255, 0.5);
}
.waves__lines--pale use {
  stroke: rgba(255, 255, 255, 0.45);
}
.waves__lines--gold use {
  stroke: rgba(224, 158, 0, 0.55);
}
.funding {
  position: absolute;
  bottom: 20px;
  left: 32px;
  display: block;
  width: 210px;
  height: auto;
}
@media (max-width: 720px) {
  .funding {
    left: 20px;
    bottom: 16px;
    width: 159.6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/*# sourceMappingURL=main.css.map */