
/* Minimal utility CSS to preview the Tailwind-based theme without CDN */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
a{color:inherit}

:root{ --container-max: 1200px; }

/* Layout */
.container{max-width:var(--container-max); margin-left:auto; margin-right:auto;}
.mx-auto{margin-left:auto; margin-right:auto}
.relative{position:relative}
.absolute{position:absolute}
.fixed{position:fixed}
.inset-0{top:0;right:0;bottom:0;left:0}
.top-0{top:0}
.left-0{left:0}
.right-0{right:0}
.bottom-0{bottom:0}
.z-0{z-index:0}
.z-10{z-index:10}
.z-50{z-index:50}
.overflow-hidden{overflow:hidden}

/* Flex & Grid */
.flex{display:flex}
.inline-flex{display:inline-flex}
.grid{display:grid}
.items-center{align-items:center}
.justify-between{justify-content:space-between}
.justify-center{justify-content:center}
.gap-2{gap:0.5rem}
.gap-3{gap:0.75rem}
.gap-4{gap:1rem}
.gap-6{gap:1.5rem}
.gap-8{gap:2rem}
.flex-col{flex-direction:column}
.flex-row{flex-direction:row}
.flex-shrink-0{flex-shrink:0}

/* Sizing */
.min-h-screen{min-height:100vh}
.h-11{height:2.75rem}
.h-16{height:4rem}
.h-20{height:5rem}
.h-32{height:8rem}
.w-4{width:1rem}
.h-4{height:1rem}
.w-5{width:1.25rem}
.h-5{height:1.25rem}
.w-6{width:1.5rem}
.h-6{height:1.5rem}
.w-10{width:2.5rem}
.h-10{height:2.5rem}
.w-12{width:3rem}
.h-12{height:3rem}
.w-full{width:100%}
.h-full{height:100%}
.max-w-2xl{max-width:42rem}
.max-w-3xl{max-width:48rem}
.max-w-4xl{max-width:56rem}

/* Spacing */
.p-2{padding:0.5rem}
.p-6{padding:1.5rem}
.p-8{padding:2rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-6{padding-left:1.5rem;padding-right:1.5rem}
.px-8{padding-left:2rem;padding-right:2rem}
.px-10{padding-left:2.5rem;padding-right:2.5rem}
.py-2{padding-top:0.5rem;padding-bottom:0.5rem}
.py-3{padding-top:0.75rem;padding-bottom:0.75rem}
.py-4{padding-top:1rem;padding-bottom:1rem}
.py-12{padding-top:3rem;padding-bottom:3rem}
.py-20{padding-top:5rem;padding-bottom:5rem}
.pt-8{padding-top:2rem}
.pt-20{padding-top:5rem}
.mb-2{margin-bottom:0.5rem}
.mb-3{margin-bottom:0.75rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}
.mb-10{margin-bottom:2.5rem}
.mb-12{margin-bottom:3rem}
.mb-16{margin-bottom:4rem}
.mt-4{margin-top:1rem}
.mt-12{margin-top:3rem}
.-mt-1{margin-top:-0.25rem}

/* Typography */
.text-sm{font-size:0.875rem; line-height:1.25rem}
.text-lg{font-size:1.125rem; line-height:1.75rem}
.text-xl{font-size:1.25rem; line-height:1.75rem}
.text-3xl{font-size:1.875rem; line-height:2.25rem}
.text-4xl{font-size:2.25rem; line-height:2.5rem}
.text-5xl{font-size:3rem; line-height:1}
.text-6xl{font-size:3.75rem; line-height:1}
.text-7xl{font-size:4.5rem; line-height:1}
.font-bold{font-weight:700}
.font-semibold{font-weight:600}
.font-medium{font-weight:500}
.tracking-wider{letter-spacing:0.08em}
.uppercase{text-transform:uppercase}
.leading-relaxed{line-height:1.625}
.whitespace-nowrap{white-space:nowrap}
.text-center{text-align:center}

/* Display */
.hidden{display:none}
.block{display:block}

/* Borders & radius */
.border{border:1px solid hsl(var(--border))}
.border-b{border-bottom:1px solid hsl(var(--border))}
.border-t{border-top:1px solid hsl(var(--border))}
.border-border{border-color:hsl(var(--border))}
.border-input{border-color:hsl(var(--input))}
.rounded-md{border-radius:0.375rem}
.rounded-lg{border-radius:0.5rem}
.rounded-xl{border-radius:0.75rem}
.rounded-full{border-radius:9999px}

/* Background + text color tokens */
.bg-background{background-color:hsl(var(--background))}
.bg-card{background-color:hsl(var(--card))}
.bg-primary{background-color:hsl(var(--primary))}
.bg-muted\/30{background-color:hsl(var(--muted) / 0.30)}
.bg-card\/50{background-color:hsl(var(--card) / 0.50)}
.bg-primary\/10{background-color:hsl(var(--primary) / 0.10)}
.bg-primary\/20{background-color:hsl(var(--primary) / 0.20)}
.bg-primary\/90{background-color:hsl(var(--primary) / 0.90)}
.bg-primary\/95{background-color:hsl(var(--primary) / 0.95)}
.bg-background\/95{background-color:hsl(var(--background) / 0.95)}
.bg-primary\/30{background-color:hsl(var(--primary) / 0.30)}

.text-foreground{color:hsl(var(--foreground))}
.text-muted-foreground{color:hsl(var(--muted-foreground))}
.text-primary{color:hsl(var(--primary))}
.text-primary-foreground{color:hsl(var(--primary-foreground))}

/* Effects */
.backdrop-blur-sm{backdrop-filter: blur(8px)}
.object-cover{object-fit:cover}

/* Gradients (Tailwind-like minimal) */
.bg-gradient-to-r{background-image:linear-gradient(to right, var(--tw-gradient-stops))}
.bg-gradient-to-t{background-image:linear-gradient(to top, var(--tw-gradient-stops))}
.bg-gradient-to-br{background-image:linear-gradient(to bottom right, var(--tw-gradient-stops))}
.from-background{--tw-gradient-from:hsl(var(--background)); --tw-gradient-to:hsl(var(--background) / 0); --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}
.via-background\/90{--tw-gradient-via:hsl(var(--background) / 0.90); --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to)}
.to-background\/60{--tw-gradient-to:hsl(var(--background) / 0.60)}
.to-transparent{--tw-gradient-to:transparent}
.from-card{--tw-gradient-from:hsl(var(--card)); --tw-gradient-to:hsl(var(--card) / 0); --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}
.via-card\/50{--tw-gradient-via:hsl(var(--card) / 0.50); --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to)}
.from-primary\/20{--tw-gradient-from:hsl(var(--primary) / 0.20); --tw-gradient-to:hsl(var(--primary) / 0); --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}
.from-primary\/10{--tw-gradient-from:hsl(var(--primary) / 0.10); --tw-gradient-to:hsl(var(--primary) / 0); --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}
.to-secondary\/30{--tw-gradient-to:hsl(var(--secondary) / 0.30)}

/* Arbitrary class used in theme */
.bg-\[radial-gradient\(ellipse_at_center,_var\(--tw-gradient-stops\)\)\]{background-image:radial-gradient(ellipse at center, var(--tw-gradient-stops))}

/* Aspect ratio */
.aspect-\[4\/3\]{aspect-ratio:4/3}

/* Components */
.ring-offset-background{outline-offset:2px}
.focus-visible\:outline-none:focus{outline:none}
.focus-visible\:ring-2:focus{box-shadow:0 0 0 2px hsl(var(--ring) / 0.7)}

/* Hover effects */
.hover\:text-primary:hover{color:hsl(var(--primary))}
.hover\:bg-primary\/90:hover{background-color:hsl(var(--primary) / 0.90)}
.hover\:bg-primary\/10:hover{background-color:hsl(var(--primary) / 0.10)}
.group:hover .group-hover\:scale-105{transform:scale(1.05)}
.transition-colors{transition:color .2s ease, background-color .2s ease, border-color .2s ease}
.transition-all{transition:all .3s ease}
.duration-300{transition-duration:.3s}
.duration-500{transition-duration:.5s}

/* Buttons */
.inline-flex.items-center.justify-center{align-items:center; justify-content:center}

/* Responsive breakpoints */
@media (min-width: 640px){
  .sm\:block{display:block}
  .sm\:flex-row{flex-direction:row}
}
@media (min-width: 768px){
  .md\:hidden{display:none}
  .md\:flex{display:flex}
  .md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
  .md\:py-32{padding-top:8rem;padding-bottom:8rem}
  .md\:text-xl{font-size:1.25rem; line-height:1.75rem}
  .md\:text-5xl{font-size:3rem; line-height:1}
  .md\:text-6xl{font-size:3.75rem; line-height:1}
  .md\:p-8{padding:2rem}
  .md\:h-20{height:5rem}
}
@media (min-width: 1024px){
  .lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .lg\:gap-20{gap:5rem}
  .lg\:text-7xl{font-size:4.5rem; line-height:1}
}
