body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: black;
  color: white;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #CF0418;
  color: #FFD900;
  text-decoration: none;
  border-radius: 10px;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  flex: 1 1 250px;
  margin: 10px;
  padding: 20px;
  background: #d9d9d9;
  border-radius: 12px;
}

/* Dual waitlist container */
.dual-waitlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.waitlist-form {
  flex: 1 1 300px;
  max-width: 400px;
  background: #d9d9d9;
  padding: 30px;
  border-radius: 12px;
}

.waitlist-form h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.waitlist-form > p {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 14px;
}

.waitlist-form form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.waitlist-form input[type="email"] {
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #999;
  font-size: 16px;
}

.waitlist-form button {
  padding: 12px 20px;
  background: #CF0418;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.waitlist-form button:hover {
  background: #9c0010;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .dual-waitlist {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
  }
  
  .waitlist-form {
    width: calc(100% - 30px);
    max-width: 100%;
    padding: 20px 15px;
    margin: 0;
    box-sizing: border-box;
  }
  
  .waitlist-form h3 {
    font-size: 18px;
  }
  
  .waitlist-form > p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .waitlist-form input[type="email"] {
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
  }
  
  .waitlist-form button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
  }
}

/* Extra small screens (phones < 400px) */
@media (max-width: 400px) {
  .dual-waitlist {
    padding: 0 10px;
  }
  
  .waitlist-form {
    width: calc(100% - 20px);
    padding: 15px 12px;
  }
  
  .waitlist-form h3 {
    font-size: 16px;
  }
  
  .waitlist-form > p {
    font-size: 12px;
  }
  
  .logo {
    width: 280px;
  }
}

.logo {
  display: block;
  margin: 0 auto 20px auto;
  width: 360px;
}

h2 {
  color: #CF0418;
}

h3 {
  color: #9c0010;
}

.feature-video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-top: 15px;
  max-height: 400px;
}

/* Intro video styles */
.intro-video {
  width: 100%;
  max-width: 800px; /* wider for landscape video */
  height: auto;
  aspect-ratio: 16 / 9; /* changed from 9/16 */
  border-radius: 16px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Dual path section */
.path-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.path-card {
  flex: 1 1 300px;
  max-width: 450px;
  background: #d9d9d9;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}

.path-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.path-card li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.path-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #CF0418;
  font-weight: bold;
}

/* Key features section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.key-feature-item {
  background: #d9d9d9;
  padding: 25px;
  border-radius: 12px;
}

.key-feature-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.key-feature-item p {
  margin: 0;
  color: #333;
}

.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.15);
}

.social-icon {
  width: 32px;
  height: 32px;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: white;
}

footer p {
  color: white;
  margin: 0;
}

footer .social-links {
  margin-top: 15px;
}