:root {
  --primary: #6366f1;
  --primary-soft: #eef2ff;
  --accent: #22d3ee;
  --dark: #0f172a;
  --bg: #ffffff;
  --bg-offset: #f8fafc;
  --text-main: #1e293b;
  --text-sub: #64748b;
  --border: #e2e8f0;
  --glass: rgba(255, 255, 255, 0.7);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* --- DYNAMIC BACKGROUND & PARTICLES --- */
.bg-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: drift 25s infinite alternate ease-in-out;
}

.bg-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -150px;
  left: -150px;
}

.bg-2 {
  width: 700px;
  height: 700px;
  background: var(--accent);
  bottom: -200px;
  right: -150px;
  animation-duration: 35s;
  animation-delay: -5s;
}

/* Particles */
.particle {
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.2;
  animation: floatParticle 15s infinite linear;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, 80px) scale(1.1);
  }
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translate(100px, -100vh);
    opacity: 0;
  }
}

/* --- MAIN CONTENT --- */
.page-wrapper {
  min-height: 100vh; /* Make main content full height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.main-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.main-hero p {
  font-size: clamp(0.9rem, 4vw, 1.1rem);
  font-weight: 400;
  color: var(--text-sub);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* --- HERO IMAGE --- */
.hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  animation: floatHero 6s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 45vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(99, 102, 241, 0.15));
  border-radius: 24px;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* --- FOOTER --- */
footer {
  width: 100%;
  padding: 1rem 1rem;
  text-align: center;
  background: var(--bg-offset);
  border-top: 1px solid var(--border);
}
