/* Shared homepage stylesheet — nav, hero, and content-section patterns.
   Reuses ticket-shop tokens/components for visual consistency with the
   waitlist page, since this copy tells the same drop-model brand story. */

main a.btn-primary,
main a.btn-quiet { text-decoration: none; }

/* ── NAV ── */
.rd-nav {
  position: sticky;
  top: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(237, 230, 216, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.rd-nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
}

.rd-nav-toggle { display: none; }
.rd-nav-burger { display: none; }

.rd-nav-right { display: flex; align-items: center; gap: 2rem; }

.rd-nav-link {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
}

.rd-nav-link:hover { color: var(--brass-text); }

.rd-nav-cta { padding: 0.7rem 1.5rem; font-size: 0.76rem; text-decoration: none; }

/* ── HERO ── */
.rd-hero { padding: 6rem 0 4rem; text-align: center; border-bottom: 1px solid var(--line); }

.rd-hero-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}

.rd-hero .step-body { max-width: 560px; margin: 0 auto 1rem; }
.rd-hero .btn-primary { margin-top: 1rem; }

.rd-hero-meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--brass-text);
  margin-top: 1.5rem;
}

/* ── GENERIC SECTIONS ── */
.rd-section { padding: 4.5rem 0; border-bottom: 1px solid var(--line); }
.rd-section:last-of-type { border-bottom: none; }

.explainer-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1.3;
  margin-bottom: 1.1rem;
}

.rd-section .step-body { margin-bottom: 1rem; }
.rd-section .step-body:last-of-type { margin-bottom: 1.5rem; }

.wl-emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.wl-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 0.5rem;
}

.rd-section-cta { display: inline-block; margin-top: 1.5rem; }

/* ── HOW IT WORKS ── */
.rd-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin: 2rem 0 2.5rem; }

.rd-step-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--brass-text);
  display: block;
  margin-bottom: 0.5rem;
}

.rd-step-title { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.4rem; }
.rd-step-body { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }


.rd-release-note {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin-top: 0.75rem;
}

/* ── CAPTURE FORM ── */
.rd-capture-form { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.5rem; max-width: 420px; }
.rd-capture-submit { align-self: flex-start; margin-top: 0.5rem; }

/* ── CLOSING ── */
.rd-closing { padding: 5rem 0; text-align: center; }
.rd-closing-logo { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin-bottom: 0.75rem; }
.rd-closing .step-body { margin-bottom: 2rem; }
.rd-closing-facts { font-family: var(--mono); font-size: 0.85rem; color: var(--ink-soft); line-height: 2; margin-bottom: 2rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .rd-nav { padding: 1rem 1.25rem; }
  .rd-nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 26px; height: 26px; cursor: pointer;
  }
  .rd-nav-burger span { display: block; height: 1.5px; background: var(--ink); }
  .rd-nav-right {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--card); border-bottom: 1px solid var(--line);
    padding: 1.5rem 1.25rem 2rem; gap: 1.5rem;
  }
  .rd-nav-toggle:checked ~ .rd-nav-right { display: flex; }
  .rd-nav-link { font-size: 1rem; padding: 0.75rem 0; display: block; }
  .rd-nav-right .btn-primary { width: 100%; text-align: center; }
  .rd-hero { padding: 5rem 0 3rem; }
  .rd-section { padding: 3.5rem 0; }
  .rd-steps { grid-template-columns: 1fr; gap: 1.75rem; }

  /* Full-width, easy-to-tap CTAs — excludes the compact nav "Join the List"
     button, which lives outside .inner and keeps its own sizing above. */
  .inner .btn-primary,
  .inner .btn-quiet {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .rd-cta-pair { flex-direction: column; align-items: stretch; }
}
