:root {
  --bg: #081321;
  --bg-soft: #10253d;
  --text: #e9f2ff;
  --text-dim: #adc1da;
  --card: rgba(9, 24, 40, 0.68);
  --stroke: rgba(179, 216, 255, 0.2);
  --brand: #31d7a9;
  --brand-deep: #1fb387;
  --accent: #4ca6ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% 5%, #18375a 0%, transparent 55%),
    radial-gradient(900px 500px at 90% 95%, #0f2d47 0%, transparent 65%),
    linear-gradient(135deg, var(--bg), #050d18 70%);
  display: grid;
  place-items: center;
  overflow-x: hidden;
}

.page-wrap {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 3.2rem auto;
  position: relative;
  z-index: 2;
}

.coming-card {
  border: 1px solid var(--stroke);
  background: var(--card);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: clamp(1.6rem, 3vw, 3rem);
  box-shadow: var(--shadow);
  animation: reveal 0.8s ease-out both;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(170, 215, 255, 0.26);
  border-radius: 14px;
  background: rgba(7, 20, 33, 0.65);
}

.brand-logo {
  width: clamp(52px, 8vw, 78px);
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0.75rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.78rem;
  color: #9dc4f0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

h1 {
  margin: 0.65rem 0 0.9rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.35rem);
  line-height: 1.1;
  max-width: 16ch;
}

.subtitle {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
  color: var(--text-dim);
}

.features {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item {
  border: 1px solid rgba(142, 193, 246, 0.22);
  background: linear-gradient(180deg, rgba(17, 46, 74, 0.55), rgba(6, 18, 30, 0.42));
  border-radius: 16px;
  padding: 1rem;
  transform: translateY(18px);
  opacity: 0;
  animation: floatIn 0.7s ease-out forwards;
}

.feature-item:nth-child(2) {
  animation-delay: 0.12s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-item h2 {
  margin: 0;
  font-size: 1rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.feature-item p {
  margin: 0.55rem 0 0;
  color: #b4c7dc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.9rem;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(120deg, var(--brand), #7df0cc);
  color: #042015;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(49, 215, 169, 0.34);
}

.btn.ghost {
  border-color: rgba(170, 215, 255, 0.34);
  color: #d8ebff;
  background: rgba(9, 30, 50, 0.45);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  background: rgba(17, 48, 78, 0.7);
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.52;
}

.orb-one {
  width: 310px;
  height: 310px;
  background: #1e77d6;
  top: -60px;
  left: -50px;
  animation: drift 9s ease-in-out infinite;
}

.orb-two {
  width: 260px;
  height: 260px;
  background: #24c8a2;
  right: -40px;
  bottom: -60px;
  animation: drift 11s ease-in-out infinite reverse;
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }

  .coming-card {
    padding: 1.35rem;
  }
}

@keyframes reveal {
  from {
    transform: translateY(14px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.06);
  }
}
