/* ── Home: Hero Section ──────────────────────────────── */
.hero {
  text-align: center;
  padding: 80px 0 64px;
}
.hero h1 { font-size: 4rem; }
.hero .subtitle {
  margin: 20px auto 0;
  max-width: 600px;
}
.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── Home: Section spacing ───────────────────────────── */
.home-section {
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── Home: BookScout showcase ────────────────────────── */
.bookscout-showcase {
  text-align: center;
}
.bookscout-showcase .badge-row {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.bookscout-showcase .badge {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}
.try-live-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  margin-top: 32px;
}
.try-live-btn:hover { opacity: 0.85; }

/* ── Home: ROAS Ladder ───────────────────────────────── */
.roas-ladder {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 32px 0;
}
.roas-step {
  flex: 1;
  padding: 24px;
  text-align: center;
}
.roas-step .roas-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.roas-step .roas-value {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.roas-step .roas-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}
.roas-arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  padding: 0 4px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero { padding: 48px 0 40px; }
  .roas-ladder { flex-direction: column; gap: 8px; }
  .roas-step { border-radius: 10px !important; }
  .roas-arrow { justify-content: center; transform: rotate(90deg); padding: 4px 0; }
}
