/* ============================================================
   Revonexis v3.1 — Conversion & Buyer Confidence Layer
   Additive styles only. Reuses existing tokens (--bg, --bg2, --cyan,
   --white, --muted, --text, --border) and existing type scale.
   No changes to existing selectors.
   ============================================================ */

/* ---- Homepage Quick Check teaser (small, non-hero) ---- */
.qc-teaser {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--bg2);
  border: 1px solid rgba(0, 169, 198, 0.10);
  border-radius: 6px;
  padding: 1rem 1.4rem;
}
.qc-teaser-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.85;
  flex-shrink: 0;
}
.qc-teaser-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--text);
  flex: 1 1 320px;
}
.qc-teaser .cta-text-link { margin-top: 0; flex-shrink: 0; }

/* ---- Footer Teams CTA (small, non-dominant) ---- */
.footer-teams-cta {
  grid-column: 1 / -1;
  padding-top: 0.35rem;
}
.footer-teams-cta a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: rgba(0, 169, 198, 0.65);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-teams-cta a::after { content: ' \2197'; }
.footer-teams-cta a:hover { color: rgba(0, 169, 198, 0.95); }

/* ---- Tertiary text-link (used in three-way CTA rows) ---- */
.cta-text-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: rgba(0, 169, 198, 0.75);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(0, 169, 198, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-text-link:hover { color: var(--cyan); border-color: rgba(0, 169, 198, 0.6); }

.cta-microcopy {
  margin-top: 1.1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

/* ---- FAQ section ---- */
.faq-section { padding: 5rem 5rem; border-top: 1px solid rgba(0, 169, 198, 0.06); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin-top: 2rem;
}
.faq-item {
  background: var(--bg2);
  border: 1px solid rgba(0, 169, 198, 0.10);
  border-radius: 6px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-q-icon {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--cyan);
  font-size: 1.05rem;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] .faq-q-icon { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid rgba(0, 169, 198, 0.08); }
.faq-answer {
  padding: 0 1.4rem 1.2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 960px) {
  .faq-section { padding: 3.5rem 1.25rem; }
}

/* ---- Example Output Preview ---- */
.eop-section { padding: 5rem 5rem; }
.eop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
  max-width: 1100px;
}
.eop-card { background: var(--bg); padding: 2rem 2.1rem; transition: background 0.2s; }
.eop-card:hover { background: var(--bg2); }
.eop-card-icon { font-size: 1rem; color: var(--cyan); opacity: 0.6; margin-bottom: 0.75rem; display: block; }
.eop-card-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.eop-card-body { font-size: 0.875rem; color: var(--text); line-height: 1.65; }

@media (max-width: 960px) {
  .eop-section { padding: 3.5rem 1.25rem; }
  .eop-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---- Revenue Leak Quick Check ---- */
.qc-section { padding: 5rem 5rem; border-top: 1px solid rgba(0, 169, 198, 0.06); }
.qc-card {
  background: var(--bg2);
  border: 1px solid rgba(0, 169, 198, 0.14);
  border-radius: 8px;
  padding: 2rem 2.25rem;
  margin-top: 2rem;
  max-width: 720px;
}
.qc-question { padding: 1.1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.qc-question:last-of-type { border-bottom: none; }
.qc-q-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.qc-options { display: flex; gap: 0.75rem; }
.qc-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--text);
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 0.95rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.qc-option:hover { border-color: rgba(0, 169, 198, 0.35); color: var(--white); }
.qc-option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.qc-option input:checked + span { color: var(--cyan); }
.qc-option:has(input:checked) {
  border-color: rgba(0, 169, 198, 0.55);
  background: rgba(0, 169, 198, 0.06);
  color: var(--white);
}
.qc-option input:focus-visible ~ * ,
.qc-option:has(input:focus-visible) { outline: 2px solid rgba(0, 169, 198, 0.6); outline-offset: 2px; }

.qc-submit-row { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.qc-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255, 140, 140, 0.75);
}

.qc-result {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 169, 198, 0.12);
}
.qc-result-label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.qc-result-cta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.qc-result-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

@media (max-width: 960px) {
  .qc-section { padding: 3.5rem 1.25rem; }
  .qc-card { padding: 1.5rem; }
  .qc-options { flex-wrap: wrap; }
}
