/*
 * Tailwind-compatible utility subset used by templates ported from /design.
 * This file is a small compiled layer for the utilities preserved in the
 * WordPress templates. It is intentionally scoped and not a full Tailwind build.
 */

.pointer-events-none { pointer-events: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.inset-x-0 { left: 0; right: 0; }
.-z-10 { z-index: -10; }
.-z-20 { z-index: -20; }
.z-50 { z-index: 50; }

.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.w-full { width: 100%; }
.w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-9 { width: 2.25rem; }
.w-11 { width: 2.75rem; }
.w-44 { width: 11rem; }
.w-16 { width: 4rem; }
.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-9 { height: 2.25rem; }
.h-11 { height: 2.75rem; }
.h-16 { height: 4rem; }
.h-28 { height: 7rem; }
.h-40 { height: 10rem; }
.h-\[38rem\] { height: 38rem; }
.h-\[72rem\] { height: 72rem; }
.h-full { height: 100%; }
.min-h-\[4\.5rem\] { min-height: 4.5rem; }
.max-w-xl { max-width: 36rem; }

.flex-1 { flex: 1 1 0%; }
.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; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 999px; }
.rounded-\[1\.2rem\] { border-radius: 1.2rem; }
.rounded-\[1\.25rem\] { border-radius: 1.25rem; }
.rounded-\[1\.4rem\] { border-radius: 1.4rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[1\.6rem\] { border-radius: 1.6rem; }
.rounded-\[1\.7rem\] { border-radius: 1.7rem; }

.border { border-width: 1px; border-style: solid; }
.border-dashed { border-style: dashed; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-brand-300\/90 { border-color: rgba(96, 165, 250, 0.9); }
.border-slate-200\/80 { border-color: rgba(226, 232, 240, 0.8); }
.border-slate-200\/90 { border-color: rgba(226, 232, 240, 0.9); }
.border-slate-300\/90 { border-color: rgba(203, 213, 225, 0.9); }
.border-white\/75 { border-color: rgba(255, 255, 255, 0.75); }

.bg-brand-50 { background-color: rgba(239, 246, 255, 1); }
.bg-accent-500 { background-color: #cb5e34; }
.bg-accent-100 { background-color: rgba(250, 231, 220, 1); }
.bg-brand-500 { background-color: #2f6fed; }
.bg-emerald-50 { background-color: rgba(236, 253, 245, 1); }
.bg-slate-50\/80 { background-color: rgba(248, 250, 252, 0.8); }
.bg-slate-50\/85 { background-color: rgba(248, 250, 252, 0.85); }
.bg-slate-50\/90 { background-color: rgba(248, 250, 252, 0.9); }
.bg-slate-100 { background-color: rgba(241, 245, 249, 1); }
.bg-slate-950 { background-color: #020617; }
.bg-white\/75 { background-color: rgba(255, 255, 255, 0.75); }
.bg-white\/85 { background-color: rgba(255, 255, 255, 0.85); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/92 { background-color: rgba(255, 255, 255, 0.92); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }

.text-balance { text-wrap: balance; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 700; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-display { font-family: var(--font-display); }
.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.tracking-tight { letter-spacing: -0.03em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }

.text-accent-600 { color: #cb5e34; }
.text-brand-600 { color: #2f6fed; }
.text-brand-700 { color: #2158d5; }
.text-accent-800 { color: #75331f; }
.text-emerald-700 { color: #047857; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-900 { color: #0f172a; }
.text-slate-950 { color: #020617; }
.text-white { color: #ffffff; }

.shadow-soft { box-shadow: 0 20px 60px -30px rgba(15, 23, 42, 0.2); }
.darksoft,
.theme-dark .dark\:shadow-darksoft { box-shadow: 0 24px 80px -36px rgba(2, 6, 23, 0.82); }

.transition { transition-property: all; transition-duration: 0.2s; transition-timing-function: ease; }
.transition-all { transition-property: all; transition-duration: 0.3s; transition-timing-function: ease; }
.duration-300 { transition-duration: 0.3s; }

.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:border-brand-300:hover { border-color: rgba(96, 165, 250, 0.5); }
.hover\:text-brand-700:hover { color: #2158d5; }
.hover\:text-brand-800:hover { color: #1f46aa; }
.hover\:text-slate-950:hover { color: #020617; }

.theme-dark .dark\:block { display: block; }
.theme-dark .dark\:hidden { display: none; }
.theme-dark .dark\:bg-white { background-color: #ffffff; }
.theme-dark .dark\:bg-brand-500\/10 { background-color: rgba(47, 111, 237, 0.1); }
.theme-dark .dark\:bg-accent-500\/20 { background-color: rgba(203, 94, 52, 0.2); }
.theme-dark .dark\:bg-emerald-500\/10 { background-color: rgba(16, 185, 129, 0.1); }
.theme-dark .dark\:bg-slate-800 { background-color: rgba(30, 41, 59, 1); }
.theme-dark .dark\:bg-slate-900\/75 { background-color: rgba(15, 23, 42, 0.75); }
.theme-dark .dark\:bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.8); }
.theme-dark .dark\:bg-slate-900\/85 { background-color: rgba(15, 23, 42, 0.85); }
.theme-dark .dark\:bg-slate-900\/95 { background-color: rgba(15, 23, 42, 0.95); }
.theme-dark .dark\:bg-slate-950\/70 { background-color: rgba(2, 6, 23, 0.7); }
.theme-dark .dark\:bg-slate-950\/85 { background-color: rgba(2, 6, 23, 0.85); }
.theme-dark .dark\:border-brand-500\/30 { border-color: rgba(47, 111, 237, 0.3); }
.theme-dark .dark\:border-slate-700 { border-color: rgba(51, 65, 85, 0.9); }
.theme-dark .dark\:border-slate-800 { border-color: rgba(30, 41, 59, 0.9); }
.theme-dark .dark\:border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.theme-dark .dark\:text-accent-300 { color: #eba587; }
.theme-dark .dark\:text-accent-100 { color: #fae7dc; }
.theme-dark .dark\:text-brand-100 { color: #dbeafe; }
.theme-dark .dark\:text-brand-200 { color: #bfdbfe; }
.theme-dark .dark\:text-emerald-200 { color: #a7f3d0; }
.theme-dark .dark\:text-slate-200 { color: #e2e8f0; }
.theme-dark .dark\:text-slate-300 { color: #cbd5e1; }
.theme-dark .dark\:text-slate-400 { color: #94a3b8; }
.theme-dark .dark\:text-slate-500 { color: #64748b; }
.theme-dark .dark\:text-slate-950 { color: #020617; }
.theme-dark .dark\:text-white { color: #ffffff; }
.theme-dark .dark\:hover\:bg-slate-800:hover { background-color: rgba(30, 41, 59, 0.92); }
.theme-dark .dark\:hover\:bg-slate-800\/70:hover { background-color: rgba(30, 41, 59, 0.7); }
.theme-dark .dark\:hover\:border-brand-400\/60:hover { border-color: rgba(96, 165, 250, 0.6); }
.theme-dark .dark\:hover\:text-brand-100:hover { color: #dbeafe; }
.theme-dark .dark\:hover\:text-brand-200:hover { color: #bfdbfe; }
.theme-dark .dark\:hover\:text-white:hover { color: #ffffff; }

@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:pt-6 { padding-top: 1.5rem; }
  .sm\:pt-14 { padding-top: 3.5rem; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .md\:inline-flex { display: inline-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\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:grid-cols-\[0\.95fr_1\.05fr\] { grid-template-columns: 0.95fr 1.05fr; }
  .lg\:grid-cols-\[1\.1fr_0\.9fr\] { grid-template-columns: 1.1fr 0.9fr; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:pt-8 { padding-top: 2rem; }
  .lg\:text-\[3rem\] { font-size: 3rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-\[0\.95fr_1\.05fr\] { grid-template-columns: 0.95fr 1.05fr; }
  .xl\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
  .xl\:grid-cols-\[1\.08fr_0\.92fr\] { grid-template-columns: 1.08fr 0.92fr; }
  .xl\:grid-cols-\[1\.3fr_0\.7fr\] { grid-template-columns: 1.3fr 0.7fr; }
  .xl\:items-start { align-items: flex-start; }
}
