*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --navy: #0B2942;
  --blue: #123F65;
  --orange: #F29A49;
  --white: #F7F6F2;
  --muted: #C9D5DF;
}

html {
  width: 100%;
  min-width: 0;
  background: var(--navy);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: calc(100vh - 56px);
  min-height: calc(100dvh - 56px);
  overflow: hidden;
  padding:
    max(38px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right))
    38px
    max(18px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 10%, rgba(26, 82, 126, .55), transparent 34%),
    linear-gradient(145deg, #081f33 0%, var(--navy) 48%, #0f3859 100%);
}

.grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 42px 42px;
}

.orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .75;
  pointer-events: none;
}

.orb-one {
  width: min(260px, 70vw);
  aspect-ratio: 1;
  top: -90px;
  right: -80px;
  background: rgba(242, 154, 73, .22);
}

.orb-two {
  width: min(360px, 92vw);
  aspect-ratio: 1;
  left: -190px;
  bottom: -120px;
  background: rgba(47, 122, 170, .23);
}

.content {
  width: min(720px, 100%);
  min-width: 0;
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .75s ease, transform .75s ease;
}

body.ready .content {
  opacity: 1;
  transform: translateY(0);
}

.logo-wrap {
  width: clamp(125px, 32vw, 220px);
  max-width: 62vw;
  margin: 0 auto 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.24));
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 10px;
  color: var(--orange);
  font-size: clamp(.65rem, 2.6vw, .78rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: clamp(.08em, .6vw, .19em);
}

h1 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 2px;
  font-size: clamp(1.75rem, 9vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
  white-space: nowrap;
  text-align: center;
  overflow: visible;
}

.intro {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(.95rem, 3.6vw, 1.2rem);
  line-height: 1.6;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 28px auto 18px;
}

.divider span {
  width: clamp(34px, 12vw, 58px);
  height: 1px;
  background: rgba(255,255,255,.22);
}

.divider i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  display: block;
  background: var(--orange);
  transform: rotate(45deg);
}

.note {
  max-width: 520px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(.86rem, 3.2vw, .95rem);
  line-height: 1.5;
}

.pill-row {
  width: 100%;
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-row span {
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #dce6ed;
  font-size: .76rem;
  letter-spacing: .03em;
}

footer {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding:
    16px
    max(18px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #071a2a;
  color: #8fa7b9;
  font-size: .68rem;
  letter-spacing: .10em;
}

footer > span:first-child {
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100dvh - 52px);
    padding-top: max(28px, env(safe-area-inset-top));
    padding-bottom: 28px;
  }

  .logo-wrap {
    width: clamp(118px, 42vw, 165px);
    max-width: 52vw;
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(1.72rem, 8.8vw, 2.85rem);
    letter-spacing: -.055em;
  }

  .intro {
    margin-top: 18px;
    line-height: 1.5;
  }

  .divider {
    margin-top: 22px;
  }

  .pill-row {
    max-width: 330px;
    margin-inline: auto;
  }

  footer {
    min-height: 52px;
    padding-top: 14px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 340px) {
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .eyebrow {
    letter-spacing: .07em;
  }

  h1 {
    font-size: 1.62rem;
    letter-spacing: -.06em;
  }

  .pill-row span {
    padding: 8px 10px;
    font-size: .72rem;
  }

  footer {
    font-size: .62rem;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .logo-wrap {
    width: 110px;
    margin-bottom: 14px;
  }

  .intro {
    margin-top: 14px;
  }

  .divider {
    margin: 18px auto 14px;
  }

  .pill-row {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    transition: none;
  }
}

@media (max-width: 300px) {
  .hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-size: 1.42rem;
    letter-spacing: -.06em;
  }

  .intro {
    font-size: .88rem;
  }

  .pill-row {
    gap: 6px;
  }

  .pill-row span {
    font-size: .68rem;
    padding: 7px 9px;
  }
}
