/* proof.css — styles for section_proof.html
   (testimonials_quotes, testimonials_specs, cta).
   Loaded from inside each define block; idempotent if included more than once.
   All classes are prf- prefixed to avoid collisions with other sections. */

/* ---------- testimonials_quotes ---------- */
.prf-quotes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 26px;
}
.prf-quote { display: flex; flex-direction: column; }
.prf-quote-text { font-size: 15px; line-height: 1.6; }
.prf-quote-text code {
  font-size: 12.5px; background: rgba(38,38,34,.06);
  border-radius: 4px; padding: 1px 5px;
}
.prf-quote-who {
  margin-top: auto; padding-top: 18px;
  font: 500 12px var(--mono); color: var(--muted);
}
.prf-note { margin-top: 16px; font: 400 12px var(--mono); color: var(--muted); }
@media (max-width: 800px) {
  .prf-quotes { grid-template-columns: 1fr; }
}

/* ---------- testimonials_specs ---------- */
/* full-bleed ruled band; metrics stay on the 920px content column */
.prf-specs-strip {
  width: 100vw; margin-left: calc(50% - 50vw); margin-top: 26px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.prf-specs-inner {
  max-width: 920px; margin: 0 auto; padding: 0 24px;
  background: var(--bg);
}
.prf-specs-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--border); /* 1px gaps render as hairline dividers */
}
.prf-spec {
  background: var(--bg); padding: 26px 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.prf-v { font: 600 24px var(--mono); letter-spacing: -.02em; }
.prf-l {
  font: 500 11px var(--mono); color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap;
}
.prf-specs-note { margin-top: 14px; font-size: 13px; color: var(--muted); }
@media (max-width: 1000px) {
  .prf-specs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .prf-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .prf-spec { padding: 20px 16px; }
  .prf-v { font-size: 20px; }
}

/* ---------- cta (inverted closing band) ---------- */
.prf-cta {
  background: var(--fg); color: var(--bg);
  border-radius: 14px; padding: 38px 36px 26px;
  box-shadow: 0 1px 2px rgba(38,38,34,.04), 0 12px 40px rgba(38,38,34,.10);
}
.prf-cta h2 { margin-bottom: 0; }
.prf-cta-cols {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; margin-top: 26px;
}
.prf-cta-sub { color: #B9B7AE; font-size: 15px; margin-bottom: 18px; }
.prf-cta-form { display: flex; gap: 10px; flex-wrap: wrap; }
.prf-cta-form input { flex: 1 1 200px; width: auto; }
.prf-cta-form button {
  flex: none; margin: 0; white-space: nowrap;
  background: var(--accent); color: #fff;
}
.prf-cta-form button:hover { background: var(--accent); filter: brightness(1.1); }
.prf-cta-alt {
  border-left: 1px solid rgba(255,255,255,.13); padding-left: 40px;
}
.prf-cta-alt-label { display: flex; align-items: center; gap: 5px; color: #B9B7AE; font-size: 13.5px; margin-bottom: 12px; }
.prf-cta-alt-icon { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.prf-cta-copybox {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 13px 14px;
}
.prf-copytext {
  flex: 1; min-width: 0; overflow-wrap: anywhere;
  font-size: 12.5px; line-height: 1.65; color: #EDEDE9;
}
.prf-url { color: #7BC4A0; }
.prf-copybtn {
  flex: none; margin: 0; padding: .4rem .7rem; border-radius: 7px;
  background: transparent; border: 1px solid rgba(255,255,255,.28);
  color: #EDEDE9; font-size: 12.5px; font-weight: 600;
}
.prf-copybtn:hover, .prf-copybtn.prf-copied {
  background: transparent; border-color: #7BC4A0; color: #7BC4A0;
}
.prf-cta-foot {
  margin-top: 30px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: 13.5px; color: #B9B7AE;
}
.prf-cta-foot a { color: #B9B7AE; text-decoration: none; }
.prf-cta-foot a:hover { color: #fff; }
.prf-dot { margin: 0 10px; color: rgba(255,255,255,.25); }
@media (max-width: 800px) {
  .prf-cta { padding: 30px 22px 22px; }
  .prf-cta-cols { grid-template-columns: 1fr; gap: 26px; }
  .prf-cta-alt {
    border-left: 0; padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.13); padding-top: 24px;
  }
}
@media (max-width: 520px) {
  .prf-cta-form { flex-direction: column; }
  /* row-direction flex-basis would read as height in a column — reset it */
  .prf-cta-form input { flex: none; width: 100%; }
  .prf-cta-form button { width: 100%; }
}
