/* DropSet guide pages — styles layered on top of programs.css (loaded first,
 * provides :root tokens, .pp-nav, .pp-main, .pp-section, .faq-item, .pp-cta,
 * buttons, footer, waitlist modal). Only guide-specific components live here. */

/* Hero — text-only variant of .pp-hero */
.guide-hero { margin-bottom: 36px; }
.guide-hero .pp-hero-text p { font-size: 15.5px; color: var(--muted2); max-width: 720px; margin-bottom: 12px; }
.guide-updated { font-size: 12px !important; color: var(--muted) !important; font-family: 'DM Mono', monospace; }

/* On-this-page ToC */
.guide-toc {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 18px 20px; margin-bottom: 44px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: baseline;
}
.guide-toc .section-label { width: 100%; margin-bottom: 2px; }
.guide-toc a { color: var(--muted2); text-decoration: none; font-size: 13.5px; }
.guide-toc a:hover { color: var(--accent); }

/* Sections */
.guide-section { scroll-margin-top: 96px; }
.guide-section h2 { max-width: 720px; }

/* Numbered how-to steps */
.guide-steps { margin: 4px 0 18px; padding: 0; list-style: none; counter-reset: step; max-width: 720px; }
.guide-steps li {
  counter-increment: step; position: relative;
  padding: 10px 0 10px 44px; font-size: 14.5px; color: var(--muted2);
  border-bottom: 1px solid var(--border);
}
.guide-steps li:last-child { border-bottom: none; }
.guide-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 8px;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--accent-dim); color: var(--accent);
  font-family: 'DM Mono', monospace; font-size: 12.5px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}

/* "Did you know?" callout */
.tip-callout {
  border: 1px solid rgba(200,241,53,0.2); border-radius: 12px;
  background: var(--accent-dim); padding: 14px 18px; margin: 18px 0;
  max-width: 720px;
}
.tip-callout .tip-label {
  font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 6px;
}
.tip-callout p { font-size: 14px; color: var(--text); margin: 0 0 6px; }
.tip-callout p:last-child { margin-bottom: 0; }

/* Screenshot in a phone bezel */
.shot-frame { margin: 22px 0; }
.shot-frame img {
  display: block; width: 100%; max-width: 320px; height: auto;
  border-radius: 28px; border: 6px solid #1c1c1e;
  outline: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,241,53,0.06);
}
.shot-frame figcaption { font-size: 12.5px; color: var(--muted); margin-top: 10px; max-width: 320px; text-align: center; }

/* Glossary */
.term-list { max-width: 760px; }
.term-item { border-bottom: 1px solid var(--border); padding: 14px 0; scroll-margin-top: 96px; }
.term-item dt { font-weight: 700; font-size: 15px; font-family: 'Syne', -apple-system, sans-serif; margin-bottom: 4px; }
.term-item dd { font-size: 14px; color: var(--muted2); margin: 0; }

/* Hub cards */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.hub-card {
  display: flex; flex-direction: column; gap: 8px; text-decoration: none;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.hub-card:hover { background: var(--surface-hover); border-color: rgba(200,241,53,0.2); transform: translateY(-2px); }
.hub-card b { color: var(--text); font-size: 16px; font-family: 'Syne', -apple-system, sans-serif; font-weight: 700; }
.hub-card p { color: var(--muted2); font-size: 13.5px; margin: 0; flex: 1; }
.hub-card .hub-meta { font-family: 'DM Mono', monospace; font-size: 11.5px; color: var(--muted); }

/* Related-topic cards (text-only cousins of .rel-card) */
.guide-rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.guide-rel-card {
  display: flex; flex-direction: column; gap: 6px; text-decoration: none;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 18px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.guide-rel-card:hover { background: var(--surface-hover); border-color: rgba(200,241,53,0.2); transform: translateY(-2px); }
.guide-rel-card b { color: var(--text); font-size: 14.5px; }
.guide-rel-card span { color: var(--muted); font-size: 12.5px; }

@media (max-width: 600px) {
  .guide-toc { padding: 14px 16px; }
  .shot-frame img { max-width: 260px; }
}
