:root {
  --navy: #001041;
  --navy-deep: #000a28;
  --aqua: #3ba7c9;
  --aqua-dark: #2f8a9f;
  --white: #ffffff;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: max(1.5rem, env(safe-area-inset-top)) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
  overflow: hidden;
}

.coming-soon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: 0;
  pointer-events: none;
  animation: cs-kenburns 28s ease-out both;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(0, 16, 65, 0.28) 0%, rgba(0, 10, 40, 0.78) 70%),
    linear-gradient(180deg, rgba(0, 16, 65, 0.55) 0%, rgba(0, 10, 40, 0.92) 100%);
}

.coming-soon-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 40rem);
  text-align: center;
}

.coming-soon-logo {
  width: min(180px, 52vw);
  height: auto;
  margin: 0 auto 1.35rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.coming-soon-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(184, 234, 255, 0.45);
  border-radius: 999px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b8eaff;
}

.coming-soon h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
}

.coming-soon-copy {
  margin: 0 auto 1.35rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 2.8vw, 1.12rem);
  line-height: 1.6;
}

.coming-soon-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}

.coming-soon-pills li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.coming-soon-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.cs-btn:hover {
  transform: translateY(-1px);
}

.cs-btn:focus-visible {
  outline: 3px solid rgba(59, 167, 201, 0.55);
  outline-offset: 2px;
}

.cs-btn-aqua {
  background: var(--aqua);
  color: var(--white);
}

.cs-btn-aqua:hover {
  background: var(--aqua-dark);
}

.cs-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.cs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.coming-soon-foot {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

@keyframes cs-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (min-width: 640px) {
  .coming-soon-actions {
    flex-direction: row;
    justify-content: center;
  }

  .cs-btn {
    min-width: 15.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-bg,
  .cs-btn {
    animation: none;
    transition: none;
  }

  .cs-btn:hover {
    transform: none;
  }
}
