:root {
  --primary-color: #6171ff;
  --primary-light: #e9ebff;
  --secondary-color: #FF6B6B;
  --accent-color: #4ECDC4;
  --badge-bg-color: rgba(225, 229, 255, 0.3);
  --button-bg-color: #6171ff;
  --button-text-color: #fff;
  --text-color: #4a4a4a;
  --headline-color: #2d2d2d;
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  background: #000;
}

/* Background Setup */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/app1.jpg') center/cover no-repeat;
  filter: brightness(0.7);
  z-index: 0;
}

.main-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 32px;
  color: white;
}

/* Badge */
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

/* Typography */
h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 16px 0;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}

.subheadline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px auto 32px;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
}

p {
  margin: 0;
}

.hero-section p {
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

/* Form Styling */
.waitlist-container {
  max-width: 600px;
  margin: 0 auto 48px;
}

.waitlist-form-preview {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.waitlist-form-preview input,
.waitlist-form-preview textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px 20px;
  border-radius: 12px;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.waitlist-form-preview input::placeholder,
.waitlist-form-preview textarea::placeholder {
  color: #666666;
  opacity: 1;
  font-weight: 500;
}

.waitlist-form-preview input:focus::placeholder,
.waitlist-form-preview textarea:focus::placeholder {
  color: #999999;
}

.waitlist-form-preview input:focus,
.waitlist-form-preview textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(97, 113, 255, 0.1);
}

.waitlist-submit-button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.waitlist-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(97, 113, 255, 0.2);
}

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

/* Footer */
.footer {
  padding: 12px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-wrapper {
    padding: 40px;
  }
  
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .waitlist-form-preview {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .main-container {
    padding: 20px 10px;
  }

  .content-wrapper {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
  }
}
