/* Basic Reset and Variables */
:root {
  --primary-color: #e94057;
  --background-dark: #1e1e2f;
  --background-light: #2c2c3e;
  --text-color: #e0e0e0;
  --text-muted: #a0a0a0;
  --border-radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: var(--background-dark);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  text-align: center;
}

/* Main Card Layout */
.card {
  background: var(--background-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

/* Form Styling */
.form-container form {
  display: flex;
  gap: 0.5rem;
  max-width: 450px;
  margin: 0 auto;
}

.form-container input[type=email] {
  flex-grow: 1;
  padding: 0.9rem 1rem;
  border: 1px solid #444;
  border-radius: var(--border-radius);
  background: var(--background-dark);
  color: var(--text-color);
  font-size: 1rem;
}

.form-container button {
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.form-container button:hover {
  transform: translateY(-2px);
}

#form-feedback {
  margin-top: 1rem;
  min-height: 20px;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

@media (min-width: 600px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature h3 {
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-muted);
  line-height: 1.5;
}

/* Utility Classes */
.hidden {
  display: none !important;
}/*# sourceMappingURL=landing.css.map */