:root {
  --bg: #030814;
  --surface: #0b1220;
  --text: #f5f8ff;
  --muted: #9bb1cc;
  --accent: #8bd4ff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(139, 212, 255, 0.08), transparent 35%), #020818;
  color: var(--text);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.coming-soon-page {
  width: 100%;
  max-width: 900px;
}

.hero-simple {
  text-align: center;
  padding: 100px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
}

.hero-simple h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.hero-simple p {
  margin: 24px auto 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

@media (max-width: 700px) {
  .hero-simple {
    padding: 60px 18px;
  }

  .hero-simple h1 {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }
}
