/* ---------- Hero ---------- */
.hero {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}
.hero-ctas {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--fg);
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: #a5560a; border-color: #a5560a; color: #fff; }
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-demo {
  margin: 0 auto;
  max-width: 960px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.2);
}
.hero-demo video,
.hero-demo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
}
.hero-demo figcaption {
  padding: 0.75rem 1rem;
  color: var(--fg-muted);
  font-size: 0.88rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ---------- Section frame ---------- */
.section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.step p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature {
  padding: 1.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.feature-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.2rem 0.6rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.feature h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  padding-right: 3.5rem;
}
.feature p {
  margin: 0;
  color: var(--fg-muted);
  line-height: 1.55;
}
.feature code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.05em 0.3em;
}

/* ---------- Pricing teaser ---------- */
.pricing-teaser {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
}
.pricing-teaser h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: -0.01em;
}
.pricing-teaser .price-line {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.pricing-teaser .price-line small {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-left: 0.35rem;
}
.pricing-teaser p {
  color: var(--fg-muted);
  margin: 0.25rem 0 1.5rem;
}
.pricing-teaser .other-plans {
  display: block;
  margin-top: 1rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: var(--text-width);
  margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.25rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.25rem;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--fg-muted);
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  margin: 0.75rem 0 0;
  color: var(--fg-muted);
  line-height: 1.6;
}
.faq details p code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.05em 0.3em;
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 4rem 1.5rem;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.final-cta p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin: 0 0 1.75rem;
}

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