:root {
  --bc-bg: #0a0e1a;
  --bc-bg2: #0f1526;
  --bc-surface: #141c30;
  --bc-surface2: #1a2440;
  --bc-border: #26315a;
  --bc-violet: #7c5cff;
  --bc-violet2: #a78bfa;
  --bc-gold: #ffb648;
  --bc-gold2: #ffd28a;
  --bc-emerald: #34d399;
  --bc-red: #fb7185;
  --bc-sky: #38bdf8;
  --bc-text: #eef1fb;
  --bc-text2: #a6b0d4;
  --bc-text3: #8490bd;
  --bc-radius: 16px;
  --bc-radius-sm: 10px;
  --bc-shadow: 0 10px 40px rgba(0,0,0,.35);
  --bc-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --bc-mono: 'Cascadia Mono', 'Segoe UI Mono', Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--bc-font);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(124,92,255,.14), transparent 60%),
    radial-gradient(900px 400px at -10% 20%, rgba(56,189,248,.08), transparent 55%),
    var(--bc-bg);
  color: var(--bc-text);
  line-height: 1.55;
  min-height: 100vh;
  padding-bottom: 88px;
  -webkit-tap-highlight-color: transparent;
}

a { color: var(--bc-violet2); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

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

.bc-wrap { max-width: 720px; margin: 0 auto; padding: 0 1rem; }

/* ─── Hero art: orb, mascot, starfield ─── */
.bc-orb-stage { position: relative; width: 100%; height: 190px; margin: 0 0 .4rem; pointer-events: none; overflow: hidden; }
.bc-orb-stage .bc-starfield { position: absolute; inset: 0; width: 100%; height: 100%; }
.bc-orb-wrap {
  position: absolute; left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
}
.bc-orb {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 26px var(--orb-c));
  animation: bcOrbFloat 6s ease-in-out infinite;
}
@keyframes bcOrbFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-9px) rotate(4deg); }
}
.bc-orb-stage .bc-mascot-wrap {
  position: absolute; right: 6%; bottom: 4%;
  width: 84px; height: 84px;
  animation: bcMascotBob 4.5s ease-in-out infinite;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
}
@keyframes bcMascotBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.bc-orb-stage .bc-mascot { width: 100%; height: 100%; }
.bc-orb-3d { position: absolute; inset: 0; margin: auto; }
.bc-orb-live .bc-orb { opacity: 0; }

@media (max-width: 380px) {
  .bc-orb-stage { height: 160px; }
  .bc-orb-wrap { width: 118px; height: 118px; }
  .bc-orb-stage .bc-mascot-wrap { width: 62px; height: 62px; right: 3%; bottom: 2%; }
}

/* ─── Cycle chips ─── */
.bc-cycle-chip {
  display: inline-flex; vertical-align: middle;
  margin-right: .35rem;
}
.bc-cycle-chip .bc-cycle-svg { width: 16px; height: 16px; color: var(--bc-gold); }
.bc-day .bc-day-meta .bc-cycle-chip .bc-cycle-svg { width: 13px; height: 13px; color: var(--bc-text3); }

/* ─── Day-1 score prompt / track banner ─── */
.bc-score-prompt {
  background: linear-gradient(135deg, rgba(124,92,255,.18), var(--bc-surface));
  border: 1px solid var(--bc-violet);
  border-radius: var(--bc-radius);
  padding: 1rem 1.1rem;
  margin: 0 0 1.2rem;
}
.bc-score-prompt-head { font-weight: 900; font-size: .95rem; color: var(--bc-text); }
.bc-score-prompt-sub { font-size: .8rem; color: var(--bc-text2); margin: .4rem 0 .7rem; }
.bc-score-prompt-sub b { color: var(--bc-gold); }
.bc-score-prompt-row { display: flex; gap: .6rem; }
.bc-score-prompt-row input {
  flex: 1; min-width: 0;
  padding: .6rem .7rem; font-size: 1rem; font-weight: 800;
  background: #0a1020; color: var(--bc-text);
  border: 1px solid var(--bc-border); border-radius: 10px; text-align: center;
}
.bc-score-prompt-btn {
  flex: none;
  padding: .6rem 1rem; font-size: .85rem; font-weight: 900;
  background: linear-gradient(90deg, var(--bc-violet), #9d7cff);
  color: #fff; border: none; border-radius: 10px;
}
.bc-track-banner {
  display: flex; align-items: center; gap: .7rem;
  background: var(--bc-surface);
  border: 1px solid rgba(52,211,153,.45);
  border-radius: var(--bc-radius);
  padding: .8rem 1rem;
  margin: 0 0 1.2rem;
}
.bc-track-banner.bc-track-b { border-color: rgba(255,182,72,.5); }
.bc-track-chip {
  flex: none;
  font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(52,211,153,.15); color: var(--bc-emerald);
  border: 1px solid rgba(52,211,153,.4);
  padding: .25rem .6rem; border-radius: 999px;
}
.bc-track-b .bc-track-chip { background: rgba(255,182,72,.14); color: var(--bc-gold); border-color: rgba(255,182,72,.45); }
.bc-track-text { font-size: .8rem; color: var(--bc-text2); line-height: 1.45; }

/* ─── SS2 Head-Start peek ─── */
.bc-ss2-peek {
  background: linear-gradient(135deg, var(--bc-surface), var(--bc-surface2));
  border: 1px dashed var(--bc-border); border-radius: var(--bc-radius);
  padding: .9rem 1rem; margin: 0 0 1.2rem;
  font-size: .82rem; color: var(--bc-text2); line-height: 1.5;
}
.bc-ss2-peek b { color: var(--bc-gold); }
.bc-ss2-links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .6rem; }
.bc-ss2-link {
  font-size: .78rem; font-weight: 800; color: var(--bc-violet2);
  border: 1px solid rgba(124,92,255,.4); border-radius: 999px;
  padding: .4rem .75rem; text-decoration: none;
}

/* ─── SVG badge / career art ─── */
.bc-badge-svg { width: 44px; height: 44px; display: block; margin: 0 auto .3rem; color: var(--badge-c, var(--bc-gold)); filter: grayscale(1); opacity: .45; }
.bc-badge-svg.bc-earned { filter: none; opacity: 1; animation: bcBadgePop .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes bcBadgePop { 0% { transform: scale(.4); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }
.bc-career-svg { width: 24px; height: 24px; color: var(--bc-violet2); }
.bc-mission.bc-brain .bc-career-svg { color: var(--bc-sky); }
.bc-mission.bc-tech .bc-career-svg { color: var(--bc-violet2); }
.bc-mission.bc-discovery .bc-career-svg { color: var(--bc-gold); }

/* ─── Motion: entrance transitions ─── */
.bc-view-enter { animation: bcViewIn .35s cubic-bezier(.4,0,.2,1) both; }
@keyframes bcViewIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.bc-view-enter .bc-mission, .bc-view-enter .bc-career, .bc-view-enter .bc-prompt, .bc-view-enter .bc-day, .bc-view-enter .bc-badge {
  animation: bcItemIn .4s cubic-bezier(.34,1.3,.64,1) both;
}
.bc-view-enter .bc-mission:nth-child(3) { animation-delay: .05s; }
.bc-view-enter .bc-mission:nth-child(4) { animation-delay: .1s; }
.bc-view-enter .bc-mission:nth-child(5) { animation-delay: .15s; }
@keyframes bcItemIn { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
.bc-day.bc-day-now { animation: bcNowPulse 2.6s ease-in-out infinite; }
@keyframes bcNowPulse { 0%, 100% { box-shadow: 0 0 0 1px rgba(124,92,255,.4), 0 8px 24px rgba(124,92,255,.18); } 50% { box-shadow: 0 0 0 1px rgba(124,92,255,.7), 0 8px 30px rgba(124,92,255,.35); } }

/* ─── XP bar micro-motion ─── */
.bc-xp-fill { transition: width 1s cubic-bezier(.22,1,.36,1); }
.bc-xp-fill.bc-xp-animate { animation: bcXpFlash 1.2s ease; }
@keyframes bcXpFlash { 0% { filter: brightness(1.6); } 100% { filter: brightness(1); } }

/* ─── Hero art ─── */
.bc-hero {
  padding: 1.6rem 0 .4rem;
  text-align: center;
  position: relative;
}
.bc-hero .bc-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bc-gold);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.bc-hero .bc-eyebrow::before, .bc-hero .bc-eyebrow::after {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bc-gold));
}
.bc-hero .bc-eyebrow::after { background: linear-gradient(90deg, var(--bc-gold), transparent); }
.bc-hero h1 {
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin: .55rem 0 .35rem;
  background: linear-gradient(120deg, #fff 20%, var(--bc-violet2) 55%, var(--bc-gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bc-hero .bc-sub { color: var(--bc-text2); font-size: .92rem; max-width: 480px; margin: 0 auto; }
.bc-hero .bc-sub b { color: var(--bc-text); }

/* ─── Stats row ─── */
.bc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin: 1.2rem 0 .9rem;
}
.bc-stat {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-sm);
  padding: .65rem .4rem;
  text-align: center;
}
.bc-stat .bc-stat-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--bc-gold);
  line-height: 1.1;
}
.bc-stat .bc-stat-num small { font-size: .8rem; font-weight: 800; }
.bc-stat .bc-stat-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bc-text3);
  font-weight: 700;
  margin-top: .15rem;
}
.bc-stat.bc-stat-violet .bc-stat-num { color: var(--bc-violet2); }
.bc-stat.bc-stat-emerald .bc-stat-num { color: var(--bc-emerald); }
.bc-stat.bc-stat-red .bc-stat-num { color: var(--bc-red); }

/* ─── XP card ─── */
.bc-xp-card {
  background: linear-gradient(135deg, var(--bc-surface2), var(--bc-surface));
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1rem 1.1rem;
  margin: 0 0 1.2rem;
  box-shadow: var(--bc-shadow);
}
.bc-xp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .6rem;
}
.bc-xp-level {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.bc-level-orb {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.05rem;
  background: radial-gradient(circle at 30% 30%, var(--bc-violet2), var(--bc-violet));
  box-shadow: 0 0 22px rgba(124,92,255,.55);
  border: 2px solid rgba(255,255,255,.25);
}
.bc-level-orb.bc-locked { filter: grayscale(1); opacity: .5; }
.bc-level-name { font-size: .78rem; color: var(--bc-text2); font-weight: 700; }
.bc-level-name .bc-level-num { display: block; font-size: 1rem; color: var(--bc-text); font-weight: 900; }
.bc-xp-total { font-size: .78rem; color: var(--bc-text3); font-weight: 700; text-align: right; line-height: 1.3; }
.bc-xp-total b { color: var(--bc-gold); font-size: .95rem; }
.bc-xp-track {
  height: 12px;
  border-radius: 999px;
  background: #0a1020;
  border: 1px solid var(--bc-border);
  overflow: hidden;
  position: relative;
}
.bc-xp-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bc-violet), var(--bc-gold));
  transition: width .7s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.bc-xp-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: bcShimmer 2.2s linear infinite;
}
@keyframes bcShimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.bc-xp-caption {
  display: flex;
  justify-content: space-between;
  margin-top: .35rem;
  font-size: .68rem;
  color: var(--bc-text3);
  font-weight: 700;
}

/* ─── Section titles ─── */
.bc-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.4rem 0 .7rem;
}
.bc-sec h2 {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bc-text2);
}
.bc-sec .bc-sec-link { font-size: .75rem; font-weight: 700; color: var(--bc-gold); }

/* ─── Focus visibility ─── */
:focus-visible {
  outline: 2px solid var(--bc-gold);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ─── Day map ─── */
.bc-map { display: flex; flex-direction: column; gap: .55rem; }
@media (min-width: 760px) { .bc-map { content-visibility: auto; contain-intrinsic-size: auto 1200px; } }
.bc-day {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-sm);
  padding: .7rem .85rem;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  width: 100%;
  text-align: left;
  color: var(--bc-text);
  font-size: .9rem;
}
.bc-day:active { transform: scale(.985); }
.bc-day .bc-day-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .85rem;
  flex: none;
  background: var(--bc-surface2);
  color: var(--bc-text3);
  border: 1px solid var(--bc-border);
}
.bc-day .bc-day-body { flex: 1; min-width: 0; }
.bc-day .bc-day-title { font-weight: 700; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bc-day .bc-day-meta { font-size: .72rem; color: var(--bc-text3); font-weight: 600; }
.bc-day .bc-day-xp { font-size: .68rem; font-weight: 800; color: var(--bc-gold); flex: none; }
.bc-day.bc-day-now {
  border-color: var(--bc-violet);
  background: linear-gradient(135deg, rgba(124,92,255,.16), var(--bc-surface));
  box-shadow: 0 0 0 1px rgba(124,92,255,.4), 0 8px 24px rgba(124,92,255,.18);
}
.bc-day.bc-day-now .bc-day-num { background: var(--bc-violet); color: #fff; box-shadow: 0 0 14px rgba(124,92,255,.6); }
.bc-day.bc-day-done { border-color: rgba(52,211,153,.4); }
.bc-day.bc-day-done .bc-day-num { background: var(--bc-emerald); color: #06281c; }
.bc-day.bc-day-done .bc-day-xp { color: var(--bc-emerald); }
.bc-day.bc-day-locked { opacity: .62; cursor: default; }
.bc-day.bc-day-locked:active { transform: none; }

.bc-locked-card {
  background: var(--bc-surface);
  border: 1px dashed var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
  margin: .4rem 0 1.2rem;
}
.bc-locked-ico { font-size: 2.2rem; display: block; margin-bottom: .5rem; }
.bc-locked-card p { color: var(--bc-text2); font-size: .88rem; }
.bc-day .bc-boss-tag, .bc-day .bc-lib-tag {
  font-size: .58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .12rem .4rem;
  border-radius: 999px;
  flex: none;
}
.bc-boss-tag { background: rgba(251,113,133,.15); color: var(--bc-red); border: 1px solid rgba(251,113,133,.4); }
.bc-lib-tag { background: rgba(56,189,248,.13); color: var(--bc-sky); border: 1px solid rgba(56,189,248,.4); }

/* ─── Views / nav ─── */
.bc-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,14,26,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--bc-border);
  display: flex;
  padding: .4rem .3rem calc(.4rem + env(safe-area-inset-bottom));
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .bc-bottom-nav { background: #0a0e1a; }
}
.bc-bottom-nav .bc-nav-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--bc-text3);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .45rem .2rem .3rem;
  border-radius: var(--bc-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  text-transform: uppercase;
}
.bc-bottom-nav .bc-nav-btn .bc-nav-ico { font-size: 1.05rem; line-height: 1; }
.bc-bottom-nav .bc-nav-btn.bc-active { color: var(--bc-gold); background: rgba(255,182,72,.08); }

/* ─── Quest journal log box ─── */
.bc-log { margin-top: .7rem; }
.bc-log label { display: block; font-size: .78rem; font-weight: 800; color: var(--bc-gold2); margin-bottom: .35rem; }
.bc-log textarea {
  width: 100%; min-height: 58px; resize: vertical; font-family: var(--bc-font); font-size: .9rem;
  color: var(--bc-text); background: var(--bc-bg2); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-sm); padding: .55rem .65rem; line-height: 1.5;
}
.bc-log textarea:focus-visible { outline: 2px solid var(--bc-gold); outline-offset: 1px; }
.bc-log textarea::placeholder { color: var(--bc-text3); }

/* ─── Journal view ─── */
.bc-jday { margin-bottom: 1.4rem; }
.bc-jday h2 { font-size: .95rem; font-weight: 900; color: var(--bc-gold); margin-bottom: .55rem; }
.bc-jentry {
  background: linear-gradient(135deg, var(--bc-surface), var(--bc-surface2));
  border: 1px solid var(--bc-border); border-radius: var(--bc-radius-sm);
  padding: .8rem .9rem; margin-bottom: .6rem;
}
.bc-jentry-head { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; }
.bc-jentry-head b { font-size: .88rem; color: var(--bc-text); }
.bc-jentry-ts { font-size: .68rem; color: var(--bc-text3); font-weight: 700; white-space: nowrap; }
.bc-jentry-q { font-size: .74rem; color: var(--bc-violet2); font-weight: 700; margin-top: .3rem; }
.bc-jentry-a {
  font-size: .88rem; color: var(--bc-text); margin-top: .25rem; white-space: pre-wrap;
  border-left: 3px solid var(--bc-emerald); padding-left: .6rem; background: rgba(52,211,153,.05);
  border-radius: 0 6px 6px 0;
}
.bc-empty {
  background: var(--bc-surface); border: 1px dashed var(--bc-border); border-radius: var(--bc-radius);
  padding: 1.6rem; text-align: center; color: var(--bc-text2); font-size: .9rem; margin-top: .4rem;
}
.bc-empty b { color: var(--bc-text); }

/* ─── Journal backup & restore ─── */
.bc-backup {
  background: linear-gradient(135deg, var(--bc-surface), var(--bc-surface2));
  border: 1px dashed var(--bc-border); border-radius: var(--bc-radius);
  padding: 1.1rem 1.1rem 1.2rem; margin-top: 1.2rem;
}
.bc-backup h2 { font-size: .95rem; font-weight: 900; color: var(--bc-gold); margin-bottom: .4rem; }
.bc-backup-note { font-size: .78rem; color: var(--bc-text2); margin-bottom: .8rem; }
.bc-backup-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .6rem; }
.bc-backup .bc-copy-btn { margin-top: 0; }
.bc-backup-file { display: inline-flex; align-items: center; cursor: pointer; }
.bc-backup-paste { display: block; margin-top: .8rem; }
.bc-backup-paste span { display: block; font-size: .78rem; font-weight: 800; color: var(--bc-violet2); margin-bottom: .35rem; }
.bc-backup-paste textarea {
  width: 100%; min-height: 84px; resize: vertical; font-family: var(--bc-font); font-size: .8rem;
  color: var(--bc-text); background: var(--bc-bg2); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-sm); padding: .55rem .65rem; line-height: 1.5; margin-bottom: .6rem;
}
.bc-backup-paste textarea:focus-visible { outline: 2px solid var(--bc-gold); outline-offset: 1px; }
.bc-backup-restore { min-width: 130px; }
.bc-backup-restore.bc-armed { color: #fff; background: var(--bc-gold); border-color: var(--bc-gold); }

.bc-nudge { font-size: .8rem; font-weight: 700; padding: .65rem .8rem; border-radius: var(--bc-radius); margin-bottom: 1rem; border: 1px solid var(--bc-border); background: var(--bc-surface2); color: var(--bc-text2); }
.bc-nudge-warn { background: #fff7ed; border-color: #fdba74; color: #9a3412; }


/* ─── Day detail ─── */
.bc-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: none;
  color: var(--bc-text2);
  font-size: .82rem;
  font-weight: 700;
  padding: .5rem 0;
}
.bc-back:hover { color: var(--bc-gold); }
.bc-day-header { margin: .2rem 0 1rem; }
.bc-day-header .bc-eyebrow { color: var(--bc-gold); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.bc-day-header h1 { font-size: 1.55rem; font-weight: 900; margin: .3rem 0 .15rem; letter-spacing: -.01em; }
.bc-day-header p { color: var(--bc-text2); font-size: .88rem; }

.bc-mission {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1rem 1.05rem;
  margin-bottom: .75rem;
}
.bc-mission-head { display: flex; align-items: flex-start; gap: .7rem; }
.bc-mission-ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex: none;
  background: rgba(124,92,255,.14);
  border: 1px solid rgba(124,92,255,.35);
}
.bc-mission.bc-brain .bc-mission-ico { background: rgba(56,189,248,.13); border-color: rgba(56,189,248,.4); }
.bc-mission.bc-tech .bc-mission-ico { background: rgba(124,92,255,.14); border-color: rgba(124,92,255,.4); }
.bc-mission.bc-discovery .bc-mission-ico { background: rgba(255,182,72,.12); border-color: rgba(255,182,72,.4); }
.bc-mission-body { flex: 1; min-width: 0; }
.bc-mission-title { font-weight: 800; font-size: .98rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.bc-mission .bc-tag {
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .1rem .4rem;
  border-radius: 999px;
  background: var(--bc-surface2);
  color: var(--bc-text3);
}
.bc-mission-time { font-size: .72rem; color: var(--bc-text3); font-weight: 700; margin-top: .1rem; }
.bc-mission-desc { font-size: .86rem; color: var(--bc-text2); margin: .5rem 0; }
.bc-mission-desc ul { margin: .4rem 0 .2rem 1.1rem; }
.bc-mission-desc li { margin: .2rem 0; }
.bc-mission-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 800;
  color: var(--bc-gold);
  background: rgba(255,182,72,.08);
  border: 1px solid rgba(255,182,72,.35);
  padding: .4rem .7rem;
  border-radius: 999px;
}
.bc-done-btn {
  margin-top: .8rem;
  width: 100%;
  padding: .7rem;
  border-radius: var(--bc-radius-sm);
  border: 1px solid rgba(52,211,153,.45);
  background: rgba(52,211,153,.1);
  color: var(--bc-emerald);
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: background .2s ease, transform .15s ease;
}
.bc-done-btn:hover { background: rgba(52,211,153,.2); }
.bc-done-btn:active { transform: scale(.98); }
.bc-done-btn.bc-done {
  background: var(--bc-emerald);
  color: #06281c;
  border-color: var(--bc-emerald);
}
.bc-mission.bc-complete { border-color: rgba(52,211,153,.4); background: linear-gradient(135deg, rgba(52,211,153,.06), var(--bc-surface)); }
.bc-mission.bc-complete .bc-mission-title { color: var(--bc-emerald); }

.bc-day-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-top: 1rem;
}
.bc-nav-arrows { display: flex; gap: .5rem; }
.bc-arrow {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  color: var(--bc-text2);
  border-radius: 999px;
  padding: .7rem 1rem;
  font-size: .8rem;
  font-weight: 800;
  min-height: 44px;
}
.bc-arrow:disabled { opacity: .35; cursor: default; }

/* ─── Career cards ─── */
.bc-career {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1rem 1.05rem;
  margin-bottom: .75rem;
  position: relative;
  overflow: hidden;
}
.bc-career::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--bc-violet), var(--bc-gold));
  opacity: .7;
}
.bc-career.bc-spotlight::before { background: linear-gradient(180deg, var(--bc-gold), var(--bc-red)); }
.bc-career .bc-career-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .4rem; }
.bc-career .bc-career-ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  background: var(--bc-surface2);
  border: 1px solid var(--bc-border);
  flex: none;
}
.bc-career h3 { font-size: 1rem; font-weight: 900; }
.bc-career .bc-career-tag { font-size: .68rem; color: var(--bc-text3); font-weight: 700; }
.bc-career p { font-size: .86rem; color: var(--bc-text2); margin: .35rem 0; }
.bc-career .bc-career-yes { color: var(--bc-emerald); font-weight: 800; font-size: .78rem; }
.bc-career .bc-career-no { color: var(--bc-red); font-weight: 800; font-size: .78rem; }
.bc-spotlight-banner {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a0e1a;
  background: linear-gradient(90deg, var(--bc-gold), var(--bc-gold2));
  padding: .2rem .55rem;
  border-radius: 999px;
  margin-bottom: .45rem;
}

/* ─── Prompts ─── */
.bc-prompt {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-sm);
  padding: .9rem 1rem;
  margin-bottom: .7rem;
}
.bc-prompt h4 { font-size: .9rem; font-weight: 800; display: flex; align-items: center; gap: .5rem; }
.bc-prompt .bc-prompt-when { font-size: .72rem; color: var(--bc-text3); font-weight: 700; margin: .15rem 0 .5rem; }
.bc-prompt .bc-prompt-text {
  font-family: var(--bc-mono);
  font-size: .78rem;
  line-height: 1.6;
  color: var(--bc-text2);
  background: var(--bc-bg2);
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  padding: .7rem .8rem;
  white-space: pre-wrap;
  word-break: break-word;
  position: relative;
}
.bc-copy-btn {
  margin-top: .55rem;
  font-size: .72rem;
  font-weight: 800;
  color: var(--bc-gold);
  background: none;
  border: 1px solid rgba(255,182,72,.4);
  padding: .45rem .8rem;
  border-radius: 999px;
  min-height: 40px;
}
.bc-copy-btn.bc-copied { color: var(--bc-emerald); border-color: rgba(52,211,153,.5); }

/* ─── Badges ─── */
.bc-badges { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .6rem; }
.bc-badge {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-sm);
  padding: .8rem .4rem;
  text-align: center;
}
.bc-badge .bc-badge-ico { font-size: 1.7rem; display: block; margin-bottom: .3rem; filter: grayscale(1); opacity: .35; }
.bc-badge .bc-badge-name { font-size: .66rem; font-weight: 800; color: var(--bc-text3); line-height: 1.3; }
.bc-badge.bc-earned { border-color: rgba(255,182,72,.5); background: linear-gradient(160deg, rgba(255,182,72,.12), var(--bc-surface)); }
.bc-badge.bc-earned .bc-badge-name { color: var(--bc-gold); }

/* ─── Toast / confetti ─── */
.bc-toast {
  position: fixed;
  bottom: 84px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bc-surface2);
  border: 1px solid var(--bc-gold);
  color: var(--bc-text);
  font-size: .84rem;
  font-weight: 800;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--bc-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 90;
  max-width: 90vw;
  text-align: center;
}
.bc-toast.bc-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.bc-confetti {
  position: fixed;
  top: -10px;
  width: 8px; height: 14px;
  border-radius: 2px;
  z-index: 95;
  pointer-events: none;
  animation: bcFall linear forwards;
}
@keyframes bcFall { to { transform: translateY(105vh) rotate(720deg); opacity: .9; } }

/* ─── Reset / coach note ─── */
.bc-coach-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin: 1.6rem 0 1rem;
  font-size: .74rem;
  font-weight: 700;
  color: var(--bc-text3);
  background: none;
  border: 1px dashed var(--bc-border);
  border-radius: 999px;
  padding: .5rem;
  width: 100%;
}
.bc-coach-link:hover { color: var(--bc-gold); border-color: rgba(255,182,72,.5); }
.bc-note {
  font-size: .72rem;
  color: var(--bc-text3);
  text-align: center;
  padding: 0 .5rem 1.4rem;
}

@media (min-width: 760px) {
  .bc-wrap { max-width: 860px; }
  .bc-map { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
  .bc-stats { max-width: 560px; margin-left: auto; margin-right: auto; }
  .bc-badges { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

@media print {
  body { background: #fff; color: #111; padding: 0; }
  .bc-bottom-nav, .bc-toast, .bc-confetti { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* ── Verified mock pipeline + climb chart ───────────────────── */
.bc-verified-note {
  font-size: .72rem;
  color: #34d399;
  margin: .45rem .2rem 0;
}
.bc-verified-note b { color: #a7f3d0; }
.bc-climb-card {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--bc-border);
  border-radius: 14px;
  padding: .7rem .85rem .6rem;
  max-width: 560px;
  margin: .55rem auto 0;
}
.bc-climb-head {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--bc-text2);
  margin-bottom: .35rem;
}
.bc-climb-head span { color: var(--bc-text3); }
.bc-climb-warn {
  font-size: .62rem;
  color: var(--bc-gold);
  border: 1px solid rgba(255,182,72,.4);
  border-radius: 999px;
  padding: .05rem .4rem;
}
.bc-spark { width: 100%; height: 52px; display: block; }
.bc-spark-line {
  fill: none;
  stroke: #34d399;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bc-spark-pass {
  stroke: var(--bc-gold);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  opacity: .75;
}
.bc-spark-dot { fill: #0a0e1a; stroke: #34d399; stroke-width: 2; }
.bc-spark-last { fill: #34d399; }
.bc-climb-goal {
  display: block;
  text-align: right;
  font-size: .62rem;
  color: var(--bc-gold);
  opacity: .8;
  margin-top: .25rem;
}

/* ── Wrong-Answer Gym ───────────────────────────────────────── */
.bc-gym-card {
  display: block;
  max-width: 560px;
  margin: .55rem auto 0;
  padding: .7rem .9rem;
  border: 1px solid rgba(52, 211, 153, .4);
  background: rgba(52, 211, 153, .07);
  border-radius: 14px;
  color: var(--bc-text1);
  text-decoration: none;
  font-size: .8rem;
}
.bc-gym-card b { color: #34d399; }
.bc-gym-card span { display: block; color: var(--bc-text2); font-size: .72rem; margin-top: .15rem; }
.bc-gym-card:hover { text-decoration: none; border-color: rgba(52, 211, 153, .8); }
.bc-gym-ok { border-style: dashed; }
.bc-gym-stage {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  padding: 1rem;
}
.bc-gym-meta { font-size: .7rem; color: var(--bc-text3); margin-bottom: .6rem; }
.bc-gym-topic {
  color: #34d399;
  border: 1px solid rgba(52,211,153,.4);
  border-radius: 999px;
  padding: .08rem .5rem;
  font-size: .65rem;
}
.bc-gym-q { font-size: 1.02rem; font-weight: 700; line-height: 1.5; padding: .4rem 0 .8rem; }
.bc-gym-answer {
  display: none;
  background: rgba(52, 211, 153, .08);
  border-left: 3px solid #34d399;
  border-radius: 0 10px 10px 0;
  padding: .6rem .75rem;
  font-size: .88rem;
  margin-bottom: .8rem;
}
.bc-gym-answer:not([data-hidden="1"]) { display: block; }
.bc-gym-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.bc-gym-btn {
  min-height: 46px;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--bc-border);
  background: none;
  color: var(--bc-text1);
  font-weight: 800;
  font-size: .82rem;
  cursor: pointer;
}
.bc-gym-btn[data-hidden="1"] { display: none; }
.bc-gym-reveal { background: linear-gradient(90deg, #7c5cff, #ffb648); color: #0a0e1a; border: none; }
.bc-gym-yes { border-color: rgba(52, 211, 153, .6); color: #34d399; }
.bc-gym-no { border-color: rgba(251, 113, 133, .6); color: #fb7185; }
.bc-gym-done {
  max-width: 560px;
  margin: .4rem auto;
  border: 1px dashed var(--bc-border);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

/* ── Mastery strip ──────────────────────────────────────────── */
.bc-mastery {
  max-width: 560px;
  margin: .55rem auto 0;
  padding: .7rem .9rem;
  border: 1px solid rgba(124, 92, 255, .4);
  background: rgba(124, 92, 255, .07);
  border-radius: 14px;
  font-size: .78rem;
}
.bc-mastery > b { color: #a5b4fc; }
.bc-mastery > span { display: block; color: var(--bc-text2); font-size: .7rem; margin: .15rem 0 .5rem; }
.bc-mastery-row { display: flex; gap: .45rem; flex-wrap: wrap; }
.bc-mastery-chip {
  flex: 1 1 40%;
  text-decoration: none;
  border: 1px solid var(--bc-border);
  border-radius: 10px;
  padding: .45rem .55rem;
  color: var(--bc-text1);
  background: rgba(255,255,255,.04);
}
.bc-mastery-chip b { display: block; font-size: .74rem; }
.bc-mastery-chip span { display: block; font-size: .66rem; color: var(--bc-text3); margin-top: .1rem; }
.bc-mastery-chip:hover { text-decoration: none; border-color: rgba(124,92,255,.7); }

.bc-ics-btn {
  background: none;
  border: 1px dashed var(--bc-border);
  border-radius: 999px;
  color: var(--bc-text2);
  font-size: .72rem;
  padding: .45rem .9rem;
  min-height: 40px;
  margin-top: .3rem;
  cursor: pointer;
}
.bc-ics-btn:hover { color: var(--bc-gold); border-color: rgba(255,182,72,.5); }

.bc-prompt-personal { border-color: rgba(255,182,72,.5); background: rgba(255,182,72,.06); }
.bc-gym-explain { border-color: rgba(124,92,255,.6); color: #a5b4fc; }

/* ── Term Mode + Report Cards ───────────────────────────────── */
.bc-season-card { border-color: rgba(96,165,250,.45); background: rgba(96,165,250,.07); }
.bc-season-card b { color: #60a5fa; }
.bc-waec-chip {
  display: inline-block;
  font-size: .62rem; font-weight: 800;
  color: var(--bc-gold);
  border: 1px solid rgba(255,182,72,.45);
  border-radius: 999px;
  padding: .12rem .5rem;
  margin-top: .25rem;
}
.bc-term-rhythm { margin: .8rem 0; }
.bc-term-row {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .7rem; margin-bottom: .4rem;
  border: 1px solid var(--bc-border); border-radius: 12px;
  font-size: .8rem;
}
.bc-term-row.done { border-color: rgba(52,211,153,.5); background: rgba(52,211,153,.06); }
.bc-term-row.today { border-color: rgba(124,92,255,.6); }
.bc-term-day { font-weight: 900; color: var(--bc-violet2, #a5b4fc); min-width: 3.4rem; }
.bc-term-what { flex: 1; color: var(--bc-text2); }
.bc-term-tick { color: #34d399; font-weight: 800; }
.bc-term-tick.bc-dim { color: var(--bc-border); }
.bc-term-log {
  background: linear-gradient(90deg, #7c5cff, #ffb648);
  color: #0a0e1a; border: none; border-radius: 999px;
  padding: .4rem .9rem; font-weight: 800; font-size: .74rem;
  font-family: inherit; cursor: pointer; min-height: 38px;
}
.bc-term-progress { height: 10px; background: var(--bc-border); border-radius: 999px; overflow: hidden; max-width: 560px; margin: .4rem auto 0; }
.bc-term-fill { height: 100%; background: linear-gradient(90deg, #7c5cff, #ffb648); border-radius: 999px; }
.bc-rep-tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .7rem; }
.bc-rep-tab {
  font-size: .74rem; font-weight: 800; padding: .4rem .85rem;
  border-radius: 999px; border: 1.5px solid var(--bc-border);
  background: none; color: var(--bc-text2); cursor: pointer; font-family: inherit;
}
.bc-rep-tab.active { background: #7c5cff; color: #fff; border-color: #7c5cff; }
.bc-rep-head, .bc-rep-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr .7fr .6fr;
  gap: .4rem; align-items: center; margin-bottom: .4rem;
}
.bc-rep-head { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: var(--bc-text3); font-weight: 800; }
.bc-rep-row input {
  width: 100%; padding: .4rem .3rem; font-size: .82rem; text-align: center;
  border: 1px solid var(--bc-border); border-radius: 8px; background: var(--bc-bg2, #131a2e); color: var(--bc-text);
}
.bc-rep-name { font-size: .8rem; font-weight: 700; }
.bc-rep-total { font-size: .82rem; font-weight: 800; color: #34d399; text-align: center; }
.bc-rep-save { display: block; margin: .8rem auto; }
.bc-rep-chart { background: var(--bc-surface2, rgba(255,255,255,.04)); border: 1px solid var(--bc-border); border-radius: 12px; padding: .7rem .8rem; margin-bottom: .6rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.bc-rep-chart b { font-size: .78rem; color: var(--bc-text2); }

/* ── Heroes & Why ───────────────────────────────────────────── */
.bc-hero-story-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: #e7ecff;
  margin-bottom: 1rem;
}
.bc-hero-sow { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.bc-hero-badge { background: #f5c542; color: #1a1a2e; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .5rem; border-radius: 999px; }
.bc-hero-progress { font-size: .7rem; color: #9aa7c7; }
.bc-hero-story-card h4 { font-size: .95rem; font-weight: 800; margin-bottom: .2rem; }
.bc-hero-hook { font-size: .78rem; color: #f5c542; font-style: italic; margin-bottom: .4rem; }
.bc-hero-text { font-size: .82rem; line-height: 1.6; color: #cbd5e9; }
.bc-hero-row { display: flex; justify-content: space-between; align-items: center; margin-top: .6rem; }
.bc-hero-link { font-size: .78rem; font-weight: 700; color: #f5c542; text-decoration: none; }
.bc-hero-done { font-size: .7rem; color: #34d399; font-weight: 700; }
.bc-hero-todo { font-size: .7rem; color: #9aa7c7; }
.bc-hero-item {
  background: var(--bc-surface2, rgba(255,255,255,.04));
  border: 1px solid var(--bc-border);
  border-radius: 12px;
  padding: .8rem;
  margin-bottom: .5rem;
  cursor: pointer;
  transition: border-color .15s;
}
.bc-hero-item:hover { border-color: rgba(124,92,255,.4); }
.bc-hero-item.expanded { border-color: #7c5cff; }
.bc-hero-head { display: flex; align-items: center; gap: .6rem; }
.bc-hero-ico { font-size: 1.1rem; }
.bc-hero-item h4 { flex: 1; font-size: .85rem; font-weight: 700; }
.bc-hero-field { font-size: .68rem; color: var(--bc-text3); font-weight: 400; }
.bc-hero-sow-badge { background: #f5c542; color: #1a1a2e; font-size: .55rem; font-weight: 800; padding: .15rem .4rem; border-radius: 999px; text-transform: uppercase; }
.bc-hero-tick { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--bc-border); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: transparent; flex-shrink: 0; }
.bc-hero-tick.done { background: #34d399; border-color: #34d399; color: #fff; }
.bc-hero-body { display: none; margin-top: .7rem; font-size: .82rem; line-height: 1.6; }
.bc-hero-item.expanded .bc-hero-body { display: block; }
.bc-hero-move { margin-top: .5rem; background: #fff7ed; border: 1px solid #fdba74; border-radius: 8px; padding: .5rem .7rem; font-size: .78rem; color: #7c2d12; }
.bc-hero-move b { color: #9a3412; }
.bc-hero-sow-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: #e7ecff;
  margin-bottom: 1.2rem;
}
.bc-hero-sow-card h3 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: .4rem; }
.bc-hero-sow-card h4 { color: #f5c542; font-size: .95rem; font-weight: 800; margin-bottom: .3rem; }
.bc-hero-sow-card p { color: #cbd5e9; font-size: .84rem; line-height: 1.6; }
.bc-hero-stats { display: flex; gap: .6rem; font-size: .72rem; color: var(--bc-text3); margin-bottom: 1rem; }
.bc-hero-type { font-size: .6rem; background: #ede9fe; color: #6d28d9; padding: .1rem .35rem; border-radius: 999px; margin-left: .3rem; }

/* ── Passport travel document ─────────────────────────────── */
.bc-pass-cover {
  display: flex; gap: 1rem; align-items: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  border: 2px solid var(--bc-gold, #ffb648); border-radius: 14px;
  padding: 1rem 1.1rem; color: #e7ecff; margin-bottom: .8rem;
}
.bc-pass-photo { font-size: 2.6rem; background: rgba(255,255,255,.08); border-radius: 12px; padding: .4rem .6rem; }
.bc-pass-bio { display: grid; gap: .3rem; font-size: .8rem; }
.bc-pass-bio div { display: flex; gap: .5rem; align-items: baseline; }
.bc-pass-bio span { color: #9fb0d0; font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; min-width: 74px; }
.bc-pass-bio b { color: #fff; }
.bc-pass-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; margin-bottom: 1.1rem; }
.bc-stamp {
  border: 2px dashed var(--bc-border); border-radius: 10px; padding: .6rem .7rem;
  display: flex; flex-direction: column; gap: .15rem; font-size: .78rem;
  background: rgba(255,255,255,.02);
}
.bc-stamp:nth-child(odd) { transform: rotate(-.6deg); }
.bc-stamp:nth-child(even) { transform: rotate(.6deg); }
.bc-stamp-ico { font-size: 1.2rem; }
.bc-stamp b { font-size: .82rem; }
.bc-stamp span { color: var(--bc-text3); font-size: .72rem; }
.bc-stamp i { font-style: normal; font-size: .72rem; }
.bc-stamp i a { color: var(--bc-gold2); font-weight: 700; }
.bc-stamp.stamped { border-color: #34d399; border-style: solid; }
.bc-stamp.stamped i { color: #34d399; font-weight: 700; }
.bc-stamp.active { border-color: var(--bc-gold, #ffb648); }
.bc-stamp.active i { color: var(--bc-gold2); font-weight: 700; }
.bc-stamp.locked { opacity: .75; }
.bc-req {
  display: block; padding: .6rem .8rem; margin-bottom: .45rem;
  border: 1px solid var(--bc-border); border-radius: 10px;
  color: var(--bc-text); text-decoration: none; font-size: .84rem; font-weight: 600;
}
.bc-req:hover { border-color: var(--bc-gold, #ffb648); }
