:root {
  /* Dark vibrant palette */
  --color-bg1: 10, 10, 15;
  --color-bg2: 25, 20, 45;
  --color1: 85, 30, 180;
  --color2: 40, 100, 255;
  --color3: 150, 40, 180;
  --color4: 10, 150, 200;
  --color5: 180, 50, 80;
  --color-interactive: 120, 80, 255;
  --circle-size: 80%;
  --blending: hard-light;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background-color: rgb(var(--color-bg1));
  min-height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, .btn-text {
  font-family: 'Outfit', sans-serif;
}

/* -------------------------------------
   Dynamic Animated Gradient Background 
   ------------------------------------- */
.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(40deg, rgb(var(--color-bg1)), rgb(var(--color-bg2)));
}

.gradient-bg .g1, .gradient-bg .g2, .gradient-bg .g3, .gradient-bg .g4, .gradient-bg .g5, .gradient-bg .interactive {
  position: absolute;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  opacity: 0.8;
  border-radius: 50%;
  filter: blur(80px);
}

.g1 {
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease-in-out infinite;
}

.g2 {
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
}

.g3 {
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
}

.g4 {
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease-in-out infinite;
  opacity: 0.7;
}

.g5 {
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%);
  top: calc(50% - var(--circle-size) / 2 - 300px);
  left: calc(50% - var(--circle-size) / 2 + 200px);
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease-in-out infinite;
}

.interactive {
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.6) 0, rgba(var(--color-interactive), 0) 50%);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

@keyframes moveInCircle {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

@keyframes moveVertical {
  0% { transform: translateY(-50%); }
  50% { transform: translateY(50%); }
  100% { transform: translateY(-50%); }
}

@keyframes moveHorizontal {
  0% { transform: translateX(-50%) translateY(-10%); }
  50% { transform: translateX(50%) translateY(10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}

/* -------------------------------------
   Layout & Glassmorphism Card
   ------------------------------------- */
.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 10;
  position: relative;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 4rem 3rem;
  max-width: 650px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5); transform: translateY(-5px); }
}

.glass-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-container {
  margin-bottom: 2.5rem;
}

.logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(135deg, #a78bfa, #f472b6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------
   CTA Button & Interactions
   ------------------------------------- */
.cta-container {
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.7s ease;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

.contact-direct {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-direct a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.contact-direct a:hover {
  color: white;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Make it responsive */
@media (max-width: 768px) {
  .glass-card {
    padding: 3rem 1.5rem;
  }
  .title {
    font-size: 2.25rem;
  }
  .gradient-bg .g1, .gradient-bg .g2, .gradient-bg .g3, .gradient-bg .g4, .gradient-bg .g5 {
    width: 150%;
    height: 150%;
  }
}
