:root {
  --navy-950: #020d20;
  --navy-900: #051936;
  --navy-800: #092447;
  --gold: #d9a62d;
  --gold-light: #f4c85e;
  --white: #fff;
  --soft-white: rgba(255, 255, 255, .88);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  /* background:
    radial-gradient(circle at 50% 18%, rgba(126, 159, 204, .38), transparent 22rem),
    radial-gradient(ellipse at 50% 41%, rgba(15, 56, 102, .52), transparent 42rem),
    linear-gradient(180deg, #071d3d 0%, #08244a 38%, #061b3a 70%, #020d20 100%);
     */
  background-color:#fff;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -6;
  background:
    radial-gradient(circle at 18% 18%, rgba(53, 92, 142, .18), transparent 22rem),
    radial-gradient(circle at 82% 22%, rgba(53, 92, 142, .14), transparent 24rem),
    linear-gradient(180deg, rgba(8, 31, 65, .22), rgba(2, 13, 30, .72));
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .2), transparent 18%, transparent 82%, rgba(0, 0, 0, .2));
}

.world-map {
  position: absolute;
  z-index: -4;
  top: 6rem;
  left: 50%;
  width: min(1320px, 118vw);
  aspect-ratio: 2 / .88;
  transform: translateX(-50%);
  opacity: .13;
  background:
    radial-gradient(ellipse at 17% 45%, #92a9ca 0 10%, transparent 10.5%),
    radial-gradient(ellipse at 33% 37%, #92a9ca 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 54% 43%, #92a9ca 0 18%, transparent 18.5%),
    radial-gradient(ellipse at 75% 46%, #92a9ca 0 20%, transparent 20.5%),
    radial-gradient(ellipse at 89% 65%, #92a9ca 0 7%, transparent 7.5%);
  filter: blur(6px);
}

.hero {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.8rem) 0 0;
  text-align: center;
}

.logo {
  display: block;
  width: clamp(250px, 40vw, 440px);
  height: auto;
  margin: 0 auto clamp(1.2rem, 3vw, 2.3rem);
  filter: drop-shadow(0 0 24px rgba(225, 232, 247, .48)) drop-shadow(0 12px 18px rgba(0, 0, 0, .36));
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8.3vw, 7rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 5px 5px rgba(0, 0, 0, .42);
}

h1 span {
  color: #f8f9fc;
  font-weight: 800;
}

h1 strong {
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 4px 0 #8b6413, 0 7px 8px rgba(0, 0, 0, .5);
}

.flight-divider {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 12px;
  width: min(610px, 80%);
  margin: clamp(1.5rem, 3vw, 2.2rem) auto 1.7rem;
  color: var(--gold-light);
}

.flight-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.flight-divider span:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.flight-divider svg {
  width: 48px;
  fill: currentColor;
}

.launch-copy {
  color: var(--soft-white);
  font-size: clamp(.96rem, 1.75vw, 1.2rem);
  line-height: 1.52;
  text-shadow: 0 2px 3px rgba(0, 0, 0, .45);
}

.launch-copy p {
  margin: 0;
}

.launch-copy .tagline {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(1rem, 1.9vw, 1.28rem);
  font-weight: 700;
}

.notify-panel {
  width: min(670px, 100%);
  margin: clamp(2.4rem, 5vw, 3.7rem) auto 0;
  padding: 1.7rem 2rem 1.35rem;
  border: 2px solid var(--gold);
  border-radius: 24px;
  background: rgba(4, 20, 45, .64);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .25), 0 16px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(7px);
}

.notify-form {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 66px;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  background: rgba(2, 14, 34, .8);
}

.input-icon {
  display: grid;
  place-items: center;
  color: var(--gold-light);
}

.input-icon svg {
  width: 29px;
  fill: currentColor;
}

.notify-form input {
  width: 100%;
  min-width: 0;
  padding: 0 .4rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, .66);
}

.notify-form input:focus-visible {
  box-shadow: inset 0 -2px var(--gold-light);
}

.notify-form button {
  min-width: 180px;
  padding: 0 1.65rem;
  border: 0;
  color: #061632;
  background: linear-gradient(135deg, #f3ce69, #d8a52e);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}

.notify-form button:hover {
  filter: brightness(1.08);
}

.notify-form button:active {
  transform: scale(.98);
}

.form-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 28px;
  margin: 1.15rem 0 0;
  color: var(--white);
  font-size: .98rem;
}

.form-message svg {
  width: 25px;
  flex: 0 0 auto;
  fill: var(--gold-light);
}

.form-message.success {
  color: var(--gold-light);
}

.contact-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1px 1.35fr 1px auto;
  align-items: center;
  gap: 2.2rem;
  width: min(900px, calc(100% - 2rem));
  margin: clamp(3.4rem, 7vw, 5rem) auto 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
  text-decoration: none;
}

.round-icon,
.social-links a {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
}

.round-icon svg {
  width: 28px;
  fill: currentColor;
}

.contact-text {
  display: grid;
  gap: .35rem;
  min-width: 0;
  font-size: .94rem;
}

.contact-text b {
  overflow-wrap: anywhere;
  font-weight: 500;
}

.contact-text small,
.social-group p {
  margin: 0;
  color: var(--gold-light);
  font-size: .9rem;
}

.contact-separator {
  width: 1px;
  height: 58px;
  background: rgba(244, 200, 94, .62);
}

.social-group {
  display: grid;
  gap: .35rem;
  min-width: 145px;
}

.social-group p {
  margin: 0;
  font-weight: 600;
}

.social-handle {
  color: var(--white);
  font-size: .94rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: .55rem;
  margin-top: .2rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  text-decoration: none;
  color: var(--gold-light);
  font-size: .95rem;
  font-weight: 800;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(2, 14, 34, .18);
}

.social-links a:hover {
  color: #061632;
  background: var(--gold-light);
  transform: translateY(-2px);
}

.social-links iconify-icon {
  color: currentColor;
  font-size: 20px;
  line-height: 1;
}

.skyline {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(78px, 11vw, 145px);
  margin-top: .6rem;
  opacity: .74;
}

.skyline svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: url(#none);
}

.skyline path:first-child {
  fill: rgba(137, 92, 19, .28);
  stroke: rgba(220, 163, 44, .2);
  stroke-width: 1;
}

.skyline .skyline-highlight {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(217, 166, 45, .45);
  padding: 1.9rem 1rem 2.3rem;
  text-align: center;
  color: rgba(255, 255, 255, .84);
  font-size: .94rem;
}

footer p {
  margin: 0;
}

footer strong {
  color: var(--gold-light);
  font-weight: 500;
}

.travel-route {
  position: absolute;
  z-index: -1;
  top: 8rem;
  left: 50%;
  width: min(1440px, 130vw);
  height: 540px;
  transform: translateX(-50%);
  overflow: visible;
  pointer-events: none;
}

.travel-route > path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 12;
  opacity: .78;
  animation: route 18s linear infinite;
}

.travel-route .route-glow {
  stroke-dasharray: none;
  opacity: .42;
  filter: drop-shadow(0 0 6px var(--gold-light));
}

.location-pin,
.route-plane {
  fill: var(--gold);
  filter: drop-shadow(0 0 7px rgba(244, 200, 94, .5));
}

.cloud {
  position: absolute;
  z-index: -2;
  width: 340px;
  height: 150px;
  opacity: .14;
  filter: blur(8px);
  background:
    radial-gradient(circle at 18% 70%, rgba(255,255,255,.88) 0 18%, transparent 19%),
    radial-gradient(circle at 37% 48%, rgba(255,255,255,.8) 0 29%, transparent 30%),
    radial-gradient(circle at 63% 61%, rgba(255,255,255,.72) 0 28%, transparent 29%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.68) 0 18%, transparent 19%);
  pointer-events: none;
}

.cloud-left {
  top: 30rem;
  left: -130px;
}

.cloud-right {
  top: 26rem;
  right: -140px;
  transform: scale(.8);
}

.cloud-bottom-left {
  bottom: 27rem;
  left: -100px;
  transform: scale(1.15);
}

.cloud-bottom-right {
  right: -90px;
  bottom: 20rem;
  transform: scale(.88);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes route {
  to { stroke-dashoffset: -250; }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 3.5rem;
  }

  .contact-row {
    grid-template-columns: 1fr 1fr;
    width: min(620px, calc(100% - 2rem));
    gap: 1.7rem 2.5rem;
  }

  .contact-separator {
    display: none;
  }

  .social-group {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }

  .social-group p {
    margin-left: 0;
  }

  .social-handle {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    width: min(100% - 1.25rem, 520px);
    padding-top: 2.7rem;
  }

  .logo {
    width: min(290px, 76vw);
    margin-bottom: 1.5rem;
  }

  h1 {
    display: grid;
    gap: .12em;
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .flight-divider {
    width: 92%;
    margin-top: 1.3rem;
  }

  .desktop-break {
    display: none;
  }

  .launch-copy {
    padding: 0 .35rem;
    font-size: .93rem;
    line-height: 1.62;
  }

  .launch-copy .tagline {
    font-size: 1rem;
  }

  .notify-panel {
    padding: .9rem;
    border-radius: 18px;
  }

  .notify-form {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 128px;
  }

  .input-icon {
    min-height: 64px;
    align-self: stretch;
  }

  .notify-form input {
    min-height: 64px;
    padding: 0 .65rem;
    font-size: 1rem;
  }

  .notify-form button {
    grid-column: 1 / -1;
    min-height: 64px;
    border-top: 1px solid rgba(6, 22, 50, .35);
  }

  .form-message {
    align-items: flex-start;
    padding: 0 .35rem;
    font-size: .85rem;
    line-height: 1.45;
  }

  .contact-row {
    grid-template-columns: 1fr;
    width: min(100% - 2.4rem, 380px);
    margin-top: 3.2rem;
    gap: 1.5rem;
  }

  .contact-item {
    justify-self: stretch;
  }

  .social-group {
    grid-column: auto;
    justify-self: start;
    padding-left: 65px;
    text-align: left;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .travel-route {
    display: none;
  }

  .cloud {
    opacity: .2;
  }

  footer {
    padding: 1.5rem .8rem 1.8rem;
    font-size: .8rem;
  }
}

@media (max-width: 380px) {
  .social-group {
    padding-left: 0;
  }

  .round-icon {
    width: 46px;
    height: 46px;
  }

  .contact-text {
    font-size: .84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
