* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

/* Full screen center — FIXED FOR ALL PHONES */
.stage {
  position: relative;
  min-height: 100vh;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px; /* mobile safe */
}

/* Background accent */
.bg-accent {
  position: absolute;
  width: 780px;
  height: 780px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.18),
    transparent 70%
  );
  top: -260px;
  right: -260px;
  animation: float 8s ease-in-out infinite;
}

/* Hero block */
.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeUp 1.1s ease forwards;
  max-width: 100%;
}

/* 🔥 BIGGER LOGO */
.logo-main {
  height: 200px; /* 👈 increased */
  margin-bottom: 0px; /* 👈 gap reduced */
}

/* Tagline closer to logo */
.tagline {
  font-size: 18px;
  color: #334155;
}

/* Meta line */
.meta {
  margin-top: 26px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #64748b;
  flex-wrap: wrap; /* mobile fix */
}

/* Coming soon */
.coming {
  font-weight: 600;
  color: #2563eb;
  animation: pulse 2.2s ease-in-out infinite;
}

/* Separator */
.sep {
  opacity: 0.6;
}

/* Clickable Fluxian */
.by-link {
  color: #64748b;
  text-decoration: none;
  cursor: pointer;
}

.by-link:hover {
  color: #31435b;        /* same color */
  text-decoration: none; /* no underline */
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
  100% { transform: translate(0, 0); }
}

/* 📱 Small screens fine-tune */
@media (max-width: 480px) {
  .logo-main {
    height: 140px;
  }

  .tagline {
    font-size: 16px;
  }
}
