@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Libertinus+Math&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes slide {
  100% {
    top: -360px;
  }
}
@keyframes typing1 {
  40%, 60% {
    left: calc(100% + 30px);
  }
  100% {
    left: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Libertinus Math", system-ui;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  color: #94a3b8;
  line-height: 1.6;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}

.container {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 1000px;
  width: 100%;
}

.chevron-container {
  position: relative;
  margin: 0 auto 40px auto;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.chevron {
  font-size: 10rem;
  font-weight: bold;
  color: #94a3b8;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 5px 5px 15px rgba(0, 0, 0, 0.8), -5px -5px 15px rgba(255, 255, 255, 0.1);
  animation: pulse 2s ease-in-out infinite, float3d 4s ease-in-out infinite;
  transform-style: preserve-3d;
  filter: drop-shadow(0 10px 20px rgba(0, 74, 173, 0.4));
}

.glow-left {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%) translateZ(-50px);
  width: 230px;
  height: 250px;
  background: linear-gradient(90deg, #004aad, #5271ff);
  filter: blur(40px);
  border-radius: 50%;
  animation: glowPulseLeft 3s ease-in-out infinite;
  z-index: 1;
  opacity: 0.8;
}

.glow-right {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) translateZ(-50px);
  width: 230px;
  height: 250px;
  background: linear-gradient(90deg, #2f88e8, #0019fe);
  filter: blur(40px);
  border-radius: 50%;
  animation: glowPulseRight 3s ease-in-out infinite;
  z-index: 1;
  opacity: 0.8;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 12px;
  color: #94a3b8;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.268), 3px 3px 6px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease-in;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 4px;
  color: #5271ff;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease-in;
  margin: 0 0 40px 0;
}

.newsletter-form {
  max-width: 450px;
  margin: 0 auto 0 auto;
  animation: fadeIn 2s ease-in;
}

.form-group {
  display: flex;
  gap: 10px;
  margin: 0 0 15px 0;
  flex-wrap: wrap;
  justify-content: center;
}

input[type=email] {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: 2px solid rgba(82, 113, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #9abfc6;
  font-size: 0.9rem;
  border-radius: 2rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
}
input[type=email]::-moz-placeholder {
  color: #9abfc6;
  font-family: "Libertinus Math", system-ui;
  font-weight: 400;
  font-style: normal;
}
input[type=email]::placeholder {
  color: #9abfc6;
  font-family: "Libertinus Math", system-ui;
  font-weight: 400;
  font-style: normal;
}
input[type=email]:focus {
  border-color: #5271ff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(82, 113, 255, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

button {
  padding: 15px 35px;
  background: linear-gradient(135deg, #004aad, #5271ff);
  border: none;
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 74, 173, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(82, 113, 255, 0.5), 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
button:hover::before {
  left: 100%;
}
button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 74, 173, 0.4), 0 5px 20px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-message {
  margin: 15px 0 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  min-height: 20px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes float3d {
  0%, 100% {
    transform: translateY(0) rotateY(0deg);
  }
  25% {
    transform: translateY(-10px) rotateY(5deg);
  }
  50% {
    transform: translateY(0) rotateY(0deg);
  }
  75% {
    transform: translateY(-10px) rotateY(-5deg);
  }
}
@keyframes glowPulseLeft {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1) translateZ(-50px);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.15) translateZ(-30px);
  }
}
@keyframes glowPulseRight {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1) translateZ(-50px);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.15) translateZ(-30px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .chevron-container {
    width: 300px;
    height: 300px;
  }
  .chevron {
    font-size: 6rem;
  }
  h1 {
    font-size: 1.4rem;
    letter-spacing: 8px;
  }
  .form-group {
    flex-direction: column;
  }
  input[type=email] {
    width: 100%;
  }
}/*# sourceMappingURL=comingsoon.css.map */