/* reset */
* {box-sizing: border-box; margin:0; padding:0;}
html,body {height:100%;}

/* page background */
body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(ellipse at top left, rgba(46,18,63,0.35), transparent 20%),
              linear-gradient(135deg,#0b0016,#1b0830);
  color: #fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-y: auto;
}

/* HEADER - pinned to top */
.site-header {
  position: fixed;
  top: 18px;                 /* distance from top */
  left: 18px;                /* left and right spacing */
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  pointer-events: auto;
}

/* small logo style */
.logo {
  color: #b07bff;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.2px;
}

/* login button top-right */
.login-btn {
  background: linear-gradient(90deg,#a04bff,#7f3bff);
  color: #fff;
  border: none;
  padding: 0.45rem 0.95rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(80,40,120,0.11);
}

.login-btn:active { transform: translateY(1px); }

/* MAIN HERO - center the content in viewport */
.hero {
  min-height: 100vh;                  /* take full viewport so header/footer pinned */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;           /* vertical + horizontal centering */
  text-align: center;
  padding: 4.2rem 2rem 6.5rem;        /* ensure header doesn't overlap content */
  gap: 1rem;
}

/* small status pill above heading */
.status {
  display:inline-block;
  padding: .48rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(128,80,255,0.18);
  color: rgba(210,185,255,0.95);
  font-weight: 600;
  backdrop-filter: blur(4px);
  margin-bottom: 0.8rem;
}

/* big gradient H1 */
h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.95;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 800;
  background: linear-gradient(90deg,#b678ff,#6e3aff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 30px rgba(95,40,170,0.06);
}

/* tagline & description */
.tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: #d7d7e6;
  margin-top: 0.25rem;
  margin-bottom: 0.55rem;
  font-weight: 400;
}

.description {
  max-width: 740px;
  color: #a8a6b8;
  line-height: 1.6;
  font-size: 0.98rem;
  padding: 0 1rem;
}

/* animated dots */
.dots { margin-top: 1.6rem; }
.dots span {
  display:inline-block;
  width:9px; height:9px;
  margin: 0 6px;
  border-radius:50%;
  background: #7b49ff;
  opacity: .35;
  transform: translateY(0);
  transition: all .35s ease;
}
.dots span.active {
  opacity:1;
  transform: translateY(-6px);
}

/* FOOTER - pinned to bottom */
.site-footer {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
  color: #bdb7c8;
  font-size: 0.95rem;
}

/* spacing for small screens: stack footer items */
@media (max-width:640px) {
  .site-footer {
    flex-direction: column;
    gap: .45rem;
    text-align: center;
    padding: 0 .5rem;
  }

  .site-header {
    left: 10px;
    right: 10px;
    top: 12px;
  }

  .hero { padding-top: 5.2rem; padding-bottom: 5.8rem; }
}
