body {
    font-family: Inter, 'sans-serif;';
}
.hero-overlay-minimal {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,251,0.94) 100%);
}
.max-w-6xl {
    max-width: 1200px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, sans-serif;
  background:#f9fafb;
  color:#111827;
}
a {text-decoration: none;}
img{max-width:100%;display:block}
.bg-white{background:#fff}
.bg-gray-50{background:#f9fafb}
.bg-gray-100{background:#f3f4f6}
.bg-blue-500{background:#3b82f6}
.bg-blue-600{background:#2563eb}
.bg-blue-100{background:#dbeafe}

.text-white{color:#fff}
.text-gray-500{color:#6b7280}
.text-gray-600{color:#4b5563}
.text-gray-700{color:#374151}
.text-gray-900{color:#111827}
.text-blue-500{color:#3b82f6}
.text-blue-700{color:#1d4ed8}

.text-xs{font-size:.75rem}
.text-sm{font-size:.875rem}
.text-lg{font-size:1.125rem}
.text-xl{font-size:1.25rem}
.text-2xl{font-size:1.5rem}
.text-3xl{font-size:1.875rem}
.text-4xl{font-size:2.25rem}
.text-6xl{font-size:3.75rem}
.text-8xl{font-size:6rem}

.font-light{font-weight:300}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}

.tracking-tight{letter-spacing:-.025em}
.leading-relaxed{line-height:1.625}
.text-center{text-align:center}

.relative{position:relative}
.absolute{position:absolute}
.inset-0{top:0;right:0;bottom:0;left:0}
.h-screen{height:100vh}
.h-full{height:100%}
.w-full{width:100%}

.flex{display:flex}
.inline-flex{display:inline-flex}
.items-center{align-items:center}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.flex-wrap{flex-wrap:wrap}
.flex-1{flex:1}

.grid{display:grid}
.gap-2{gap:.5rem}
.gap-3{gap:.75rem}
.gap-8{gap:2rem}
.gap-12{gap:3rem}

.p-6{padding:1.5rem}
.p-8{padding:2rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-12{padding-left:3rem;padding-right:3rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.py-5{padding-top:1.25rem;padding-bottom:1.25rem}
.py-20{padding-top:5rem;padding-bottom:5rem}

.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}
.mb-12{margin-bottom:3rem}
.mb-16{margin-bottom:4rem}
.mt-16{margin-top:4rem}
.mx-auto{margin-left:auto;margin-right:auto}

.w-16 {
    width: 4rem;
    height: 4rem;
}

.rounded-full{border-radius:9999px}
.rounded-xl{border-radius:.75rem}
.rounded-2xl{border-radius:1rem}

.border{border:1px solid #e5e7eb}
.border-2{border-width:2px}
.border-gray-200{border-color:#e5e7eb}
.border-gray-300{border-color:#d1d5db}
.border-blue-100{border-color:#dbeafe}

.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1)}
.hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}

.transition{transition:.3s}
.transition-all{transition:all .3s}

.hover\:bg-blue-600:hover{background:#2563eb}
.hover\:bg-blue-700:hover{background:#1d4ed8}
.hover\:bg-gray-100:hover{background:#f3f4f6}
.hover\:border-blue-300:hover{border-color:#93c5fd}

.bg-cover{background-size:cover}
.bg-center{background-position:center}

.hero-overlay-minimal{
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(249,250,251,.94))
}

@media(min-width:640px){
  .sm\:grid-cols-2{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:768px){
  .md\:grid-cols-3{grid-template-columns:repeat(3,1fr)}
  .md\:text-8xl{font-size:6rem}
}
@media(min-width:1024px){
  .lg\:grid-cols-3{grid-template-columns:repeat(3,1fr)}
}