/* Brand Gradient Backgrounds */
.bg-brand-gradient {
  background: linear-gradient(135deg, rgba(255, 177, 54, 0.08) 0%, rgba(0, 163, 255, 0.08) 100%);
}

body[data-theme="dark"] .bg-brand-gradient {
  background: linear-gradient(135deg, rgba(255, 177, 54, 0.10) 0%, rgba(0, 163, 255, 0.10) 100%);
}

/* Warm coral tint background */
.bg-section-warm {
  background: #fff5f5;
}

body[data-theme="dark"] .bg-section-warm {
  background: #2a1f1f;
}
