* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 130, 60, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(60, 130, 255, 0.18), transparent 35%),
    #111827;
  color: #ffffff;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 760px;
  padding: 48px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #facc15;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 10vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.tagline {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.45;
  color: #e5e7eb;
}

.coming {
  margin: 34px 0 24px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f97316;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.links a {
  color: #ffffff;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.note {
  margin: 34px auto 0;
  max-width: 540px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}