/* Section headings — scoped to .wrap so they never reach the sidebar
   (the sidebar's .sidebar-section-label is also an <h2>, which the
   unscoped rule used to shrink/shift). */
.wrap .section { margin-bottom: 3.5rem; }
.wrap .section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.wrap h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.wrap p { font-size: 0.95rem; color: var(--muted); font-weight: 300; margin-bottom: 0.75rem; }
.wrap p:last-child { margin-bottom: 0; }
.wrap strong { color: var(--cream); font-weight: 600; }

/* Callout box */
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
}
.callout p { margin-bottom: 0; }

/* Step list */
.step-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.step-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-n {
  flex-shrink: 0; font-family: 'DM Mono', monospace;
  font-size: 0.7rem; color: var(--red); margin-top: 0.25rem;
}
.step-body strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; }
.step-body span { font-size: 0.875rem; color: var(--muted); font-weight: 300; }

/* Code / command chips */
code {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--red);
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

/* Example conversation */
.convo { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.msg {
  display: inline-block; max-width: 90%;
  padding: 0.6rem 1rem; border-radius: 10px;
  font-size: 0.875rem; line-height: 1.5;
}
.msg-user {
  background: var(--red); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 3px;
}
.msg-bot {
  background: var(--surface); border: 1px solid var(--border);
  align-self: flex-start; border-bottom-left-radius: 3px; color: var(--cream);
}
.msg-label {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  color: var(--muted); letter-spacing: 0.05em; margin-bottom: 0.1rem;
}
.msg-wrap { display: flex; flex-direction: column; }
.msg-wrap.right { align-items: flex-end; }

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#hiw-waitlist-area { width: 100%; }
/* NOTE: the disabled/greyed `.btn-primary` override that used to live here was
   a stale waitlist artifact — it rendered the (working) "Sign up →" link as a
   not-allowed grey button. Removed so the CTA uses the shared red active
   button from shared.css. */
.waitlist-note {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
