/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-text);
  background: var(--green-light);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  display: inline-block;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero h1 em { font-style: normal; color: var(--green-text); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; }
.hero-note a { color: var(--green-text); text-decoration: underline; }

/* ── Numbers band ── */
.numbers {
  background: var(--ink);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.number-item { text-align: center; }
.number-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  display: block;
}
.number-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ── Section ── */
.section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 1rem;
}
.section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 600px;
}
.section-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 3rem; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.step { background: var(--white); border-radius: 24px; padding: 2rem; border: 1.5px solid var(--border); }
.step-number { font-family: 'Outfit', sans-serif; font-size: 5rem; font-weight: 700; color: var(--green-light); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.03em; }
.step h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* ── Screenshots ── */
.screenshot-section { background: var(--card); padding: 6rem 2rem; text-align: center; }
.screenshot-wrap { max-width: 1100px; margin: 3rem auto 0; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; align-items: flex-end; }
.screenshot-desktop { display: flex; flex-direction: column; align-items: center; }

/* ── Features ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 3rem; }
.feature { background: var(--white); border-radius: 20px; padding: 1.75rem; border: 1.5px solid var(--border); }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }
.feature h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── CTA ── */
.cta-section { padding: 8rem 2rem; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1.5rem; }
.cta-section > p { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-section .beta-box { margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero { text-align: center; }
  .numbers { gap: 2rem; }
  .screenshot-desktop { display: none !important; }
}
