@font-face {
  font-family: 'Evolucional';
  src: local('Evolucional'), url('./public/assets/fonts/evo/Evo-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Evolucional';
  src: local('Evolucional'), url('./public/assets/fonts/evo/Evo-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Evolucional';
  src: local('Evolucional'), url('./public/assets/fonts/evo/Evo-Semibold.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Evolucional';
  src: local('Evolucional'), url('./public/assets/fonts/evo/Evo-Bold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Evolucional';
  src: local('Evolucional'), url('./public/assets/fonts/evo/Evo-Black.ttf') format('truetype');
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Evolucional', system-ui, 'Segoe UI', Roboto, sans-serif;
}

.welcome-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(140deg, #060181 0%, #2f1a9e 42%, #f74a4b 100%);
}

.welcome-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
}

.welcome-blur-left {
  top: -5rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(247, 74, 75, 0.35);
}

.welcome-blur-right {
  right: -5rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(6, 1, 129, 0.25);
}

.welcome-shell {
  position: relative;
  width: 100%;
  max-width: 64rem;
  min-height: 86vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-card {
  width: 100%;
  max-width: 42rem;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(6, 1, 129, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(6, 1, 129, 0.18);
  backdrop-filter: blur(12px);
  text-align: center;
}

.welcome-logo-wrap {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 1.5rem;
}

.welcome-logo {
  width: 100%;
  display: block;
}

.welcome-title {
  margin: 0 0 1.5rem;
  color: #060181;
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.welcome-text {
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  color: #2a2768;
  font-size: 1rem;
  line-height: 1.65;
}

.welcome-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.welcome-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 999px;
  animation: welcomeDot 1.4s ease-in-out infinite;
}

.welcome-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.welcome-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.welcome-dot-primary {
  background-color: #060181;
}

.welcome-dot-secondary {
  background-color: #f74a4b;
}

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

@keyframes welcomeDot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .welcome-page {
    padding: 1.5rem 1rem;
  }

  .welcome-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .welcome-title {
    font-size: 1.875rem;
  }

  .welcome-text {
    font-size: 0.95rem;
  }
}
