/* ─────────────────────────────────────────────
   River Truss — Custom CSS
   (Tailwind CDN handles utility classes;
    this file adds only what Tailwind can't)
───────────────────────────────────────────── */

/* Navigation link style */
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.15s;
  position: relative;
}
.nav-link:hover { color: #0F766E; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: #0F766E;
  transition: width 0.2s;
}
.nav-link:hover::after { width: 100%; }

/* Hero gradient overlay */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(11,19,32,0.72) 0%,
    rgba(15,118,110,0.35) 50%,
    rgba(11,19,32,0.68) 100%
  );
  transition: background 0.25s ease;
}
html[data-theme="light"] .hero-overlay,
html.theme-light .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(247,251,255,0.95) 0%,
    rgba(247,251,255,0.88) 42%,
    rgba(15,118,110,0.32) 100%
  );
}

/* Section divider */
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, #0F766E, #0d5f59);
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}

/* Stage timeline connector */
.stage-connector {
  width: 2px;
  background: linear-gradient(180deg, #0F766E 0%, #1e293b 100%);
  flex-shrink: 0;
}

/* Stat card glow */
.stat-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(15,118,110,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,118,110,0.1);
}

/* Feature card */
.feature-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15,118,110,0.4);
}

/* Truss type card */
.truss-card {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.truss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.truss-card img {
  transition: transform 0.4s;
}
.truss-card:hover img {
  transform: scale(1.05);
}

/* Demo portal mock-up */
.demo-phone {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 2px solid rgba(15,118,110,0.3);
  border-radius: 20px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Progress bar */
.progress-bar {
  background: linear-gradient(90deg, #0F766E, #2DD4C4);
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

/* Admin & Portal shared card */
.panel-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

/* File drop zone */
.drop-zone {
  border: 2px dashed rgba(15,118,110,0.4);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.drop-zone.dragover,
.drop-zone:hover {
  border-color: #0F766E;
  background: rgba(15,118,110,0.05);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #0F766E; }

/* Calendar grid */
.cal-day {
  min-height: 80px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 6px;
  font-size: 0.75rem;
  transition: background 0.15s;
}
.cal-day.available  { background: transparent; }
.cal-day.booked,
.cal-day.scheduled  { background: rgba(15,118,110,0.10); }
.cal-day.today      { border-color: #0F766E; }
.cal-day.other-month{ opacity: 0.35; }

/* Alert */
.alert-success { background:rgba(74,222,128,0.1);  border:1px solid rgba(74,222,128,0.3);  color:#4ade80; }
.alert-error   { background:rgba(248,113,113,0.1); border:1px solid rgba(248,113,113,0.3); color:#f87171; }
.alert-info    { background:rgba(96,165,250,0.1);  border:1px solid rgba(96,165,250,0.3);  color:#60a5fa; }

/* Smooth fade-in */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* Dark-theme form inputs */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="search"],
textarea,
select {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  caret-color: #0F766E;
}
input::placeholder,
textarea::placeholder {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8;
  opacity: 1;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #0F766E;
  box-shadow: 0 0 0 1000px #1e293b inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* ═══════════════════════════════════════════════
   Theme toggle
═══════════════════════════════════════════════ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(30, 41, 59, 0.85);
  color: #e2e8f0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
}
.theme-toggle:hover {
  color: #0F766E;
  border-color: rgba(15, 118, 110, 0.45);
  background: rgba(15, 118, 110, 0.1);
}
.theme-icon-moon { display: none; }
html[data-theme="light"] .theme-icon-sun,
html.theme-light .theme-icon-sun { display: none; }
html[data-theme="light"] .theme-icon-moon,
html.theme-light .theme-icon-moon { display: block; }
html[data-theme="dark"] .theme-icon-sun,
html.theme-dark .theme-icon-sun { display: block; }
html[data-theme="dark"] .theme-icon-moon,
html.theme-dark .theme-icon-moon { display: none; }

/* ═══════════════════════════════════════════════
   Light theme
═══════════════════════════════════════════════ */
html[data-theme="light"],
html.theme-light {
  color-scheme: light;
}

html[data-theme="light"] body,
html.theme-light body {
  background-color: #f7fbff !important;
  color: #0B1320 !important;
}

html[data-theme="light"] .bg-slate-950,
html.theme-light .bg-slate-950,
html[data-theme="light"] .bg-slate-950\/95,
html.theme-light .bg-slate-950\/95 { background-color: rgba(247,251,255,0.92) !important; }
html[data-theme="light"] .bg-slate-900,
html.theme-light .bg-slate-900,
html[data-theme="light"] .bg-slate-900\/50,
html.theme-light .bg-slate-900\/50 { background-color: #eef6fb !important; }
html[data-theme="light"] .bg-slate-800,
html.theme-light .bg-slate-800 { background-color: #e2e8f0 !important; }
html[data-theme="light"] .bg-slate-700,
html.theme-light .bg-slate-700 { background-color: #cbd5e1 !important; }
html[data-theme="light"] .hover\:bg-slate-800:hover,
html.theme-light .hover\:bg-slate-800:hover { background-color: #e2e8f0 !important; }

html[data-theme="light"] .border-slate-800,
html.theme-light .border-slate-800,
html[data-theme="light"] .border-slate-800\/60,
html.theme-light .border-slate-800\/60,
html[data-theme="light"] .border-slate-700,
html.theme-light .border-slate-700,
html[data-theme="light"] .border-slate-600,
html.theme-light .border-slate-600 { border-color: #e2e8f0 !important; }

html[data-theme="light"] .text-white,
html.theme-light .text-white { color: #0B1320 !important; }
html[data-theme="light"] .text-slate-100,
html.theme-light .text-slate-100 { color: #0B1320 !important; }
html[data-theme="light"] .text-slate-200,
html.theme-light .text-slate-200 { color: #0f172a !important; }
html[data-theme="light"] .text-slate-300,
html.theme-light .text-slate-300 { color: #1e293b !important; }
html[data-theme="light"] .text-slate-400,
html.theme-light .text-slate-400 { color: #334155 !important; }
html[data-theme="light"] .text-slate-500,
html.theme-light .text-slate-500 { color: #475569 !important; }
html[data-theme="light"] .text-slate-600,
html.theme-light .text-slate-600 { color: #334155 !important; }
html[data-theme="light"] .hover\:text-white:hover,
html.theme-light .hover\:text-white:hover { color: #0B1320 !important; }
html[data-theme="light"] .hover\:text-slate-300:hover,
html.theme-light .hover\:text-slate-300:hover { color: #0f172a !important; }

/* Brand accents: use deep teal on light (mint #2DD4C4 is too faint) */
html[data-theme="light"] .text-brand-300,
html.theme-light .text-brand-300,
html[data-theme="light"] .text-brand-400,
html.theme-light .text-brand-400 { color: #0F766E !important; }
html[data-theme="light"] .text-brand-500,
html.theme-light .text-brand-500 { color: #0d5f59 !important; }
html[data-theme="light"] .hover\:text-brand-300:hover,
html.theme-light .hover\:text-brand-300:hover,
html[data-theme="light"] .hover\:text-brand-400:hover,
html.theme-light .hover\:text-brand-400:hover { color: #0d5f59 !important; }

html[data-theme="light"] .bg-brand-500,
html.theme-light .bg-brand-500,
html[data-theme="light"] .bg-brand-600,
html.theme-light .bg-brand-600,
html[data-theme="light"] a.bg-brand-500,
html.theme-light a.bg-brand-500,
html[data-theme="light"] button.bg-brand-500,
html.theme-light button.bg-brand-500 {
  color: #ffffff !important;
}
html[data-theme="light"] .bg-brand-500 .text-white,
html.theme-light .bg-brand-500 .text-white,
html[data-theme="light"] .bg-brand-600 .text-white,
html.theme-light .bg-brand-600 .text-white,
html[data-theme="light"] .bg-brand-500 svg,
html.theme-light .bg-brand-500 svg,
html[data-theme="light"] .bg-brand-600 svg,
html.theme-light .bg-brand-600 svg {
  color: #ffffff !important;
}

/* Hero secondary CTA readable on light */
html[data-theme="light"] .hero-section a.border-white\/20,
html.theme-light .hero-section a.border-white\/20,
html[data-theme="light"] .hero-section a.bg-white\/10,
html.theme-light .hero-section a.bg-white\/10 {
  background-color: #ffffff !important;
  border-color: #94a3b8 !important;
  color: #0B1320 !important;
}
html[data-theme="light"] .hero-section a.border-white\/20:hover,
html.theme-light .hero-section a.border-white\/20:hover,
html[data-theme="light"] .hero-section a.bg-white\/10:hover,
html.theme-light .hero-section a.bg-white\/10:hover {
  background-color: #f0fdfa !important;
  border-color: #0F766E !important;
}

html[data-theme="light"] .nav-link,
html.theme-light .nav-link { color: #1e293b; font-weight: 600; }
html[data-theme="light"] .nav-link:hover,
html.theme-light .nav-link:hover { color: #0F766E; }

html[data-theme="light"] .stat-card,
html.theme-light .stat-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
html[data-theme="light"] .stat-card:hover,
html.theme-light .stat-card:hover {
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.12);
}

html[data-theme="light"] .feature-card,
html.theme-light .feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
}
html[data-theme="light"] .feature-card:hover,
html.theme-light .feature-card:hover {
  border-color: rgba(15, 118, 110, 0.45);
}

html[data-theme="light"] .truss-card,
html.theme-light .truss-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}
html[data-theme="light"] .truss-card:hover,
html.theme-light .truss-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] .demo-phone,
html.theme-light .demo-phone {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 2px solid rgba(15, 118, 110, 0.3);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="light"] .panel-card,
html.theme-light .panel-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .stage-connector,
html.theme-light .stage-connector {
  background: linear-gradient(180deg, #0F766E 0%, #e2e8f0 100%);
}

html[data-theme="light"] .cal-day,
html.theme-light .cal-day {
  border-color: #e2e8f0;
  background: #ffffff;
}
html[data-theme="light"] .cal-day.available,
html.theme-light .cal-day.available { background: transparent; }
html[data-theme="light"] .cal-day.booked,
html.theme-light .cal-day.booked,
html[data-theme="light"] .cal-day.scheduled,
html.theme-light .cal-day.scheduled { background: rgba(15, 118, 110, 0.10); }

html[data-theme="light"] ::-webkit-scrollbar-track,
html.theme-light ::-webkit-scrollbar-track { background: #f1f5f9; }
html[data-theme="light"] ::-webkit-scrollbar-thumb,
html.theme-light ::-webkit-scrollbar-thumb { background: #cbd5e1; }

html[data-theme="light"] .theme-toggle,
html.theme-light .theme-toggle {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #475569;
}

html[data-theme="light"] input[type="text"],
html.theme-light input[type="text"],
html[data-theme="light"] input[type="password"],
html.theme-light input[type="password"],
html[data-theme="light"] input[type="email"],
html.theme-light input[type="email"],
html[data-theme="light"] input[type="tel"],
html.theme-light input[type="tel"],
html[data-theme="light"] input[type="date"],
html.theme-light input[type="date"],
html[data-theme="light"] input[type="number"],
html.theme-light input[type="number"],
html[data-theme="light"] input[type="search"],
html.theme-light input[type="search"],
html[data-theme="light"] textarea,
html.theme-light textarea,
html[data-theme="light"] select,
html.theme-light select,
html[data-theme="light"] .input-admin,
html.theme-light .input-admin {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a;
  background-color: #ffffff !important;
  border-color: #cbd5e1 !important;
}
html[data-theme="light"] input::placeholder,
html.theme-light input::placeholder,
html[data-theme="light"] textarea::placeholder,
html.theme-light textarea::placeholder,
html[data-theme="light"] .input-admin::placeholder,
html.theme-light .input-admin::placeholder {
  color: #94a3b8 !important;
  -webkit-text-fill-color: #94a3b8;
}
html[data-theme="light"] input:-webkit-autofill,
html.theme-light input:-webkit-autofill,
html[data-theme="light"] input:-webkit-autofill:hover,
html.theme-light input:-webkit-autofill:hover,
html[data-theme="light"] input:-webkit-autofill:focus,
html.theme-light input:-webkit-autofill:focus,
html[data-theme="light"] textarea:-webkit-autofill,
html.theme-light textarea:-webkit-autofill,
html[data-theme="light"] select:-webkit-autofill,
html.theme-light select:-webkit-autofill,
html[data-theme="light"] .input-admin:-webkit-autofill,
html.theme-light .input-admin:-webkit-autofill {
  -webkit-text-fill-color: #0f172a !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
}

html[data-theme="light"] .field-label,
html.theme-light .field-label { color: #334155 !important; }

html[data-theme="light"] .alert-success,
html.theme-light .alert-success { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: #15803d; }
html[data-theme="light"] .alert-error,
html.theme-light .alert-error { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.25); color: #b91c1c; }
html[data-theme="light"] .alert-info,
html.theme-light .alert-info { background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.25); color: #1d4ed8; }

/* Brand CTA band keeps light-on-orange text */
html[data-theme="light"] .from-brand-600 .text-white,
html.theme-light .from-brand-600 .text-white,
html[data-theme="light"] .to-brand-700 .text-white,
html.theme-light .to-brand-700 .text-white { color: #ffffff !important; }
html[data-theme="light"] .from-brand-600 .text-orange-100,
html.theme-light .from-brand-600 .text-orange-100 { color: #ffedd5 !important; }
html[data-theme="light"] .from-brand-600 .border-white\/50,
html.theme-light .from-brand-600 .border-white\/50 { border-color: rgba(255,255,255,0.5) !important; }
html[data-theme="light"] [class*="from-black"] .text-white,
html.theme-light [class*="from-black"] .text-white { color: #ffffff !important; }

/* Demo phone stays dark UI mock */
html[data-theme="light"] .demo-phone .text-white,
html.theme-light .demo-phone .text-white { color: #ffffff !important; }
html[data-theme="light"] .demo-phone .text-slate-300,
html.theme-light .demo-phone .text-slate-300 { color: #cbd5e1 !important; }
html[data-theme="light"] .demo-phone .text-slate-400,
html.theme-light .demo-phone .text-slate-400 { color: #94a3b8 !important; }
html[data-theme="light"] .demo-phone .text-slate-500,
html.theme-light .demo-phone .text-slate-500 { color: #64748b !important; }
html[data-theme="light"] .demo-phone .bg-slate-800,
html.theme-light .demo-phone .bg-slate-800 { background-color: #1e293b !important; }
html[data-theme="light"] .demo-phone .bg-slate-900,
html.theme-light .demo-phone .bg-slate-900 { background-color: #0f172a !important; }
html[data-theme="light"] .demo-phone .bg-slate-950,
html.theme-light .demo-phone .bg-slate-950 { background-color: #020617 !important; }

html[data-theme="light"] .admin-sidebar a.active,
html.theme-light .admin-sidebar a.active {
  background: rgba(15, 118, 110, 0.12);
  color: #0F766E;
}

/* Order status badges — readable in dark + light */
.status-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-width: 1px;
  border-style: solid;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.status-badge--pending {
  background: rgba(234, 179, 8, 0.18);
  color: #fde68a;
  border-color: rgba(234, 179, 8, 0.45);
}
.status-badge--production {
  background: rgba(14, 165, 233, 0.18);
  color: #7dd3fc;
  border-color: rgba(14, 165, 233, 0.45);
}
.status-badge--storage {
  background: rgba(168, 85, 247, 0.18);
  color: #d8b4fe;
  border-color: rgba(168, 85, 247, 0.45);
}
.status-badge--ready {
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.45);
}
.status-badge--delivered {
  background: rgba(100, 116, 139, 0.22);
  color: #cbd5e1;
  border-color: rgba(148, 163, 184, 0.45);
}
.status-badge--cancelled {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.45);
}
.status-badge--default {
  background: rgba(100, 116, 139, 0.22);
  color: #cbd5e1;
  border-color: rgba(148, 163, 184, 0.35);
}

html[data-theme="light"] .status-badge--pending,
html.theme-light .status-badge--pending {
  background: #fef3c7;
  color: #92400e;
  border-color: #f59e0b;
}
html[data-theme="light"] .status-badge--production,
html.theme-light .status-badge--production {
  background: #e0f2fe;
  color: #075985;
  border-color: #0ea5e9;
}
html[data-theme="light"] .status-badge--storage,
html.theme-light .status-badge--storage {
  background: #f3e8ff;
  color: #6b21a8;
  border-color: #a855f7;
}
html[data-theme="light"] .status-badge--ready,
html.theme-light .status-badge--ready {
  background: #dcfce7;
  color: #166534;
  border-color: #22c55e;
}
html[data-theme="light"] .status-badge--delivered,
html.theme-light .status-badge--delivered {
  background: #e2e8f0;
  color: #1e293b;
  border-color: #94a3b8;
}
html[data-theme="light"] .status-badge--cancelled,
html.theme-light .status-badge--cancelled {
  background: #fee2e2;
  color: #991b1b;
  border-color: #ef4444;
}
html[data-theme="light"] .status-badge--default,
html.theme-light .status-badge--default {
  background: #e2e8f0;
  color: #334155;
  border-color: #94a3b8;
}

/* QuickBooks schedule info box */
.qb-schedule-box {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.45);
  color: #cbd5e1;
}
.qb-schedule-box .qb-schedule-title { color: #e2e8f0; }
.qb-schedule-box strong { color: #ffffff; font-weight: 700; }

html[data-theme="light"] .qb-schedule-box,
html.theme-light .qb-schedule-box {
  border-color: #99f6e4;
  background: #f0fdfa;
  color: #334155;
}
html[data-theme="light"] .qb-schedule-box .qb-schedule-title,
html.theme-light .qb-schedule-box .qb-schedule-title {
  color: #0B1320;
}
html[data-theme="light"] .qb-schedule-box strong,
html.theme-light .qb-schedule-box strong {
  color: #0F766E;
}

/* Opacity slate backgrounds often missed by light remaps */
html[data-theme="light"] .bg-slate-950\/40,
html.theme-light .bg-slate-950\/40 { background-color: #f0fdfa !important; }
html[data-theme="light"] .bg-slate-900\/40,
html.theme-light .bg-slate-900\/40 { background-color: #eef6fb !important; }
html[data-theme="light"] .border-slate-700\/80,
html.theme-light .border-slate-700\/80 { border-color: #cbd5e1 !important; }

/* ── Light theme: brighter hero (home / about) ── */
html[data-theme="light"] .hero-section .hero-overlay,
html.theme-light .hero-section .hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(248, 250, 252, 0.94) 0%,
    rgba(248, 250, 252, 0.78) 38%,
    rgba(248, 250, 252, 0.35) 68%,
    rgba(248, 250, 252, 0.12) 100%
  );
}

html[data-theme="light"] .hero-section .text-white,
html.theme-light .hero-section .text-white { color: #0f172a !important; }
html[data-theme="light"] .hero-section .text-slate-300,
html.theme-light .hero-section .text-slate-300 { color: #334155 !important; }
html[data-theme="light"] .hero-section .text-slate-400,
html.theme-light .hero-section .text-slate-400 { color: #475569 !important; }
html[data-theme="light"] .hero-section .text-slate-500,
html.theme-light .hero-section .text-slate-500 { color: #64748b !important; }

html[data-theme="light"] .hero-section .bg-white\/10,
html.theme-light .hero-section .bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(8px);
}
html[data-theme="light"] .hero-section .hover\:bg-white\/15:hover,
html.theme-light .hero-section .hover\:bg-white\/15:hover {
  background-color: rgba(255, 255, 255, 0.95) !important;
}
html[data-theme="light"] .hero-section .border-white\/20,
html.theme-light .hero-section .border-white\/20 {
  border-color: rgba(15, 23, 42, 0.15) !important;
}
html[data-theme="light"] .hero-section .border-brand-500\/30,
html.theme-light .hero-section .border-brand-500\/30 {
  border-color: rgba(15, 118, 110, 0.35) !important;
}
html[data-theme="light"] .hero-section .bg-brand-500\/10,
html.theme-light .hero-section .bg-brand-500\/10 {
  background-color: rgba(15, 118, 110, 0.12) !important;
}

/* Orange brand CTA on light hero still needs white label */
html[data-theme="light"] .hero-section .bg-brand-500,
html.theme-light .hero-section .bg-brand-500,
html[data-theme="light"] .hero-section .bg-brand-600,
html.theme-light .hero-section .bg-brand-600,
html[data-theme="light"] .hero-section .bg-brand-500 .text-white,
html.theme-light .hero-section .bg-brand-500 .text-white,
html[data-theme="light"] .hero-section a.bg-brand-500,
html.theme-light .hero-section a.bg-brand-500 {
  color: #ffffff !important;
}
