/* ────────────────────────────────────────────────────────────────
 * step-hero.css — shared canonical layout for the six lifecycle
 * brochure pages: /draft, /pitch, /raise, /produce, /sell, /watch.
 *
 * Each page's first job is to make the visitor feel: "Yes — finally.
 * I can describe a movie I want to see, and this platform makes it
 * for me, makes me the producer, and lets me earn from it."
 *
 * So the layout below is intentionally narrow and uncluttered:
 *
 *   1. Lifecycle strip — six numbered pills at the top so the
 *      visitor always sees where they are in the journey.
 *   2. Step number + title — big, fast, one-glance answer to
 *      "what does this page do?"
 *   3. Lede — one sentence. Plain English.
 *   4. Aha paragraph — one or two sentences explaining *why this
 *      changes things* for them. The whole page hinges on this.
 *   5. Primary CTA — one big button. The action.
 *   6. How it works — three numbered cells, ~12 words each.
 *   7. Advanced — a quiet link group pointing to deeper surfaces
 *      (exchange, release, studios, etc.) for users who want them.
 *   8. Step footer — Prev / Next so the visitor flows through.
 *
 * Per docs/BSV-LANGUAGE-POLICY.md: no BSV / BSV-21 / 1Sat / chain
 * names in this layout. "Tokens", "shares", "royalty shares",
 * "tickets" are the consumer vocabulary.
 * ──────────────────────────────────────────────────────────────── */

.step-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.4rem 2rem 5rem;
}
@media (max-width: 720px) {
  .step-page { padding: 1.6rem 1rem 4rem; }
}

/* The site navbar already renders the six steps with their numbers
 * and an .active indicator (see public/js/nav-session.js + the
 * .site-header nav .step-num rule in css/theme.css). A second strip
 * inside the page would be redundant — left commented here as a
 * marker for anyone re-introducing one in the future. */

/* ── Title + lede ── */
.step-title {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
.step-title .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  color: #E50914;
  letter-spacing: 0.02em;
  line-height: 1;
}
.step-title h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.step-title h1 .red { color: #E50914; }

.step-lede {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #ddd;
  max-width: 820px;
  margin: 0 0 1.4rem;
}
.step-lede strong { color: #fff; font-weight: 700; }

.step-aha {
  border-left: 3px solid #E50914;
  padding: 0.6rem 0 0.6rem 1.1rem;
  margin: 0 0 2.4rem;
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.55;
  color: #cfcfcf;
}
.step-aha strong { color: #fff; }

/* ── Primary CTA ── */
.step-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 1.8rem;
  background: #E50914;
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  transition: transform 0.12s, background 0.12s;
}
.step-cta:hover { background: #ff1a26; transform: translateY(-1px); }
.step-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 1.6rem;
  background: transparent;
  border: 1px solid #444;
  color: #ddd;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.12s, color 0.12s;
}
.step-cta-secondary:hover { border-color: #E50914; color: #fff; }

/* ── How it works (3 cells) ── */
.step-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0 0 3rem;
}
.step-how .cell {
  border: 1px solid #1a1a1a;
  background: #0a0a0a;
  padding: 1.4rem 1.2rem;
}
.step-how .cell .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #E50914;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.step-how .cell h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.4rem;
}
.step-how .cell p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #aaa;
  margin: 0;
}
@media (max-width: 800px) {
  .step-how { grid-template-columns: 1fr; }
}

/* ── Advanced links ── */
.step-advanced {
  border-top: 1px solid #1a1a1a;
  padding-top: 1.6rem;
  margin: 0 0 3rem;
}
.step-advanced h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
  margin: 0 0 0.9rem;
}
.step-advanced ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.5rem 1.2rem;
}
.step-advanced li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #888;
}
.step-advanced a {
  color: #E50914;
  text-decoration: none;
  font-weight: 600;
}
.step-advanced a:hover { text-decoration: underline; }

/* ── Prev / Next footer ── */
.step-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #1a1a1a;
  padding-top: 1.4rem;
}
.step-foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ccc;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.step-foot a:hover { color: #E50914; }
.step-foot a .arrow { color: #E50914; }
.step-foot .empty { visibility: hidden; }
