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

body {
  min-height: 100vh;
  background-color: #05050f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', system-ui, sans-serif;
  color: #e0e7ff;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 44%, rgba(99, 102, 241, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2.25rem;
  animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.35)); }
  50%       { filter: drop-shadow(0 0 24px rgba(99, 102, 241, 0.70)); }
}

h1 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  background: linear-gradient(130deg, #8b5cf6 0%, #6366f1 55%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: #e0e7ff;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}


.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.50), transparent);
  margin-bottom: 1.75rem;
}

footer {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 0.72rem;
  color: #312e81;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
