:root {
  --rb-bg: #fafafa;
  --rb-surface: #ffffff;
  --rb-surface-2: #f5f5f5;
  --rb-text: #111111;
  --rb-muted: #6b7280;
  --rb-primary: #111111;
  --rb-primary-2: #000000;
  --rb-border: #e5e7eb;
  --rb-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

html,
body {
  background: var(--rb-bg);
  color: var(--rb-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body {
  letter-spacing: -0.01em;
}

#hero {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 0, 0, 0.04), transparent 35%),
    linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
  border-bottom: 1px solid var(--rb-border);
}

.navbar-main,
.navbar-bg {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rb-border);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

#navbar-logo {
  max-height: 32px;
}

.card,
.dropdown-menu,
.sidebar-cta-content,
.table-card,
.custom-alert,
.content .card {
  border: 1px solid var(--rb-border) !important;
  border-radius: 14px !important;
  box-shadow: var(--rb-shadow) !important;
  background: var(--rb-surface) !important;
}

.btn,
button.btn,
input[type="submit"].btn {
  border-radius: 10px !important;
  font-weight: 600;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--rb-primary) !important;
  border-color: var(--rb-primary) !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.btn-dark {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

.btn-light {
  background: #ffffff !important;
  border-color: #d1d5db !important;
  color: #111111 !important;
}

.btn-outline-primary {
  border-color: #111111 !important;
  color: #111111 !important;
}

.btn-outline-primary:hover {
  background: #111111 !important;
  color: #fff !important;
}

.text-muted,
.small,
small {
  color: var(--rb-muted) !important;
}

.display-4,
.display-5,
h1,
h2,
h3,
h4,
h5 {
  letter-spacing: -0.03em;
}

.gradient-primary,
.clip-text {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #ffffff !important;
}

/* Keep text/icons readable on dark primary surfaces */
.bg-primary .gradient-primary,
.bg-primary .clip-text,
.btn-primary .gradient-primary,
.btn-primary .clip-text,
.icon-md.bg-primary i,
.rounded-pill.bg-primary .gradient-primary,
.rounded-pill.bg-primary .clip-text {
  color: #ffffff !important;
}

.bg-primary,
.badge.bg-primary,
.badge-primary {
  background: #111111 !important;
  color: #ffffff !important;
}

.bg-dark,
.bg-dark-dark {
  background: #111111 !important;
  color: #ffffff !important;
}

.sidebar {
  background: #0b0b0b !important;
  border-right: 1px solid #1f2937;
}

.sidebar-brand,
.sidebar-brand .align-middle {
  color: #f9fafb !important;
}

.sidebar .sidebar-link,
.sidebar a.sidebar-link {
  color: #9ca3af !important;
  border-radius: 10px !important;
}

.sidebar .sidebar-item.active .sidebar-link,
.sidebar .sidebar-link:hover {
  background: #1f2937 !important;
  color: #ffffff !important;
}

.sidebar-header {
  color: #d1d5db !important;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.form-control,
.form-select,
.input,
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  border-radius: 10px !important;
  border: 1px solid #d1d5db !important;
  background: #ffffff !important;
  color: #111111 !important;
}

.form-control:focus,
.form-select:focus,
.input:focus {
  border-color: #111111 !important;
  box-shadow: 0 0 0 0.2rem rgba(17, 17, 17, 0.12) !important;
}

.alert-success {
  background: #f0fdf4 !important;
  border: 1px solid #bbf7d0 !important;
  color: #14532d !important;
}

.alert-danger,
.bg-danger {
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  color: #7f1d1d !important;
}

.table > :not(caption) > * > * {
  border-bottom-color: #e5e7eb !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background: #fafafa !important;
}

/* Landing refinements for Vercel-like spacing */
#hero .display-4 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.05;
}

#hero .lead {
  color: #4b5563 !important;
  max-width: 680px;
}

#hero .badge {
  background: #f3f4f6 !important;
  color: #111111 !important;
  border: 1px solid #e5e7eb;
}

/* Make composer controls exactly same height */
#hero .input-group.input-group-lg {
  align-items: stretch !important;
  gap: 0 !important;
}

#hero .input-group.input-group-lg .form-control {
  min-height: 56px;
  height: 56px;
  line-height: 56px;
}

#hero .input-group.input-group-lg .btn {
  min-height: 56px;
  height: 56px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0 !important;
}

/* Auth gradient simplified */
section .gradient-primary {
  background: linear-gradient(145deg, #111111 0%, #1f2937 100%) !important;
}

/* =====================================================================
   TEXT CONTRAST FIXES
   Ensure text is always readable against its background.
   ===================================================================== */

/* --- Dark background sections: force all text to white/light --- */
.bg-primary,
.bg-dark,
.bg-dark-dark,
.bg-section-dark,
.bg-section-primary,
.footer-dark,
.gradient-primary,
.bg-gradient-dark {
  color: #ffffff !important;
}

/* Headings inside dark backgrounds */
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6,
.bg-primary .h1, .bg-primary .h2, .bg-primary .h3, .bg-primary .h4, .bg-primary .h5, .bg-primary .h6,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-dark .h1, .bg-dark .h2, .bg-dark .h3, .bg-dark .h4, .bg-dark .h5, .bg-dark .h6,
.bg-dark-dark h1, .bg-dark-dark h2, .bg-dark-dark h3, .bg-dark-dark h4, .bg-dark-dark h5, .bg-dark-dark h6,
.bg-dark-dark .h1, .bg-dark-dark .h2, .bg-dark-dark .h3, .bg-dark-dark .h4, .bg-dark-dark .h5, .bg-dark-dark .h6,
.bg-section-dark h1, .bg-section-dark h2, .bg-section-dark h3, .bg-section-dark h4, .bg-section-dark h5, .bg-section-dark h6,
.bg-section-dark .h1, .bg-section-dark .h2, .bg-section-dark .h3, .bg-section-dark .h4, .bg-section-dark .h5, .bg-section-dark .h6,
.footer-dark h1, .footer-dark h2, .footer-dark h3, .footer-dark h4, .footer-dark h5, .footer-dark h6,
.footer-dark .h1, .footer-dark .h2, .footer-dark .h3, .footer-dark .h4, .footer-dark .h5, .footer-dark .h6 {
  color: #ffffff !important;
}

/* Paragraphs and body text in dark backgrounds */
.bg-primary p, .bg-primary span, .bg-primary li, .bg-primary div, .bg-primary label,
.bg-dark p, .bg-dark span, .bg-dark li, .bg-dark div, .bg-dark label,
.bg-dark-dark p, .bg-dark-dark span, .bg-dark-dark li, .bg-dark-dark div, .bg-dark-dark label,
.bg-section-dark p, .bg-section-dark span, .bg-section-dark li, .bg-section-dark div, .bg-section-dark label,
.footer-dark p, .footer-dark span, .footer-dark li, .footer-dark div, .footer-dark label {
  color: rgba(255, 255, 255, 0.9);
}

/* Links inside dark backgrounds */
.bg-primary a, .bg-dark a, .bg-dark-dark a, .bg-section-dark a, .footer-dark a {
  color: rgba(255, 255, 255, 0.85);
}

.bg-primary a:hover, .bg-dark a:hover, .bg-dark-dark a:hover, .bg-section-dark a:hover, .footer-dark a:hover {
  color: #ffffff;
}

/* .text-muted inside dark backgrounds should be lighter */
.bg-primary .text-muted, .bg-dark .text-muted, .bg-dark-dark .text-muted,
.bg-section-dark .text-muted, .footer-dark .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* .text-dark inside dark backgrounds should be white */
.bg-primary .text-dark, .bg-dark .text-dark, .bg-dark-dark .text-dark,
.bg-section-dark .text-dark, .footer-dark .text-dark,
.gradient-primary .text-dark {
  color: #ffffff !important;
}

/* .text-secondary inside dark backgrounds */
.bg-primary .text-secondary, .bg-dark .text-secondary, .bg-dark-dark .text-secondary,
.bg-section-dark .text-secondary, .footer-dark .text-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* --- Footer specific overrides --- */
.footer-dark .heading,
.footer-dark h6 {
  color: #e5e7eb !important;
}

.footer-dark .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-dark .nav-link:hover {
  color: #ffffff !important;
}

.footer-dark .nav-link.text-dark {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-dark .nav-link.text-dark:hover {
  color: #ffffff !important;
}

.footer-dark .copyright,
.footer-dark .copyright a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-dark .copyright a:hover {
  color: #ffffff !important;
}

.footer-dark .divider-dark {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-dark .list-unstyled a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-dark .list-unstyled a:hover {
  color: #ffffff !important;
}

/* --- Cards inside dark sections should keep their light appearance --- */
.bg-section-dark .card,
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark),
.footer-dark .card {
  background: var(--rb-surface) !important;
  color: var(--rb-text) !important;
}

.bg-section-dark .card h1, .bg-section-dark .card h2, .bg-section-dark .card h3,
.bg-section-dark .card h4, .bg-section-dark .card h5, .bg-section-dark .card h6,
.bg-section-dark .card .h1, .bg-section-dark .card .h2, .bg-section-dark .card .h3,
.bg-section-dark .card .h4, .bg-section-dark .card .h5, .bg-section-dark .card .h6 {
  color: var(--rb-text) !important;
}

.bg-section-dark .card p, .bg-section-dark .card span,
.bg-section-dark .card li, .bg-section-dark .card div {
  color: var(--rb-text);
}

.bg-section-dark .card .text-muted {
  color: var(--rb-muted) !important;
}

.bg-section-dark .card a {
  color: var(--rb-primary);
}

/* --- Cards that ARE dark-colored should keep white text --- */
.card.bg-primary, .card.bg-dark, .card.bg-dark-dark, .card.bg-section-dark {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.card.bg-primary h1, .card.bg-primary h2, .card.bg-primary h3,
.card.bg-primary h4, .card.bg-primary h5, .card.bg-primary h6,
.card.bg-primary .h1, .card.bg-primary .h2, .card.bg-primary .h3,
.card.bg-primary .h4, .card.bg-primary .h5, .card.bg-primary .h6,
.card.bg-dark h1, .card.bg-dark h2, .card.bg-dark h3,
.card.bg-dark h4, .card.bg-dark h5, .card.bg-dark h6,
.card.bg-dark .h1, .card.bg-dark .h2, .card.bg-dark .h3,
.card.bg-dark .h4, .card.bg-dark .h5, .card.bg-dark .h6,
.card.bg-dark-dark h1, .card.bg-dark-dark h2, .card.bg-dark-dark h3,
.card.bg-dark-dark h4, .card.bg-dark-dark h5, .card.bg-dark-dark h6,
.card.bg-dark-dark .h1, .card.bg-dark-dark .h2, .card.bg-dark-dark .h3,
.card.bg-dark-dark .h4, .card.bg-dark-dark .h5, .card.bg-dark-dark .h6 {
  color: #ffffff !important;
}

.card.bg-primary p, .card.bg-primary span, .card.bg-primary li,
.card.bg-dark p, .card.bg-dark span, .card.bg-dark li,
.card.bg-dark-dark p, .card.bg-dark-dark span, .card.bg-dark-dark li {
  color: rgba(255, 255, 255, 0.9);
}

.card.bg-primary .text-muted, .card.bg-dark .text-muted, .card.bg-dark-dark .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Cards with bg-section-dark class */
.card.bg-section-dark {
  background: #0e0b2b !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.card.bg-section-dark h1, .card.bg-section-dark h2, .card.bg-section-dark h3,
.card.bg-section-dark h4, .card.bg-section-dark h5, .card.bg-section-dark h6,
.card.bg-section-dark .h1, .card.bg-section-dark .h2, .card.bg-section-dark .h3,
.card.bg-section-dark .h4, .card.bg-section-dark .h5, .card.bg-section-dark .h6 {
  color: #ffffff !important;
}

.card.bg-section-dark p, .card.bg-section-dark span, .card.bg-section-dark li,
.card.bg-section-dark div {
  color: rgba(255, 255, 255, 0.9);
}

.card.bg-section-dark a {
  color: rgba(255, 255, 255, 0.85);
}

.card.bg-section-dark a:hover {
  color: #ffffff;
}

/* --- Gradient sections with dark backgrounds --- */
section .gradient-primary h1, section .gradient-primary h2,
section .gradient-primary h3, section .gradient-primary h4,
section .gradient-primary h5, section .gradient-primary h6 {
  color: #ffffff !important;
}

section .gradient-primary p, section .gradient-primary span,
section .gradient-primary li, section .gradient-primary div {
  color: rgba(255, 255, 255, 0.9);
}

section .gradient-primary a {
  color: rgba(255, 255, 255, 0.85);
}

/* --- .text-white should always be white, never overridden --- */
.text-white {
  color: #ffffff !important;
}

/* --- Ensure icon shapes have correct contrast --- */
.icon-shape.bg-primary {
  background: #111111 !important;
  color: #ffffff !important;
}

.icon-shape.bg-primary i,
.icon-shape.bg-primary svg {
  color: #ffffff !important;
}

/* --- bg-section-secondary (light gray) should have dark text --- */
.bg-section-secondary {
  color: var(--rb-text);
}

.bg-section-secondary h1, .bg-section-secondary h2, .bg-section-secondary h3,
.bg-section-secondary h4, .bg-section-secondary h5, .bg-section-secondary h6 {
  color: var(--rb-text);
}

/* --- Dark mode tuning --- */
body.dark,
html[data-scheme="dark"] body {
  background: #0b0b0b;
  color: #e5e7eb;
}

body.dark .card,
html[data-scheme="dark"] .card {
  background: #111111 !important;
  border-color: #1f2937 !important;
  box-shadow: none !important;
}

body.dark .navbar-bg,
html[data-scheme="dark"] .navbar-bg {
  background: rgba(11, 11, 11, 0.9) !important;
  border-color: #1f2937 !important;
}

/* =====================================================================
   LANDING CONTRAST PATCH
   Rebrand dark surfaces use broad descendant rules above. These resets keep
   light cards, pills, and clipped labels readable when they sit inside them.
   ===================================================================== */

.clip-text,
.gradient-primary.clip-text {
  background: none !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--rb-primary) !important;
}

.bg-primary .clip-text,
.bg-dark .clip-text,
.bg-dark-dark .clip-text,
.footer-dark .clip-text,
.btn-primary .clip-text,
.gradient-primary:not(.clip-text) .clip-text {
  color: #ffffff !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary),
.gradient-primary:not(.clip-text) .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) {
  background: var(--rb-surface) !important;
  color: var(--rb-text) !important;
}

.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i),
.gradient-primary:not(.clip-text) .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i) {
  color: var(--rb-text) !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.text-muted, small),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.text-muted, small),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.text-muted, small),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.text-muted, small),
.gradient-primary:not(.clip-text) .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.text-muted, small) {
  color: var(--rb-muted) !important;
}

.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.clip-text, .gradient-primary.clip-text),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.clip-text, .gradient-primary.clip-text),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.clip-text, .gradient-primary.clip-text),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.clip-text, .gradient-primary.clip-text),
.gradient-primary:not(.clip-text) .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.clip-text, .gradient-primary.clip-text) {
  color: var(--rb-primary) !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary :where(.bg-white, .btn-light),
.bg-dark :where(.bg-white, .btn-light),
.bg-dark-dark :where(.bg-white, .btn-light),
.footer-dark :where(.bg-white, .btn-light),
.gradient-primary:not(.clip-text) :where(.bg-white, .btn-light) {
  color: var(--rb-text) !important;
}

.bg-primary :where(.bg-white, .btn-light) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark),
.bg-dark :where(.bg-white, .btn-light) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark),
.bg-dark-dark :where(.bg-white, .btn-light) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark),
.footer-dark :where(.bg-white, .btn-light) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark),
.gradient-primary:not(.clip-text) :where(.bg-white, .btn-light) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark) {
  color: var(--rb-text) !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary :where(.bg-white, .btn-light) :where(.clip-text, .gradient-primary.clip-text),
.bg-dark :where(.bg-white, .btn-light) :where(.clip-text, .gradient-primary.clip-text),
.bg-dark-dark :where(.bg-white, .btn-light) :where(.clip-text, .gradient-primary.clip-text),
.footer-dark :where(.bg-white, .btn-light) :where(.clip-text, .gradient-primary.clip-text),
.gradient-primary:not(.clip-text) :where(.bg-white, .btn-light) :where(.clip-text, .gradient-primary.clip-text) {
  color: var(--rb-primary) !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary :where(.badge, .btn-primary, .bg-primary, .bg-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.bg-dark :where(.badge, .btn-primary, .bg-primary, .bg-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.bg-dark-dark :where(.badge, .btn-primary, .bg-primary, .bg-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.footer-dark :where(.badge, .btn-primary, .bg-primary, .bg-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.gradient-primary:not(.clip-text) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text) {
  color: #ffffff !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary a.btn-light,
.bg-dark a.btn-light,
.bg-dark-dark a.btn-light,
.footer-dark a.btn-light,
.gradient-primary:not(.clip-text) a.btn-light,
.bg-primary button.btn-light,
.bg-dark button.btn-light,
.bg-dark-dark button.btn-light,
.footer-dark button.btn-light,
.gradient-primary:not(.clip-text) button.btn-light {
  color: var(--rb-text) !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.bg-white, .btn-light),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.bg-white, .btn-light),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.bg-white, .btn-light),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.bg-white, .btn-light),
.gradient-primary:not(.clip-text) .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.bg-white, .btn-light) {
  color: var(--rb-text) !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)),
.gradient-primary:not(.clip-text) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark) {
  color: #ffffff !important;
  -webkit-text-fill-color: currentColor !important;
}

.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark, .gradient-primary:not(.clip-text)) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text),
.gradient-primary:not(.clip-text) :where(.badge, .btn-primary, .bg-primary, .bg-dark, .bg-dark-dark) :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .clip-text) {
  color: #ffffff !important;
  -webkit-text-fill-color: currentColor !important;
}

.gradient-primary:not(.clip-text) .bg-white,
.gradient-primary:not(.clip-text) .btn-light,
.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white,
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white,
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white,
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white,
.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light,
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light,
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light,
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light {
  color: var(--rb-text) !important;
  -webkit-text-fill-color: currentColor !important;
}

.gradient-primary:not(.clip-text) .bg-white :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.gradient-primary:not(.clip-text) .btn-light :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .bg-white :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.bg-primary .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.bg-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.bg-dark-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor),
.footer-dark .card:not(.bg-primary):not(.bg-dark):not(.bg-dark-dark):not(.bg-section-dark):not(.gradient-primary) .gradient-primary:not(.clip-text) .btn-light :where(h1, h2, h3, h4, h5, h6, p, span, small, strong, li, label, div, a, i, .text-dark, .clip-text, .typed-cursor) {
  color: var(--rb-text) !important;
  -webkit-text-fill-color: currentColor !important;
}

