:root {
  --brand-500: #3b82f6;
  --brand-600: #2563eb;
  --electric: #22d3ee;
  --bg-page: #eceef2;
  --bg-card: #ffffff;
  --text-fg: #0f172a;
  --text-muted: #64748b;
  --shadow: 0 24px 64px rgba(37, 99, 235, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
}

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

html,
body {
  height: 100%;
}

body {
  font-family: Peyda, system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-fg);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  min-height: 100dvh;
  padding: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f4fd 40%, #eceef2 100%);
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(37, 99, 235, 0.18);
}

.glow--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: rgba(34, 211, 238, 0.14);
}

.card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--bg-card);
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  max-width: 26rem;
  width: 100%;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.brand {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-fg);
  margin-bottom: 0.75rem;
}

.soon {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brand-600);
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .card {
    padding: 2.25rem 1.5rem;
  }

  .brand {
    font-size: 1.5rem;
  }

  .soon {
    font-size: 1.25rem;
  }
}
