:root {
  --weiss-bg: #F5F0E8;
  --weiss-card: #FFFFFF;
  --weiss-text: #2F2F2F;
  --weiss-muted: #6B6B6B;
  --weiss-label: #9CA3AF;
  --weiss-accent: #10B981;
  --weiss-border: #E0DAD0;
  --weiss-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --weiss-accent-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --weiss-shadow-sm: 0 2px 4px rgba(47, 47, 47, 0.05);
  --weiss-shadow-md: 0 10px 25px -5px rgba(47, 47, 47, 0.08), 0 8px 10px -6px rgba(47, 47, 47, 0.08);
  --weiss-shadow-lg: 0 20px 50px -12px rgba(47, 47, 47, 0.12);
  --weiss-blue: #4F46E5;
  --weiss-purple: #9333EA;
  --weiss-gradient-vibrant: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);
  --weiss-gradient-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.font-heading {
  font-family: 'Outfit', 'Inter', sans-serif;
}

.text-gradient {
  background: var(--weiss-gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-vibrant {
  background: var(--weiss-gradient-vibrant);
}

.blur-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 100%;
  z-index: 0;
  pointer-events: none;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--weiss-text);
  background-color: var(--weiss-bg);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Navbar
   ============================================================ */
#navbar {
  background: rgba(245, 240, 232, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--weiss-border);
}

.nav-link {
  color: var(--weiss-muted);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--weiss-text);
  background: var(--weiss-border);
}

.nav-link.active {
  background: var(--weiss-text);
  color: white;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: white;
  border: 1px solid var(--weiss-border);
  border-radius: 0.75rem;
  padding: 0.5rem;
  display: none;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--weiss-muted);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.nav-dropdown-item:hover {
  color: var(--weiss-text);
  background: var(--weiss-card);
}

/* Language switcher */
.lang-btn {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

/* Mobile nav */
.mobile-nav-link {
  display: block;
  padding: 0.625rem 0.75rem;
  color: var(--weiss-muted);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  color: var(--weiss-text);
  background: var(--weiss-card);
}

.mobile-nav-sub {
  padding-left: 1.5rem;
  font-size: 0.85rem;
  color: var(--weiss-label);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  background: var(--weiss-bg);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.07);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.06);
  bottom: -50px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.05);
  top: 40%;
  left: 40%;
  animation: float 12s ease-in-out infinite 2s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-30px) rotate(3deg) scale(1.05);
  }

  66% {
    transform: translateY(15px) rotate(-2deg) scale(0.95);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, 100px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes chaos-to-order {
  0% {
    transform: translate(var(--chaos-x), var(--chaos-y)) rotate(var(--chaos-r));
    opacity: 0;
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
  }
}

.orb-drifting {
  animation: drift 20s ease-in-out infinite;
}

.glass-glow {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-glow:hover {
  animation: glow-pulse 2s infinite;
  background: rgba(99, 102, 241, 0.04);
  border-color: rgba(99, 102, 241, 0.3);
}

.sticky-narrative {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

.chaos-item {
  animation: chaos-to-order 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Hero title gradient */
.hero-title-gradient {
  background: linear-gradient(135deg, var(--weiss-text) 0%, #4B5563 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats */
.stat-card {
  background: var(--weiss-card);
  border: 1px solid var(--weiss-border);
  border-radius: 1rem;
  padding: 1.25rem;
}

/* ============================================================
   Gradient Text
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: var(--weiss-text);
  color: #F5F0E8;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: black;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--weiss-text);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid var(--weiss-border);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: var(--weiss-bg);
  border-color: var(--weiss-muted);
}

/* ============================================================
   Feature Cards
   ============================================================ */
.feature-card {
  background: var(--weiss-card);
  border: 1px solid var(--weiss-border);
  border-radius: 2rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--weiss-shadow);
}

.feature-card:hover {
  border-color: var(--weiss-muted);
  transform: translateY(-8px);
  background: white;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #818cf8;
  margin-bottom: 1rem;
}

/* ============================================================
   News Cards
   ============================================================ */
.news-card {
  background: var(--weiss-card);
  border: 1px solid var(--weiss-border);
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: var(--weiss-shadow);
}

.news-card:hover {
  border-color: var(--weiss-muted);
  transform: translateY(-6px);
  background: white;
}

.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.news-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1e293b, #312e81);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(99, 102, 241, 0.4);
}

.news-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Category filter buttons */
.category-btn {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #94a3b8;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: transparent;
  color: white;
}

/* Pagination */
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #94a3b8;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.page-btn:hover,
.page-btn.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: transparent;
  color: white;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============================================================
   CTA Card
   ============================================================ */
.cta-card {
  background: var(--weiss-text);
  color: white;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

.cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
  pointer-events: none;
}

/* ============================================================
   Page Content (prose)
   ============================================================ */
.prose-custom h1,
.prose-custom h2,
.prose-custom h3,
.prose-custom h4 {
  color: #f1f5f9;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose-custom h1 {
  font-size: 2rem;
}

.prose-custom h2 {
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 0.5rem;
}

.prose-custom h3 {
  font-size: 1.3rem;
  color: #818cf8;
}

.prose-custom p {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.prose-custom ul,
.prose-custom ol {
  color: #94a3b8;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose-custom li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.prose-custom a {
  color: #818cf8;
  text-decoration: underline;
}

.prose-custom a:hover {
  color: #a5b4fc;
}

.prose-custom img {
  border-radius: 0.75rem;
  max-width: 100%;
}

.prose-custom blockquote {
  border-left: 3px solid #6366f1;
  padding-left: 1.25rem;
  color: #64748b;
  font-style: italic;
  margin: 1.5rem 0;
}

.prose-custom table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.prose-custom th {
  background: rgba(99, 102, 241, 0.15);
  color: #e2e8f0;
  padding: 0.75rem;
  text-align: left;
}

.prose-custom td {
  border-top: 1px solid rgba(30, 41, 59, 1);
  color: #94a3b8;
  padding: 0.75rem;
}

.prose-custom code {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 0.25rem;
  padding: 0.125rem 0.375rem;
  font-family: monospace;
  color: #a5b4fc;
  font-size: 0.9em;
}

.prose-custom pre {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.prose-custom pre code {
  background: none;
  border: none;
  padding: 0;
}

/* ============================================================
   Intro — Brain Visualization
   ============================================================ */
.brain-container {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(10px);
}

.brain-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: border-color 0.3s;
}

.brain-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

.brain-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.memory-tag {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 9999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  color: #a5b4fc;
}

/* ============================================================
   How it Works — Step Flow
   ============================================================ */
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.step-card {
  flex: 1;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateX(4px);
}

.code-tag {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 0.25rem;
  padding: 0.1rem 0.4rem;
  font-family: monospace;
  font-size: 0.8em;
  color: #a5b4fc;
}

/* ============================================================
   Pricing Cards
   ============================================================ */
.pricing-card {
  background: var(--weiss-card);
  border: 1px solid var(--weiss-border);
  border-radius: 2.5rem;
  padding: 3rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--weiss-shadow);
}

.pricing-card:hover {
  border-color: var(--weiss-muted);
  transform: translateY(-8px);
  background: white;
}

.pricing-card-featured {
  background: white;
  border: 2px solid var(--weiss-accent);
  box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.15);
}

.pricing-card-featured:hover {
  transform: translateY(-6px);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-price {
  margin: 0.75rem 0;
}

.pricing-divider {
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  margin: 1.25rem 0;
}

.pricing-feature {
  color: #94a3b8;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.pricing-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.pricing-btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  background: transparent;
  color: #94a3b8;
  font-weight: 600;
  border-radius: 0.75rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.pricing-btn-secondary:hover {
  color: white;
  border-color: rgba(99, 102, 241, 0.7);
  background: rgba(99, 102, 241, 0.08);
}

/* ============================================================
   Scrollbar
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}


/* ============================================================
   LIGHT THEME SCOPED OVERRIDES
   ============================================================ */

.light-theme {
  --brand: #13417c;
  --brand-dark: #0d2f5a;
  --brand-mid: #1a5299;
  --brand-light: #2969c0;
  --brand-pale: #e8f0fb;
  --brand-pale2: #f0f5ff;
  --white: #ffffff;
  --bg: #f4f7fc;
  --bg2: #f8fafc;
  --surface: #ffffff;
  --border: #cfdcef;
  --border-light: #e2ecf7;
  --text: #0f172a;
  --text-mid: #334155;
  --text-muted: #64748b;
  --shadow-sm: 0 4px 12px rgba(19, 65, 124, 0.05);
  --shadow-md: 0 10px 30px rgba(19, 65, 124, 0.08);
}

.light-theme,
.light-theme body,
.light-theme .bg-slate-950,
.light-theme .bg-slate-900\/20,
.light-theme .bg-slate-900\/40,
[class*="bg-slate-"].light-theme {
  background-color: var(--bg) !important;
  color: var(--text) !important;
}

.light-theme #navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.light-theme #navbar span,
.light-theme .nav-link:hover,
.light-theme h1,
.light-theme h2,
.light-theme h3 {
  color: var(--brand) !important;
}

.light-theme .nav-link,
.light-theme .text-slate-400,
.light-theme .text-slate-300 {
  color: var(--text-mid) !important;
}

/* .light-theme .text-white {
  color: var(--text) !important;
} */

/* Sections */
.light-theme .hero-section {
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%) !important;
}

.light-theme #story-chaos {
  background: #f8fafc !important;
}

.light-theme #story-discovery,
.light-theme #philosophy,
.light-theme #features,
.light-theme #pricing,
.light-theme #a-day-with-weiss,
.light-theme #tutorial,
.light-theme #icp,
.light-theme #news-section,
.light-theme #final-cta {
  background-color: var(--bg) !important;
}

/* Orbs & Grids */
.light-theme .orb {
  display: none !important;
}

.light-theme .grid-overlay {
  opacity: 0.04 !important;
  background-image: linear-gradient(var(--brand) 1px, transparent 1px), linear-gradient(90deg, var(--brand) 1px, transparent 1px) !important;
}

.light-theme .hero-title-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 60%, #3b82f6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Cards */
.light-theme .stat-card,
.light-theme .feature-card,
.light-theme .pricing-card,
.light-theme .news-card,
.light-theme .cta-card {
  background: #ffffff !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: var(--shadow-sm) !important;
}

.light-theme .pricing-card-featured {
  border-color: var(--brand) !important;
  box-shadow: var(--shadow-md) !important;
}

.light-theme .stat-card .text-indigo-400,
.light-theme .stat-card .text-violet-400,
.light-theme .stat-card .text-cyan-400,
.light-theme .stat-card .text-emerald-400 {
  color: var(--brand-mid) !important;
}

/* Timeline */
.light-theme #a-day-with-weiss .bg-slate-900,
.light-theme #a-day-with-weiss .bg-slate-900\/50 {
  background: #ffffff !important;
  border-color: var(--border-light) !important;
}

.light-theme #a-day-with-weiss .text-slate-100 {
  color: var(--brand) !important;
}

.light-theme #a-day-with-weiss .bg-slate-800 {
   background: var(--border-light) !important;
}

/* ICP Items */
.light-theme #icp .bg-slate-900\/50 {
  background: #ffffff !important;
  border-color: var(--border-light) !important;
}

.light-theme #icp .text-slate-100 {
  color: var(--text) !important;
}

/* Footer */
.light-theme footer {
  background: #ffffff !important;
  border-top: 1px solid var(--border-light) !important;
}

.light-theme footer .text-white {
  color: var(--brand) !important;
}

.light-theme footer .text-slate-400,
.light-theme footer .text-slate-500 {
  color: var(--text-muted) !important;
}

/* Specific Navbar & Dropdown overrides */
.light-theme .bg-white\/80,
.light-theme .bg-white\/98 {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.light-theme .nav-dropdown div.absolute, /* Dropdown container */
.light-theme .md\:hidden.bg-slate-900 {   /* Mobile menu */
  background-color: #ffffff !important;
  border-color: var(--border-light) !important;
  box-shadow: var(--shadow-md) !important;
}

.light-theme .nav-dropdown div.absolute a,
.light-theme .md\:hidden.bg-slate-900 a {
  color: var(--text-mid) !important;
}

.light-theme .nav-dropdown div.absolute a:hover,
.light-theme .md\:hidden.bg-slate-900 a:hover {
  background-color: var(--brand-pale) !important;
  color: var(--brand) !important;
}

.light-theme .nav-dropdown div.absolute i,
.light-theme .md\:hidden.bg-slate-900 i {
  color: var(--brand-light) !important;
}

.light-theme .bg-slate-800\/50 {
  background-color: var(--brand-pale) !important;
}

.light-theme .text-slate-100 {
  color: var(--brand) !important;
}
