.welcome {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
  color: #eafff5;
  font-family: "Roboto Flex", sans-serif;
  background: radial-gradient(120% 90% at 50% -10%, #0a2b1c 0%, #03100a 70%), #03100a;
}
.welcome__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../image/varen 9 incher no words 3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1) contrast(1.05) drop-shadow(0 0 10px rgba(57, 255, 158, 0.5));
  opacity: 0.9;
  animation: welcomeDrift 34s ease-in-out infinite alternate;
}
.welcome__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(125% 120% at 50% 0%, transparent 38%, rgba(2, 10, 6, 0.85) 100%), linear-gradient(180deg, rgba(2, 10, 6, 0.35), rgba(2, 10, 6, 0.62)), repeating-linear-gradient(0deg, rgba(57, 255, 158, 0.05) 0 1px, transparent 1px 42px), repeating-linear-gradient(90deg, rgba(57, 255, 158, 0.05) 0 1px, transparent 1px 42px);
}
.welcome__panel {
  position: relative;
  z-index: 2;
  max-width: 70rem;
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
  border-radius: 20px;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(57, 255, 158, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: welcomeRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.welcome__eyebrow {
  margin: 0 0 1rem;
  padding-left: 0.42em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #7dffc4;
}
.welcome__title {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #8effc8 58%, #1aa564 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(57, 255, 158, 0.35));
}
.welcome__tagline {
  margin: 1.25rem auto 0;
  max-width: 46ch;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(220, 255, 238, 0.8);
}
.welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.25rem;
}
.welcome__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid #39ff9e;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.welcome__btn--primary {
  color: #02160d;
  background: linear-gradient(180deg, #7dffc4, #21d97e);
  box-shadow: 0 0 24px rgba(57, 255, 158, 0.45);
}
.welcome__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(57, 255, 158, 0.7);
}
.welcome__btn--ghost {
  color: #cffff0;
  background: rgba(57, 255, 158, 0.06);
}
.welcome__btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(57, 255, 158, 0.14);
  box-shadow: 0 0 24px rgba(57, 255, 158, 0.25);
}
.welcome__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(180, 255, 220, 0.7);
}
.welcome__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #39ff9e;
  box-shadow: 0 0 10px #39ff9e;
  animation: welcomePulse 2s ease-in-out infinite;
}

@keyframes welcomeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes welcomePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px #39ff9e;
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 4px #39ff9e;
  }
}
@keyframes welcomeDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .welcome__bg,
  .welcome__panel,
  .welcome__dot {
    animation: none;
  }
}

/*# sourceMappingURL=welcome.css.map */
