/* ================================================================
   THEME SYSTEM - Dark/Light Mode CSS Custom Properties
   Cognizant Cloud LLC
   ================================================================ */

/* ----------------------------------------------------------------
   LIGHT THEME (default)
   ---------------------------------------------------------------- */
:root,
[data-theme="light"] {
  --theme-bg-primary: #ffffff;
  --theme-bg-secondary: #f8fafc;
  --theme-bg-tertiary: #f1f5f9;
  --theme-bg-card: #ffffff;
  --theme-bg-card-hover: #f8fafc;
  --theme-bg-overlay: rgba(255, 255, 255, 0.95);
  --theme-bg-glass: rgba(255, 255, 255, 0.8);

  --theme-text-primary: #0f172a;
  --theme-text-secondary: #334155;
  --theme-text-tertiary: #475569;
  --theme-text-muted: #64748b;
  --theme-text-faint: #94a3b8;

  --theme-border: #e2e8f0;
  --theme-border-light: #f1f5f9;
  --theme-border-hover: #cbd5e1;

  --theme-teal-primary: #0d9488;
  --theme-teal-hover: #0f766e;
  --theme-teal-bg: rgba(13, 148, 136, 0.08);
  --theme-teal-border: rgba(13, 148, 136, 0.25);
  --theme-teal-text: #0d9488;

  --theme-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --theme-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --theme-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

  --theme-input-bg: #ffffff;
  --theme-input-border: #e2e8f0;
  --theme-input-text: #0f172a;
  --theme-input-placeholder: #94a3b8;

  --theme-code-bg: #f1f5f9;
  --theme-code-text: #0f172a;

  --theme-tag-bg: #f1f5f9;
  --theme-tag-text: #475569;
  --theme-tag-border: #e2e8f0;

  --theme-scrollbar-track: #f1f5f9;
  --theme-scrollbar-thumb: #cbd5e1;
}

/* ----------------------------------------------------------------
   DARK THEME
   ---------------------------------------------------------------- */
[data-theme="dark"] {
  --theme-bg-primary: #0f172a;
  --theme-bg-secondary: #1e293b;
  --theme-bg-tertiary: #0f172a;
  --theme-bg-card: #1e293b;
  --theme-bg-card-hover: #253348;
  --theme-bg-overlay: rgba(15, 23, 42, 0.95);
  --theme-bg-glass: rgba(15, 23, 42, 0.8);

  --theme-text-primary: #f1f5f9;
  --theme-text-secondary: #cbd5e1;
  --theme-text-tertiary: #94a3b8;
  --theme-text-muted: #64748b;
  --theme-text-faint: #475569;

  --theme-border: rgba(255, 255, 255, 0.1);
  --theme-border-light: rgba(255, 255, 255, 0.05);
  --theme-border-hover: rgba(255, 255, 255, 0.2);

  --theme-teal-primary: #14b8a6;
  --theme-teal-hover: #2dd4bf;
  --theme-teal-bg: rgba(13, 148, 136, 0.15);
  --theme-teal-border: rgba(13, 148, 136, 0.3);
  --theme-teal-text: #2dd4bf;

  --theme-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --theme-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --theme-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);

  --theme-input-bg: rgba(255, 255, 255, 0.06);
  --theme-input-border: rgba(255, 255, 255, 0.12);
  --theme-input-text: #f1f5f9;
  --theme-input-placeholder: #475569;

  --theme-code-bg: #1e293b;
  --theme-code-text: #e2e8f0;

  --theme-tag-bg: rgba(255, 255, 255, 0.05);
  --theme-tag-text: #cbd5e1;
  --theme-tag-border: rgba(255, 255, 255, 0.1);

  --theme-scrollbar-track: #1e293b;
  --theme-scrollbar-thumb: #475569;
}

/* ----------------------------------------------------------------
   DARK THEME OVERRIDES
   These apply dark-mode styles to existing site elements.
   They only activate when [data-theme="dark"] is on <html>.
   ---------------------------------------------------------------- */

[data-theme="dark"] body {
  background: var(--theme-bg-primary);
  color: var(--theme-text-tertiary);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--theme-text-primary);
}

[data-theme="dark"] a {
  color: var(--theme-teal-text);
}

[data-theme="dark"] a:hover {
  color: var(--theme-teal-hover);
}

/* Sections */
[data-theme="dark"] .section {
  background: var(--theme-bg-primary);
}

[data-theme="dark"] .section--dark {
  background: var(--theme-bg-secondary);
}

[data-theme="dark"] .section-label {
  color: var(--theme-teal-text);
  border-color: var(--theme-teal-border);
}

[data-theme="dark"] .section-subtitle {
  color: var(--theme-text-muted);
}

/* Capability Cards */
/* Section alt (How We Work) */
[data-theme="dark"] .section--alt {
  background: var(--navy-950, #020617);
}

/* Process Cards (How We Work) */
[data-theme="dark"] .process-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .process-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .process-number {
  color: rgba(13, 148, 136, 0.25);
}

[data-theme="dark"] .process-title {
  color: #f1f5f9;
}

[data-theme="dark"] .process-desc {
  color: #94a3b8;
}

[data-theme="dark"] .process-icon {
  color: var(--teal-400);
}

/* Capability Cards */
[data-theme="dark"] .capability-card {
  background: var(--theme-bg-card);
  border-color: var(--theme-border);
}

[data-theme="dark"] .capability-card:hover {
  border-color: var(--theme-teal-border);
  background: var(--theme-bg-card-hover);
}

[data-theme="dark"] .capability-icon {
  background: var(--theme-teal-bg);
  color: var(--theme-teal-text);
}

[data-theme="dark"] .capability-title {
  color: var(--theme-text-primary);
}

[data-theme="dark"] .capability-desc {
  color: var(--theme-text-tertiary);
}

[data-theme="dark"] .capability-list li {
  color: var(--theme-text-muted);
}

/* Industry Cards */
[data-theme="dark"] .industry-card {
  background: var(--theme-bg-card);
  border-color: var(--theme-border);
}

[data-theme="dark"] .industry-card:hover {
  border-color: var(--theme-teal-border);
}

[data-theme="dark"] .industry-icon {
  background: var(--theme-teal-bg);
  color: var(--theme-teal-text);
}

[data-theme="dark"] .industry-title {
  color: var(--theme-text-primary);
}

[data-theme="dark"] .industry-list li {
  color: var(--theme-text-tertiary);
}

/* Stat Cards */
[data-theme="dark"] .stat-card {
  background: var(--theme-bg-card);
  border-color: var(--theme-border);
}

[data-theme="dark"] .stat-card:hover {
  border-color: var(--theme-teal-border);
}

[data-theme="dark"] .stat-label {
  color: var(--theme-text-muted);
}

/* About section (already dark) -- no changes needed for .section--dark context */

/* Domain tags in light sections */
[data-theme="dark"] .domain-tag {
  color: var(--theme-tag-text);
  background: var(--theme-tag-bg);
  border-color: var(--theme-tag-border);
}

[data-theme="dark"] .domain-tag:hover {
  background: var(--theme-teal-bg);
  border-color: var(--theme-teal-border);
  color: var(--theme-teal-text);
}

/* About Cards outside dark section context */
[data-theme="dark"] .about-card {
  background: var(--theme-bg-card);
  border-color: var(--theme-border);
}

[data-theme="dark"] .about-card:hover {
  border-color: var(--theme-teal-border);
}

[data-theme="dark"] .about-title {
  color: var(--theme-text-primary);
}

[data-theme="dark"] .about-desc {
  color: var(--theme-text-tertiary);
}

[data-theme="dark"] .about-icon {
  background: var(--theme-teal-bg);
  color: var(--theme-teal-text);
}

[data-theme="dark"] .domains-title {
  color: var(--theme-text-secondary);
}

/* Footer */
[data-theme="dark"] .footer {
  background: #020617;
}

/* ----------------------------------------------------------------
   GLOBAL HEADER / NAV CENTERING (applies to all pages)
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  position: relative;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white, #ffffff);
  text-decoration: none;
}

.header-brand:hover {
  color: var(--white, #ffffff);
}

.header-logo {
  width: 32px;
  height: 32px;
  color: var(--teal-400, #2dd4bf);
}

.header-brand-text {
  font-family: var(--font-heading, 'Outfit', system-ui, sans-serif);
  font-weight: 700;
  font-size: 18px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-300, #cbd5e1);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--white, #ffffff);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link--active {
  color: var(--teal-400, #2dd4bf);
  background: rgba(13, 148, 136, 0.1);
}

.nav-link--cta {
  background: var(--teal-600, #0d9488);
  color: var(--white, #ffffff);
  font-weight: 600;
  padding: 8px 20px;
}

.nav-link--cta:hover {
  background: var(--teal-700, #0f766e);
  color: var(--white, #ffffff);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-300, #cbd5e1);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ----------------------------------------------------------------
   THEME TOGGLE BUTTON
   ---------------------------------------------------------------- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  color: #94a3b8;
  transition: all 0.2s ease;
  padding: 0;
  margin-left: 4px;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-toggle .theme-icon-moon,
.theme-toggle .theme-icon-sun {
  position: absolute;
}

.theme-toggle .theme-icon-sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.theme-toggle .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-toggle .theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-toggle .theme-icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

/* ----------------------------------------------------------------
   SMOOTH THEME TRANSITION
   ---------------------------------------------------------------- */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition: background-color 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}

/* ----------------------------------------------------------------
   SCROLLBAR THEMING
   ---------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--theme-scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--theme-scrollbar-thumb);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--theme-teal-primary);
}

/* ================================================================
   CHATBOT - 3-Tier Escalation System
   Navigator (teal) | Advisor (indigo) | Strategist (amber)
   ================================================================ */

/* Trigger Button */
.chatbot-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: triggerGentleFloat 3s ease-in-out infinite, triggerGlowBreathe 4s ease-in-out infinite;
}

.chatbot-trigger:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5),
              0 0 0 4px rgba(13, 148, 136, 0.15);
  animation: none;
}

.chatbot-trigger:active {
  transform: translateY(0) scale(0.98);
  animation: none;
}

/* When panel is open, stop idle animations */
.chatbot-trigger--active {
  animation: none;
}

.chatbot-trigger-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  position: absolute;
}

.chatbot-trigger-icon--close {
  opacity: 0;
  transform: rotate(-180deg) scale(0.5);
}

.chatbot-trigger--active .chatbot-trigger-icon--chat {
  opacity: 0;
  transform: rotate(180deg) scale(0.5);
}

.chatbot-trigger--active .chatbot-trigger-icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Sonar ping - expanding ring every 5s */
.chatbot-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(13, 148, 136, 0.6);
  opacity: 0;
  pointer-events: none;
  animation: sonarPing 5s ease-out infinite;
}

/* Second sonar ring, offset timing */
.chatbot-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(13, 148, 136, 0.4);
  opacity: 0;
  pointer-events: none;
  animation: sonarPing 5s ease-out 0.4s infinite;
}

/* Kill sonar when open */
.chatbot-trigger--active::before,
.chatbot-trigger--active::after {
  animation: none;
  opacity: 0;
}

/* First-visit dramatic bounce (applied via JS class, removed after first open) */
.chatbot-trigger--attention {
  animation: triggerFirstVisitBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
             triggerGlowBreathe 4s ease-in-out infinite 0.8s;
}

/* After first open, tone down to subtle idle */
.chatbot-trigger--seen {
  animation: triggerGentleFloat 3s ease-in-out infinite, triggerGlowBreathe 5s ease-in-out infinite;
}

.chatbot-trigger--seen::before {
  animation: sonarPing 8s ease-out infinite;
}

.chatbot-trigger--seen::after {
  animation: sonarPing 8s ease-out 0.4s infinite;
}

/* --- Trigger Keyframes --- */

@keyframes sonarPing {
  0% { opacity: 0.7; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.7); }
  100% { opacity: 0; transform: scale(1.7); }
}

@keyframes triggerGentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes triggerGlowBreathe {
  0%, 100% { box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3); }
  50% { box-shadow: 0 4px 28px rgba(13, 148, 136, 0.55), 0 0 12px rgba(13, 148, 136, 0.2); }
}

@keyframes triggerFirstVisitBounce {
  0% { transform: scale(1) translateY(0); }
  20% { transform: scale(1.15) translateY(-8px); }
  40% { transform: scale(0.95) translateY(2px); }
  60% { transform: scale(1.05) translateY(-3px); }
  80% { transform: scale(0.98) translateY(1px); }
  100% { transform: scale(1) translateY(0); }
}

/* Chat Panel */
/* Safety net: no chatbot image should ever blow up */
.chatbot-panel img, .chatbot-entrance img, .chatbot-message img {
  max-width: 100%;
  max-height: 100%;
}

.chatbot-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 9998;
  width: 420px;
  max-width: calc(100vw - 48px);
  height: 580px;
  max-height: calc(100vh - 140px);
  min-width: 320px;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Glassmorphism */
  background: var(--theme-bg-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--theme-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;

  /* Hidden by default - quick close */
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.2s ease-out,
              transform 0.2s ease-out;
}

.chatbot-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  /* Spring easing: scale from 0.8 to overshoot then settle */
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: panelSpringOpen 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes panelSpringOpen {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

[data-theme="dark"] .chatbot-panel {
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Resize Handle (top-left corner) */
.chatbot-resize-handle {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  z-index: 10;
  cursor: nw-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 0;
  transition: background 0.2s ease;
}

.chatbot-resize-handle:hover,
.chatbot-resize-handle:active {
  background: rgba(13, 148, 136, 0.15);
}

/* Grip dots pattern */
.chatbot-resize-handle::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 2px;
  margin-left: 2px;
  background-image:
    radial-gradient(circle, var(--theme-text-faint) 1px, transparent 1px),
    radial-gradient(circle, var(--theme-text-faint) 1px, transparent 1px),
    radial-gradient(circle, var(--theme-text-faint) 1px, transparent 1px);
  background-size: 4px 4px;
  background-position: 0 0, 4px 0, 0 4px;
  background-repeat: no-repeat;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.chatbot-resize-handle:hover::before {
  opacity: 1;
}

/* Prevent text selection during resize */
.chatbot-panel--resizing,
.chatbot-panel--resizing * {
  user-select: none !important;
  -webkit-user-select: none !important;
}

/* ----------------------------------------------------------------
   Header (dynamic per bot)
   ---------------------------------------------------------------- */
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-bottom: 2px solid rgba(13, 148, 136, 0.4);
  transition: border-color 0.6s ease;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header-avatar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.4s ease, color 0.4s ease;
}

.chatbot-header-avatar svg {
  width: 22px;
  height: 22px;
}

.chatbot-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.chatbot-header-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.chatbot-header-status {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chatbot-header-title {
  color: #94a3b8;
}

.chatbot-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chatbot-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.chatbot-close svg {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------------------------------
   Strategy Session Banner
   ---------------------------------------------------------------- */
.chatbot-strategy-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(217, 119, 6, 0.08));
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d97706;
  animation: bannerSlideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Golden shimmer sweep across the banner */
.chatbot-strategy-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.25), transparent);
  animation: bannerShimmer 2s ease-in-out 0.6s;
  pointer-events: none;
}

@keyframes bannerSlideDown {
  from { opacity: 0; transform: translateY(-100%); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 40px; }
}

@keyframes bannerShimmer {
  from { left: -60%; }
  to { left: 120%; }
}

[data-theme="dark"] .chatbot-strategy-banner {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.04));
}

/* ----------------------------------------------------------------
   Messages Area
   ---------------------------------------------------------------- */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.3);
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   Individual Messages (directional slide + spring easing)
   ---------------------------------------------------------------- */
.chatbot-message {
  display: flex;
  gap: 8px;
  max-width: 92%;
}

.chatbot-message--bot {
  align-self: flex-start;
  animation: messageSlideLeft 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.chatbot-message--user {
  align-self: flex-end;
  flex-direction: row-reverse;
  animation: messageSlideRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Bot messages slide in from the LEFT */
@keyframes messageSlideLeft {
  from { opacity: 0; transform: translateX(-20px) translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}

/* User messages slide in from the RIGHT */
@keyframes messageSlideRight {
  from { opacity: 0; transform: translateX(20px) translateY(10px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}

/* Bot avatar */
.chatbot-message-avatar {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-top: 18px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  animation: avatarIdle 4s ease-in-out infinite;
}

/* PNG avatar styling (round clip, border in bot color) */
.chatbot-message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.chatbot-message-avatar svg {
  width: 17px;
  height: 17px;
}

.chatbot-message--user .chatbot-message-avatar {
  display: none;
}

/* --- Avatar State Animations --- */

/* Idle state: gentle subtle rotation */
@keyframes avatarIdle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

/* Breathing state: while bot's message is rendering */
.chatbot-message-avatar--speaking {
  animation: avatarBreathe 1.5s ease-in-out infinite;
}

@keyframes avatarBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Dramatic entrance: new bot avatar on escalation */
.chatbot-entrance-avatar--entering {
  animation: avatarDramaticEntrance 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes avatarDramaticEntrance {
  0% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.2); }
  70% { transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* Step-back: old bot fading on escalation */
.chatbot-message-avatar--stepping-back {
  animation: avatarStepBack 0.5s ease-out forwards;
}

@keyframes avatarStepBack {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0.5; transform: scale(0.85); }
}

/* Message body wrapper (badge + content) */
.chatbot-message-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

/* Bot name badge */
.chatbot-bot-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}

.chatbot-bot-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* Message content bubble */
.chatbot-message-content {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  border-left: 3px solid transparent;
}

.chatbot-message--bot .chatbot-message-content {
  background: var(--theme-bg-tertiary);
  color: var(--theme-text-secondary);
  border-bottom-left-radius: 4px;
}

[data-theme="dark"] .chatbot-message--bot .chatbot-message-content {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.chatbot-message--user .chatbot-message-content {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  border-left: none;
}

.chatbot-message-content p {
  margin-bottom: 8px;
}

.chatbot-message-content p:last-child {
  margin-bottom: 0;
}

.chatbot-message-content h3 {
  margin: 10px 0 6px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--theme-text-primary);
}

.chatbot-message-content h4 {
  margin: 8px 0 4px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--theme-text-primary);
}

[data-theme="dark"] .chatbot-message-content h3,
[data-theme="dark"] .chatbot-message-content h4 {
  color: #f1f5f9;
}

.chatbot-message-content strong {
  font-weight: 600;
}

.chatbot-message-content ul {
  margin: 6px 0;
  padding-left: 16px;
}

.chatbot-message-content li {
  margin-bottom: 4px;
}

.chatbot-message-content a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.chatbot-message--bot .chatbot-message-content a {
  color: var(--theme-teal-text);
  text-decoration-color: rgba(13, 148, 136, 0.3);
}

/* ----------------------------------------------------------------
   Handoff Message
   ---------------------------------------------------------------- */
.chatbot-handoff {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin: 4px 0;
  background: var(--theme-bg-tertiary);
  border-radius: 12px;
  border: 1px dashed var(--theme-border);
  animation: handoffSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes handoffSlideIn {
  from { opacity: 0; transform: translateX(-16px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

[data-theme="dark"] .chatbot-handoff {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.chatbot-handoff-avatar {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.chatbot-handoff-avatar svg {
  width: 14px;
  height: 14px;
}

.chatbot-handoff-content {
  font-size: 13px;
  line-height: 1.5;
  color: var(--theme-text-muted);
}

.chatbot-handoff-content em {
  font-style: italic;
  color: var(--theme-text-tertiary);
}

.chatbot-handoff-name {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.chatbot-handoff-arrow {
  display: inline-block;
  margin: 0 2px;
  font-size: 14px;
  color: var(--theme-text-faint);
  animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ----------------------------------------------------------------
   Bot Entrance Animation (dramatic, per-bot colored)
   ---------------------------------------------------------------- */
.chatbot-entrance {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 6px 0;
  border-radius: 14px;
  background: var(--theme-bg-tertiary);
  border: 1px solid var(--theme-border);
  animation: entranceFadeSlide 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
  position: relative;
}

/* Color burst glow behind the entrance card */
.chatbot-entrance::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--entrance-color, rgba(13, 148, 136, 0.15));
  filter: blur(20px);
  transform: translate(-50%, -50%);
  animation: entranceGlowBurst 1.2s ease-out forwards;
  pointer-events: none;
  clip-path: inset(-10px);
}

@keyframes entranceGlowBurst {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.5); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.5); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

/* Specialist activation: pulsing ring effect on avatar */
.chatbot-entrance-avatar--specialist {
  animation: specialistEntrance 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
}

.chatbot-entrance-avatar--specialist::before,
.chatbot-entrance-avatar--specialist::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--specialist-color, #60a5fa);
  opacity: 0;
  animation: specialistPulseRing 1.8s ease-out infinite;
}

.chatbot-entrance-avatar--specialist::after {
  animation-delay: 0.6s;
}

@keyframes specialistEntrance {
  0% { opacity: 0; transform: scale(0) rotate(-180deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(0deg); }
  70% { transform: scale(0.9) rotate(0deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes specialistPulseRing {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(2); }
}

@keyframes entranceFadeSlide {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

[data-theme="dark"] .chatbot-entrance {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.chatbot-entrance-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  /* Dramatic entrance: scale from 0 to 1.2 to 1.0 with bounce */
  animation: avatarEntranceBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both,
             avatarEntranceGlow 2s ease-in-out 0.7s infinite alternate;
}

/* PNG avatar styling in entrance */
.chatbot-entrance-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid currentColor;
}

@keyframes avatarEntranceBounce {
  0% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.2); }
  70% { transform: scale(0.93); }
  85% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes avatarEntranceGlow {
  from { box-shadow: 0 0 8px currentColor; }
  to { box-shadow: 0 0 20px currentColor; }
}

.chatbot-entrance-avatar svg {
  width: 22px;
  height: 22px;
}

.chatbot-entrance-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
}

.chatbot-entrance-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chatbot-entrance-title {
  font-size: 11px;
  color: var(--theme-text-muted);
  white-space: nowrap;
}

/* Navigator entrance */
.chatbot-entrance--navigator {
  --entrance-color: rgba(13, 148, 136, 0.2);
}

/* Advisor entrance (indigo glow) */
.chatbot-entrance--advisor {
  --entrance-color: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.2);
}

/* Strategist dramatic entrance (amber, extra bounce) */
.chatbot-entrance--strategist {
  animation: strategistEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-color: rgba(217, 119, 6, 0.3);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.06), transparent);
  --entrance-color: rgba(217, 119, 6, 0.25);
}

@keyframes strategistEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    box-shadow: 0 0 0 rgba(217, 119, 6, 0);
  }
  40% {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 40px rgba(217, 119, 6, 0.2);
  }
  60% {
    transform: translateY(2px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(217, 119, 6, 0);
  }
}

[data-theme="dark"] .chatbot-entrance--strategist {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), transparent);
  border-color: rgba(217, 119, 6, 0.2);
}

/* ----------------------------------------------------------------
   Typing Indicator (bouncing dots in active bot's color)
   ---------------------------------------------------------------- */

/* The typing bubble fades in smoothly */
.chatbot-typing {
  animation: typingFadeIn 0.3s ease both;
}

@keyframes typingFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot-typing-dots {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  padding: 4px 0;
  height: 20px;
}

.chatbot-typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: typingDotBounce 1.4s ease-in-out infinite;
}

.chatbot-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.chatbot-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Real translateY bounce, not just opacity */
@keyframes typingDotBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-8px); opacity: 1; }
}

/* Avatar pulse glow during typing */
.chatbot-typing .chatbot-message-avatar {
  animation: avatarTypingPulse 1.5s ease-in-out infinite;
}

@keyframes avatarTypingPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--pulse-color, rgba(13, 148, 136, 0.35));
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px 6px var(--pulse-color, rgba(13, 148, 136, 0.35));
    transform: scale(1.08);
  }
}

/* ----------------------------------------------------------------
   Quick Action Chips (staggered entrance)
   ---------------------------------------------------------------- */
.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0 8px;
}

.chatbot-chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--theme-teal-border);
  background: var(--theme-teal-bg);
  color: var(--theme-teal-text);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  opacity: 0;
  animation: chipStaggerIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Stagger each chip: 50ms apart via nth-child */
.chatbot-chip:nth-child(1) { animation-delay: 0ms; }
.chatbot-chip:nth-child(2) { animation-delay: 50ms; }
.chatbot-chip:nth-child(3) { animation-delay: 100ms; }
.chatbot-chip:nth-child(4) { animation-delay: 150ms; }
.chatbot-chip:nth-child(5) { animation-delay: 200ms; }
.chatbot-chip:nth-child(6) { animation-delay: 250ms; }

@keyframes chipStaggerIn {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-chip:hover {
  background: var(--theme-teal-primary);
  color: #ffffff;
  border-color: var(--theme-teal-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

/* Click: shrink before removal */
.chatbot-chip:active {
  transform: scale(0.92);
  opacity: 0.7;
  transition: all 0.1s ease;
}

/* Escalation chips — distinct styling */
.chatbot-chip--escalate {
  border-color: rgba(217, 119, 6, 0.3) !important;
  background: rgba(217, 119, 6, 0.08) !important;
  color: #d97706 !important;
  font-weight: 600;
}

.chatbot-chip--escalate:hover {
  background: rgba(217, 119, 6, 0.15) !important;
  border-color: rgba(217, 119, 6, 0.5) !important;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2) !important;
}

/* Advisor tier chips */
.chatbot-chips[data-tier="advisor"] .chatbot-chip {
  border-color: rgba(99, 102, 241, 0.25);
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

.chatbot-chips[data-tier="advisor"] .chatbot-chip:hover {
  background: #6366f1;
  color: #ffffff;
  border-color: #6366f1;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Strategist tier chips */
.chatbot-chips[data-tier="strategist"] .chatbot-chip {
  border-color: rgba(217, 119, 6, 0.25);
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
}

.chatbot-chips[data-tier="strategist"] .chatbot-chip:hover {
  background: #d97706;
  color: #ffffff;
  border-color: #d97706;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

/* ----------------------------------------------------------------
   Input Area
   ---------------------------------------------------------------- */
.chatbot-input-area {
  padding: 12px 16px 10px;
  border-top: 1px solid var(--theme-border-light);
  background: var(--theme-bg-secondary);
}

[data-theme="dark"] .chatbot-input-area {
  background: rgba(15, 23, 42, 0.6);
  border-top-color: rgba(255, 255, 255, 0.06);
}

.chatbot-input-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chatbot-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  background: var(--theme-input-bg);
  color: var(--theme-input-text);
  resize: none;
  outline: none;
  max-height: 120px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .chatbot-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
}

.chatbot-input:focus {
  border-color: var(--theme-teal-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.chatbot-input::placeholder {
  color: var(--theme-input-placeholder);
}

.chatbot-send {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.chatbot-send:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.4);
}

.chatbot-send:disabled {
  opacity: 0.4;
  cursor: default;
}

.chatbot-send svg {
  width: 18px;
  height: 18px;
}

.chatbot-input-hint {
  font-size: 11px;
  color: var(--theme-text-faint);
  text-align: center;
  margin-top: 6px;
}

/* ================================================================
   AI INSIGHT CARD STYLES
   ================================================================ */
.ai-insight-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-card);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Animated gradient border effect */
.ai-insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0d9488, #2dd4bf, #5eead4, #0d9488);
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}

@keyframes gradientSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.ai-insight-card:hover {
  border-color: var(--theme-teal-border);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.1);
  transform: translateY(-2px);
}

[data-theme="dark"] .ai-insight-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .ai-insight-card:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.15);
}

.ai-insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ai-insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-teal-text);
  background: var(--theme-teal-bg);
  border: 1px solid var(--theme-teal-border);
  border-radius: 100px;
  padding: 4px 12px;
}

.ai-insight-badge svg {
  width: 14px;
  height: 14px;
}

.ai-insight-category {
  font-size: 12px;
  font-weight: 500;
  color: var(--theme-text-muted);
  background: var(--theme-tag-bg);
  border-radius: 100px;
  padding: 3px 10px;
}

.ai-insight-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ai-insight-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--theme-text-tertiary);
  margin-bottom: 20px;
}

.ai-insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--theme-border-light);
}

[data-theme="dark"] .ai-insight-footer {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.ai-insight-date {
  font-size: 12px;
  color: var(--theme-text-faint);
}

.ai-insight-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-teal-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ai-insight-cta:hover {
  color: var(--theme-teal-hover);
}

/* ================================================================
   ASK OUR AI WIDGET STYLES
   ================================================================ */
.ask-ai-widget {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-card);
  transition: all 0.3s ease;
}

.ask-ai-widget:hover {
  border-color: var(--theme-teal-border);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.08);
}

[data-theme="dark"] .ask-ai-widget {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .ask-ai-widget:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.15);
}

.ask-ai-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ask-ai-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-teal-bg);
  border-radius: 12px;
  color: var(--theme-teal-text);
}

.ask-ai-icon svg {
  width: 24px;
  height: 24px;
}

.ask-ai-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-text-primary);
  margin-bottom: 2px;
}

.ask-ai-subtitle {
  font-size: 13px;
  color: var(--theme-text-muted);
}

.ask-ai-input-row {
  display: flex;
  gap: 8px;
}

.ask-ai-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 16px;
  border: 1px solid var(--theme-border);
  border-radius: 10px;
  background: var(--theme-input-bg);
  color: var(--theme-input-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .ask-ai-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
}

.ask-ai-input:focus {
  border-color: var(--theme-teal-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.ask-ai-input::placeholder {
  color: var(--theme-input-placeholder);
}

.ask-ai-submit {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.ask-ai-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.4);
}

.ask-ai-submit svg {
  width: 18px;
  height: 18px;
}

.ask-ai-response {
  margin-top: 16px;
}

.ask-ai-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--theme-teal-bg);
  border-radius: 10px;
  font-size: 13px;
  color: var(--theme-teal-text);
}

.ask-ai-answer {
  padding: 16px;
  background: var(--theme-bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--theme-border-light);
}

[data-theme="dark"] .ask-ai-answer {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.ask-ai-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--theme-text-secondary);
  margin-bottom: 12px;
}

.ask-ai-answer--error p {
  color: #f87171;
}

.ask-ai-answer--error a {
  color: var(--theme-teal-text);
}

.ask-ai-answer-actions {
  display: flex;
  gap: 8px;
}

.ask-ai-answer-actions button {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--theme-teal-border);
  background: var(--theme-teal-bg);
  color: var(--theme-teal-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ask-ai-answer-actions button:hover {
  background: var(--theme-teal-primary);
  color: #ffffff;
  border-color: var(--theme-teal-primary);
}

/* ================================================================
   AI LIVE STATS STYLES
   ================================================================ */
.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ai-stat-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: 16px;
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle glass effect */
.ai-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.03), transparent 60%);
  pointer-events: none;
}

.ai-stat-card:hover {
  border-color: var(--theme-teal-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.1),
              0 0 0 1px rgba(13, 148, 136, 0.1);
}

[data-theme="dark"] .ai-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .ai-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(13, 148, 136, 0.1);
}

.ai-stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: var(--theme-teal-bg);
  border-radius: 12px;
  color: var(--theme-teal-text);
}

.ai-stat-icon svg {
  width: 24px;
  height: 24px;
}

.ai-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--theme-teal-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.ai-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--theme-text-muted);
  line-height: 1.3;
}

/* ================================================================
   SOLUTIONS SECTION STYLES
   ================================================================ */

/* Solutions Grid - Bento-style asymmetric layout */
#solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Solution Cards */
.solution-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Glassmorphism hover effect */
.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-card:hover {
  border-color: var(--theme-teal-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.1),
              0 0 0 1px rgba(13, 148, 136, 0.08);
}

[data-theme="dark"] .solution-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .solution-card:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
              0 0 24px rgba(13, 148, 136, 0.1);
}

/* Make first two cards span 2 columns for bento effect */
.solution-card:nth-child(1),
.solution-card:nth-child(2) {
  grid-column: span 2;
}

.solution-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-teal-bg);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--theme-teal-text);
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  background: var(--theme-teal-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.solution-icon svg {
  width: 28px;
  height: 28px;
}

.solution-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.solution-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--theme-text-tertiary);
  margin-bottom: 16px;
  flex: 1;
}

.solution-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-teal-text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.solution-learn-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.solution-learn-more:hover {
  color: var(--theme-teal-hover);
}

.solution-learn-more:hover svg {
  transform: translateX(3px);
}

/* Solution Detail Overlay */
.solution-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.solution-detail-overlay--open {
  opacity: 1;
  pointer-events: auto;
}

.solution-detail-panel {
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  margin: 24px;
  padding: 40px;
  border-radius: 20px;
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-detail-overlay--open .solution-detail-panel {
  transform: translateY(0) scale(1);
}

[data-theme="dark"] .solution-detail-panel {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.solution-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-tertiary);
  border-radius: 10px;
  color: var(--theme-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.solution-detail-close:hover {
  background: var(--theme-teal-bg);
  color: var(--theme-teal-text);
  border-color: var(--theme-teal-border);
}

.solution-detail-close svg {
  width: 18px;
  height: 18px;
}

.solution-detail-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-teal-bg);
  border-radius: 16px;
  color: var(--theme-teal-text);
  margin-bottom: 24px;
}

.solution-detail-icon svg {
  width: 32px;
  height: 32px;
}

.solution-detail-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--theme-text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.solution-detail-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--theme-text-tertiary);
  margin-bottom: 28px;
}

.solution-detail-cap-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-text-primary);
  margin-bottom: 16px;
}

.solution-detail-capabilities {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.solution-detail-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--theme-text-secondary);
  line-height: 1.5;
}

.solution-detail-capabilities li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--theme-teal-text);
  margin-top: 2px;
}

.solution-detail-cta {
  padding-top: 24px;
  border-top: 1px solid var(--theme-border-light);
}

[data-theme="dark"] .solution-detail-cta {
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* ================================================================
   PARTICLE CANVAS STYLES
   ================================================================ */
.particle-canvas {
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* ================================================================
   PREMIUM MICRO-INTERACTIONS AND EFFECTS
   These enhance all interactive elements across the site.
   ================================================================ */

/* Glow effect for teal buttons on hover */
.btn--primary {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary:hover {
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4),
              0 0 0 2px rgba(13, 148, 136, 0.1);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Noise/grain overlay for dark sections */
.section--dark::after,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Ensure content stays above noise */
.section--dark > .container,
.hero > .container,
.hero > .hero-content {
  position: relative;
  z-index: 1;
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW COMPONENTS
   ================================================================ */
@media (max-width: 1024px) {
  #solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card:nth-child(1),
  .solution-card:nth-child(2) {
    grid-column: span 1;
  }

  .ai-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .chatbot-panel {
    bottom: 0;
    right: 0;
    width: 100% !important;
    max-width: 100%;
    height: 100% !important;
    max-height: 100%;
    border-radius: 0;
    min-width: unset;
    min-height: unset;
  }

  .chatbot-resize-handle {
    display: none;
  }

  .chatbot-trigger {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .chatbot-entrance {
    padding: 10px 12px;
  }

  .chatbot-entrance-avatar {
    width: 34px;
    height: 34px;
  }

  .chatbot-entrance-avatar svg {
    width: 18px;
    height: 18px;
  }

  .chatbot-strategy-banner {
    font-size: 10px;
    padding: 5px 12px;
  }

  .chatbot-handoff {
    padding: 8px 10px;
  }

  #solutions-grid {
    grid-template-columns: 1fr;
  }

  .ai-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ai-stat-card {
    padding: 20px 12px;
  }

  .ai-stat-value {
    font-size: 28px;
  }

  .solution-detail-panel {
    margin: 0;
    border-radius: 0;
    max-height: 100vh;
    padding: 32px 24px;
  }

  .solution-detail-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .chatbot-trigger {
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .chatbot-message {
    max-width: 95%;
  }

  .chatbot-bot-badge {
    font-size: 9.5px;
  }

  .chatbot-entrance {
    gap: 8px;
    padding: 8px 10px;
  }

  .ai-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ai-stat-value {
    font-size: 24px;
  }

  .chatbot-panel {
    max-height: calc(100vh - 60px);
  }
}

@media (max-width: 375px) {
  .chatbot-trigger {
    width: 44px;
    height: 44px;
    bottom: 10px;
    right: 10px;
  }

  .chatbot-message {
    max-width: 92%;
    font-size: 13px;
  }

  .chatbot-entrance {
    gap: 6px;
    padding: 6px 8px;
  }

  .chatbot-entrance-avatar {
    width: 28px;
    height: 28px;
  }
}

/* ================================================================
   CHATBOT - Header Action Buttons (back, reset, sound, express)
   ================================================================ */

/* Back to Navigator button */
.chatbot-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px 8px 3px 5px;
  margin-top: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot-back-btn:hover {
  background: rgba(13, 148, 136, 0.15);
  border-color: rgba(13, 148, 136, 0.3);
  color: #2dd4bf;
}

.chatbot-back-btn svg {
  flex-shrink: 0;
}

/* Header action buttons shared style */
.chatbot-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Reset / New Chat button */
.chatbot-reset-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.chatbot-reset-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.chatbot-reset-btn svg {
  width: 14px;
  height: 14px;
}

/* Sound toggle button */
.chatbot-sound-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.chatbot-sound-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.chatbot-sound-toggle svg {
  width: 14px;
  height: 14px;
}

.chatbot-sound-toggle--off .chatbot-sound-wave {
  opacity: 0.2;
}

/* Express mode toggle */
.chatbot-express-toggle {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-tertiary);
  border-radius: 8px;
  color: var(--theme-text-faint);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
}

.chatbot-express-toggle:hover {
  border-color: var(--theme-teal-border);
  color: var(--theme-teal-text);
  background: var(--theme-teal-bg);
}

.chatbot-express-toggle--active {
  background: linear-gradient(135deg, #d97706, #b45309);
  border-color: #d97706;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(217, 119, 6, 0.3);
}

.chatbot-express-toggle--active:hover {
  background: linear-gradient(135deg, #b45309, #92400e);
  border-color: #b45309;
  color: #ffffff;
}

/* Express mode active: send button turns amber */
.chatbot-express-toggle--active ~ .chatbot-input ~ .chatbot-send:not(:disabled) {
  background: linear-gradient(135deg, #d97706, #b45309);
}

[data-theme="dark"] .chatbot-express-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ================================================================
   CHATBOT - Avatar Pulse (thinking/typing state)
   ================================================================ */
.chatbot-avatar-pulse {
  animation: avatarPulseGlow 1.5s ease-in-out infinite;
}

@keyframes avatarPulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--pulse-color, rgba(13, 148, 136, 0.35));
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px 6px var(--pulse-color, rgba(13, 148, 136, 0.35));
    transform: scale(1.08);
  }
}

/* PNG avatar inside pulse container */
.chatbot-avatar-pulse img {
  border-radius: 50%;
  border: 2px solid currentColor;
}

/* ================================================================
   CHATBOT - Header Color Wave (escalation transition)
   ================================================================ */
.chatbot-header--transitioning {
  position: relative;
  overflow: hidden;
}

.chatbot-header--transitioning::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wave-color, rgba(13, 148, 136, 0.15));
  animation: headerColorWave 0.8s ease-out forwards;
  pointer-events: none;
}

@keyframes headerColorWave {
  0% { transform: translateX(-100%); opacity: 0.6; }
  50% { opacity: 0.3; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Header avatar has its own entrance on escalation */
.chatbot-header-avatar--entering {
  animation: headerAvatarPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes headerAvatarPop {
  0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  60% { transform: scale(1.1) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ================================================================
   CHATBOT - Messages Fade/Enter (reset animation)
   ================================================================ */
.chatbot-messages--fading {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.chatbot-messages--entering {
  animation: messageAreaEnter 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes messageAreaEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================================
   CHATBOT - System Messages (tier transition notices)
   ================================================================ */
.chatbot-system-message {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--theme-text-faint);
  padding: 6px 14px;
  margin: 2px 0;
  border-radius: 100px;
  background: var(--theme-bg-tertiary);
  align-self: center;
  animation: messageSlideIn 0.3s ease;
}

[data-theme="dark"] .chatbot-system-message {
  background: rgba(255, 255, 255, 0.04);
  color: #475569;
}

/* ================================================================
   PRINT OVERRIDE - Always light, hide interactive elements
   ================================================================ */
@media print {
  :root,
  [data-theme="dark"] {
    --theme-bg-primary: #ffffff;
    --theme-bg-secondary: #f8fafc;
    --theme-bg-card: #ffffff;
    --theme-text-primary: #0f172a;
    --theme-text-secondary: #334155;
    --theme-text-tertiary: #475569;
  }

  .theme-toggle,
  .chatbot-trigger,
  .chatbot-panel,
  .ask-ai-widget,
  .solution-detail-overlay,
  .particle-canvas {
    display: none !important;
  }
}
