:root {
  --bg: #07101d;
  --bg-soft: #0c1727;
  --card: rgba(12, 23, 39, 0.82);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f6f8fc;
  --muted: #9eabc0;
  --blue: #6ea2ff;
  --blue-strong: #4e83f1;
  --blue-soft: rgba(110, 162, 255, 0.15);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.8) 60%, transparent 100%);
}

.background-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .22;
  pointer-events: none;
  animation: drift 11s ease-in-out infinite alternate;
}
.glow-one { background: #3f7df7; top: -170px; left: -120px; }
.glow-two { background: #1e55b7; bottom: -230px; right: -160px; animation-delay: -4s; }

.page-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 70px 24px 38px;
}

.coming-soon-card {
  width: min(900px, 100%);
  text-align: center;
  padding: 58px 52px 48px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 31, 52, .9), rgba(9, 18, 31, .82));
  backdrop-filter: blur(18px);
  border-radius: 30px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.03);
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,162,255,.16), transparent 68%);
  top: -210px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.brand-wrap { margin-bottom: 22px; }
.logo {
  width: min(235px, 62vw);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(46, 106, 224, .22));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(110,162,255,.25);
  background: var(--blue-soft);
  color: #bfd4ff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 24px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(110,162,255,.11);
  animation: pulse 1.8s ease-in-out infinite;
}

h1 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
}
h1 span {
  color: var(--blue);
  text-shadow: 0 0 35px rgba(110,162,255,.24);
}

.lead {
  max-width: 720px;
  margin: 28px auto 0;
  color: #c7d1e1;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.sublead {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.actions { margin-top: 34px; }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #07101d;
  font-weight: 800;
  box-shadow: 0 15px 34px rgba(58, 113, 224, .24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(58, 113, 224, .32);
  filter: brightness(1.05);
}
.primary-button span { font-size: 1.1rem; }

.mini-features {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mini-features span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #aebad0;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  font-size: .87rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #77869f;
  padding: 0 24px 30px;
  font-size: .9rem;
}
.site-footer p { margin: 5px 0; }
.footer-note { color: #617089; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal .7s ease forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.78); opacity: .72; }
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(35px,25px,0) scale(1.08); }
}

@media (max-width: 700px) {
  .page-shell { padding: 28px 16px 24px; }
  .coming-soon-card {
    padding: 42px 22px 34px;
    border-radius: 24px;
  }
  .lead { line-height: 1.65; }
  .primary-button { width: 100%; }
  .mini-features { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
