/* Prevent flash of unstyled content */
html { visibility: hidden; }
html.loaded { visibility: visible; }

/* Prevent layout shifts */
* {
  box-sizing: border-box;
}

/* Smooth rendering for hero section */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Prevent jumping during font load */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-display: swap;
}


