:root {
  --cnd-navy: #073b66;
  --cnd-blue: #087eae;
  --cnd-cyan: #25bce4;
  --cnd-light: #eaf8fc;
  --white: #ffffff;
  --text: #153147;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
  background: var(--cnd-navy);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgb(37 188 228 / 28%), transparent 32rem),
    linear-gradient(145deg, var(--cnd-navy), #075b84 60%, var(--cnd-blue));
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 5vw, 4rem) 1rem;
}

.coming-soon__card {
  position: relative;
  isolation: isolate;
  width: min(100%, 760px);
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 6vw, 4.5rem);
  text-align: center;
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 2rem 5rem rgb(0 29 51 / 32%);
}

.coming-soon__visual {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cnd-light);
}

.bubble--one {
  width: 11rem;
  top: -5rem;
  right: -3rem;
}

.bubble--two {
  width: 5rem;
  top: 22%;
  left: -2.5rem;
  background: rgb(37 188 228 / 12%);
}

.bubble--three {
  width: 2.5rem;
  right: 10%;
  bottom: 12%;
  background: rgb(8 126 174 / 10%);
}

.coming-soon__logo {
  display: block;
  width: clamp(8.5rem, 26vw, 13rem);
  height: auto;
  margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
  object-fit: contain;
}

.coming-soon__eyebrow {
  margin: 0 0 .7rem;
  color: var(--cnd-blue);
  font-size: clamp(.75rem, 2vw, .875rem);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0 auto 1.25rem;
  color: var(--cnd-navy);
  font-size: clamp(2rem, 7vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.coming-soon__intro {
  max-width: 56ch;
  margin: 0 auto;
  color: #496477;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.coming-soon__wave {
  width: min(12rem, 60%);
  margin: clamp(1.75rem, 5vw, 2.75rem) auto 0;
  display: flex;
  justify-content: center;
  gap: .45rem;
}

.coming-soon__wave span {
  width: 3rem;
  height: .35rem;
  border-radius: 999px;
  background: var(--cnd-cyan);
  transform: rotate(-4deg);
}

.coming-soon__wave span:nth-child(2) {
  background: var(--cnd-blue);
  transform: rotate(4deg);
}

.site-footer {
  padding: 0 1rem 1.25rem;
  color: rgb(255 255 255 / 78%);
  font-size: .8rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 480px) {
  .coming-soon__card {
    border-radius: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}