/* =============================================
   CARE TRUST — SHARED STYLES
   Premium NGO Website Design System
   ============================================= */

/* @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap'); */

/* ===== CSS VARIABLES ===== */
:root {
  /* Light Theme */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(226, 232, 240, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.9);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --navbar-bg: rgba(248, 250, 252, 0.85);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --input-bg: rgba(241, 245, 249, 0.8);
  --input-border: rgba(203, 213, 225, 0.8);
  --footer-bg: #0f172a;

  /* Accents */
  --accent-orange: #f97316;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --gradient-main: linear-gradient(135deg, #f97316 0%, #3b82f6 100%);
  --gradient-alt: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  --gradient-glow: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(59,130,246,0.15) 100%);
}

[data-theme="dark"] {
  --bg-primary: #060b14;
  --bg-secondary: #0b1222;
  --card-bg: rgba(15, 25, 45, 0.8);
  --card-border: rgba(255, 255, 255, 0.07);
  --glass-bg: rgba(15, 25, 50, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --navbar-bg: rgba(6, 11, 20, 0.9);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(249, 115, 22, 0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --input-bg: rgba(15, 25, 45, 0.6);
  --input-border: rgba(255, 255, 255, 0.1);
  --footer-bg: #020508;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; transform: scale(1.05); }
.loader-inner { text-align: center; }
.loader-logo {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.5rem; color: white;
  margin: 0 auto 24px;
  animation: logoBreath 1.5s ease-in-out infinite;
}
@keyframes logoBreath {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(249,115,22,0); }
}
.loader-bar {
  width: 200px; height: 3px;
  background: var(--card-border);
  border-radius: 3px;
  overflow: hidden; margin: 0 auto 16px;
}
.loader-progress {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 3px;
  animation: loadProgress 2s ease forwards;
}
@keyframes loadProgress { from { width: 0; } to { width: 100%; } }
.loader-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ===== GRID PATTERN ===== */
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
[data-theme="dark"] .grid-pattern {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; color: white; font-size: 0.9rem;
}
.logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  color: var(--text-primary); line-height: 1.2;
}
.logo-tagline { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin: 0 auto;
}
.nav-link {
  padding: 6px 12px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--glass-bg);
}
.nav-link.active { color: var(--accent-orange); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Theme Toggle */
.theme-toggle {
  width: 56px; height: 28px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: var(--glass-bg);
  cursor: pointer;
  position: relative;
  display: flex; align-items: center;
  padding: 2px;
  transition: all 0.3s ease;
}
.theme-icon { font-size: 0.8rem; position: absolute; transition: opacity 0.3s ease; }
.theme-icon.sun { left: 5px; opacity: 1; }
.theme-icon.moon { right: 5px; opacity: 0.5; }
[data-theme="dark"] .theme-icon.sun { opacity: 0.5; }
[data-theme="dark"] .theme-icon.moon { opacity: 1; }
.toggle-ball {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; z-index: 1;
  margin-left: 2px;
}
[data-theme="dark"] .toggle-ball { transform: translateX(26px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navbar-bg);
  border-top: 1px solid var(--card-border);
  padding: 16px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.mobile-link:hover { background: var(--glass-bg); color: var(--text-primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::after { opacity: 0.1; }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(249,115,22,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.btn-ghost:hover { background: var(--card-bg); transform: translateY(-2px); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.82rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--accent-orange); font-weight: 600; }
.breadcrumb span { opacity: 0.5; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: var(--shadow-glass);
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; position: relative; }
.form-label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-orange);
  background: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Floating label */
.float-group { position: relative; margin-bottom: 20px; }
.float-input {
  width: 100%; padding: 20px 18px 8px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease; outline: none;
}
.float-input:focus { border-color: var(--accent-orange); box-shadow: 0 0 0 4px rgba(249,115,22,0.1); }
.float-label {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem; color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}
.float-input:focus ~ .float-label,
.float-input:not(:placeholder-shown) ~ .float-label {
  top: 12px; transform: none;
  font-size: 0.72rem; font-weight: 600;
  color: var(--accent-orange);
}

/* File upload */
.file-upload {
  border: 2px dashed var(--input-border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--input-bg);
}
.file-upload:hover { border-color: var(--accent-orange); background: rgba(249,115,22,0.04); }
.file-upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.file-upload-text { color: var(--text-secondary); font-size: 0.9rem; }
.file-upload-text strong { color: var(--accent-orange); }

/* ===== TABS ===== */
.tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 20px;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid var(--card-border);
  color: var(--text-secondary);
  font-weight: 600; font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-main);
  border-color: transparent; color: white;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-orange { background: rgba(249,115,22,0.12); color: #f97316; }
.badge-blue { background: rgba(59,130,246,0.12); color: #3b82f6; }
.badge-green { background: rgba(34,197,94,0.12); color: #22c55e; }
.badge-purple { background: rgba(139,92,246,0.12); color: #8b5cf6; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border), transparent);
  margin: 60px 0;
}

/* ===== REVEAL ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-btn:hover { background: var(--gradient-main); transform: translateY(-2px); }

/* Footer logo in dark footer */
.footer .nav-logo .logo-name { color: white; }
.footer .nav-logo .logo-tagline { color: rgba(255,255,255,0.4); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  max-width: 520px; width: 100%;
  backdrop-filter: blur(20px);
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 10px; border: 1px solid var(--card-border);
  background: var(--glass-bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text-muted);
  transition: all 0.2s ease;
}
.modal-close:hover { color: var(--text-primary); background: var(--card-bg); }
.modal { position: relative; }
.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--text-primary); margin-bottom: 8px;
}
.modal-subtitle { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; }

/* ===== SUCCESS TOAST ===== */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 3000;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid #22c55e;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(20px);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-title { font-weight: 700; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 4px; }
.toast-text { font-size: 0.82rem; color: var(--text-secondary); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 1500;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: waPulse 2s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.6); }
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 1500;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  box-shadow: var(--shadow-card);
  opacity: 0; transition: all 0.3s ease;
  pointer-events: none;
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gradient-main); color: white; border-color: transparent; }

/* ===== SECTION SPACING ===== */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero > .container > div { grid-template-columns: 1fr !important; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
  .modal { padding: 28px 20px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }

/* ===== SELECTION ===== */
::selection { background: rgba(249,115,22,0.2); color: var(--text-primary); }
