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

body {
  font-family: 'Poppins', sans-serif;
  background: #0F172A;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #F1F5F9;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 0;
}

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

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.coming-soon-text {
  font-size: 16px;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.headline {
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.3;
}

.subheadline {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}

.feature-card {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.feature-icon { font-size: 20px; }

.feature-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #E2E8F0;
}

.feature-card p {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
}

/* CTA */
.cta-section { margin-bottom: 24px; }

.cta-headline {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cta-label {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.email-form input {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #334155;
  background: #1E293B;
  color: #F1F5F9;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  width: 300px;
  outline: none;
  transition: border-color 0.2s;
}

.email-form input:focus { border-color: #6366F1; }
.email-form input.invalid { border-color: #EF4444; }
.email-form input.valid { border-color: #10B981; }

.error-msg {
  font-size: 11px;
  color: #EF4444;
  margin-top: 4px;
  min-height: 16px;
}

.email-form button {
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  background: #6366F1;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.email-form button:hover { background: #4F46E5; }
.email-form button:disabled { background: #334155; cursor: not-allowed; }
.email-form button.success { background: #10B981; }

.privacy-note {
  font-size: 12px;
  color: #64748B;
  margin-top: 12px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid #334155;
}

.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-value { font-size: 22px; font-weight: 700; color: #818CF8; }
.trust-label { font-size: 12px; color: #94A3B8; margin-top: 4px; }

.footer { margin-top: 40px; font-size: 12px; color: #64748B; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .headline { font-size: 24px; }
}

@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
  .headline { font-size: 22px; }
  .subheadline { font-size: 14px; }
  .logo-text { font-size: 32px; }
  .email-form { flex-direction: column; align-items: center; }
  .email-form input { width: 100%; }
  .email-form button { width: 100%; }
  .trust-bar { gap: 20px; flex-wrap: wrap; }
}
