/* ================================================================
   PTR India — Claude.ai Design System
   Background: #F0EDE8 warm cream  |  Primary: #CC785C terracotta
   Font: Inter (variable)  |  Built April 2025
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Backgrounds — warm cream, Claude's signature */
  --bg:           #F0EDE8;
  --bg2:          #E8E4DD;
  --bg3:          #DDD9D0;
  --surface:      #FAFAF8;
  --surface2:     #F5F2ED;
  --white:        #FFFFFF;

  /* Primary — terracotta/rust (Claude's brand colour) */
  --primary:      #CC785C;
  --primary-dark: #B5613E;
  --primary-light:#E09070;
  --primary-bg:   rgba(204,120,92,.10);
  --primary-hover:#B5613E;

  /* Keep --accent for quiz/LMS amber highlights */
  --accent:       #A0620A;
  --accent-light: #D4A537;
  --accent-bg:    #FDF3E0;

  /* Semantic colours */
  --success:      #2D7D52;
  --success-bg:   #E8F5EE;
  --danger:       #C53030;
  --danger-bg:    #FEE2E2;
  --warning:      #A0620A;
  --warning-bg:   #FDF3E0;
  --info:         #2A5FBA;
  --info-bg:      #EBF0FA;

  /* Text hierarchy */
  --dark:         #1A1714;
  --body-text:    #2D2926;
  --text-muted:   #7A7268;
  --text-dim:     #A8A098;
  --border:       rgba(26,23,20,.12);
  --border-med:   rgba(26,23,20,.18);
  --border-strong:rgba(26,23,20,.28);

  /* Shadows — warm-tinted */
  --shadow-sm:    0 1px 4px rgba(26,23,20,.07);
  --shadow:       0 2px 10px rgba(26,23,20,.09);
  --shadow-md:    0 6px 24px rgba(26,23,20,.11);
  --shadow-lg:    0 16px 48px rgba(26,23,20,.13);

  /* Radius */
  --radius-sm:    5px;
  --radius:       9px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --radius-2xl:   28px;

  --transition:   all .17s ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
h1 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem,2.8vw,2.1rem); }
h3 { font-size: 1.25rem; }
p { color: var(--body-text); margin-bottom: 0.85rem; }
a { color: var(--primary); transition: var(--transition); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ── Typography Utilities ──────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--primary); margin-bottom: 10px;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 14px; height: 2px;
  background: var(--primary); border-radius: 1px;
}
.section-title {
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800; color: var(--dark);
  letter-spacing: -0.025em;
}
.section-divider {
  width: 36px; height: 3px; background: var(--primary);
  border-radius: 2px; margin: 8px 0 20px;
}
.text-muted  { color: var(--text-muted)  !important; }
.text-primary{ color: var(--primary)     !important; }
.text-success{ color: var(--success)     !important; }
.text-danger { color: var(--danger)      !important; }
.text-warning{ color: var(--warning)     !important; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex; align-items: center;
  justify-content: center; gap: 6px;
  border-width: 1.5px;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary); border-color: var(--primary); color: #fff !important;
  padding: 10px 22px; font-size: 14px;
  box-shadow: 0 2px 8px rgba(204,120,92,.28);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(204,120,92,.38); color: #fff !important;
}
.btn-warning {
  background: var(--accent-light); border-color: var(--accent-light);
  color: var(--dark) !important; font-weight: 700;
  padding: 10px 22px; font-size: 14px;
}
.btn-warning:hover { background: var(--accent); border-color: var(--accent); color: var(--dark) !important; }
.btn-success  { background: var(--success); border-color: var(--success); color: #fff !important; }
.btn-success:hover { background: #225e3e; color: #fff !important; }
.btn-danger   { background: var(--danger); border-color: var(--danger); color: #fff !important; }
.btn-danger:hover  { background: #9b2222; color: #fff !important; }
.btn-secondary {
  background: var(--surface); border-color: var(--border-med);
  color: var(--dark) !important;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--bg2); border-color: var(--border-strong); color: var(--dark) !important; }

.btn-outline-primary { border-color: var(--primary); color: var(--primary) !important; background: transparent; }
.btn-outline-primary:hover { background: var(--primary); color: #fff !important; }
.btn-outline-secondary { border-color: var(--border-med); color: var(--text-muted) !important; background: transparent; }
.btn-outline-secondary:hover { background: var(--bg2); color: var(--dark) !important; }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: #fff !important; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff !important; }
.btn-outline-warning { border-color: var(--accent-light); color: var(--accent) !important; }
.btn-outline-warning:hover { background: var(--accent-light); color: var(--dark) !important; }
.btn-outline-success { border-color: var(--success); color: var(--success) !important; }
.btn-outline-success:hover { background: var(--success); color: #fff !important; }
.btn-outline-danger  { border-color: var(--danger); color: var(--danger) !important; }
.btn-outline-danger:hover  { background: var(--danger); color: #fff !important; }

.btn-lg { padding: 13px 28px !important; font-size: 15px !important; border-radius: var(--radius-lg) !important; }
.btn-sm { padding: 6px 14px !important; font-size: 12.5px !important; }
.btn-xs { padding: 3px 9px !important; font-size: 11.5px !important; border-radius: var(--radius-sm) !important; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 13px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--dark) !important;
  background: var(--surface) !important;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,120,92,.12);
  background: #fff !important;
  outline: none;
}
.form-label { font-weight: 600; font-size: 13.5px; color: var(--dark); margin-bottom: 5px; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.form-switch .form-check-input:checked { background-color: var(--primary); }

/* ── Navbar — warm background ──────────────────────────────── */
.top-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar {
  background: var(--dark) !important;
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 12px rgba(26,23,20,.18) !important;
}
.navbar-brand span { color: var(--primary) !important; font-weight: 800; letter-spacing: -0.02em; }
.navbar .nav-link {
  color: rgba(255,255,255,.75) !important;
  font-size: 14px; font-weight: 500;
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.09); }
.navbar .nav-link.active { color: var(--primary) !important; }
.navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.navbar .dropdown-item { font-size: 13.5px; color: var(--dark); padding: 8px 16px; border-radius: var(--radius-sm); }
.navbar .dropdown-item:hover { background: var(--bg); color: var(--primary); }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-body  { padding: 22px; }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); letter-spacing: -0.015em; }
.card-text  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ── Course Cards ──────────────────────────────────────────── */
.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-med);
}
.course-card .card-img-top {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.course-card .card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.course-card .card-title { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.course-card .instructor-name { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.course-card .price {
  font-size: 1.1rem; font-weight: 800; color: var(--primary);
  letter-spacing: -0.02em;
}
.course-card .price-original { font-size: 12px; color: var(--text-dim); text-decoration: line-through; margin-left: 6px; }
.star-rating { color: var(--accent-light); font-size: 12px; }
.star-rating .count { color: var(--text-muted); font-size: 11.5px; margin-left: 4px; }
.course-badge {
  display: inline-block; padding: 3px 9px; border-radius: 20px;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.badge-free     { background: var(--success-bg); color: var(--success); }
.badge-popular  { background: var(--primary-bg); color: var(--primary); }
.badge-new      { background: var(--info-bg); color: var(--info); }
.badge-bestsell { background: var(--accent-bg); color: var(--warning); }

/* ── Admin Panel ───────────────────────────────────────────── */
.admin-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.admin-section-title {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
  background: var(--dark);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 80px 0;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% -20%, rgba(204,120,92,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(204,120,92,.09) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section h1 { color: #fff; }
.hero-section p   { color: rgba(255,255,255,.72); }

/* ── Section Backgrounds ───────────────────────────────────── */
.section-bg-warm     { background: var(--bg2); }
.section-bg-surface  { background: var(--surface); }
.section-bg-dark     { background: var(--dark); }
.section-bg-white    { background: #fff; }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-strip .stat-num {
  font-size: 2rem; font-weight: 800; color: var(--dark);
  letter-spacing: -0.03em; line-height: 1;
}
.stats-strip .stat-lbl { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }

/* ── Feature Cards ─────────────────────────────────────────── */
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-med); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.feat-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.015em; }
.feat-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Testimonials ──────────────────────────────────────────── */
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.testi-stars { color: var(--accent-light); font-size: 13px; letter-spacing: 2px; }
.testi-text  { font-size: 14px; color: var(--body-text); line-height: 1.75; font-style: italic; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff;
}

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius-lg);
  border-width: 1.5px;
  font-size: 14px;
  padding: 13px 16px;
}
.alert-success { background: var(--success-bg); border-color: rgba(45,125,82,.25); color: #1a4731; }
.alert-danger  { background: var(--danger-bg);  border-color: rgba(197,48,48,.25);  color: #7b1a1a; }
.alert-warning { background: var(--warning-bg); border-color: rgba(160,98,10,.25);  color: #7d4e00; }
.alert-info    { background: var(--info-bg);    border-color: rgba(42,95,186,.25);   color: #1a3a6e; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: .02em;
  padding: 3px 8px; border-radius: 20px;
}
.bg-primary   { background: var(--primary) !important; }
.bg-success   { background: var(--success) !important; }
.bg-danger    { background: var(--danger)  !important; }
.bg-warning   { background: var(--accent-light) !important; color: var(--dark) !important; }
.bg-secondary { background: var(--text-dim) !important; }
.bg-info      { background: var(--info) !important; }

/* ── Tables ────────────────────────────────────────────────── */
.table {
  color: var(--dark);
  border-color: var(--border);
  font-size: 13.5px;
}
.table thead th {
  background: var(--bg2) !important;
  color: var(--text-muted);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  border-bottom: 1.5px solid var(--border-med);
  padding: 10px 14px;
}
.table td { padding: 11px 14px; border-color: var(--border); vertical-align: middle; }
.table-hover tbody tr:hover td { background: var(--bg) !important; }

/* ── Modals ────────────────────────────────────────────────── */
.modal-content {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 22px;
}
.modal-body { padding: 22px; }
.modal-footer {
  border-top: 1px solid var(--border);
  padding: 14px 22px;
}

/* ── Progress Bars ─────────────────────────────────────────── */
.progress {
  background: var(--bg3);
  border-radius: 20px;
  height: 8px;
}
.progress-bar {
  background: var(--primary);
  border-radius: 20px;
}
.progress-bar.bg-success { background: var(--success) !important; }
.progress-bar.bg-warning { background: var(--accent-light) !important; }

/* ── Pagination ────────────────────────────────────────────── */
.pagination .page-link {
  border: 1px solid var(--border);
  color: var(--dark);
  background: var(--surface);
  font-size: 13.5px; font-weight: 600;
  border-radius: var(--radius-sm) !important;
  margin: 0 2px;
  padding: 6px 12px;
}
.pagination .page-link:hover { background: var(--bg2); color: var(--primary); border-color: var(--border-med); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination .page-item.disabled .page-link { background: var(--bg3); color: var(--text-dim); }

/* ── Tabs ──────────────────────────────────────────────────── */
.nav-tabs {
  border-bottom: 1.5px solid var(--border);
  gap: 4px;
}
.nav-tabs .nav-link {
  color: var(--text-muted);
  border: none; border-bottom: 2px solid transparent;
  font-weight: 600; font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 0;
  transition: var(--transition);
}
.nav-tabs .nav-link:hover { color: var(--dark); border-bottom-color: var(--border-med); }
.nav-tabs .nav-link.active {
  color: var(--primary); border-bottom-color: var(--primary);
  background: transparent;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb { font-size: 13px; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-dim); }

/* ── Dropdowns ─────────────────────────────────────────────── */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--surface);
  padding: 6px;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  font-size: 13.5px; color: var(--dark);
  padding: 8px 12px;
}
.dropdown-item:hover, .dropdown-item:focus { background: var(--bg2); color: var(--primary); }
.dropdown-divider { border-color: var(--border); }

/* ── List groups ───────────────────────────────────────────── */
.list-group-item {
  background: var(--surface);
  border-color: var(--border);
  color: var(--dark);
  font-size: 14px;
}
.list-group-item.active { background: var(--primary); border-color: var(--primary); }
.list-group-item:hover  { background: var(--bg2); }

/* ── Sidebar / Nav pills ───────────────────────────────────── */
.nav-pills .nav-link { color: var(--text-muted); font-weight: 600; font-size: 13.5px; border-radius: var(--radius); }
.nav-pills .nav-link:hover { color: var(--dark); background: var(--bg2); }
.nav-pills .nav-link.active { background: var(--primary); color: #fff; }

/* ── Quiz cards ────────────────────────────────────────────── */
.quiz-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition);
}
.quiz-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.quiz-card .quiz-title { font-size: 15px; font-weight: 700; color: var(--dark); }
.quiz-card .quiz-meta  { font-size: 12.5px; color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 56px 0 28px;
}
.site-footer h6 { color: rgba(255,255,255,.3); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.site-footer a   { color: rgba(255,255,255,.55); font-size: 13.5px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; font-size: 13px; }

/* ── Password Manager card ─────────────────────────────────── */
.pm-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  transition: var(--transition);
}
.pm-card:hover { box-shadow: var(--shadow); border-color: var(--border-med); }

/* ── Smart Slides ──────────────────────────────────────────── */
.slide-card {
  background: var(--dark); border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 16/9;
  cursor: pointer; transition: var(--transition);
}
.slide-card:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ── Dashboard stat cards ──────────────────────────────────── */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card .stat-num { font-size: 2rem; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; line-height: 1; }
.stat-card .stat-lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-top: 5px; }
.stat-icon { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

/* ── Utility ───────────────────────────────────────────────── */
.text-truncate-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.text-truncate-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rounded-xl    { border-radius: var(--radius-xl) !important; }
.rounded-lg    { border-radius: var(--radius-lg) !important; }
.rounded-full  { border-radius: 50% !important; }
.shadow-none   { box-shadow: none !important; }
.shadow-sm     { box-shadow: var(--shadow-sm) !important; }
.shadow-md     { box-shadow: var(--shadow-md) !important; }
.bg-surface    { background: var(--surface) !important; }
.bg-warm       { background: var(--bg2) !important; }
.border-warm   { border-color: var(--border) !important; }
.section { padding: 80px 0; }
.section-sm    { padding: 52px 0; }

/* ── Mobile ────────────────────────────────────────────────── */
@media(max-width:768px) {
  .section  { padding: 52px 0; }
  .section-sm { padding: 32px 0; }
  .btn-lg   { padding: 11px 22px !important; font-size: 14px !important; }
  h1        { font-size: 1.8rem; }
  h2        { font-size: 1.5rem; }
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ── Selection ─────────────────────────────────────────────── */
::selection { background: rgba(204,120,92,.18); color: var(--dark); }

/* ── Dividers ──────────────────────────────────────────────── */
.hr-warm { border-color: var(--border); margin: 32px 0; }
.section-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-med), transparent);
}
