@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.coming-soon-page {
  font-family: 'Inter', sans-serif;
  background: #060d1a;
  color: #fff;
  min-height: 100vh;
}

.coming-soon-main {
  min-height: calc(100vh - var(--icity-navbar-height, 7.5rem));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 4rem;
}

.coming-soon-hero {
  position: relative;
  max-width: 42rem;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(13, 52, 128, 0.45), rgba(6, 13, 26, 0.9));
  border: 1px solid rgba(243, 146, 0, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.coming-soon-hero__glow {
  position: absolute;
  inset: -40% auto auto 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(243, 146, 0, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.coming-soon-hero__content {
  position: relative;
  z-index: 1;
}

.coming-soon-hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f39200;
  margin-bottom: 1rem;
}

.coming-soon-hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff 0%, #f39200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coming-soon-hero__text {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.coming-soon-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.coming-soon-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.coming-soon-hero__btn--primary {
  background: linear-gradient(135deg, #f39200, #ff8c00);
  color: #0a1628;
  box-shadow: 0 8px 24px rgba(243, 146, 0, 0.35);
}

.coming-soon-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(243, 146, 0, 0.45);
}

.coming-soon-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.coming-soon-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
