/* Base Reset and Font */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #0a0a1a, #141827);
  color: #ffffff;
}

/* Container Layout */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  text-align: center;
}

/* Logo */
.container img {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 200px;
  margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-sub {
  color: #c0c0c0;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Form Styles */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-form input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #1e1e2f;
  color: white;
  font-size: 1rem;
}

.cta-form input::placeholder {
  color: #888;
}

.cta-form button {
  padding: 0.75rem;
  background-color: #facc15;
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-form button:hover {
  background-color: #eab308;
}

.success {
  color: #34d399;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.hidden {
  display: none;
}

/* Section Base Styles */
section {
  padding: 3rem 1rem;
}

section:not(.hero):not(.steps):not(footer) {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

h2 {
  font-size: 1.8rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Steps Section */
.steps {
  background-color: #0f111a;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  color: #c0c0c0;
  font-size: 0.95rem;
}

/* Section Themes */
.pain, .promise, .beta, .types, .faq {
  background-color: #10121c;
}

.beta .cta-form {
  max-width: 400px;
  margin: 2rem auto 0;
}

/* FAQ Section */
.faq details {
  text-align: left;
  margin-bottom: 1rem;
  background-color: #1a1a2a;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.faq summary {
  font-weight: 600;
  font-size: 1rem;
  color: #facc15;
  margin-bottom: 0.5rem;
}

.faq p {
  font-size: 0.95rem;
  color: #c0c0c0;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  background-color: #0a0a1a;
}

/* Two-Column Section for Pain & Promise */
.pain-promise {
  background-color: #10121c;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

.two-col .column {
  flex: 1;
}

.two-col h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.two-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.7;
  color: #ccc;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .two-col {
    flex-direction: row;
    justify-content: space-between;
  }
}

.types-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.top-row {
  grid-template-columns: 1fr;
}

.single-center {
  justify-content: center;
}

@media (min-width: 768px) {
  .top-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .single-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}

.carousel {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background-color: #000;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.carousel img {
  width: 100%;
  height: auto;
  flex: 0 0 100%;
  object-fit: cover;
  max-height: 400px;
  object-position: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
