/* bastionchip.css — Bastionchip brand stylesheet
   Brand prefix: bc-
   CSS var prefix: --bc-
   Indent: 2-space
*/

/* ============================================================
   0. OVERFLOW GUARD (HARD RULE — must be first)
   ============================================================ */
html, body {
  overflow-x: hidden;
}

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bc-accent:          #0284C7;
  --bc-accent-light:    #22D3EE;
  --bc-bg-dark:         #050A14;
  --bc-bg-surface:      #0D1B2E;
  --bc-text-primary:    #F8FAFC;
  --bc-text-secondary:  #94A3B8;
  --bc-text-dark:       #0F172A;
  --bc-border-subtle:   #1E3A5F;
  --bc-nav-h:           68px;
  --bc-container-max:   1200px;
  --font-sans:          'Geist', system-ui, sans-serif;
  --font-display:       'Geist', system-ui, sans-serif;
  --font-mono:          'Geist Mono', ui-monospace, monospace;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bc-bg-dark);
  color: var(--bc-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

a {
  color: var(--bc-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   3. CONTAINER
   ============================================================ */
.bc-container {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.bc-btn--primary {
  background: var(--bc-accent);
  color: #ffffff;
  border-color: var(--bc-accent);
}

.bc-btn--primary:hover {
  filter: brightness(1.12);
  text-decoration: none;
  color: #ffffff;
}

.bc-btn--secondary {
  background: transparent;
  color: var(--bc-accent-light);
  border-color: var(--bc-accent-light);
}

.bc-btn--secondary:hover {
  background: rgba(34, 211, 238, 0.08);
  text-decoration: none;
  color: var(--bc-accent-light);
}

.bc-btn--ghost {
  background: transparent;
  color: var(--bc-text-primary);
  border-color: var(--bc-border-subtle);
}

.bc-btn--ghost:hover {
  background: rgba(248, 250, 252, 0.06);
  border-color: var(--bc-text-secondary);
  text-decoration: none;
  color: var(--bc-text-primary);
}

/* ============================================================
   5. SECTION TYPOGRAPHY UTILITIES
   ============================================================ */
.bc-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-accent-light);
  margin-bottom: 12px;
}

.bc-section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 16px;
}

.bc-section-sub {
  font-size: 18px;
  color: var(--bc-text-secondary);
  max-width: 680px;
  line-height: 1.65;
}

/* ============================================================
   6. NAV  (bc-nav)
   Single-element HARD RULE: <header class="bc-nav ...">
   directly contains <div class="bc-nav__inner">. No nested <nav>.
   ============================================================ */
.bc-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Modifier: transparent (home page, overlaid on dark hero) */
.bc-nav--transparent {
  background: transparent;
}

.bc-nav--transparent .bc-nav__link {
  color: rgba(248, 250, 252, 0.88);
}

.bc-nav--transparent .bc-nav__link:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Scrolled state applied by JS */
.bc-nav--scrolled {
  background: rgba(5, 10, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(30, 58, 95, 0.5);
}

.bc-nav--scrolled .bc-nav__link {
  color: var(--bc-text-primary);
}

/* Modifier: solid (all sub-pages) */
.bc-nav--solid {
  background: rgba(5, 10, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(30, 58, 95, 0.5);
}

.bc-nav--solid .bc-nav__link {
  color: var(--bc-text-primary);
}

.bc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bc-nav-h);
  padding: 0 32px;
  max-width: var(--bc-container-max);
  margin: 0 auto;
}

.bc-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.bc-nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* Logo dark variant — used on dark backgrounds */
.bc-nav__logo-img--dark {
  display: block;
}

/* Logo light variant — unused in this dark-first design */
.bc-nav__logo-img--light {
  display: none;
}

.bc-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bc-text-primary);
  text-decoration: none;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}

.bc-nav__link:hover {
  color: #ffffff;
  background: rgba(248, 250, 252, 0.07);
  text-decoration: none;
}

.bc-nav__link.active,
.bc-nav__link--active {
  color: var(--bc-accent-light);
}

.bc-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--bc-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: filter 0.18s;
  margin-left: 8px;
}

.bc-nav__cta:hover {
  filter: brightness(1.12);
  text-decoration: none;
  color: #ffffff;
}

.bc-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bc-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bc-text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Responsive nav */
@media (max-width: 768px) {
  .bc-nav__links {
    display: none;
    position: absolute;
    top: var(--bc-nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 10, 20, 0.98);
    padding: 16px 0 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .bc-nav__links.is-open {
    display: flex;
  }

  .bc-nav__link {
    padding: 12px 24px;
    border-radius: 0;
  }

  .bc-nav__cta {
    margin: 12px 24px 0;
    justify-content: center;
  }

  .bc-nav__toggle {
    display: flex;
  }

  .bc-nav__inner {
    position: relative;
  }
}

/* ============================================================
   7. HERO  (bc-hero  — D-full-bleed variant)
   Pattern 1: nav nested INSIDE hero section
   Hero section is the first element, nav is its first child.
   ============================================================ */
.bc-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--bc-bg-dark);
  background-image: url('../images/hero-concept.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

/* bc-hero__bg: the actual background image element — hidden visually (CSS bg handles display)
   but present in DOM for image-brief coverage verification */
.bc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.bc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 20, 0.82) 0%,
    rgba(2, 132, 199, 0.12) 50%,
    rgba(5, 10, 20, 0.78) 100%
  );
  z-index: 0;
}

.bc-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.bc-hero__content {
  max-width: 740px;
  padding: 60px 0;
}

.bc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-accent-light);
  margin-bottom: 20px;
}

.bc-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--bc-accent-light);
}

.bc-hero__title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.bc-hero__title em {
  font-style: normal;
  color: var(--bc-accent-light);
}

.bc-hero__sub {
  font-size: 19px;
  color: rgba(248, 250, 252, 0.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

.bc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.bc-hero__proof {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(30, 58, 95, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
}

.bc-hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bc-hero__proof-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--bc-accent-light);
  letter-spacing: -0.02em;
}

.bc-hero__proof-label {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .bc-hero__title {
    font-size: 36px;
  }
  .bc-hero__sub {
    font-size: 17px;
  }
  .bc-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   8. STATS  (bc-stats — B-cards variant)
   ============================================================ */
.bc-stats {
  background: var(--bc-bg-surface);
  padding: 72px 0;
  border-top: 1px solid var(--bc-border-subtle);
  border-bottom: 1px solid var(--bc-border-subtle);
}

.bc-stats__grid {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bc-stats__card {
  background: rgba(30, 58, 95, 0.2);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.bc-stats__card:hover {
  border-color: rgba(2, 132, 199, 0.4);
}

.bc-stats__value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--bc-accent-light);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  display: block;
}

.bc-stats__label {
  font-size: 13px;
  color: var(--bc-text-secondary);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .bc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .bc-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   9. FEATURES  (bc-features — C-alternating variant)
   ============================================================ */
.bc-features {
  padding: 96px 0;
  background: var(--bc-bg-dark);
}

.bc-features__header {
  max-width: var(--bc-container-max);
  margin: 0 auto 64px;
  padding: 0 24px;
}

.bc-features__row {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.bc-features__row:last-of-type {
  margin-bottom: 0;
}

.bc-features__row--reverse {
  direction: rtl;
}

.bc-features__row--reverse > * {
  direction: ltr;
}

.bc-features__visual {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  aspect-ratio: 3 / 2;
}

.bc-features__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-features__body {
  display: flex;
  flex-direction: column;
}

.bc-features__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 14px;
}

.bc-features__text {
  font-size: 16px;
  color: var(--bc-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bc-features__mono-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bc-accent-light);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 4px;
  padding: 4px 10px;
}

@media (max-width: 900px) {
  .bc-features__row {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .bc-features__row--reverse {
    direction: ltr;
  }
  .bc-features__visual {
    order: -1;
  }
}

/* ============================================================
   10. PROCESS  (bc-process — A-numbered variant)
   ============================================================ */
.bc-process {
  padding: 96px 0;
  background: var(--bc-bg-surface);
}

.bc-process__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-process__header {
  margin-bottom: 56px;
}

.bc-process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step-counter;
}

.bc-process__step {
  background: rgba(30, 58, 95, 0.18);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s;
}

.bc-process__step:hover {
  border-color: rgba(2, 132, 199, 0.35);
}

.bc-process__number {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  color: rgba(2, 132, 199, 0.25);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.bc-process__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 10px;
}

.bc-process__text {
  font-size: 15px;
  color: var(--bc-text-secondary);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .bc-process__list {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

/* ============================================================
   11. TEAM  (bc-team — A-grid variant)
   ============================================================ */
.bc-team {
  padding: 96px 0;
  background: var(--bc-bg-dark);
}

.bc-team__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-team__header {
  margin-bottom: 52px;
}

.bc-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bc-team__card {
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.bc-team__card:hover {
  border-color: rgba(2, 132, 199, 0.35);
  transform: translateY(-3px);
}

.bc-team__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bc-team__card-body {
  padding: 20px 24px 24px;
}

.bc-team__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 4px;
}

.bc-team__role {
  font-size: 14px;
  color: var(--bc-accent-light);
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 12px;
}

.bc-team__bio {
  font-size: 14px;
  color: var(--bc-text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .bc-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .bc-team__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   12. CTA BANNER  (bc-cta — A-banner variant)
   ============================================================ */
.bc-cta {
  background: linear-gradient(135deg, var(--bc-bg-surface) 0%, rgba(2, 132, 199, 0.08) 100%);
  border-top: 1px solid var(--bc-border-subtle);
  border-bottom: 1px solid var(--bc-border-subtle);
  padding: 88px 0;
}

.bc-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.bc-cta__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 16px;
}

.bc-cta__sub {
  font-size: 18px;
  color: var(--bc-text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.bc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   13. FOOTER  (bc-footer — A-4col variant)
   ============================================================ */
.bc-footer {
  background: #020710;
  border-top: 1px solid var(--bc-border-subtle);
  padding: 72px 0 0;
}

.bc-footer__grid {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.bc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.bc-footer__logo img {
  height: 28px;
  width: auto;
}

.bc-footer__tagline {
  font-size: 14px;
  color: var(--bc-text-secondary);
  line-height: 1.55;
  max-width: 280px;
}

.bc-footer__col {
  display: flex;
  flex-direction: column;
}

.bc-footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-text-secondary);
  margin-bottom: 16px;
}

.bc-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-footer__link {
  font-size: 14px;
  color: rgba(148, 163, 184, 0.8);
  text-decoration: none;
  transition: color 0.15s;
}

.bc-footer__link:hover {
  color: var(--bc-text-primary);
  text-decoration: none;
}

.bc-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(148, 163, 184, 0.8);
  margin-bottom: 10px;
}

.bc-footer__contact-item i {
  margin-top: 2px;
  color: var(--bc-accent);
  font-size: 13px;
  flex-shrink: 0;
}

.bc-footer__bottom {
  max-width: var(--bc-container-max);
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(30, 58, 95, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bc-footer__copy {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.55);
}

.bc-footer__legal {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-footer__legal a {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.bc-footer__legal a:hover {
  color: var(--bc-text-secondary);
}

@media (max-width: 960px) {
  .bc-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 580px) {
  .bc-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   14. COOKIE BANNER  (bc-cookie — bottom-bar variant)
   ============================================================ */
.bc-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #0D1B2E;
  border-top: 1px solid rgba(30, 58, 95, 0.8);
  padding: 18px 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

.bc-cookie[hidden] {
  display: none !important;
}

.bc-cookie__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bc-cookie__text {
  font-size: 14px;
  color: var(--bc-text-secondary);
  flex: 1;
  min-width: 260px;
  line-height: 1.5;
}

.bc-cookie__text a {
  color: var(--bc-accent-light);
  text-decoration: underline;
}

.bc-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.bc-cookie__accept {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--bc-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: filter 0.18s;
}

.bc-cookie__accept:hover {
  filter: brightness(1.12);
}

.bc-cookie__dismiss {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(226, 232, 240, 0.4);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.18s, border-color 0.18s;
}

.bc-cookie__dismiss:hover {
  border-color: var(--bc-accent);
  color: var(--bc-accent);
  background: rgba(2, 132, 199, 0.05);
}

@media (max-width: 600px) {
  .bc-cookie__actions {
    width: 100%;
  }
  .bc-cookie__accept,
  .bc-cookie__dismiss {
    flex: 1;
    justify-content: center;
  }
}

/* ============================================================
   15. PAGE HERO (sub-pages)
   ============================================================ */
.bc-page-hero {
  background: radial-gradient(
      ellipse at 20% 60%,
      rgba(2, 132, 199, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(34, 211, 238, 0.08) 0%,
      transparent 50%
    ),
    #050A14;
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--bc-border-subtle);
}

.bc-page-hero__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-accent-light);
  margin-bottom: 14px;
  display: block;
}

.bc-page-hero__title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.bc-page-hero__sub {
  font-size: 18px;
  color: var(--bc-text-secondary);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   16. ABOUT PAGE SECTIONS
   ============================================================ */
.bc-about {
  padding: 88px 0;
  background: var(--bc-bg-dark);
}

.bc-about__grid {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: start;
}

.bc-about__body {
  color: var(--bc-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.bc-about__body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin: 40px 0 14px;
}

.bc-about__body h2:first-child {
  margin-top: 0;
}

.bc-about__body p {
  margin-bottom: 18px;
}

.bc-about__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bc-about__mission {
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  border-left: 3px solid var(--bc-accent);
  border-radius: 0 10px 10px 0;
  padding: 28px 28px;
}

.bc-about__mission-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bc-accent-light);
  margin-bottom: 10px;
}

.bc-about__mission-text {
  font-size: 15px;
  color: var(--bc-text-primary);
  line-height: 1.65;
}

.bc-about__values {
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 10px;
  padding: 28px 28px;
}

.bc-about__values-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bc-accent-light);
  margin-bottom: 16px;
}

.bc-about__value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.4);
  font-size: 14px;
  color: var(--bc-text-secondary);
}

.bc-about__value-item:last-child {
  border-bottom: none;
}

.bc-about__value-item i {
  color: var(--bc-accent);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .bc-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   17. PRODUCT PAGE SECTIONS
   ============================================================ */

/* Problem section */
.bc-problem {
  padding: 88px 0;
  background: var(--bc-bg-surface);
}

.bc-problem__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.bc-problem__body {
  font-size: 16px;
  color: var(--bc-text-secondary);
  line-height: 1.75;
}

.bc-problem__body p {
  margin-bottom: 16px;
}

.bc-problem__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bc-problem__stat-card {
  background: rgba(30, 58, 95, 0.18);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 8px;
  padding: 20px 22px;
}

.bc-problem__stat-value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--bc-accent-light);
  margin-bottom: 4px;
  display: block;
}

.bc-problem__stat-label {
  font-size: 13px;
  color: var(--bc-text-secondary);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .bc-problem__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* How it works section */
.bc-how-it-works {
  padding: 96px 0;
  background: var(--bc-bg-dark);
}

.bc-how-it-works__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-how-it-works__diagram {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
}

.bc-how-it-works__stage {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}

.bc-how-it-works__stage-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(2, 132, 199, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-accent);
  flex-shrink: 0;
}

.bc-how-it-works__stage-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bc-accent-light);
  margin-bottom: 6px;
}

.bc-how-it-works__stage-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 8px;
}

.bc-how-it-works__stage-text {
  font-size: 15px;
  color: var(--bc-text-secondary);
  line-height: 1.65;
}

.bc-how-it-works__visual {
  margin-top: 52px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bc-border-subtle);
  aspect-ratio: 16 / 9;
  max-width: 860px;
}

.bc-how-it-works__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Integrations section */
.bc-integrations {
  padding: 72px 0;
  background: var(--bc-bg-surface);
  border-top: 1px solid var(--bc-border-subtle);
  border-bottom: 1px solid var(--bc-border-subtle);
}

.bc-integrations__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-integrations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.bc-integrations__item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bc-text-secondary);
  background: rgba(30, 58, 95, 0.2);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 6px;
  padding: 8px 14px;
  transition: border-color 0.2s, color 0.2s;
}

.bc-integrations__item:hover {
  border-color: rgba(2, 132, 199, 0.35);
  color: var(--bc-text-primary);
}

/* Target customer section */
.bc-target {
  padding: 88px 0;
  background: var(--bc-bg-dark);
}

.bc-target__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-target__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bc-target__card {
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 10px;
  padding: 28px 24px;
}

.bc-target__card-icon {
  font-size: 20px;
  color: var(--bc-accent);
  margin-bottom: 14px;
}

.bc-target__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 10px;
}

.bc-target__card-text {
  font-size: 14px;
  color: var(--bc-text-secondary);
  line-height: 1.65;
}

.bc-target__not-for {
  margin-top: 40px;
  background: rgba(30, 58, 95, 0.15);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--bc-text-secondary);
  line-height: 1.6;
}

.bc-target__not-for strong {
  color: var(--bc-text-primary);
}

@media (max-width: 900px) {
  .bc-target__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

/* ============================================================
   18. BLOG READING WIDTH (HARD RULE — verify_site.py check)
   ============================================================ */
.bc-post {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.bc-post__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--bc-text-secondary);
}

.bc-post__body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-top: 48px;
  margin-bottom: 20px;
}

.bc-post__body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-top: 36px;
  margin-bottom: 16px;
}

.bc-post__body p {
  margin-bottom: 24px;
}

/* ============================================================
   19. SECTION STAGE FOCUS (about.html)
   ============================================================ */
.bc-stage {
  padding: 72px 0;
  background: var(--bc-bg-surface);
  border-top: 1px solid var(--bc-border-subtle);
  border-bottom: 1px solid var(--bc-border-subtle);
}

.bc-stage__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bc-stage__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-accent-light);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.bc-stage__headline {
  font-size: 28px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 16px;
}

.bc-stage__text {
  font-size: 16px;
  color: var(--bc-text-secondary);
  line-height: 1.7;
}

.bc-stage__facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bc-stage__fact {
  background: rgba(30, 58, 95, 0.18);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bc-stage__fact i {
  color: var(--bc-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.bc-stage__fact-text {
  font-size: 14px;
  color: var(--bc-text-secondary);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .bc-stage__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
   20. FOUNDING STORY IMAGE
   ============================================================ */
.bc-origin-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--bc-border-subtle);
  aspect-ratio: 16 / 9;
}

.bc-origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   21. INSIGHTS INDEX PAGE (bc-insights)
   ============================================================ */
.bc-insights-hero {
  padding: 100px 0 56px;
  background: var(--bc-bg-dark);
  border-bottom: 1px solid var(--bc-border-subtle);
}

.bc-insights-hero__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-insights-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bc-accent-light);
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.05);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.bc-insights-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 16px;
}

.bc-insights-hero__sub {
  font-size: 17px;
  color: var(--bc-text-secondary);
  max-width: 600px;
  line-height: 1.65;
}

.bc-insights {
  padding: 72px 0 96px;
  background: var(--bc-bg-dark);
}

.bc-insights__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-insights__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bc-insights__list > li {
  list-style: none;
}

.bc-insights__card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.bc-insights__card:hover {
  border-color: rgba(2, 132, 199, 0.35);
  transform: translateY(-2px);
}

.bc-insights__thumb-link {
  flex-shrink: 0;
  display: block;
  width: 280px;
  min-width: 280px;
}

.bc-insights__thumb-link img {
  width: 280px;
  height: 187px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.bc-insights__body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.bc-insights__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bc-insights__category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bc-accent-light);
  background: rgba(34, 211, 238, 0.07);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 4px;
  padding: 3px 9px;
}

.bc-insights__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bc-text-secondary);
}

.bc-insights__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bc-text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.bc-insights__title a {
  color: var(--bc-text-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.bc-insights__title a:hover {
  color: var(--bc-accent-light);
  text-decoration: none;
}

.bc-insights__excerpt {
  font-size: 15px;
  color: var(--bc-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bc-insights__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-accent);
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.15s, gap 0.15s;
}

.bc-insights__link:hover {
  color: var(--bc-accent-light);
  gap: 10px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .bc-insights__card {
    flex-direction: column;
    gap: 0;
  }
  .bc-insights__thumb-link {
    width: 100%;
    min-width: 0;
  }
  .bc-insights__thumb-link img {
    width: 100%;
    height: 200px;
  }
  .bc-insights__body {
    padding: 24px;
  }
}

/* ============================================================
   22. BLOG ARTICLE READING WIDTH (MANDATORY — verify_site.py)
   ============================================================ */
.c-article,
.c-article__container,
.c-post__body,
.c-post,
.c-blog-post,
.blog-article,
.blog-article-body,
.blog-article-content,
.blog-post,
.blog-post-body,
.article-body,
.article-content,
.post-content,
.post-body,
.container-narrow,
.reading-column {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.c-article img,
.c-article__container img,
.c-post__body img,
.blog-article-body img,
.blog-post img,
.article-body img,
.article-content img,
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 24px auto 32px;
}

.c-article h2,
.c-post__body h2,
.blog-article-body h2,
.blog-post h2,
.article-body h2,
.post-content h2 { margin-top: 48px; margin-bottom: 20px; }

.c-article h3,
.c-post__body h3,
.blog-article-body h3,
.blog-post h3,
.article-body h3,
.post-content h3 { margin-top: 36px; margin-bottom: 16px; }

/* ============================================================
   23. ARTICLE DETAIL PAGE
   ============================================================ */
.bc-post-hero {
  padding: 100px 0 56px;
  background: var(--bc-bg-dark);
  border-bottom: 1px solid var(--bc-border-subtle);
}

.bc-post__header {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.bc-post__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-accent-light);
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.05);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.bc-post__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--bc-text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.bc-post__sub {
  font-size: 18px;
  color: var(--bc-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.bc-post__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bc-text-secondary);
  flex-wrap: wrap;
}

.bc-post__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bc-post-cover {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.bc-post-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--bc-border-subtle);
}

.bc-post-content {
  padding: 56px 0 80px;
  background: var(--bc-bg-dark);
}

/* Article nav (prev/next) */
.bc-article-nav {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 32px 24px 0;
  border-top: 1px solid var(--bc-border-subtle);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.bc-article-nav__prev,
.bc-article-nav__next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-accent);
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.15s;
}

.bc-article-nav__prev:hover,
.bc-article-nav__next:hover {
  color: var(--bc-accent-light);
  text-decoration: none;
}

/* ============================================================
   24. RELATED ARTICLES (HARD RULE — must ship grid + image rules)
   ============================================================ */
.bc-related {
  padding: 72px 0 88px;
  background: var(--bc-bg-surface);
  border-top: 1px solid var(--bc-border-subtle);
}

.bc-related__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-related__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 32px;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}

.bc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-related__card {
  background: var(--bc-bg-dark);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.bc-related__card:hover {
  border-color: rgba(2, 132, 199, 0.35);
  transform: translateY(-3px);
}

.bc-related__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.bc-related__body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-related__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bc-accent-light);
  margin-bottom: 8px;
}

.bc-related__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}

.bc-related__title a {
  color: var(--bc-text-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.bc-related__title a:hover {
  color: var(--bc-accent-light);
}

.bc-related__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bc-text-secondary);
  margin-top: auto;
}

@media (max-width: 900px) {
  .bc-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bc-related__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   25. LEGAL PAGES
   ============================================================ */
.bc-legal-hero {
  padding: 100px 0 48px;
  background: var(--bc-bg-dark);
  border-bottom: 1px solid var(--bc-border-subtle);
}

.bc-legal-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.bc-legal-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bc-text-secondary);
  margin-bottom: 14px;
}

.bc-legal-hero__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-bottom: 12px;
}

.bc-legal-hero__date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bc-text-secondary);
}

.bc-legal-body {
  padding: 56px 0 88px;
  background: var(--bc-bg-dark);
}

.bc-legal-body__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 16px;
  color: var(--bc-text-secondary);
  line-height: 1.75;
}

.bc-legal-body__inner h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
}

.bc-legal-body__inner h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-text-primary);
  margin-top: 28px;
  margin-bottom: 12px;
}

.bc-legal-body__inner p {
  margin-bottom: 20px;
}

.bc-legal-body__inner ul,
.bc-legal-body__inner ol {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}

.bc-legal-body__inner li {
  margin-bottom: 8px;
}

.bc-legal-body__inner a {
  color: var(--bc-accent);
}

.bc-legal-body__inner a:hover {
  color: var(--bc-accent-light);
}

.bc-legal-body__inner strong {
  color: var(--bc-text-primary);
  font-weight: 600;
}

/* Modifier: sticky nav (position:sticky, used on sub-pages) */
.bc-nav--sticky {
  position: sticky;
  top: 0;
}

/* Body modifier for sub-pages (adds top-padding clearance if needed) */
.page-sub {
  padding-top: 0;
}

/* Contact form element (wraps contact fields inside bc-contact__form-panel) */
.bc-contact__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* About page sidebar blocks (compact versions shown inside founding-story sidebar) */
.bc-about__mission-block {
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  border-left: 3px solid var(--bc-accent);
  border-radius: 0 10px 10px 0;
  padding: 24px 24px;
  margin-bottom: 20px;
}

.bc-about__values-block {
  background: var(--bc-bg-surface);
  border: 1px solid var(--bc-border-subtle);
  border-radius: 10px;
  padding: 24px 24px;
}

/* Full-width mission section (canonical id="mission") */
.bc-about-mission-full {
  background: var(--bc-bg-surface);
  border-top: 1px solid var(--bc-border-subtle);
  border-bottom: 1px solid var(--bc-border-subtle);
  padding: 56px 0;
}

.bc-about-mission-full__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-about-mission-full__text {
  font-size: 20px;
  font-weight: 600;
  color: var(--bc-text-primary);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 820px;
}

.bc-about-mission-full__context {
  font-size: 15px;
  color: var(--bc-text-secondary);
  line-height: 1.75;
  max-width: 820px;
}

/* Full-width values section (canonical id="values") */
.bc-about-values-full {
  padding: 56px 0;
}

.bc-about-values-full__inner {
  max-width: var(--bc-container-max);
  margin: 0 auto;
  padding: 0 24px;
}
