/**
 * Hand-authored HTML uses Tailwind opacity modifiers (e.g. bg-white/95) that are not
 * emitted into the Next.js CSS chunk (d718c0381cea713a.css) because those class strings
 * never appeared in scanned source. Define them here so static pages match design.
 * bg-orange-50 matches this project's theme token (see main bundle .bg-orange-50).
 */
.bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}
.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-slate-50\/90 {
  background-color: rgba(248, 250, 252, 0.9);
}
.bg-gray-50\/90 {
  background-color: rgba(249, 250, 251, 0.9);
}
.bg-orange-50\/80 {
  background-color: rgba(240, 250, 250, 0.8);
}
