/* ============================================================
   bootcamp-online.css — additions for the ONLINE course landing
   page (ai-bootcamp-online.html) and the cross-link bar that sits
   on the in-person page (ai-bootcamp.html).

   Kept in a separate file on purpose: bootcamp.css is shared by
   five pages, so touching it forces a cache-buster bump on all of
   them. Everything here uses the bo- prefix and the design tokens
   already defined by .bc-page.
   ============================================================ */

/* ---- live badge in the hero eyebrow ---- */
.bc-page .bo-eyebrow--live {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.bc-page .bo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, .55);
  animation: bo-pulse 1.8s ease-out infinite;
  flex: none;
}
@keyframes bo-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 77, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

/* ---- day 1 vs days 2-5 comparison ---- */
.bc-page .bo-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.bc-page .bo-vs__col {
  background: var(--bc-surface);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  padding: 1.7rem 1.6rem;
}
.bc-page .bo-vs__col--hot {
  border-color: rgba(51, 184, 159, .42);
  background: linear-gradient(180deg, rgba(51, 184, 159, .07), transparent 60%), var(--bc-surface);
}
.bc-page .bo-vs__lbl {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--bc-dim);
  margin-bottom: 1.1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--bc-line);
}
.bc-page .bo-vs__col--hot .bo-vs__lbl { color: var(--bc-brand-lt); }
.bc-page .bo-vs__col--hot .bc-list li b { color: var(--bc-text); font-weight: 800; }

/* ---- numbered "how it runs" steps ---- */
.bc-page .bo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
}
.bc-page .bo-step {
  background: var(--bc-surface);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  padding: 1.6rem 1.4rem;
  position: relative;
}
.bc-page .bo-step__n {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.05rem;
  color: #041712;
  background: linear-gradient(135deg, var(--bc-brand-lt), var(--bc-brand));
  margin-bottom: .9rem;
}
.bc-page .bo-step__t { font-size: 1.05rem; font-weight: 800; margin: 0 0 .35rem; }
.bc-page .bo-step__d { font-size: .92rem; color: var(--bc-dim); margin: 0; line-height: 1.7; }

/* ---- generic surface card (audience block) ---- */
.bc-page .bo-card {
  background: var(--bc-surface);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  padding: 1.8rem 1.7rem;
}
.bc-page .bo-card__t { font-size: 1.2rem; font-weight: 900; margin: 0 0 1.1rem; }

/* ---- VPN highlight ---- */
.bc-page .bo-vpn {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 2rem;
  background: var(--bc-surface);
  border: 1px solid rgba(51, 184, 159, .32);
  border-radius: var(--bc-radius);
  padding: 1.7rem 1.6rem;
}
.bc-page .bo-vpn__ico { font-size: 1.9rem; line-height: 1.2; flex: none; }

/* ---- payment methods ---- */
.bc-page .bo-pay {
  max-width: 620px;
  margin: 2.2rem auto 0;
  text-align: center;
  background: var(--bc-surface);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  padding: 1.5rem 1.4rem;
}
.bc-page .bo-pay__lbl {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--bc-dim);
  margin-bottom: 1rem;
}
.bc-page .bo-pay__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}
.bc-page .bo-pay__item {
  border: 1px solid var(--bc-line-str);
  border-radius: 999px;
  padding: .55rem 1.2rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--bc-text);
  background: var(--bc-surface-2);
}
.bc-page .bo-pay__note {
  font-size: .88rem;
  color: var(--bc-dim);
  line-height: 1.75;
  margin: 1rem 0 0;
}

/* ---- cross-link bar (used on BOTH landing pages) ---- */
.bc-page .bo-switch {
  background: linear-gradient(90deg, rgba(51, 184, 159, .16), rgba(51, 184, 159, .04));
  border-block: 1px solid rgba(51, 184, 159, .28);
}
.bc-page .bo-switch__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .55rem 1rem;
  padding: .9rem 0;
  text-align: center;
}
.bc-page .bo-switch__txt {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bc-text);
  margin: 0;
}
.bc-page .bo-switch__txt b { color: var(--bc-brand-lt); font-weight: 800; }
.bc-page .bo-switch__lnk {
  font-size: .95rem;
  font-weight: 800;
  color: var(--bc-brand-lt);
  border-bottom: 1px solid rgba(79, 227, 196, .45);
  white-space: nowrap;
}
.bc-page .bo-switch__lnk:hover { color: var(--bc-text); border-color: var(--bc-text); }

@media (max-width: 767px) {
  .bc-page .bo-vs { grid-template-columns: 1fr; }
  .bc-page .bo-vpn { flex-direction: column; gap: .8rem; }
  .bc-page .bo-switch__txt { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .bc-page .bo-dot { animation: none; }
}
