/* ========================================
   CRITICAL CSS - Inlined for performance
   ======================================== 
   
   Only essential styles for above-the-fold content.
   Full styles load async in main.scss.
   
   This prevents render-blocking and speeds up FCP/LCP.
*/

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Header - Critical for first paint */
.header-nav {
  position: relative;
  z-index: 1000;
  background: #fff;
}

/* Hero Section - Critical for LCP */
.home-1 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.home-1 .container {
  position: relative;
  z-index: 2;
}

.home-1 .bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Typography - Critical */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Hide non-critical content during load */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Prevent layout shift */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
