/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background: #000;
}

/* STAGE — PREMIUM BACKGROUND */
.stage {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255, 215, 130, 0.08), transparent 40%),
    radial-gradient(800px 400px at 80% 80%, rgba(255, 215, 130, 0.06), transparent 45%),
    linear-gradient(135deg, #0f2621 0%, #1f3b34 50%, #142e28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD */
.card {
  text-align: center;
  padding: 56px 40px;
  max-width: 420px;
  width: 100%;
}

/* LOGO */
.card img {
  max-width: 260px;
  width: 80%;
  height: auto;
  margin-bottom: 36px;
}

/* TEXT */
.tag {
  color: #e6c87a;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.soon {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 480px) {
  .card {
    padding: 40px 24px;
  }

  .card img {
    max-width: 220px;
  }
}
