@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

html {
  scroll-behavior: smooth;
}

/* Red-white duotone monochromatic style with low saturation / grain / halftone */
.monochrome-red-grained,
.monochrome-red-bg-filter-container {
  position: relative;
  overflow: hidden;
  background-color: #e11d48 !important; /* Brand Red background */
}

.monochrome-red-grained img,
.monochrome-red-bg-filter {
  filter: grayscale(100%) contrast(150%) brightness(125%) !important;
  mix-blend-mode: screen !important;
  opacity: 0.95;
  transition: all 0.5s ease;
}

/* Retino (Halftone Dots) Overlay */
.monochrome-red-grained::before,
.monochrome-red-bg-filter-container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 0);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
  z-index: 5;
}

/* Disturbo (Fractal Grain) Overlay + dark dots */
.monochrome-red-grained::after,
.monochrome-red-bg-filter-container::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14; /* Low-saturated beautiful grain intensity */
  pointer-events: none;
  background-image: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
    radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 0);
  background-size: auto, 3.5px 3.5px;
  mix-blend-mode: multiply;
  z-index: 10;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
