/* ============================================================
   REBOUND GROUP — 사업 대시보드 디자인 시스템
   home.rebound.io.kr 디자인 기반
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS 변수 ─── */
:root {
  --primary: #FF5500;
  --primary-hover: #FF6B20;
  --primary-light: rgba(255,85,0,0.1);
  --ai-blue: #4A6CF7;
  --ai-blue-light: rgba(74,108,247,0.1);
  --success: #10B981;
  --success-light: rgba(16,185,129,0.1);
  --warn: #F59E0B;
  --warn-light: rgba(245,158,11,0.1);
  --danger: #EF4444;
  --bg: #0A0A0A;
  --bg-section: #111111;
  --surface: #1A1A1A;
  --surface-hover: #222222;
  --surface-alt: #151515;
  --text: #F5F5F5;
  --text-sub: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.1);
  --border-hover: rgba(255,255,255,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --font: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --nav-height: 64px;
  --max-width: 1280px;
}

[data-theme="light"] {
  --bg: #F8F8F6;
  --bg-section: #FFFFFF;
  --surface: #FFFFFF;
  --surface-hover: #F5F5F3;
  --surface-alt: #FAFAF8;
  --text: #111111;
  --text-sub: rgba(0,0,0,0.55);
  --text-muted: rgba(0,0,0,0.3);
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --primary-light: rgba(255,85,0,0.06);
  --ai-blue-light: rgba(74,108,247,0.06);
  --success-light: rgba(16,185,129,0.06);
  --warn-light: rgba(245,158,11,0.06);
}

/* ─── 리셋 ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  padding-top: var(--nav-height);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-hover); }
strong { font-weight: 700; }

/* ─── 네비게이션 ─── */
.rb-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--bg); border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.rb-nav-inner {
  max-width: var(--max-width); margin: 0 auto; height: 100%;
  display: flex; align-items: center; padding: 0 24px; gap: 8px;
}
.rb-nav-logo {
  font-size: 18px; font-weight: 900; color: var(--text) !important;
  display: flex; align-items: center; gap: 10px; margin-right: 40px;
  text-decoration: none !important; letter-spacing: -0.5px;
}
.rb-nav-logo-dot { width: 12px; height: 12px; background: var(--primary); border-radius: 3px; }
.rb-nav-links { display: flex; align-items: center; gap: 0; flex: 1; }
.rb-nav-link {
  font-size: 15px; font-weight: 500; color: var(--text-sub) !important;
  padding: 8px 16px; border-radius: var(--radius-sm); border: none; background: none;
  cursor: pointer; text-decoration: none !important; white-space: nowrap;
  transition: all 0.2s;
}
.rb-nav-link:hover { color: var(--text) !important; }
.rb-nav-link.active { color: var(--primary) !important; font-weight: 700; }
.rb-nav-dropdown { position: relative; }
.rb-nav-dd-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 220px; padding: 8px 0; box-shadow: var(--shadow); z-index: 100;
}
.rb-nav-dropdown.open .rb-nav-dd-menu { display: block; }
.rb-nav-dd-menu a {
  display: block; padding: 10px 20px; font-size: 14px;
  color: var(--text) !important; text-decoration: none !important; transition: all 0.15s;
}
.rb-nav-dd-menu a:hover { background: var(--primary-light); color: var(--primary) !important; }
.rb-nav-dd-menu a.active { color: var(--primary) !important; font-weight: 600; }
.rb-nav-actions { display: flex; gap: 6px; margin-left: auto; }
.rb-nav-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: transparent; cursor: pointer; font-size: 18px; color: var(--text-sub);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.rb-nav-btn:hover { border-color: var(--primary); color: var(--primary); }
.rb-nav-hamburger { display: none; font-size: 24px; border: none; background: none; cursor: pointer; color: var(--text); margin-left: 8px; }

@media (max-width: 900px) {
  .rb-nav-links {
    display: none; flex-direction: column; position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 4px;
  }
  .rb-nav.open .rb-nav-links { display: flex; }
  .rb-nav-hamburger { display: block; }
  .rb-nav-dd-menu { position: static; box-shadow: none; border: none; padding-left: 20px; background: transparent; }
}

/* ─── 페이지 컨테이너 ─── */
.page { max-width: var(--max-width); margin: 0 auto; padding: 40px 24px; }
.page-narrow { max-width: 900px; margin: 0 auto; padding: 40px 24px; }

/* ─── 섹션 ─── */
.section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.section:first-of-type { border-top: none; }
.section-title {
  font-size: 24px; font-weight: 900; margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-sub { font-size: 15px; color: var(--text-sub); margin-bottom: 32px; line-height: 1.6; }

/* ─── 히어로 ─── */
.hero {
  background: var(--surface); border: 1px solid var(--border);
  padding: 64px 48px; border-radius: var(--radius-xl);
  margin-bottom: 48px; text-align: center;
}
.hero-badge {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 20px;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 { font-size: 42px; font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; line-height: 1.2; }
.hero .sub { font-size: 18px; color: var(--text-sub); line-height: 1.6; }
.hero-stats { display: flex; justify-content: center; gap: 56px; margin-top: 36px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 48px; font-weight: 900; color: var(--primary); letter-spacing: -2px; }
.hero-stat .label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 768px) {
  .hero { padding: 40px 24px; }
  .hero h1 { font-size: 28px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 32px; }
}

/* ─── 그리드 ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

/* ─── 카드 (가이드 통합) ─── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 24px;
}
.card h2 {
  font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px; letter-spacing: -0.3px;
}
.card h2::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%; flex-shrink: 0;
}
.card.agent { border-color: var(--ai-blue); }
.card.agent h2 { color: var(--ai-blue); }
.card.agent h2::before { background: var(--ai-blue); }
.card h3 { font-size: 16px; font-weight: 700; margin: 20px 0 10px; color: var(--text); }
.card p { margin-bottom: 10px; font-size: 15px; line-height: 1.8; }
.card ul { padding-left: 20px; margin-bottom: 10px; }
.card li { margin-bottom: 6px; font-size: 15px; }

/* ─── 대시보드 카드 ─── */
.dash-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; cursor: pointer;
  transition: all 0.25s ease; text-decoration: none !important; display: block; color: var(--text) !important;
}
.dash-card:hover {
  border-color: var(--border-hover); background: var(--surface-hover);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.dash-card .emoji { font-size: 36px; margin-bottom: 12px; }
.dash-card .name { font-size: 17px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; }
.dash-card .role { font-size: 13px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.dash-card .desc { font-size: 14px; color: var(--text-sub); line-height: 1.7; }
.dash-card .status {
  display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; margin-top: 12px;
}
.dash-card .status.active { background: var(--success-light); color: var(--success); }
.dash-card .status.dev { background: var(--warn-light); color: var(--warn); }

/* ─── 인물 카드 ─── */
.pcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: all 0.25s ease; cursor: pointer; text-decoration: none !important;
  display: block; color: var(--text) !important;
}
.pcard:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.pcard .emoji { font-size: 44px; margin-bottom: 12px; }
.pcard .name { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; }
.pcard .role { font-size: 13px; font-weight: 700; margin: 6px 0 12px; letter-spacing: 0.3px; }
.pcard .svc { font-size: 14px; line-height: 1.8; color: var(--text-sub); }
.pcard .ai-tag {
  font-size: 12px; background: var(--ai-blue-light); color: var(--ai-blue);
  padding: 4px 14px; border-radius: 20px; margin-top: 14px; display: inline-block; font-weight: 600;
}

/* ─── KPI 그리드 ─── */
.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.kpi-item {
  background: var(--primary-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.kpi-item .num { font-size: 28px; font-weight: 900; color: var(--primary); letter-spacing: -1px; }
.kpi-item .label { font-size: 13px; color: var(--text-sub); margin-top: 4px; }
@media (min-width: 769px) { .kpi-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ─── 스텝 ─── */
.step {
  display: flex; align-items: flex-start; gap: 14px; margin: 12px 0;
  padding: 16px 20px; background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.step-num {
  background: var(--primary); color: #fff; width: 30px; height: 30px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.step-text { font-size: 15px; line-height: 1.7; }

/* ─── AI 에이전트 아이템 ─── */
.agent-item {
  display: flex; align-items: flex-start; gap: 14px; margin: 12px 0;
  padding: 18px 20px; background: var(--ai-blue-light); border: 1px solid var(--border);
  border-radius: var(--radius-sm); border-left: 4px solid var(--ai-blue);
}
.agent-icon {
  background: var(--ai-blue); color: #fff; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.agent-info { flex: 1; }
.agent-info .name { font-weight: 700; font-size: 15px; color: var(--ai-blue); }
.agent-info .desc { font-size: 14px; color: var(--text-sub); margin-top: 4px; line-height: 1.6; }
.agent-info .usage { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-style: italic; }

/* ─── 팁/경고/예시 ─── */
.tip {
  background: var(--success-light); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 16px 0; font-size: 15px;
}
.tip strong { color: var(--success); }
.warn {
  background: var(--warn-light); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 16px 0; font-size: 15px;
}
.warn strong { color: var(--warn); }
.example {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 20px;
  margin: 12px 0; font-size: 14px; line-height: 1.7;
}
.example .you { color: var(--ai-blue); font-weight: 600; }
.example .ai { color: var(--primary); font-weight: 600; }

/* ─── 테이블 ─── */
table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
th {
  background: var(--surface-alt); padding: 12px 16px; text-align: center;
  font-weight: 700; border-bottom: 2px solid var(--border); font-size: 13px;
  color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.5px;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: center; }

/* ─── 체크리스트 ─── */
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.checklist li::before { content: '\2610'; margin-right: 10px; color: var(--text-muted); }

/* ─── 프로세스 플로우 ─── */
.flow-h { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 16px 0; }
.flow-box {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px; text-align: center;
  font-size: 15px; font-weight: 600; min-width: 130px;
}
.flow-box.highlight { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.flow-arr { font-size: 22px; color: var(--text-muted); }

/* ─── 프로세스 맵 ─── */
.proc-map {
  display: grid; grid-template-columns: 130px 1fr; gap: 0;
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.pm-label {
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--primary); padding: 16px 12px;
  text-align: center; border-bottom: 1px solid var(--border);
}
.pm-content {
  display: flex; align-items: center; gap: 8px; padding: 16px 20px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.pm-step { background: var(--surface-alt); border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; font-weight: 600; font-size: 14px; }
.pm-arrow { color: var(--text-muted); font-size: 16px; }

/* ─── 스윔레인 ─── */
.swim {
  display: grid; grid-template-columns: 80px 1fr 1fr 1fr; gap: 0;
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  font-size: 14px;
}
.swim-hdr { background: var(--surface-alt); padding: 12px 10px; font-weight: 700; text-align: center; border-bottom: 1px solid var(--border); font-size: 13px; }
.swim-cell { padding: 12px; border-bottom: 1px solid var(--border); text-align: center; display: flex; align-items: center; justify-content: center; }
.swim-time { background: var(--primary-light); font-weight: 700; color: var(--primary); font-size: 13px; }
.swim-act { font-size: 13px; line-height: 1.5; }

/* ─── 프로그래스 바 ─── */
.progress-bar { background: var(--surface-alt); border: 1px solid var(--border); border-radius: 20px; height: 28px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 20px; transition: width 0.5s ease; display: flex; align-items: center; padding-left: 12px; font-size: 12px; font-weight: 700; color: #fff; min-width: 44px; }
.progress-fill.primary { background: var(--primary); }
.progress-fill.blue { background: var(--ai-blue); }
.progress-fill.green { background: var(--success); }

/* ─── 가이드 헤더 ─── */
.guide-header {
  background: var(--surface); border: 1px solid var(--border);
  padding: 36px 36px; border-radius: var(--radius-lg); margin-bottom: 36px;
}
.guide-header .badge {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 12px; margin-bottom: 10px; letter-spacing: 0.5px;
}
.guide-header h1 { font-size: 28px; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.5px; }
.guide-header .sub { font-size: 15px; color: var(--text-sub); }

/* ─── 퀵링크 ─── */
.quick-links { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0; }
.quick-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: 1px solid var(--primary); border-radius: 30px;
  font-size: 15px; font-weight: 700; color: var(--primary) !important;
  text-decoration: none !important; transition: all 0.2s;
}
.quick-link:hover { background: var(--primary); color: #fff !important; }

/* ─── 푸터 ─── */
.rb-footer {
  text-align: center; font-size: 13px; color: var(--text-muted);
  margin-top: 64px; padding: 24px; border-top: 1px solid var(--border);
  line-height: 1.8;
}

/* ─── 비밀번호 모달 ─── */
.auth-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center;
  z-index: 2000;
}
.auth-box {
  background: var(--surface); border: 1px solid var(--border);
  padding: 48px; border-radius: var(--radius-xl);
  text-align: center; max-width: 420px; width: 90%;
}
.auth-box h2 { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.auth-box p { font-size: 15px; color: var(--text-sub); margin-bottom: 24px; line-height: 1.6; }
.auth-box input {
  width: 100%; padding: 14px 20px; font-size: 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 14px; text-align: center;
  background: var(--bg); color: var(--text); font-family: var(--font);
}
.auth-box input:focus { outline: none; border-color: var(--primary); }
.auth-box button {
  width: 100%; padding: 14px; font-size: 16px; font-weight: 700;
  background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.2s; font-family: var(--font);
}
.auth-box button:hover { background: var(--primary-hover); }
.auth-box .error { color: var(--danger); font-size: 14px; margin-top: 10px; display: none; }

/* ─── 검색 ─── */
.search-bar {
  width: 100%; padding: 14px 24px; font-size: 16px; border: 1px solid var(--border);
  border-radius: 30px; margin-bottom: 32px; background: var(--surface); color: var(--text);
  font-family: var(--font); transition: border-color 0.2s;
}
.search-bar:focus { outline: none; border-color: var(--primary); }
.search-bar::placeholder { color: var(--text-muted); }
.dim { opacity: 0.15; pointer-events: none; transition: opacity 0.3s; }

/* ─── 필터 바 ─── */
.filter-bar { display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-bar select {
  padding: 10px 20px; font-size: 15px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--text);
  font-family: var(--font);
}

/* ─── 네비 사용자 표시 ─── */
.rb-nav-user {
  font-size: 13px; font-weight: 600; color: var(--text-sub);
  padding: 6px 12px; border-radius: var(--radius-sm);
  background: var(--surface-alt); border: 1px solid var(--border);
  white-space: nowrap;
}

/* ─── 챗봇 ─── */
#chatbot-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  font-size: 24px; cursor: pointer; box-shadow: 0 4px 20px rgba(255,85,0,0.4);
  transition: transform 0.2s;
}
#chatbot-btn:hover { transform: scale(1.1); }

#chatbot-panel {
  position: fixed; bottom: 92px; right: 24px; z-index: 1500;
  width: 400px; max-height: 520px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  flex-direction: column; overflow: hidden;
}
@media (max-width: 500px) {
  #chatbot-panel { width: calc(100vw - 32px); right: 16px; bottom: 84px; }
}

.chat-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 700;
}
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  max-height: 360px; min-height: 200px;
}
.chat-msg {
  padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 10px;
  font-size: 14px; line-height: 1.6; max-width: 85%;
}
.chat-msg.bot {
  background: var(--surface-alt); border: 1px solid var(--border);
  margin-right: auto;
}
.chat-msg.user {
  background: var(--primary); color: #fff;
  margin-left: auto; text-align: right;
}
.chat-msg a { color: var(--primary); text-decoration: underline; }
.chat-msg.bot a { color: var(--primary); }
.chat-msg.user a { color: #fff; }

.chat-input-area {
  display: flex; gap: 8px; padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.chat-input-area input {
  flex: 1; padding: 10px 14px; font-size: 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); font-family: var(--font);
}
.chat-input-area input:focus { outline: none; border-color: var(--primary); }
.chat-input-area button {
  padding: 10px 16px; font-size: 14px; font-weight: 700;
  background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius-sm); cursor: pointer; font-family: var(--font);
  white-space: nowrap;
}
.chat-input-area button:hover { background: var(--primary-hover); }

/* ─── 인쇄 ─── */
@media print {
  .rb-nav, .rb-nav-hamburger, .search-bar, .filter-bar, #chatbot-btn, #chatbot-panel { display: none !important; }
  body { padding-top: 0; background: #fff; color: #111; }
  .card, .dash-card, .pcard { break-inside: avoid; }
  .hero { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  :root { --bg: #fff; --surface: #fff; --text: #111; --text-sub: #555; --border: #ddd; }
}
