/* Business Discounts — palette from logo1 (royal blue, orange, cyan) */

:root {
  --brand-blue: #1a66b2;
  --brand-blue-rgb: 26, 102, 178;
  --brand-orange: #f27420;
  --brand-orange-rgb: 242, 116, 32;
  --brand-cyan: #0ea5e9;
  --brand-cyan-rgb: 14, 165, 233;
  --brand-amber: #f5a623;

  --text: #0c1929;
  --text-muted: #5c6b7f;
  --accent: var(--brand-blue);
  --accent-rgb: 26, 102, 178;
  --accent-hover: #155691;
  --cta: var(--brand-orange);
  --cta-rgb: 242, 116, 32;
  --cta-hover: #d96616;
  --highlight: var(--brand-cyan);
  --highlight-rgb: 14, 165, 233;

  --surface: #eef3fa;
  --surface-elevated: #f6f9fc;
  --surface-white: #ffffff;
  --border: rgba(26, 102, 178, 0.1);
  --border-focus: rgba(26, 102, 178, 0.45);
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-strong: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(26, 102, 178, 0.08);
  --glass-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 28px rgba(26, 102, 178, 0.07);
  --sidebar-width: 240px;
  --radius: 14px;
  --radius-sm: 9px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.bg-app {
  margin: 0;
  min-height: 100vh;
  position: relative;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

body.bg-app::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 0% 0%, rgba(var(--brand-blue-rgb), 0.11), transparent 52%),
    radial-gradient(ellipse 80% 55% at 100% 8%, rgba(var(--brand-cyan-rgb), 0.09), transparent 48%),
    radial-gradient(ellipse 70% 50% at 85% 95%, rgba(var(--brand-orange-rgb), 0.06), transparent 45%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 45%, var(--surface) 100%);
}

/* Ensure page content always layers above decorative background */
main.container {
  position: relative;
  z-index: 1;
}

.app-shell {
  position: relative;
  z-index: 1;
}

/* —— Glass surfaces —— */
.glass-panel {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
}

.glass-panel-strong {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  padding: 1.25rem 1rem;
}

.sidebar .nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.5rem 0.5rem;
}

.sidebar .nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sidebar .nav-link:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
}

.sidebar .nav-link.active {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.22);
  font-weight: 600;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-cyan) 100%);
  box-shadow: 0 3px 12px rgba(var(--brand-blue-rgb), 0.28);
}

.site-logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(360px, 90vw);
  object-fit: contain;
  object-position: left center;
}

.site-logo--sm {
  height: 48px;
  max-width: min(300px, 88vw);
}

.site-logo--sidebar {
  height: 50px;
  max-width: min(220px, 100%);
  object-position: left center;
}

.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Top bar */
.topbar {
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

/* Main content cards */
main .card {
  background: linear-gradient(180deg, #fff 0%, rgba(var(--brand-cyan-rgb), 0.02) 100%);
  border: 1px solid var(--border) !important;
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius) !important;
}

main .card .card-body {
  padding: 1.15rem 1.25rem;
}

.page-title {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-lede {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 40rem;
}

/* Alerts */
.alert {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.alert-success {
  background: rgba(220, 252, 231, 0.75);
  color: #14532d;
}

/* Forms */
.form-control,
.form-select {
  background: var(--surface-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.form-control:focus,
.form-select:focus {
  background: var(--surface-white);
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(var(--brand-blue-rgb), 0.14);
}

.form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text);
}

/* Buttons */
.btn-primary-action {
  background: linear-gradient(165deg, #ff8c32 0%, var(--cta) 45%, #e85d0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 14px rgba(var(--cta-rgb), 0.35);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary-action:hover {
  background: linear-gradient(165deg, #ffa04d 0%, var(--cta-hover) 50%, #d35400 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 6px 20px rgba(var(--cta-rgb), 0.42);
  color: #fff !important;
  filter: saturate(1.05);
}

.btn-primary-action:active {
  transform: translateY(1px);
}

.btn-glass-outline {
  background: var(--surface-white);
  border: 1px solid var(--border);
  color: var(--text) !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn-glass-outline:hover {
  background: rgba(var(--brand-blue-rgb), 0.05);
  border-color: rgba(var(--brand-blue-rgb), 0.2);
  color: var(--accent) !important;
}

.btn-glass-logout {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted) !important;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.btn-glass-logout:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text) !important;
}

/* Auth screens */
.auth-scene .card {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius) !important;
}

.auth-scene code {
  font-size: 0.8em;
  background: rgba(var(--accent-rgb), 0.1);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: var(--accent);
}

/* Text helpers */
.text-secondary {
  color: var(--text-muted) !important;
}

/* Mobile */
@media (max-width: 991.98px) {
  .sidebar {
    min-height: auto;
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
    margin: 0.5rem 0.5rem 0;
    width: calc(100% - 1rem);
  }

  .topbar {
    margin: 0 0.5rem;
    width: calc(100% - 1rem);
    border-radius: var(--radius);
  }

  main {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (min-width: 992px) {
  .sidebar {
    margin: 1rem 0 1rem 1rem;
    align-self: flex-start;
    min-height: calc(100vh - 2rem);
    max-height: calc(100vh - 2rem);
  }

  .app-main-col {
    margin: 1rem 1rem 1rem 0;
  }

  .topbar {
    margin-top: 1rem;
    margin-right: 1rem;
    border-radius: var(--radius);
  }

  main {
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}

.page-lede.small {
  font-size: 0.8125rem;
  line-height: 1.5;
}

a.btn.btn-primary-action,
a.btn.btn-glass-outline {
  text-decoration: none;
}

.auth-scene a:not(.btn) {
  color: var(--accent);
  font-weight: 500;
}

.auth-scene a:not(.btn):hover {
  color: var(--accent-hover);
}

.form-check-input {
  border-color: rgba(28, 36, 48, 0.2);
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary-action,
  .nav-link {
    transition: none !important;
  }
}

/* —— Marketing landing —— */
.landing-body .landing-header,
.landing-body .landing-footer,
.landing-body .site-footer--landing {
  position: relative;
  z-index: 2;
}

.landing-body .landing-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.94) 100%) !important;
  border-bottom: 1px solid rgba(var(--brand-blue-rgb), 0.1) !important;
  box-shadow: 0 4px 20px rgba(var(--brand-blue-rgb), 0.05);
}

.landing-body .landing-footer,
.landing-body .site-footer--landing {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
  border-top: 1px solid rgba(var(--brand-blue-rgb), 0.1) !important;
}

.landing-hero-section {
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .landing-hero-inner {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

.landing-hero-glow {
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 620px);
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 45% 38%, rgba(var(--brand-blue-rgb), 0.14), transparent 58%),
    radial-gradient(ellipse 55% 50% at 72% 32%, rgba(var(--brand-cyan-rgb), 0.12), transparent 52%);
}

/* Home: extra orange wash layered on top of blue/cyan */
.landing-hero-glow.landing-hero-glow-warm {
  background:
    radial-gradient(ellipse 65% 55% at 50% 42%, rgba(var(--brand-orange-rgb), 0.11), transparent 54%),
    radial-gradient(ellipse 70% 60% at 45% 38%, rgba(var(--brand-blue-rgb), 0.13), transparent 58%),
    radial-gradient(ellipse 55% 50% at 72% 32%, rgba(var(--brand-cyan-rgb), 0.1), transparent 52%),
    radial-gradient(ellipse 75% 65% at 28% 72%, rgba(var(--brand-blue-rgb), 0.06), transparent 50%);
}

.landing-eyebrow-warm {
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.landing-deal-card {
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
  background: var(--surface-white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-deal-card:hover {
  border-color: rgba(var(--brand-cyan-rgb), 0.28);
  box-shadow:
    0 8px 28px rgba(var(--brand-blue-rgb), 0.09),
    0 0 0 1px rgba(var(--brand-orange-rgb), 0.06);
}

.landing-step-num {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  line-height: 2.5rem;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.landing-cta-band-warm {
  border: 1px solid rgba(var(--brand-orange-rgb), 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 242, 0.95) 100%) !important;
  box-shadow: 0 12px 36px rgba(var(--brand-orange-rgb), 0.08);
}

.landing-eyebrow {
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
}

.landing-headline {
  text-align: center;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--text);
}

.landing-headline-accent {
  font-weight: 800;
  background: linear-gradient(100deg, var(--brand-blue) 0%, var(--brand-cyan) 42%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-lede {
  text-align: center;
}

.landing-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-icon-teal {
  background: linear-gradient(145deg, rgba(var(--brand-blue-rgb), 0.1), rgba(var(--brand-cyan-rgb), 0.08));
  color: var(--brand-blue);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.22);
}

.landing-card {
  border: 1px solid var(--border);
  background: var(--surface-white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-card:hover {
  border-color: rgba(var(--brand-blue-rgb), 0.18);
  box-shadow: 0 12px 36px rgba(var(--brand-blue-rgb), 0.1);
}

.landing-cta-band {
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow);
  background: var(--surface-white);
}

.landing-footer a:hover,
.landing-body .site-footer--landing .site-footer-links a:hover {
  color: var(--cta) !important;
}

@media (prefers-reduced-motion: reduce) {
  .landing-card,
  .landing-deal-card {
    transition: none !important;
  }
}

/* —— Landing (home advanced blocks) —— */
.landing-brand-title {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.landing-domain-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-hero-pro {
  position: relative;
}

.landing-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  background-image:
    linear-gradient(105deg, rgba(var(--brand-blue-rgb), 0.07) 0%, transparent 40%),
    linear-gradient(-25deg, rgba(var(--brand-cyan-rgb), 0.06) 0%, transparent 35%),
    radial-gradient(ellipse 90% 70% at 100% 20%, rgba(var(--brand-orange-rgb), 0.05), transparent 50%);
}

.landing-hero-pro .container {
  position: relative;
  z-index: 1;
}

.landing-domain-chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--brand-blue);
  background: linear-gradient(180deg, #fff 0%, rgba(var(--brand-cyan-rgb), 0.06) 100%);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.15);
  box-shadow: 0 2px 10px rgba(var(--brand-blue-rgb), 0.06);
}

.landing-headline-pro {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.landing-lede-pro {
  line-height: 1.6;
}

.landing-hero-cta-primary {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 6px 22px rgba(var(--cta-rgb), 0.38);
}

.landing-hero-stats {
  border: 1px solid rgba(var(--brand-blue-rgb), 0.12) !important;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.92) 100%) !important;
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(var(--brand-cyan-rgb), 0.06) !important;
}

.landing-stat-value {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(95deg, var(--brand-blue) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-trust-cell {
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow);
  background: var(--surface-white);
}

.landing-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(var(--brand-blue-rgb), 0.1), rgba(var(--brand-cyan-rgb), 0.08));
  color: var(--brand-blue);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.2);
}

.landing-category-chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-white);
  border: 1px solid var(--border);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.landing-category-chip:hover {
  background: linear-gradient(180deg, rgba(var(--brand-cyan-rgb), 0.08) 0%, rgba(var(--brand-blue-rgb), 0.06) 100%);
  border-color: rgba(var(--brand-cyan-rgb), 0.35);
  color: var(--brand-blue);
}

.landing-deal-card-pro {
  border: 1px solid var(--border);
  background: var(--surface-white);
}

.landing-deal-card-foot {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.landing-deal-cat-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(var(--brand-orange-rgb), 0.12) !important;
  color: #c45f0c !important;
  border: 1px solid rgba(var(--brand-orange-rgb), 0.22) !important;
}

.landing-deal-price {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--brand-blue);
}

.landing-empty-deals {
  border: 1px dashed var(--border);
  background: var(--surface-white);
}

.landing-faq .accordion-item {
  border: 1px solid var(--border) !important;
  background: var(--surface-white) !important;
}

.landing-faq .accordion-button {
  background: transparent;
  box-shadow: none !important;
  color: var(--text);
}

.landing-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(var(--brand-blue-rgb), 0.07), rgba(var(--brand-cyan-rgb), 0.05));
  color: var(--brand-blue);
}

.landing-faq .accordion-body {
  background: var(--surface);
}

.landing-cta-pro {
  border: 1px solid rgba(var(--brand-blue-rgb), 0.12);
  box-shadow: var(--glass-shadow), 0 16px 48px rgba(var(--brand-blue-rgb), 0.06);
  background: linear-gradient(180deg, #fff 0%, rgba(var(--brand-cyan-rgb), 0.03) 100%);
}

.landing-cta-pro-aside {
  background: linear-gradient(160deg, rgba(var(--brand-blue-rgb), 0.08) 0%, rgba(var(--brand-orange-rgb), 0.06) 100%);
  border-left: 1px solid rgba(var(--brand-blue-rgb), 0.1);
}

@media (max-width: 991.98px) {
  .landing-cta-pro-aside {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-category-chip {
    transition: none !important;
  }
}

/* —— Site footer —— */
.site-footer {
  position: relative;
  z-index: 1;
}

.site-footer--app .container {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.site-footer--app .site-footer-razorpay {
  margin-top: 1.25rem !important;
  padding-top: 1.25rem !important;
}

.site-footer-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(280px, 85vw);
  object-fit: contain;
  object-position: left center;
}

.site-footer-heading {
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}

.site-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer-links a:hover {
  color: var(--brand-blue);
}

.site-footer-razorpay {
  border-color: rgba(var(--brand-blue-rgb), 0.12) !important;
}

.site-footer-razorpay a {
  color: var(--brand-blue);
  font-weight: 500;
}

/* —— Legal / policy pages —— */
.legal-doc {
  max-width: 46rem;
  color: var(--text);
  line-height: 1.65;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.legal-doc h2 {
  color: var(--text);
}

.legal-doc,
.legal-doc p,
.legal-doc li,
.legal-doc strong,
.legal-doc h1,
.legal-doc h2,
.legal-doc h3,
.legal-doc h4,
.legal-doc h5,
.legal-doc h6 {
  color: #0c1929 !important;
  opacity: 1 !important;
}

.legal-doc a {
  color: var(--brand-blue) !important;
  text-decoration: underline;
}

.legal-doc ul {
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.35rem;
}

/* —— Shared site nav + mobile menu —— */
.site-nav-toggle {
  line-height: 0;
}

.site-nav-burger {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: var(--text);
  border-radius: 1px;
  box-shadow:
    0 -0.375rem 0 var(--text),
    0 0.375rem 0 var(--text);
}

.app-sidebar-offcanvas .offcanvas-body .sidebar {
  margin: 0;
  border-radius: 0;
  min-height: 100%;
}

.app-sidebar-offcanvas .sidebar {
  box-shadow: none !important;
}

.topbar .min-w-0 {
  min-width: 0;
}

/* —— Inline-style replacements (brand-tinted badges) —— */
.bd-badge-soft {
  background: rgba(var(--brand-blue-rgb), 0.14) !important;
  color: var(--brand-blue) !important;
}

.bd-badge-new {
  background: rgba(var(--brand-orange-rgb), 0.16) !important;
  color: #b8560c !important;
}

.bd-border-accent-soft {
  border-color: rgba(var(--brand-cyan-rgb), 0.28) !important;
}
