/* ---------- Prompt 07: new page system (additive — does not touch site.css) ---------- */

.glass-nav { transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease; }
.nav-scrolled { background: rgba(11,11,13,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: rgba(255,255,255,0.1); }

/* section rhythm */
.bc-section { padding-top: 96px; padding-bottom: 96px; }
@media (max-width: 767px) { .bc-section { padding-top: 64px; padding-bottom: 64px; } }
.bc-container { max-width: 1320px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .bc-container { padding-left: 2.5rem; padding-right: 2.5rem; } }

.bc-eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #5AA8FF; display: inline-flex; align-items: center; gap: 10px; }
.bc-eyebrow::before { content: ""; width: 14px; height: 1px; background: #5AA8FF; display: inline-block; }

/* problem / trust / outcome cards */
.bc-card { background: #1C1F24; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 1.75rem; transition: border-color .35s ease, transform .35s ease; }
.bc-card:hover { border-color: rgba(90,168,255,0.4); transform: translateY(-3px); }

.bc-trust-strip { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.bc-trust-item { flex: 1 1 auto; padding: 1.1rem 1.4rem; font-size: 12.5px; letter-spacing: .02em; color: rgba(244,245,247,0.6); border-right: 1px solid rgba(255,255,255,0.08); white-space: nowrap; }
.bc-trust-item:last-child { border-right: none; }

/* connected system diagram */
.bc-flow { display: flex; align-items: center; gap: 0; overflow-x: auto; padding-bottom: 8px; }
.bc-flow-node { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 108px; }
.bc-flow-node .dot { width: 52px; height: 52px; border-radius: 50%; background: #1C1F24; border: 1px solid rgba(192,195,199,0.3); display: flex; align-items: center; justify-content: center; color: #C0C3C7; font-size: 16px; }
.bc-flow-node .lbl { font-size: 11.5px; text-align: center; color: rgba(244,245,247,0.65); max-width: 100px; }
.bc-flow-line { flex: 1 1 40px; height: 1px; background: linear-gradient(90deg, rgba(192,195,199,0.35), rgba(192,195,199,0.1)); min-width: 24px; }

/* process steps */
.bc-process { display: grid; grid-template-columns: repeat(7,1fr); gap: 0; }
@media (max-width: 900px) { .bc-process { grid-template-columns: 1fr; gap: 1.75rem; } }
.bc-process-step { padding: 0 1rem; border-left: 1px solid rgba(255,255,255,0.1); }
.bc-process-step:first-child { border-left: none; }
@media (max-width: 900px) { .bc-process-step { border-left: none; padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,0.1); } }
.bc-process-num { font-family: 'Playfair Display', serif; font-size: 22px; color: #5AA8FF; margin-bottom: .5rem; }

/* FAQ accordion */
.bc-faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.bc-faq-q { width: 100%; text-align: left; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 15px; color: #F4F5F7; }
.bc-faq-q i { transition: transform .3s ease; color: #C0C3C7; flex-shrink: 0; }
.bc-faq-item.open .bc-faq-q i { transform: rotate(45deg); }
.bc-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.bc-faq-item.open .bc-faq-a { max-height: 400px; }
.bc-faq-a p { padding-bottom: 1.4rem; font-size: 14px; color: rgba(244,245,247,0.6); line-height: 1.75; max-width: 62ch; }

.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 9999px; border: 1px solid rgba(192,195,199,0.4); color: #F4F5F7; background: transparent; padding: .75rem 1.5rem; font-size: 13px; transition: border-color .3s ease, background-color .3s ease; }
.btn-secondary:hover { border-color: #F4F5F7; background: rgba(255,255,255,0.04); }

.bc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(90,168,255,0.35); color: #5AA8FF; background: rgba(90,168,255,0.08); }

/* reveal on scroll — progressive enhancement only.
   Content is fully visible by default (no-JS / reduced-motion safe);
   the .js-reveal class is added by script.js only after JS confirms it can run the IntersectionObserver. */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .bc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.19,1,.22,1), transform .8s cubic-bezier(.19,1,.22,1); }
  .js-reveal .bc-reveal.bc-revealed { opacity: 1; transform: translateY(0); }
}
