@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  font-synthesis: none;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #f6f9fc;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 280px;
}

a {
  color: #1b4b8f;
  text-decoration: none;
}

a:hover {
  color: #4ba334;
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(75, 163, 52, 0.35);
  outline-offset: 3px;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: #0f2a52;
  background: #f6f9fc;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.background-grid,
.background-blob,
.background-light {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.background-grid {
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 48, 107, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 48, 107, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(120% 90% at 50% 40%, #000 20%, transparent 75%);
}

.background-blob {
  border-radius: 50%;
}

.background-blob--blue {
  top: -22vh;
  left: -14vw;
  width: 78vw;
  height: 78vw;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(circle at 50% 50%, rgba(27, 111, 168, 0.3), rgba(27, 111, 168, 0) 66%);
  filter: blur(38px);
  animation: drift-a 26s ease-in-out infinite;
}

.background-blob--green {
  right: -16vw;
  bottom: -26vh;
  width: 82vw;
  height: 82vw;
  max-width: 1060px;
  max-height: 1060px;
  background: radial-gradient(circle at 50% 50%, rgba(91, 180, 58, 0.26), rgba(91, 180, 58, 0) 66%);
  filter: blur(42px);
  animation: drift-b 32s ease-in-out infinite;
}

.background-blob--navy {
  top: 30%;
  right: 8%;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(20, 48, 107, 0.16), rgba(20, 48, 107, 0) 68%);
  filter: blur(50px);
  animation: drift-a 40s ease-in-out infinite reverse;
}

.background-light {
  inset: 0;
  background: radial-gradient(110% 70% at 50% 0%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 60%);
}

.hero {
  position: relative;
  z-index: 1;
  order: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vh, 20px);
  padding: clamp(10px, 1.6vh, 22px) clamp(20px, 6vw, 64px) clamp(10px, 1.6vh, 20px);
  text-align: center;
}

.logo {
  display: block;
  width: clamp(120px, min(16vw, 15vh), 220px);
  height: auto;
  animation: fade 1.1s ease-out both;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vh, 14px);
  width: 100%;
  max-width: min(94vw, 1320px);
  animation: rise 1s cubic-bezier(0.22, 0.8, 0.26, 1) 0.18s both;
}

.title {
  max-width: 24em;
  margin: 0;
  color: #0f2a52;
  font-size: clamp(44px, min(9.6vw, 17vh), 128px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.title-gradient {
  color: transparent;
  background: linear-gradient(100deg, #1b6fa8 8%, #4ba334 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.thanks {
  max-width: 34em;
  margin: 0;
  color: #1b4b8f;
  font-size: clamp(22px, 3.1vw, 42px);
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
  text-wrap: pretty;
}

.eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vh, 18px);
  animation: rise 1s cubic-bezier(0.22, 0.8, 0.26, 1) 0.36s both;
}

.sweep-line {
  position: relative;
  width: clamp(120px, 22vw, 200px);
  height: 1px;
  overflow: hidden;
  background: linear-gradient(to right, rgba(20, 48, 107, 0), rgba(20, 48, 107, 0.22) 50%, rgba(20, 48, 107, 0));
}

.sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent, #5bb43a, transparent);
  animation: sweep 4.6s ease-in-out infinite;
}

.tagline {
  margin: 0;
  color: rgba(15, 42, 82, 0.5);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.introduction {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  padding: 0 0 clamp(4px, 1vh, 12px);
}

.banner {
  position: relative;
  width: 100%;
  max-width: min(1620px, 92vw);
  aspect-ratio: 2048 / 486;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 1.5%, #000 98.5%, transparent 100%),
    linear-gradient(to bottom, #000 90%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 1.5%, #000 98.5%, transparent 100%),
    linear-gradient(to bottom, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.banner img {
  position: absolute;
  top: -2px;
  left: -16px;
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transform: translateY(-4.7%);
}

.mobile-introduction {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 640px;
  padding-inline: 20px;
  text-align: center;
}

.description {
  margin: 0;
  color: rgba(15, 42, 82, 0.72);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.description strong {
  color: #1b4b8f;
  font-weight: 700;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.feature-list span {
  padding: 8px 14px;
  border: 1px solid rgba(20, 48, 107, 0.12);
  border-radius: 999px;
  color: #2c5488;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer {
  position: relative;
  z-index: 1;
  order: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px clamp(10px, 2vw, 20px);
  padding: clamp(12px, 2vh, 22px) clamp(16px, 4vw, 48px) calc(clamp(12px, 2vh, 22px) + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(20, 48, 107, 0.08);
  color: rgba(15, 42, 82, 0.68);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  animation: fade 1.2s ease-out 0.6s both;
}

.footer address {
  font: inherit;
}

.footer a {
  color: #1b4b8f;
  font-weight: 600;
}

.footer a:hover {
  color: #4ba334;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(20, 48, 107, 0.2);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes drift-a {
  0% {
    transform: translate3d(-4%, -3%, 0) scale(1);
  }

  50% {
    transform: translate3d(5%, 4%, 0) scale(1.12);
  }

  100% {
    transform: translate3d(-4%, -3%, 0) scale(1);
  }
}

@keyframes drift-b {
  0% {
    transform: translate3d(4%, 3%, 0) scale(1.08);
  }

  50% {
    transform: translate3d(-5%, -4%, 0) scale(1);
  }

  100% {
    transform: translate3d(4%, 3%, 0) scale(1.08);
  }
}

@keyframes sweep {
  from {
    transform: translateX(-60%);
  }

  to {
    transform: translateX(160%);
  }
}

@media (max-height: 900px) and (min-width: 901px) {
  .hero {
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .logo {
    width: min(11vw, 12vh);
  }

  .title {
    font-size: min(5.6vw, 9vh);
  }

  .hero-stack {
    gap: 8px;
  }

  .eyebrow {
    display: none;
  }

  .banner {
    aspect-ratio: 2048 / 482;
  }

  .footer {
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 14px;
    letter-spacing: 0;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .banner {
    display: block;
    max-width: 96vw;
  }

  .banner img {
    left: -8px;
  }

  .mobile-introduction {
    display: none;
  }

  .hero {
    gap: clamp(12px, 1.6vh, 18px);
    padding-inline: clamp(28px, 6vw, 52px);
  }

  .logo {
    width: clamp(120px, min(20vw, 15vh), 170px);
  }

  .title {
    font-size: clamp(52px, 9.4vw, 82px);
  }

  .thanks {
    font-size: clamp(22px, 3.6vw, 30px);
  }

  .footer {
    gap: 6px 14px;
    padding-inline: 24px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    min-height: 100dvh;
  }

  .background-grid {
    background-size: 42px 42px;
  }

  .background-blob--blue {
    top: -8vh;
    left: -45vw;
    width: 130vw;
    height: 130vw;
  }

  .background-blob--green {
    right: -55vw;
    bottom: -8vh;
    width: 145vw;
    height: 145vw;
  }

  .background-blob--navy {
    top: 44%;
    right: -25vw;
    width: 90vw;
    height: 90vw;
  }

  .hero {
    order: 1;
    flex: 0 0 auto;
    gap: 14px;
    padding: clamp(28px, 7vh, 52px) 20px 30px;
  }

  .logo {
    width: clamp(112px, 31vw, 140px);
  }

  .hero-stack {
    gap: 10px;
    max-width: 100%;
  }

  .title {
    max-width: 8.5em;
    font-size: clamp(40px, 11.5vw, 56px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .thanks {
    max-width: 18em;
    font-size: clamp(19px, 5.2vw, 24px);
    line-height: 1.35;
    white-space: normal;
  }

  .eyebrow {
    gap: 11px;
  }

  .tagline {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }

  .introduction {
    order: 2;
    width: 100%;
    padding: 0 16px 24px;
  }

  .banner {
    display: none;
  }

  .mobile-introduction {
    display: flex;
    width: 100%;
    max-width: 520px;
    gap: 16px;
    padding: 20px 16px;
    border: 1px solid rgba(20, 48, 107, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 48px rgba(20, 48, 107, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .mobile-kicker {
    margin: 0;
    color: #0f2a52;
    font-size: clamp(17px, 4.8vw, 21px);
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .mobile-kicker span {
    display: block;
    color: #1b6fa8;
  }

  .description {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.6;
  }

  .feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .feature-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 7px 9px;
    font-size: 11px;
    line-height: 1.35;
  }

  .feature-list span:last-child {
    grid-column: 1 / -1;
    width: min(64%, 210px);
    justify-self: center;
  }

  .footer {
    order: 3;
    flex-direction: column;
    gap: 8px;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .footer address {
    max-width: 34em;
  }

  .footer-dot {
    display: none;
  }

  .footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 4px 11px;
    border: 1px solid rgba(20, 48, 107, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
  }
}

@media (max-width: 360px) {
  .title {
    font-size: clamp(36px, 11.2vw, 40px);
  }

  .hero {
    padding-inline: 15px;
  }

  .introduction {
    padding-inline: 10px;
  }

  .mobile-introduction {
    padding-inline: 12px;
  }

  .feature-list span {
    font-size: 10.5px;
  }
}

@media (max-height: 500px) and (min-width: 641px) and (max-width: 900px) and (orientation: landscape) {
  .hero {
    gap: 8px;
    padding: 12px 32px;
  }

  .logo {
    width: min(13vw, 20vh);
  }

  .title {
    font-size: min(6vw, 13vh);
  }

  .thanks {
    font-size: clamp(18px, 2.8vw, 22px);
  }

  .eyebrow {
    display: none;
  }

  .footer {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
  }
}
