* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  pointer-events: none;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00f5ff, transparent);
  top: -250px;
  right: -250px;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7b2ff7, transparent);
  bottom: -200px;
  left: -200px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

header {
  text-align: center;
  margin-bottom: 48px;
}

.logo-container {
  margin-bottom: 24px;
  animation: fadeInDown 1s ease-out;
}

.logo {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.5));
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 16px 0;
  letter-spacing: 8px;
  background: linear-gradient(135deg, #00f5ff 0%, #7b2ff7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 1s ease-out 0.2s both;
  position: relative;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}

.glitch::before {
  animation: glitch-1 2.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-0.025em, -0.0125em);
}

.glitch::after {
  animation: glitch-2 2.5s infinite;
  clip-path: polygon(0 45%, 100% 45%, 100% 100%, 0 100%);
  transform: translate(0.0125em, 0.025em);
}

@keyframes glitch-1 {
  0% { clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%); }
  10% { clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%); }
  20% { clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%); }
  30% { clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%); }
  40% { clip-path: polygon(0 35%, 100% 35%, 100% 35%, 0 35%); }
  50% { clip-path: polygon(0 45%, 100% 45%, 100% 46%, 0 46%); }
  60% { clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%); }
  70% { clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%); }
  80% { clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%); }
  90% { clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%); }
  100% { clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%); }
}

@keyframes glitch-2 {
  0% { clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); }
  10% { clip-path: polygon(0 60%, 100% 60%, 100% 85%, 0 85%); }
  20% { clip-path: polygon(0 15%, 100% 15%, 100% 65%, 0 65%); }
  30% { clip-path: polygon(0 40%, 100% 40%, 100% 95%, 0 95%); }
  40% { clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%); }
  50% { clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%); }
  60% { clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%); }
  70% { clip-path: polygon(0 65%, 100% 65%, 100% 75%, 0 75%); }
  80% { clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%); }
  90% { clip-path: polygon(0 25%, 100% 25%, 100% 40%, 0 40%); }
  100% { clip-path: polygon(0 50%, 100% 50%, 100% 65%, 0 65%); }
}

.subtitle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.bracket {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: #00f5ff;
  font-weight: 700;
}

h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #b0b0b0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

main {
  width: 100%;
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #00f5ff;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00f5ff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 245, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 48px;
  color: #b0b0b0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 1s both;
}

.highlight {
  color: #00f5ff;
  font-weight: 600;
  position: relative;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 64px auto;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.input-wrapper input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-wrapper input[type="email"]:focus {
  border-color: #00f5ff;
  background: rgba(0, 245, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.cta-button {
  padding: 16px 32px;
  border: none;
  background: linear-gradient(135deg, #00f5ff 0%, #7b2ff7 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.cta-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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

.cta-button .arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 1.4s both;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00f5ff 0%, #7b2ff7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: #707070;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer {
  margin-top: auto;
  text-align: center;
  color: #505050;
  font-size: 0.9rem;
  padding-top: 48px;
  font-family: 'Courier New', monospace;
}

.terminal-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
  
  h2 {
    font-size: 0.85rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .stat-value {
    font-size: 1.75rem;
  }
}
