:root {
  --bg-deep: #082c44;
  --bg-mid: #0d4c6b;
  --bg-light: #187a92;
  --foam: #e7fbff;
  --sand: #f3e3c2;
  --card: rgba(4, 35, 52, 0.58);
  --card-border: rgba(231, 251, 255, 0.22);
  --text-main: #f4fdff;
  --text-soft: rgba(244, 253, 255, 0.82);
  --shadow: rgba(1, 20, 30, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(129, 224, 255, 0.2), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(169, 238, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #51c1d9 0%, var(--bg-light) 26%, var(--bg-mid) 58%, var(--bg-deep) 100%);
  overflow: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px 140px;
  isolation: isolate;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(5, 43, 64, 0.55), rgba(2, 24, 37, 0.72));
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.lead {
  margin: 18px auto 10px;
  max-width: 22ch;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.45;
  color: var(--text-main);
}

.coming-soon {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.info-card {
  margin: 30px auto 0;
  max-width: 430px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(231, 251, 255, 0.08);
  border: 1px solid rgba(231, 251, 255, 0.12);
}

.info-card p {
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--text-soft);
}

.info-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(243, 227, 194, 0.14);
  color: var(--foam);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.water-glow {
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 249, 255, 0.3), transparent 64%);
  filter: blur(6px);
}

.water-glow-left {
  top: 8%;
  left: -80px;
}

.water-glow-right {
  right: -80px;
  bottom: 22%;
}

.wave-band {
  position: absolute;
  left: -10%;
  width: 120%;
  border-radius: 46% 54% 0 0;
  transform-origin: center;
}

.wave-band-back {
  bottom: 0px;
  height: 170px;
  background: rgba(8, 44, 68, 0.44);
  animation: drift 16s ease-in-out infinite;
}

.wave-band-front {
  bottom: -36px;
  height: 180px;
  background:
    linear-gradient(180deg, rgba(231, 251, 255, 0.18), rgba(231, 251, 255, 0.02)),
    linear-gradient(180deg, rgba(122, 211, 229, 0.95), rgba(11, 88, 122, 0.96));
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.14);
  animation: drift 12s ease-in-out infinite reverse;
}

.wave-band-front::before,
.wave-band-back::before {
  content: "";
  position: absolute;
  inset: 16px 0 auto;
  height: 28px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 20%, transparent 24%) repeat-x;
  background-size: 70px 24px;
  opacity: 0.32;
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-2.2%) translateY(10px);
  }
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .page-shell {
    padding: 20px 16px 110px;
  }

  .hero {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .lead {
    max-width: 18ch;
  }

  .coming-soon,
  .info-card p {
    line-height: 1.6;
  }

  .wave-band-back {
    bottom: 52px;
    height: 120px;
  }

  .wave-band-front {
    height: 140px;
  }
}
