:root {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: rgb(255, 255, 255);
  background: #05010e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 30%, rgba(236,72,153,0.3), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(30,58,138,0.4), transparent 60%),
              linear-gradient(120deg, #0f172a, #1e1b4b, #1e40af, #7c3aed, #0f172a);
  background-size: 400% 400%, 400% 400%, 300% 300%;
  animation: gradient-flow 18s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2.5rem;
  white-space: nowrap;
}


.hero {
  text-align: center;
  padding: 0 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 2rem 0 0 0;
  font-weight: 700;
}
