/* Minimal local utility layer replacing the Tailwind CDN runtime. */
*,::before,::after { box-sizing: border-box; border-width: 0; border-style: solid; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
button { font: inherit; color: inherit; }
img,svg,video,canvas,iframe { display: block; max-width: 100%; }

.relative { position: relative; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-12 { gap: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: .5rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 4rem; }
.rounded-none { border-radius: 0; }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.border { border-width: 1px; }
.border-white\/12 { border-color: rgba(255,255,255,.12); }
.border-white\/20 { border-color: rgba(255,255,255,.2); }
.bg-white\/10 { background-color: rgba(255,255,255,.1); }
.bg-\[rgba\(26\,23\,38\,0\.78\)\] { background-color: rgba(26,23,38,.78); }
.bg-\[rgba\(31\,29\,45\,0\.92\)\] { background-color: rgba(31,29,45,.92); }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.625; }
.tracking-\[0\.32em\] { letter-spacing: .32em; }
.tracking-\[0\.35em\] { letter-spacing: .35em; }
.text-\[var\(--muted\)\] { color: var(--muted); }
.text-\[var\(--text\)\] { color: var(--text); }
.text-white\/50 { color: rgba(255,255,255,.5); }
.text-white\/60 { color: rgba(255,255,255,.6); }
.text-white\/70 { color: rgba(255,255,255,.7); }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.text-balance { text-wrap: balance; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.-translate-y-3 { transform: translateY(-.75rem); }
.translate-y-0 { transform: translateY(0); }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.transition { transition-property: color,background-color,border-color,opacity,box-shadow,transform; transition-duration: 150ms; }
.transition-all { transition-property: all; }
.duration-200 { transition-duration: 200ms; }
.ease-out { transition-timing-function: cubic-bezier(0,0,.2,1); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.shadow-\[0_25px_60px_rgba\(18\,15\,32\,0\.45\)\] { box-shadow: 0 25px 60px rgba(18,15,32,.45); }
.hover\:bg-white\/20:hover { background-color: rgba(255,255,255,.2); }
.focus-visible\:outline:focus-visible { outline-style: solid; }
.focus-visible\:outline-2:focus-visible { outline-width: 2px; }
.focus-visible\:outline-offset-2:focus-visible { outline-offset: 2px; }
.focus-visible\:outline-white\/40:focus-visible { outline-color: rgba(255,255,255,.4); }

@media (min-width: 768px) {
    .md\:gap-6 { gap: 1.5rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { margin-top: 5rem; }
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}

@media (min-width: 1024px) {
    .lg\:hidden { display: none; }
    .lg\:flex { display: flex; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:items-center { align-items: center; }
    .lg\:justify-between { justify-content: space-between; }
    .lg\:justify-center { justify-content: center; }
    .lg\:gap-4 { gap: 1rem; }
    .lg\:w-auto { width: auto; }
    .lg\:border-0 { border-width: 0; }
    .lg\:bg-transparent { background-color: transparent; }
    .lg\:px-0 { padding-left: 0; padding-right: 0; }
    .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
    .lg\:opacity-100 { opacity: 1; }
    .lg\:translate-y-0 { transform: translateY(0); }
    .lg\:pointer-events-auto { pointer-events: auto; }
}
