/* =====================================================
   prose.css — supplemental styles for interior pages
   (privacy, support, benchmark)
   ===================================================== */

/* --- Page header ----------------------------------- */
.page-header {
  padding: clamp(40px, 8vw, 80px) 0 clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--border);
}
.back-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.back-link:hover { color: var(--text); text-decoration: none; }
.page-header h1 { font-size: clamp(1.6rem, 5vw, 2.8rem); }
.last-updated,
.page-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* --- Prose page layout ----------------------------- */
.prose-page {
  padding: clamp(32px, 6vw, 64px) 0;
}
.prose-page .container { max-width: 720px; }

/* --- Prose sections -------------------------------- */
.prose-section {
  margin-bottom: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
}
.prose-section:last-child { border-bottom: none; }
.prose-section h2 { margin-bottom: 1rem; }
.prose-section p { color: var(--muted); }
.prose-section strong { color: var(--text); }
.prose-section a { color: var(--green); }
.prose-section code {
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 0.85em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--green);
}

/* --- Prose lists ----------------------------------- */
.prose-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}
.prose-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.prose-list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--green-dim);
}
.prose-ordered { counter-reset: prose-counter; }
.prose-ordered li { counter-increment: prose-counter; }
.prose-ordered li::before {
  content: counter(prose-counter) ".";
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dim);
}

/* --- Lead paragraph -------------------------------- */
.lead {
  font-size: 1.1rem;
  color: var(--text) !important;
  line-height: 1.7;
}

/* --- Support page ---------------------------------- */
.support-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 2rem;
}
.support-contact p { color: var(--text); margin-bottom: 0.25rem; }
.support-contact a { color: var(--green); }

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.faq-item p { color: var(--muted); }

/* --- Benchmark coming soon ------------------------- */
.coming-soon-block { background: var(--surface); border-radius: var(--radius); padding: 32px; }
.coming-soon-notice { }
.notice-label {
  display: inline-block;
  background: var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.coming-soon-notice h2 { color: var(--text); }
.coming-soon-notice p { color: var(--muted); }
