/* ============================================================
   BostCalm – Design System CSS
   Tipografías: DM Sans (títulos) · Poppins (textos)
   Paleta: Verde principal #3D6B4F · Fondo #F5F5F0
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bc-green:        #3D6B4F;
  --bc-green-light:  #4A7C59;
  --bc-green-dark:   #2D5240;
  --bc-green-50:     #F0F7F3;
  --bc-green-100:    #D1E9DB;
  --bc-bg:           #F5F5F0;
  --bc-bg-card:      #FFFFFF;
  --bc-text:         #1A2E1F;
  --bc-text-muted:   #6B7B6F;
  --bc-text-light:   #9FB5A5;
  --bc-border:       #E4EDE7;
  --bc-shadow:       0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --bc-shadow-md:    0 4px 12px rgba(0,0,0,.08);
  --bc-shadow-lg:    0 8px 32px rgba(0,0,0,.10);
  --bc-radius:       12px;
  --bc-radius-sm:    8px;
  --bc-radius-lg:    16px;
  --bc-sidebar-w:    220px;
  --bc-topbar-h:     64px;
  --bc-sidebar-right-w: 300px;
  --bc-transition:   .18s ease;
  --font-title:      'DM Sans', sans-serif;
  --font-body:       'Poppins', sans-serif;
}

body.bc-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bc-text);
  background: var(--bc-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--bc-green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 14px; }
ul { list-style: none; }

/* ── App Layout ────────────────────────────────────────────── */
.bc-app-layout {
  display: grid;
  grid-template-columns: var(--bc-sidebar-w) 1fr var(--bc-sidebar-right-w);
  min-height: 100vh;
}
.bc-app-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.bc-app-content {
  flex: 1;
  padding: 28px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bc-app-sidebar-right {
  background: var(--bc-bg-card);
  border-left: 1px solid var(--bc-border);
  padding: 24px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.bc-sidebar {
  background: var(--bc-green-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}
.bc-sidebar__brand {
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bc-sidebar__logo { height: 36px; }
.bc-sidebar__logo-placeholder { display: flex; align-items: center; gap: 10px; }
.bc-sidebar__brand-name { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: #fff; display: block; }
.bc-sidebar__brand-sub  { font-size: 9px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; display: block; }

.bc-sidebar__nav { flex: 1; padding: 12px 0; }
.bc-sidebar__nav ul { display: flex; flex-direction: column; gap: 2px; padding: 0 10px; }
.bc-sidebar__link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--bc-radius-sm);
  color: rgba(255,255,255,.65); font-size: 13px; font-weight: 500;
  transition: background var(--bc-transition), color var(--bc-transition);
}
.bc-sidebar__link:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.bc-sidebar__link--active { background: rgba(255,255,255,.15); color: #fff; }
.bc-sidebar__icon { flex-shrink: 0; opacity: .75; }
.bc-sidebar__link--active .bc-sidebar__icon,
.bc-sidebar__link:hover .bc-sidebar__icon { opacity: 1; }
.bc-sidebar__divider { height: 1px; background: rgba(255,255,255,.08); margin: 6px 0; }

.bc-sidebar__motivational {
  margin: auto 16px 16px;
  background: rgba(255,255,255,.07);
  border-radius: var(--bc-radius);
  padding: 18px;
  text-align: center;
}
.bc-sidebar__mot-icon { margin: 0 auto 10px; display: block; }
.bc-sidebar__mot-text { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; }
.bc-sidebar__mot-sub  { font-size: 11px; color: rgba(255,255,255,.5); margin: 6px 0 14px; }

.bc-sidebar__plan-widget {
  margin: 0 12px 12px;
  background: rgba(255,255,255,.07);
  border-radius: var(--bc-radius);
  padding: 14px;
}
.bc-sidebar__plan-label { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.bc-sidebar__plan-name  { font-family: var(--font-title); font-size: 18px; font-weight: 700; display: block; }
.bc-sidebar__plan-users { font-size: 11px; color: rgba(255,255,255,.5); display: block; margin: 2px 0 8px; }
.bc-sidebar__plan-bar { height: 4px; background: rgba(255,255,255,.15); border-radius: 2px; margin-bottom: 4px; }
.bc-sidebar__plan-bar-fill { height: 100%; background: var(--bc-green-light); border-radius: 2px; transition: width .4s; }
.bc-sidebar__plan-detail { font-size: 10px; color: rgba(255,255,255,.4); display: block; margin-bottom: 12px; }

.bc-sidebar__user {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 10px;
}
.bc-sidebar__user-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.bc-sidebar__user-name { font-size: 12px; font-weight: 600; color: #fff; display: block; }
.bc-sidebar__user-role { font-size: 10px; color: rgba(255,255,255,.5); display: block; }
.bc-sidebar__user-arrow { color: rgba(255,255,255,.4); margin-left: auto; }

/* ── Topbar ─────────────────────────────────────────────────── */
.bc-topbar {
  height: var(--bc-topbar-h);
  background: var(--bc-bg-card);
  border-bottom: 1px solid var(--bc-border);
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px;
  position: sticky; top: 0; z-index: 100;
  flex-shrink: 0;
}
.bc-topbar__search { flex: 1; max-width: 480px; }
.bc-search-form { display: flex; align-items: center; gap: 8px; background: var(--bc-bg); border: 1px solid var(--bc-border); border-radius: 10px; padding: 0 14px; }
.bc-search-icon  { color: var(--bc-text-muted); flex-shrink: 0; }
.bc-search-input { flex: 1; border: none; background: transparent; padding: 9px 0; font-size: 13px; color: var(--bc-text); outline: none; }
.bc-search-input::placeholder { color: var(--bc-text-light); }
.bc-search-dropdown { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius-sm); box-shadow: var(--bc-shadow-md); z-index: 200; }
.bc-search-result-item { display: block; padding: 10px 14px; font-size: 13px; border-bottom: 1px solid var(--bc-border); }
.bc-search-result-item:last-child { border-bottom: none; }
.bc-search-result-item:hover { background: var(--bc-green-50); }

.bc-topbar__right { display: flex; align-items: center; gap: 12px; margin-left: auto; position: relative; }
.bc-topbar__icon-btn { position: relative; color: var(--bc-text-muted); padding: 8px; border-radius: 8px; transition: background var(--bc-transition); }
.bc-topbar__icon-btn:hover { background: var(--bc-bg); }
.bc-badge-dot { position: absolute; top: 4px; right: 4px; width: 16px; height: 16px; background: #ef4444; border-radius: 50%; font-size: 9px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }

.bc-topbar__mood { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--bc-border); border-radius: 10px; cursor: pointer; transition: background var(--bc-transition); }
.bc-topbar__mood:hover { background: var(--bc-bg); }
.bc-topbar__mood-info { display: flex; flex-direction: column; }
.bc-topbar__mood-label { font-size: 10px; color: var(--bc-text-muted); }
.bc-topbar__mood-value { font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 5px; }

.bc-topbar__profile { display: flex; align-items: center; gap: 10px; padding: 6px 10px; border-radius: 10px; cursor: pointer; transition: background var(--bc-transition); }
.bc-topbar__profile:hover { background: var(--bc-bg); }
.bc-topbar__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.bc-topbar__avatar--sm { width: 30px; height: 30px; }
.bc-topbar__profile-name { font-size: 13px; font-weight: 600; color: var(--bc-text); display: block; }
.bc-topbar__profile-role { font-size: 11px; color: var(--bc-text-muted); display: block; }
.bc-topbar__profile-avatar--initial {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bc-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-weight: 700; font-size: 15px;
}

.bc-back-link { display: flex; align-items: center; gap: 8px; color: var(--bc-text-muted); font-size: 13px; font-weight: 500; padding: 8px 12px; border-radius: 8px; transition: background var(--bc-transition); }
.bc-back-link:hover { background: var(--bc-bg); color: var(--bc-text); text-decoration: none; }

.bc-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow-lg); min-width: 180px; z-index: 300; overflow: hidden;
}
.bc-dropdown__item { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 13px; color: var(--bc-text); transition: background var(--bc-transition); width: 100%; text-align: left; }
.bc-dropdown__item:hover { background: var(--bc-green-50); text-decoration: none; }
.bc-dropdown__item--danger { color: #ef4444; }
.bc-dropdown__item--danger:hover { background: #fef2f2; }
.bc-dropdown__divider { height: 1px; background: var(--bc-border); }

/* ── Buttons ────────────────────────────────────────────────── */
.bc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--bc-radius-sm);
  font-family: var(--font-title); font-size: 13px; font-weight: 600;
  transition: all var(--bc-transition); cursor: pointer; border: none;
  text-decoration: none; line-height: 1;
}
.bc-btn-primary { background: var(--bc-green); color: #fff; }
.bc-btn-primary:hover { background: var(--bc-green-dark); color: #fff; text-decoration: none; }
.bc-btn-ghost { background: transparent; color: var(--bc-text-muted); border: 1px solid var(--bc-border); }
.bc-btn-ghost:hover { background: var(--bc-bg); color: var(--bc-text); }
.bc-btn-outline { background: transparent; color: var(--bc-green); border: 1.5px solid var(--bc-green); }
.bc-btn-outline:hover { background: var(--bc-green-50); }
.bc-btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.bc-btn-outline-white:hover { background: rgba(255,255,255,.1); }
.bc-btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.bc-btn-light:hover { background: rgba(255,255,255,.2); }
.bc-btn-social { background: #fff; color: var(--bc-text); border: 1px solid var(--bc-border); }
.bc-btn-social:hover { background: var(--bc-bg); }
.bc-btn-social:disabled { opacity: .5; cursor: not-allowed; }
.bc-btn-whatsapp { background: #25D366; color: #fff; }
.bc-btn-whatsapp:hover { background: #1da851; color: #fff; }
.bc-btn-full { width: 100%; }
.bc-btn-lg { padding: 14px 24px; font-size: 14px; }
.bc-btn-sm { padding: 7px 14px; font-size: 12px; }
.bc-btn-disabled { opacity: .5; pointer-events: none; }
.bc-btn-continue { padding: 14px 28px; font-size: 15px; }
.bc-spinner { animation: bc-spin .8s linear infinite; width: 16px; height: 16px; }
@keyframes bc-spin { to { stroke-dashoffset: -31.4; } }

/* ── Forms ──────────────────────────────────────────────────── */
.bc-form { display: flex; flex-direction: column; gap: 16px; }
.bc-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bc-field label { font-size: 13px; font-weight: 500; color: var(--bc-text); }
.bc-field input, .bc-field select, .bc-field textarea {
  border: 1.5px solid var(--bc-border); border-radius: var(--bc-radius-sm);
  padding: 10px 14px; font-size: 13px; color: var(--bc-text);
  background: var(--bc-bg-card); transition: border-color var(--bc-transition);
  outline: none;
}
.bc-field input:focus, .bc-field select:focus, .bc-field textarea:focus { border-color: var(--bc-green); }
.bc-field input::placeholder, .bc-field textarea::placeholder { color: var(--bc-text-light); }
.bc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bc-form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.bc-form-note { font-size: 12px; color: var(--bc-text-muted); }
.bc-form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }
.bc-form-section { display: flex; flex-direction: column; gap: 14px; }
.bc-form-section__header { display: flex; align-items: center; gap: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--bc-border); }
.bc-form-section__desc { font-size: 12px; color: var(--bc-text-muted); }
.bc-step-num { width: 22px; height: 22px; background: var(--bc-green); color: #fff; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-step-label { font-size: 11px; font-weight: 600; color: var(--bc-text-muted); letter-spacing: .06em; text-transform: uppercase; }
.bc-input-wrap { position: relative; }
.bc-input-wrap input { width: 100%; padding-left: 40px; }
.bc-input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--bc-text-muted); pointer-events: none; }
.bc-toggle-password { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--bc-text-muted); padding: 4px; }
.bc-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; }
.bc-checkbox input { width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; accent-color: var(--bc-green); }
.bc-textarea { width: 100%; border: 1.5px solid var(--bc-border); border-radius: var(--bc-radius-sm); padding: 10px 14px; font-size: 13px; resize: vertical; min-height: 60px; outline: none; transition: border-color var(--bc-transition); }
.bc-textarea:focus { border-color: var(--bc-green); }
.bc-select { border: 1.5px solid var(--bc-border); border-radius: var(--bc-radius-sm); padding: 9px 12px; font-size: 13px; background: var(--bc-bg-card); color: var(--bc-text); outline: none; }
.bc-select:focus { border-color: var(--bc-green); }
.bc-select-sm { font-size: 11px; padding: 5px 8px; border: 1px solid var(--bc-border); border-radius: 6px; background: var(--bc-bg); color: var(--bc-text-muted); outline: none; }

/* Alerts */
.bc-alert { padding: 12px 16px; border-radius: var(--bc-radius-sm); font-size: 13px; }
.bc-alert--error   { background: #fef2f2; color: #ef4444; border: 1px solid #fee2e2; }
.bc-alert--success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.bc-alert--warning { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }

/* Divider */
.bc-divider { display: flex; align-items: center; gap: 12px; color: var(--bc-text-light); font-size: 12px; }
.bc-divider::before, .bc-divider::after { content: ''; flex: 1; height: 1px; background: var(--bc-border); }
.bc-social-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ── Cards / Widgets ────────────────────────────────────────── */
.bc-widget { background: var(--bc-bg-card); border: 1px solid var(--bc-border); border-radius: var(--bc-radius); padding: 18px; }
.bc-widget__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bc-widget__title { font-family: var(--font-title); font-size: 14px; font-weight: 600; color: var(--bc-text); }
.bc-widget__subtitle { font-size: 12px; color: var(--bc-text-muted); margin-bottom: 12px; }
.bc-widget--recommendation { position: relative; overflow: hidden; }
.bc-widget__deco { position: absolute; bottom: -10px; right: -10px; }

/* ── Stats Grid ─────────────────────────────────────────────── */
.bc-stats-grid { display: grid; gap: 16px; }
.bc-stats-grid-4 { grid-template-columns: repeat(4,1fr); }
.bc-stats-grid-5 { grid-template-columns: repeat(5,1fr); }

.bc-stat-card {
  background: var(--bc-bg-card); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius); padding: 18px;
  display: flex; flex-direction: column; gap: 8px; position: relative; overflow: hidden;
}
.bc-stat-card--wellness { border-color: var(--bc-green-100); }
.bc-stat-card__header { display: flex; align-items: flex-start; justify-content: space-between; }
.bc-stat-card__label { font-size: 12px; font-weight: 500; color: var(--bc-text-muted); }
.bc-stat-card__icon { color: var(--bc-green); opacity: .7; }
.bc-stat-card__title { font-family: var(--font-title); font-size: 16px; font-weight: 600; color: var(--bc-text); }
.bc-stat-card__sub { font-size: 12px; color: var(--bc-text-muted); display: flex; align-items: center; gap: 4px; }
.bc-stat-card__hint { font-size: 11px; color: var(--bc-green); }
.bc-stat-card__deco { position: absolute; bottom: -8px; right: -8px; }
.bc-stat-card__donut-wrap { display: flex; justify-content: center; }
.bc-stat-num { font-family: var(--font-title); font-size: 32px; font-weight: 700; color: var(--bc-text); line-height: 1; }

/* KPI cards (empresa) */
.bc-kpi-card { background: var(--bc-bg-card); border: 1px solid var(--bc-border); border-radius: var(--bc-radius); padding: 16px; }
.bc-kpi-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.bc-kpi-card__label { font-size: 12px; color: var(--bc-text-muted); font-weight: 500; max-width: 100px; line-height: 1.3; }
.bc-kpi-card__icon-wrap { background: var(--bc-green-50); border-radius: 8px; padding: 6px; }
.bc-kpi-card__value { font-family: var(--font-title); font-size: 28px; font-weight: 700; color: var(--bc-text); }
.bc-kpi-card__sub { font-size: 11px; color: var(--bc-text-muted); margin-top: 4px; }
.bc-kpi-card__sub--up   { color: #16a34a; }
.bc-kpi-card__sub--good { color: var(--bc-green); }
.bc-kpi-card__sparkline { opacity: .6; }

/* ── Progress bars ──────────────────────────────────────────── */
.bc-progress-bar-wrap { display: flex; flex-direction: column; gap: 4px; }
.bc-progress-bar { height: 5px; background: var(--bc-green-100); border-radius: 3px; overflow: hidden; }
.bc-progress-bar__fill { height: 100%; background: var(--bc-green); border-radius: 3px; transition: width .4s ease; }
.bc-progress-bar__label { font-size: 11px; color: var(--bc-text-muted); }
.bc-progress-bar--sm { height: 4px; }
.bc-progress-inline { display: flex; align-items: center; gap: 8px; }
.bc-progress-inline .bc-progress-bar { flex: 1; }
.bc-progress-inline span { font-size: 12px; color: var(--bc-text-muted); min-width: 32px; }

/* ── Donut charts ────────────────────────────────────────────── */
.bc-donut { display: block; }
.bc-donut--lg { width: 100px; height: 100px; }
.bc-donut--company { width: 120px; height: 120px; }
.bc-progress-donut-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.bc-donut-chart-wrap { display: flex; align-items: center; gap: 16px; }
.bc-progress-legend { display: flex; flex-direction: column; gap: 6px; }
.bc-donut-legend     { display: flex; flex-direction: column; gap: 6px; }
.bc-legend-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--bc-text-muted); }
.bc-legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ── Section headers ────────────────────────────────────────── */
.bc-section { display: flex; flex-direction: column; gap: 16px; }
.bc-section-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.bc-section-title { font-family: var(--font-title); font-size: 18px; font-weight: 600; color: var(--bc-text); }
.bc-section-subtitle { font-size: 12px; color: var(--bc-text-muted); }
.bc-page-title { font-family: var(--font-title); font-size: 26px; font-weight: 700; color: var(--bc-text); }
.bc-page-subtitle { font-size: 13px; color: var(--bc-text-muted); margin-top: 4px; }
.bc-link-sm { font-size: 12px; color: var(--bc-green); font-weight: 500; }
.bc-link-sm:hover { text-decoration: underline; }
.bc-link { color: var(--bc-green); font-weight: 500; }
.bc-text-muted { color: var(--bc-text-muted); }
.bc-text-sm { font-size: 12px; color: var(--bc-text-muted); }
.bc-label-sm { font-size: 11px; color: var(--bc-text-muted); }
.bc-value-sm { font-size: 12px; font-weight: 600; }
.bc-empty-msg { font-size: 13px; color: var(--bc-text-muted); text-align: center; padding: 20px; }
.bc-status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.bc-status-dot--green { background: #22c55e; }

/* ── Tabs ────────────────────────────────────────────────────── */
.bc-tabs { display: flex; gap: 4px; background: var(--bc-bg); border-radius: 8px; padding: 3px; }
.bc-tab { padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--bc-text-muted); transition: all var(--bc-transition); }
.bc-tab:hover { color: var(--bc-text); }
.bc-tab--active { background: var(--bc-bg-card); color: var(--bc-green); font-weight: 600; box-shadow: var(--bc-shadow); }

/* ── Serie cards ─────────────────────────────────────────────── */
.bc-series-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.bc-series-grid--premium { grid-template-columns: repeat(4,1fr); }
.bc-serie-card {
  background: var(--bc-bg-card); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius); overflow: hidden;
  transition: box-shadow var(--bc-transition), transform var(--bc-transition);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.bc-serie-card:hover { box-shadow: var(--bc-shadow-md); transform: translateY(-2px); text-decoration: none; }
.bc-serie-card__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bc-green-50); }
.bc-serie-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bc-serie-card:hover .bc-serie-card__thumb img { transform: scale(1.04); }
.bc-serie-card__thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,var(--bc-green-50),var(--bc-green-100)); }
.bc-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.25); opacity: 0; transition: opacity var(--bc-transition); }
.bc-serie-card:hover .bc-play-overlay { opacity: 1; }
.bc-serie-card__body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bc-serie-card__title { font-family: var(--font-title); font-size: 14px; font-weight: 600; color: var(--bc-text); line-height: 1.3; }
.bc-serie-card__desc  { font-size: 12px; color: var(--bc-text-muted); line-height: 1.5; }
.bc-serie-card__meta  { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.bc-serie-card__meta span { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--bc-text-muted); }
.bc-serie-card__price { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--bc-text); }
.bc-serie-card__actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.bc-serie-card--premium .bc-serie-card__thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 50%); }
.bc-badge { position: absolute; top: 8px; left: 8px; padding: 3px 8px; border-radius: 5px; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.bc-badge--premium { background: rgba(61,107,79,.9); color: #fff; }
.bc-add-to-cart { width: 36px; height: 36px; padding: 0; border-radius: 8px; }

/* ── Weekly bars ─────────────────────────────────────────────── */
.bc-weekly-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.bc-weekly-bar-item { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; height: 100%; }
.bc-weekly-bar { width: 100%; background: var(--bc-green-100); border-radius: 3px 3px 0 0; min-height: 4px; transition: height .3s; }
.bc-weekly-bar-item span { font-size: 9px; color: var(--bc-text-light); }

/* ── Mood selector ───────────────────────────────────────────── */
.bc-mood-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 12px; }
.bc-mood-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 4px; border-radius: var(--bc-radius-sm); border: 1.5px solid transparent; transition: all var(--bc-transition); background: var(--bc-bg); }
.bc-mood-btn:hover { border-color: var(--bc-green); background: var(--bc-green-50); }
.bc-mood-btn--active { border-color: var(--bc-green); background: var(--bc-green-50); }
.bc-mood-emoji { font-size: 22px; }
.bc-mood-label { font-size: 10px; color: var(--bc-text-muted); }
.bc-mood-confirm { display: flex; flex-direction: column; gap: 8px; padding: 10px; background: var(--bc-green-50); border-radius: var(--bc-radius-sm); }

/* ── Recommendations ────────────────────────────────────────── */
.bc-recommendations { display: flex; flex-direction: column; gap: 12px; }
.bc-rec-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; padding: 6px; border-radius: var(--bc-radius-sm); transition: background var(--bc-transition); }
.bc-rec-item:hover { background: var(--bc-green-50); text-decoration: none; }
.bc-rec-thumb { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; background: var(--bc-green-50); flex-shrink: 0; }
.bc-rec-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bc-rec-thumb-placeholder { width: 100%; height: 100%; background: var(--bc-green-100); }
.bc-rec-body { flex: 1; min-width: 0; }
.bc-rec-type { font-size: 10px; color: var(--bc-green); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.bc-rec-title { font-size: 12px; font-weight: 500; color: var(--bc-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bc-rec-duration { font-size: 11px; color: var(--bc-text-muted); }
.bc-play-btn-xs { width: 28px; height: 28px; border-radius: 50%; background: var(--bc-green); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-play-btn-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--bc-green); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: auto; align-self: flex-start; }

/* ── Achievements ────────────────────────────────────────────── */
.bc-achievements { display: flex; flex-direction: column; gap: 10px; }
.bc-achievement-item { display: flex; align-items: center; gap: 10px; }
.bc-achievement-icon { font-size: 22px; }
.bc-achievement-title { font-size: 12px; font-weight: 600; color: var(--bc-text); }
.bc-achievement-desc  { font-size: 11px; color: var(--bc-green); }

/* ── Charts ──────────────────────────────────────────────────── */
.bc-charts-row { display: grid; grid-template-columns: 240px 1fr 1fr; gap: 16px; }
.bc-chart-card { background: var(--bc-bg-card); border: 1px solid var(--bc-border); border-radius: var(--bc-radius); padding: 18px; }
.bc-chart-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bc-chart-title { font-family: var(--font-title); font-size: 14px; font-weight: 600; color: var(--bc-text); margin-bottom: 16px; }
.bc-chart-card--sm { }

.bc-bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 120px; margin-top: 8px; }
.bc-bar-chart__col { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; height: 100%; }
.bc-bar-chart__bar-wrap { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; width: 100%; gap: 2px; }
.bc-bar-chart__pct-label { font-size: 9px; color: var(--bc-text-muted); }
.bc-bar-chart__bar { width: 100%; background: var(--bc-green); border-radius: 4px 4px 0 0; min-height: 4px; transition: height .4s; }
.bc-bar-chart__label { font-size: 9px; color: var(--bc-text-muted); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

.bc-line-chart { }
.bc-line-chart__svg { width: 100%; display: block; }
.bc-line-chart__labels { display: flex; justify-content: space-between; padding: 4px 0 0; }
.bc-line-chart__labels span { font-size: 10px; color: var(--bc-text-muted); }

/* ── Table ────────────────────────────────────────────────────── */
.bc-table-filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bc-table-wrap { overflow-x: auto; border: 1px solid var(--bc-border); border-radius: var(--bc-radius); }
.bc-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.bc-table th { background: var(--bc-bg); padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 600; color: var(--bc-text-muted); text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid var(--bc-border); white-space: nowrap; }
.bc-table td { padding: 12px 14px; border-bottom: 1px solid var(--bc-border); vertical-align: middle; }
.bc-table tr:last-child td { border-bottom: none; }
.bc-table tr:hover td { background: var(--bc-green-50); }
.bc-table-empty { text-align: center; color: var(--bc-text-muted); padding: 32px; }
.bc-emp-cell { display: flex; align-items: center; gap: 10px; }
.bc-emp-cell__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.bc-emp-cell__name  { font-size: 13px; font-weight: 500; color: var(--bc-text); display: block; }
.bc-emp-cell__email { font-size: 11px; color: var(--bc-text-muted); display: block; }
.bc-table-actions { display: flex; align-items: center; gap: 4px; }
.bc-action-btn { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--bc-text-muted); transition: all var(--bc-transition); }
.bc-action-btn:hover { background: var(--bc-green-50); color: var(--bc-green); }

/* Status chips */
.bc-chip { padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.bc-chip--stable    { background: #dcfce7; color: #16a34a; }
.bc-chip--attention { background: #fef9c3; color: #854d0e; }
.bc-chip--risk      { background: #fee2e2; color: #dc2626; }
.bc-burnout-chip    { padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* ── Quick actions ───────────────────────────────────────────── */
.bc-quick-actions { display: flex; flex-direction: column; gap: 4px; }
.bc-quick-action { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--bc-radius-sm); font-size: 13px; color: var(--bc-text); transition: background var(--bc-transition); width: 100%; text-align: left; }
.bc-quick-action:hover { background: var(--bc-green-50); color: var(--bc-green); text-decoration: none; }

/* ── Notifications ────────────────────────────────────────────── */
.bc-notifications { display: flex; flex-direction: column; gap: 10px; }
.bc-notif-item { display: flex; align-items: flex-start; gap: 10px; }
.bc-notif-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.bc-notif-msg  { font-size: 12px; color: var(--bc-text); font-weight: 500; }
.bc-notif-time { font-size: 11px; color: var(--bc-text-muted); }
.bc-notif-new { width: 6px; height: 6px; border-radius: 50%; background: var(--bc-green); flex-shrink: 0; margin-top: 6px; }
.bc-recommendation-text { font-size: 12px; color: var(--bc-text-muted); line-height: 1.5; margin-bottom: 10px; }

/* ── Player ───────────────────────────────────────────────────── */
.bc-player-content { display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; }
.bc-player-meta { padding: 28px 32px 0; }
.bc-player-category { font-size: 11px; font-weight: 600; color: var(--bc-text-muted); letter-spacing: .08em; text-transform: uppercase; }
.bc-player-title { font-family: var(--font-title); font-size: 28px; font-weight: 700; color: var(--bc-text); margin: 6px 0 8px; }
.bc-player-desc { font-size: 13px; color: var(--bc-text-muted); max-width: 680px; margin-bottom: 16px; }
.bc-player-stats { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.bc-player-stat { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--bc-text-muted); }
.bc-player-stat--progress { align-items: center; }

/* Video player */
.bc-video-container { position: relative; background: #0a0a0a; border-radius: 0; overflow: hidden; aspect-ratio: 16/9; max-height: 55vh; margin: 16px 32px 0; border-radius: var(--bc-radius); }
.bc-video-meta-overlay { position: absolute; bottom: 70px; left: 24px; z-index: 2; }
.bc-video-breadcrumb { font-size: 11px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
.bc-video-title { font-family: var(--font-title); font-size: 22px; font-weight: 700; color: #fff; margin: 4px 0 6px; }
.bc-video-desc  { font-size: 13px; color: rgba(255,255,255,.75); max-width: 420px; }
.bc-video-player { width: 100%; height: 100%; object-fit: contain; }
.bc-video-poster { width: 100%; height: 100%; object-fit: cover; }
.bc-video-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #1a2e1f; }
.bc-video-iframe-wrap { width: 100%; height: 100%; }
.bc-video-iframe-wrap iframe { width: 100%; height: 100%; border: none; }

/* Player controls */
.bc-player-controls { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(0,0,0,.7)); padding: 20px 16px 12px; }
.bc-progress-track { height: 4px; background: rgba(255,255,255,.25); border-radius: 2px; cursor: pointer; position: relative; margin-bottom: 8px; }
.bc-progress-fill { height: 100%; background: var(--bc-green); border-radius: 2px; transition: width .1s; }
.bc-progress-thumb { width: 12px; height: 12px; background: #fff; border-radius: 50%; position: absolute; top: -4px; transform: translateX(-50%); cursor: grab; }
.bc-controls-row { display: flex; align-items: center; justify-content: space-between; }
.bc-controls-left, .bc-controls-right { display: flex; align-items: center; gap: 4px; }
.bc-ctrl-btn { color: rgba(255,255,255,.85); padding: 6px; border-radius: 6px; transition: all var(--bc-transition); }
.bc-ctrl-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.bc-ctrl-time { font-size: 12px; color: rgba(255,255,255,.75); padding: 0 8px; }
.bc-ctrl-speed { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 4px; padding: 2px 6px; font-size: 11px; cursor: pointer; }

/* Chapter list (player sidebar) */
.bc-chapter-list-sidebar { border-left: 1px solid var(--bc-border); }
.bc-chapter-list { display: flex; flex-direction: column; }
.bc-chapter-item { border-bottom: 1px solid var(--bc-border); }
.bc-chapter-item:last-child { border-bottom: none; }
.bc-chapter-item__inner { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; text-decoration: none; }
.bc-chapter-item--active { background: var(--bc-green-50); border-radius: var(--bc-radius-sm); padding: 0 10px; margin: 0 -10px; }
.bc-chapter-status { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.bc-chapter-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bc-border); }
.bc-chapter-info { flex: 1; }
.bc-chapter-num  { font-size: 10px; color: var(--bc-text-muted); display: block; }
.bc-chapter-name { font-size: 13px; color: var(--bc-text); font-weight: 500; line-height: 1.3; }
.bc-chapter-item--active .bc-chapter-name { color: var(--bc-green); font-weight: 600; }
.bc-chapter-item--locked { opacity: .5; }

/* Avance widget */
.bc-avance-donut { display: flex; align-items: flex-start; gap: 12px; }
.bc-avance-stats { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bc-avance-stat { display: flex; flex-direction: column; }
.bc-avance-label { font-size: 10px; color: var(--bc-text-muted); }
.bc-avance-stat strong { font-size: 12px; font-weight: 600; color: var(--bc-text); }
.bc-status-chip { font-size: 11px; font-weight: 600; }

/* Resources */
.bc-resources-section { padding: 0 32px; }
.bc-resources-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.bc-resource-card { background: var(--bc-bg-card); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-sm); padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.bc-resource-icon { color: var(--bc-green); }
.bc-resource-type { font-size: 10px; color: var(--bc-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.bc-resource-title { font-size: 12px; font-weight: 500; color: var(--bc-text); line-height: 1.3; }
.bc-resource-btn { margin-top: auto; }

/* Notes */
.bc-notes-section { padding: 0 32px 28px; }
.bc-notes-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--bc-text-muted); }
.bc-notes-header h3 { font-family: var(--font-title); font-size: 14px; font-weight: 600; color: var(--bc-text); }
.bc-note-editor { width: 100%; border: 1.5px solid var(--bc-border); border-radius: var(--bc-radius-sm); padding: 12px 14px; font-size: 13px; min-height: 80px; resize: none; outline: none; color: var(--bc-text); line-height: 1.6; }
.bc-note-editor:focus { border-color: var(--bc-green); }
.bc-note-editor::placeholder { color: var(--bc-text-light); }
.bc-notes-footer { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.bc-notes-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--bc-text-muted); flex: 1; }
.bc-notes-bookmark { color: var(--bc-text-muted); }
.bc-notes-bookmark:hover { color: var(--bc-green); }

/* ── Login page ───────────────────────────────────────────────── */
.bc-login-page, .bc-register-page { background: #fff; min-height: 100vh; }
.bc-login-layout { display: grid; grid-template-columns: 420px 1fr; min-height: 100vh; }
.bc-login-form-panel { padding: 40px 48px; display: flex; flex-direction: column; border-right: 1px solid var(--bc-border); }
.bc-login-brand { margin-bottom: 40px; }
.bc-brand-wordmark { display: flex; align-items: center; gap: 10px; }
.bc-brand-name { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--bc-text); }
.bc-brand-name--dark { color: var(--bc-text); }
.bc-brand-name--light { color: #fff; }
.bc-brand-tagline { font-size: 9px; color: var(--bc-text-muted); text-transform: uppercase; letter-spacing: .07em; display: block; }
.bc-brand-tagline--light { color: rgba(255,255,255,.5); }
.bc-login-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.bc-login-title { font-family: var(--font-title); font-size: 32px; font-weight: 500; color: var(--bc-text); line-height: 1.2; margin-bottom: 10px; }
.bc-login-title strong { font-weight: 700; }
.bc-login-subtitle { font-size: 13px; color: var(--bc-text-muted); line-height: 1.6; margin-bottom: 28px; }
.bc-login-options { display: flex; align-items: center; justify-content: space-between; }
.bc-login-register-cta { text-align: center; font-size: 13px; color: var(--bc-text-muted); margin-top: 16px; }
.bc-login-hero-panel { background: linear-gradient(135deg, #f8faf9 0%, #e8f0ec 100%); display: flex; align-items: center; justify-content: center; padding: 60px; position: relative; overflow: hidden; }
.bc-login-hero-panel::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(61,107,79,.06); top: -100px; right: -100px; }
.bc-hero-quote { max-width: 340px; }
.bc-hero-quote p { font-family: var(--font-title); font-size: 28px; font-weight: 600; color: var(--bc-text); line-height: 1.3; margin: 12px 0 8px; }
.bc-hero-quote cite { font-style: normal; font-size: 13px; color: var(--bc-text-muted); }
.bc-quote-icon { margin-bottom: 8px; }

/* ── Register page ───────────────────────────────────────────── */
.bc-register-layout { display: grid; grid-template-columns: 1fr 420px; min-height: 100vh; }
.bc-register-form-panel { padding: 32px 48px 48px; overflow-y: auto; }
.bc-register-brand { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.bc-register-header-actions { display: flex; align-items: center; gap: 12px; }
.bc-register-intro { margin-bottom: 28px; }
.bc-register-category { font-size: 11px; font-weight: 600; color: var(--bc-green); letter-spacing: .08em; text-transform: uppercase; }
.bc-register-title { font-family: var(--font-title); font-size: 28px; font-weight: 500; color: var(--bc-text); line-height: 1.2; margin: 8px 0 10px; }
.bc-register-title strong { font-weight: 700; }
.bc-register-subtitle { font-size: 13px; color: var(--bc-text-muted); line-height: 1.6; }
.bc-register-login-cta { text-align: center; font-size: 13px; color: var(--bc-text-muted); }
.bc-register-content { }
.bc-register-hero-panel { background: linear-gradient(160deg, #f0f7f3 0%, #d8ece0 100%); display: flex; align-items: center; justify-content: center; padding: 60px 48px; position: sticky; top: 0; height: 100vh; }
.bc-register-hero-content { max-width: 320px; }
.bc-register-hero-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.bc-hero-pillar { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--bc-text-muted); }

/* Plan selector */
.bc-plan-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.bc-plan-option { position: relative; cursor: pointer; }
.bc-plan-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.bc-plan-option__inner {
  border: 2px solid var(--bc-border); border-radius: var(--bc-radius);
  padding: 14px 10px; text-align: center; transition: all var(--bc-transition);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
}
.bc-plan-option:hover .bc-plan-option__inner { border-color: var(--bc-green); }
.bc-plan-option--selected .bc-plan-option__inner { border-color: var(--bc-green); background: var(--bc-green-50); }
.bc-plan-check { position: absolute; top: -8px; right: -8px; }
.bc-plan-icon { color: var(--bc-green); }
.bc-plan-name { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--bc-text); }
.bc-plan-limit { font-size: 11px; color: var(--bc-text-muted); }
.bc-password-strength { margin-top: 4px; }

/* ── Marketing sections ──────────────────────────────────────── */
.bc-marketing-section { padding: 72px 0; background: var(--bc-bg); }
.bc-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.bc-marketing-title { font-family: var(--font-title); font-size: 32px; font-weight: 700; text-align: center; color: var(--bc-text); margin-bottom: 8px; }
.bc-marketing-subtitle { font-size: 14px; color: var(--bc-text-muted); text-align: center; margin-bottom: 48px; }
.bc-features-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
.bc-feature-card { text-align: center; padding: 24px 16px; background: var(--bc-bg-card); border: 1px solid var(--bc-border); border-radius: var(--bc-radius); }
.bc-feature-icon { color: var(--bc-green); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--bc-green-50); border-radius: 12px; }
.bc-feature-card h3 { font-family: var(--font-title); font-size: 13px; font-weight: 600; color: var(--bc-text); margin-bottom: 6px; }
.bc-feature-card p { font-size: 11px; color: var(--bc-text-muted); line-height: 1.5; }

/* Footer marketing */
.bc-marketing-footer { background: var(--bc-green-dark); color: rgba(255,255,255,.8); }
.bc-footer-cta { padding: 64px 24px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.bc-footer-cta h2 { font-family: var(--font-title); font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.bc-footer-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.bc-footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 48px 24px; }
.bc-footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 16px; text-transform: uppercase; }
.bc-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.bc-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); }
.bc-footer-col ul li a:hover { color: #fff; }
.bc-footer-col ul li { font-size: 13px; color: rgba(255,255,255,.45); }
.bc-footer-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; margin: 12px 0 16px; }
.bc-footer-social { display: flex; gap: 14px; }
.bc-footer-social a { color: rgba(255,255,255,.5); }
.bc-footer-social a:hover { color: #fff; }
.bc-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; color: rgba(255,255,255,.35); }
.bc-footer-bottom-links { display: flex; gap: 20px; }
.bc-footer-bottom-links a { color: rgba(255,255,255,.35); }
.bc-footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Modal ───────────────────────────────────────────────────── */
.bc-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.bc-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); backdrop-filter: blur(4px); }
.bc-modal-box { position: relative; background: #fff; border-radius: var(--bc-radius-lg); padding: 32px; max-width: 480px; width: 90%; box-shadow: var(--bc-shadow-lg); z-index: 1; max-height: 90vh; overflow-y: auto; }
.bc-modal-box--lg { max-width: 600px; }
.bc-modal-close { position: absolute; top: 16px; right: 16px; color: var(--bc-text-muted); font-size: 18px; padding: 4px 8px; border-radius: 6px; }
.bc-modal-close:hover { background: var(--bc-bg); }
.bc-modal-box h3 { font-family: var(--font-title); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.bc-modal-box p { font-size: 13px; color: var(--bc-text-muted); margin-bottom: 20px; }

/* ── Misc helpers ────────────────────────────────────────────── */
.bc-home-header { display: flex; align-items: flex-start; justify-content: space-between; }
.bc-company-header { display: flex; align-items: flex-end; justify-content: space-between; }
.bc-date-filter .bc-btn-ghost { display: flex; align-items: center; gap: 8px; }
.bc-topbar--player .bc-topbar__search--sm { max-width: 280px; }
.bc-topbar__mood-compact { display: flex; align-items: center; gap: 6px; }
.bc-topbar__profile-compact { display: flex; align-items: center; gap: 8px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1400px) {
  :root { --bc-sidebar-right-w: 260px; }
  .bc-stats-grid-5 { grid-template-columns: repeat(3,1fr); }
  .bc-series-grid { grid-template-columns: repeat(3,1fr); }
  .bc-features-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1100px) {
  .bc-app-layout { grid-template-columns: var(--bc-sidebar-w) 1fr; }
  .bc-app-sidebar-right { display: none; }
  .bc-charts-row { grid-template-columns: 1fr 1fr; }
  .bc-stats-grid-4 { grid-template-columns: repeat(2,1fr); }
  .bc-resources-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  :root { --bc-sidebar-w: 0px; }
  .bc-sidebar { display: none; }
  .bc-app-layout { grid-template-columns: 1fr; }
  .bc-login-layout, .bc-register-layout { grid-template-columns: 1fr; }
  .bc-login-hero-panel, .bc-register-hero-panel { display: none; }
  .bc-login-form-panel, .bc-register-form-panel { padding: 32px 24px; border: none; }
  .bc-stats-grid-5 { grid-template-columns: repeat(2,1fr); }
  .bc-series-grid { grid-template-columns: repeat(2,1fr); }
  .bc-charts-row { grid-template-columns: 1fr; }
  .bc-form-row, .bc-form-row--3 { grid-template-columns: 1fr; }
  .bc-plan-selector { grid-template-columns: 1fr; }
  .bc-footer-cols { grid-template-columns: 1fr 1fr; }
  .bc-features-grid { grid-template-columns: repeat(2,1fr); }
  .bc-mood-grid { grid-template-columns: repeat(3,1fr); }
}
