@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap");

:root {
  color-scheme: light;
  --navy: #063a6c;
  --navy-deep: #032d55;
  --blue: #4f8ac5;
  --blue-soft: #afd7ee;
  --ink: #163a59;
  --paper: #f9fcfd;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem clamp(7.5rem, 16vh, 10rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(175, 215, 238, 0.5), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(115, 175, 215, 0.32), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f6fbfd 55%, #eaf6fb 100%);
}

.coming-soon::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(6, 58, 108, 0.025) 1px, transparent 1px);
  background-size: 100% 4rem;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.hero {
  display: grid;
  width: min(100%, 63rem);
  min-width: 0;
  place-items: center;
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(100%, 44rem);
  min-width: 0;
  height: auto;
  margin: -9% auto -8%;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.announcement {
  position: relative;
  max-width: 43rem;
}

.announcement::before {
  display: block;
  width: 2.75rem;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: var(--blue);
  content: "";
}

.eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: clamp(0.67rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 6.9rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

p {
  max-width: 35rem;
  margin: 1.5rem auto 0;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.8;
}

.ambient {
  position: absolute;
  z-index: -1;
  width: clamp(12rem, 28vw, 25rem);
  aspect-ratio: 1;
  border: 1px solid rgba(79, 138, 197, 0.2);
  border-radius: 50%;
}

.ambient::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(79, 138, 197, 0.14);
  border-radius: inherit;
  content: "";
}

.ambient--one {
  top: -10rem;
  left: -8rem;
}

.ambient--two {
  top: 12%;
  right: -14rem;
}

footer {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: calc(clamp(6rem, 14vh, 9rem) - 0.25rem);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--navy-deep);
  font-size: clamp(0.65rem, 1.1vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.footer-mark {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.ocean {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(6rem, 14vh, 9rem);
  overflow: hidden;
  pointer-events: none;
}

.ocean-shape {
  display: block;
  width: 100%;
  height: 100%;
}

.ocean-shape__back {
  fill: #c6e6f3;
  fill-opacity: 0.82;
}

.ocean-shape__front {
  fill: url("#ocean-gradient");
}

@media (max-width: 40rem) {
  .coming-soon {
    padding-inline: 1.25rem;
  }

  .brand-logo {
    width: min(100%, 34rem);
    margin-top: -4%;
    margin-bottom: -5%;
  }

  p {
    max-width: 30rem;
  }

  .ambient--two {
    right: -10rem;
  }
}

@media (max-height: 42rem) and (min-width: 41rem) {
  .coming-soon {
    padding-top: 1rem;
    padding-bottom: 5.5rem;
  }

  .brand-logo {
    width: min(52vw, 32rem);
  }

  h1 {
    font-size: clamp(3rem, 10vh, 4.6rem);
  }

  p {
    margin-top: 0.8rem;
  }
}
