@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url(inter-400.ttf) format('truetype');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* Mobile-specific: Enhance synthetic bold to match Inter 800 weight */
@media (max-width: 768px) {
  .hero-title {
    font-weight: 900 !important;
    text-stroke: 0.5px currentColor;
    -webkit-text-stroke: 0.5px currentColor;
    text-shadow: 
      0.5px 0 0 currentColor,
      -0.5px 0 0 currentColor,
      0 0.5px 0 currentColor,
      0 -0.5px 0 currentColor,
      0.5px 0.5px 0 currentColor,
      -0.5px -0.5px 0 currentColor,
      0.5px -0.5px 0 currentColor,
      -0.5px 0.5px 0 currentColor;
  }
  
  .gradient-text {
    font-weight: 900 !important;
    /* Add subtle shadow for boldness - gradient handled by main CSS */
    filter: drop-shadow(0.3px 0 0 rgba(139,92,246,0.3)) 
            drop-shadow(-0.3px 0 0 rgba(139,92,246,0.3)) 
            drop-shadow(0 0.3px 0 rgba(139,92,246,0.3)) 
            drop-shadow(0 -0.3px 0 rgba(139,92,246,0.3));
  }
}