
:root {
  --primary-color: #2D3047;
  --secondary-color: #6C63FF;
  --accent-color: #00F5D4;
  --background-color: #F7F9FC;
  --text-color: #2D3047;
  --text-light: #FFFFFF;
  --transition-slow: 0.5s ease;
  --transition-medium: 0.3s ease;
  --transition-fast: 0.2s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--primary-color);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

#app {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.circle-1 {
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--secondary-color) 0%, rgba(108, 99, 255, 0) 70%);
  animation: float 15s ease-in-out infinite;
}

.circle-2 {
  bottom: -15%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-color) 0%, rgba(0, 245, 212, 0) 70%);
  animation: float 18s ease-in-out infinite reverse;
}

.circle-3 {
  top: 30%;
  left: 20%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, #FF6B6B 0%, rgba(255, 107, 107, 0) 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3%, 5%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

header {
  padding: 2rem 0;
  text-align: center;
  animation: fadeInDown 1s ease-out;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  /*background-color: var(--accent-color);
  color: var(--primary-color);*/
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  margin-right: 1rem;
  /*box-shadow: 0 4px 10px rgba(0, 245, 212, 0.3);*/
}

.company-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.8;
}

main {
  padding: 2rem 0;
}

.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  animation: fadeIn 1s ease-out 0.3s both;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.accent {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.8s ease;
}

.accent:hover::after {
  width: 100%;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-container {
  background: rgba(45, 48, 71, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  background: rgba(108, 99, 255, 0.2);
  border-radius: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(108, 99, 255, 0.1), rgba(0, 245, 212, 0.1));
  z-index: -1;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(45, 48, 71, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-container h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

input[type="email"] {
  padding: 1rem 1.5rem;
  border-radius: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.3);
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 30px;
  border: none;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-medium);
  box-shadow: 0 4px 10px rgba(0, 245, 212, 0.3);
}

.cta-button:hover {
  background: #00E0C2;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 245, 212, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.form-message {
  font-size: 0.9rem;
  min-height: 1.5rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
}

.feature-item {
  background: rgba(45, 48, 71, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: var(--transition-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(30px);
  opacity: 0;
}

.feature-item.animate {
  transform: translateY(0);
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

footer {
  padding: 3rem 0 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Media Queries */
@media (min-width: 768px) {
  .notify-form {
    flex-direction: row;
  }
  
  .cta-button {
    flex-shrink: 0;
  }
  
  .headline {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 1.5rem;
  }
  
  .headline {
    font-size: 2rem;
  }
  
  .logo-container {
    flex-direction: column;
  }
  
  .logo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown-number {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}
