:root {
  --bg-deep: #003f50;
  --text: #e6f4f7;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #003f50;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Soft brand wash + mirrored light blobs (no mesh / no crosses) */
.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    /* left cluster — primary glow */
    radial-gradient(
      ellipse 70% 58% at 6% 10%,
      rgba(120, 190, 200, 0.55) 0%,
      rgba(70, 155, 168, 0.28) 32%,
      transparent 68%
    ),
    /* left secondary — slightly lower / smaller */
    radial-gradient(
      ellipse 42% 36% at 18% 38%,
      rgba(90, 170, 182, 0.22) 0%,
      transparent 70%
    ),
    /* right cluster — mirrored but offset + softer (randomness) */
    radial-gradient(
      ellipse 64% 52% at 94% 14%,
      rgba(110, 182, 194, 0.42) 0%,
      rgba(60, 145, 160, 0.2) 34%,
      transparent 66%
    ),
    /* right secondary — a bit lower and smaller than left pair */
    radial-gradient(
      ellipse 38% 40% at 78% 44%,
      rgba(80, 160, 174, 0.18) 0%,
      transparent 72%
    ),
    /* faint bottom-left spill for depth */
    radial-gradient(
      ellipse 48% 40% at 12% 88%,
      rgba(40, 120, 136, 0.2) 0%,
      transparent 65%
    ),
    /* faint bottom-right spill — not a perfect mirror */
    radial-gradient(
      ellipse 44% 36% at 86% 82%,
      rgba(30, 105, 122, 0.16) 0%,
      transparent 68%
    ),
    /* base teal field */
    linear-gradient(
      145deg,
      #2f8494 0%,
      #1a6d7e 20%,
      #0a5568 48%,
      #004050 74%,
      #003648 100%
    );
}

.main {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}

.coming-soon {
  font-size: clamp(1.85rem, 5.2vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: rgba(210, 232, 236, 0.88);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 30, 40, 0.35);
  -webkit-font-smoothing: antialiased;
}

.x-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(230, 244, 247, 0.5);
  text-decoration: none;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.x-link:hover {
  color: rgba(230, 244, 247, 0.72);
}

.x-icon {
  display: block;
}
