/* Comprehensive CSS fallback — renders the page correctly when Tailwind CDN
   (cdn.tailwindcss.com) fails to load. Covers all utility classes used in
   the public HTML pages (landing.html, search.html, gigs.html, etc.)
   without any CDN or external dependency. */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Display ─── */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.inline { display: inline; }
.hidden { display: none; }
.grid { display: grid; }

/* ─── Grid ─── */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) {
  .sm\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ─── Flexbox ─── */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.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; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-3\\.5 { gap: 0.875rem; }

/* ─── Positioning ─── */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.left-6 { left: 1.5rem; }
.left-8 { left: 2rem; }
.left-1\\/2 { left: 50%; }
.right-0 { right: 0; }
.-translate-y-1\\/2 { transform: translateY(-50%); }
.translate-x-1\\/2 { transform: translateX(50%); }
.-translate-x-1\\/2 { transform: translateX(-50%); }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }

/* ─── Width / Height ─── */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }
.min-h-\\[44px\\] { min-height: 44px; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }

/* ─── Overflow ─── */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }

/* ─── Spacing (padding) ─── */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-36 { padding-top: 9rem; padding-bottom: 9rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pb-0 { padding-bottom: 0; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-6 { padding-left: 1.5rem; }
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-0\\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.space-y-2 { }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 { }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 { }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-1 { }
.space-y-2\\.5 { }

/* ─── Typography ─── */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.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; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.whitespace-nowrap { white-space: nowrap; }

/* ─── Colors ─── */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-50 { color: #f9fafb; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-navy-50  { color: #f0f4f8; }
.text-navy-100 { color: #d9e2ec; }
.text-navy-200 { color: #bcccdc; }
.text-navy-300 { color: #9fb3c8; }
.text-navy-400 { color: #829ab1; }
.text-navy-500 { color: #627d98; }
.text-navy-600 { color: #486581; }
.text-navy-700 { color: #334e68; }
.text-navy-800 { color: #243b53; }
.text-navy-900 { color: #102a43; }
.text-navy-950 { color: #0a1929; }
.text-gold-400 { color: #f9be53; }
.text-gold-500 { color: #d4a843; }
.text-gold-600 { color: #b88c30; }
.text-blue-600 { color: #2563eb; }
.text-green-600 { color: #16a34a; }
.text-purple-600 { color: #9333ea; }
.text-amber-600 { color: #d97706; }
.text-current { color: currentColor; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-gray-50  { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-400 { background-color: #9ca3af; }
.bg-navy-50  { background-color: #f0f4f8; }
.bg-navy-100 { background-color: #d9e2ec; }
.bg-navy-200 { background-color: #bcccdc; }
.bg-navy-700 { background-color: #334e68; }
.bg-navy-800 { background-color: #243b53; }
.bg-navy-900 { background-color: #102a43; }
.bg-navy-950 { background-color: #0a1929; }
.bg-gold-400 { background-color: #f9be53; }
.bg-gold-500 { background-color: #d4a843; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-navy-800\\/30 { background-color: rgba(36,59,83,0.3); }
.bg-white\\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\\/20 { background-color: rgba(255,255,255,0.2); }
.bg-gold-500\\/20 { background-color: rgba(212,168,67,0.2); }
.bg-gold-100\\/50 { background-color: rgba(255,239,194,0.5); }
.border-white\\/20 { border-color: rgba(255,255,255,0.2); }
.border-gold-500\\/20 { border-color: rgba(212,168,67,0.2); }

/* ─── Borders ─── */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-navy-100 { border-color: #d9e2ec; }
.border-navy-300 { border-color: #9fb3c8; }
.border-navy-700 { border-color: #334e68; }
.border-navy-800 { border-color: #243b53; }
.border-navy-900 { border-color: #102a43; }
.border-white { border-color: #ffffff; }
.border-gold-500 { border-color: #d4a843; }
.border-transparent { border-color: transparent; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ─── Shadows ─── */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-none { box-shadow: none; }
.shadow-gold-500\\/20 { box-shadow: 0 10px 15px -3px rgba(212,168,67,0.2); }
.shadow-gold-500\\/10 { box-shadow: 0 10px 15px -3px rgba(212,168,67,0.1); }

/* ─── Gradients ─── */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-navy-950 {
  --tw-gradient-from: #0a1929;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, #102a43);
}
.from-navy-900 {
  --tw-gradient-from: #102a43;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, #243b53);
}
.from-navy-800 {
  --tw-gradient-from: #243b53;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, #334e68);
}
.from-navy-50 {
  --tw-gradient-from: #f0f4f8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, #ffffff);
}
.from-white {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0));
}
.from-navy-900\\/95 {
  --tw-gradient-from: rgba(16,42,67,0.95);
  --tw-gradient-to: rgba(16,42,67,0);
}
.to-navy-800 { --tw-gradient-to: #243b53; }
.to-navy-700 { --tw-gradient-to: #334e68; }
.to-navy-900 { --tw-gradient-to: #102a43; }
.to-white { --tw-gradient-to: #ffffff; }
.via-navy-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #243b53, var(--tw-gradient-to, #102a43);
}
.via-navy-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #102a43, var(--tw-gradient-to, #334e68);
}
.via-navy-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #334e68, var(--tw-gradient-to, #243b53);
}

/* Fallback gradient — no var() dependency */
.bg-gradient-to-br.from-navy-950 {
  background: linear-gradient(to bottom right, #0a1929 0%, #102a43 50%, #243b53 100%);
}
.bg-gradient-to-br.from-navy-900 {
  background: linear-gradient(to bottom right, #102a43 0%, #243b53 100%);
}
.bg-gradient-to-br.from-navy-800 {
  background: linear-gradient(to bottom right, #243b53 0%, #334e68 100%);
}
.bg-gradient-to-br.from-navy-50 {
  background: linear-gradient(to bottom right, #f0f4f8 0%, #ffffff 100%);
}
.bg-gradient-to-br.from-white {
  background: linear-gradient(to bottom right, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.bg-gradient-to-br.from-navy-950.to-navy-900 {
  background: linear-gradient(to bottom right, #0a1929, #102a43);
}
.bg-gradient-to-br.from-navy-900.to-navy-800 {
  background: linear-gradient(to bottom right, #102a43, #243b53);
}
.bg-gradient-to-br.from-navy-900.to-navy-700 {
  background: linear-gradient(to bottom right, #102a43, #334e68);
}
.bg-gradient-to-br.from-navy-950.to-navy-800 {
  background: linear-gradient(to bottom right, #0a1929, #102a43, #243b53);
}
.bg-gradient-to-br.from-navy-900.via-navy-800.to-navy-700 {
  background: linear-gradient(to bottom right, #102a43, #243b53 50%, #334e68);
}
.bg-gradient-to-br.from-navy-950.via-navy-900.to-navy-800 {
  background: linear-gradient(to bottom right, #0a1929, #102a43 50%, #243b53);
}

/* ─── Effects ─── */
.opacity-\\[0\\.04\\] { opacity: 0.04; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.anim-fade-up { animation: fadeInUp 0.6s ease-out both; }
.anim-fade-up-d1 { animation: fadeInUp 0.6s ease-out 0.1s both; }
.anim-fade-up-d2 { animation: fadeInUp 0.6s ease-out 0.2s both; }
.anim-fade-up-d3 { animation: fadeInUp 0.6s ease-out 0.3s both; }
.anim-fade { animation: fadeIn 0.5s ease-out both; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

/* ─── Transitions ─── */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ─── Hover states ─── */
.hover\\:bg-navy-50:hover { background-color: #f0f4f8; }
.hover\\:bg-navy-800:hover { background-color: #243b53; }
.hover\\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\\:bg-gold-400:hover { background-color: #f9be53; }
.hover\\:bg-navy-900:hover { background-color: #102a43; }
.hover\\:bg-navy-800:hover { background-color: #243b53; }
.hover\\:text-white:hover { color: #ffffff; }
.hover\\:text-gold-400:hover { color: #f9be53; }
.hover\\:bg-white\\/20:hover { background-color: rgba(255,255,255,0.2); }

/* ─── Active states ─── */
.active\\:bg-gold-600:active { background-color: #b88c30; }
.active\\:bg-gray-200:active { background-color: #e5e7eb; }

/* ─── Focus states ─── */
.focus\\:absolute:focus { position: absolute; }
.focus\\:top-2:focus { top: 0.5rem; }
.focus\\:left-2:focus { left: 0.5rem; }
.focus\\:z-50:focus { z-index: 50; }
.focus\\:px-4:focus { padding-left: 1rem; padding-right: 1rem; }
.focus\\:py-2:focus { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.focus\\:bg-navy-900:focus { background-color: #102a43; }
.focus\\:text-white:focus { color: #ffffff; }
.focus\\:rounded-lg:focus { border-radius: 0.5rem; }
.focus\\:text-sm:focus { font-size: 0.875rem; }
.focus\\:font-medium:focus { font-weight: 500; }
.focus\\:not-sr-only:focus { position: static; width: auto; height: auto; padding: inherit; margin: inherit; overflow: visible; clip: auto; white-space: normal; }
.focus-visible\\:outline-2:focus-visible { outline-width: 2px; }
.focus-visible\\:outline-gold-400:focus-visible { outline-color: #f9be53; }
.focus-visible\\:outline-offset-2:focus-visible { outline-offset: 2px; }

/* ─── Screen reader only ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Responsive breakpoints ─── */
@media (min-width: 640px) {
  .sm\\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .sm\\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .sm\\:rounded-xl { border-radius: 0.75rem; }
  .sm\\:rounded-2xl { border-radius: 1rem; }
  .sm\\:rounded-2xl { border-radius: 1rem; }
  .sm\\:mb-4 { margin-bottom: 1rem; }
  .sm\\:mb-6 { margin-bottom: 1.5rem; }
  .sm\\:mb-8 { margin-bottom: 2rem; }
  .sm\\:mb-10 { margin-bottom: 2.5rem; }
  .sm\\:mb-14 { margin-bottom: 3.5rem; }
  .sm\\:mb-10 { margin-bottom: 2.5rem; }
  .sm\\:mb-14 { margin-bottom: 3.5rem; }
  .sm\\:gap-4 { gap: 1rem; }
  .sm\\:gap-6 { gap: 1.5rem; }
  .sm\\:gap-8 { gap: 2rem; }
  .sm\\:flex-row { flex-direction: row; }
  .sm\\:w-auto { width: auto; }
  .sm\\:inline { display: inline; }
  .sm\\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\\:h-14 { height: 3.5rem; }
  .sm\\:w-14 { width: 3.5rem; }
  .sm\\:text-lg { font-size: 1.125rem; }
  .sm\\:text-base { font-size: 1rem; }
  .sm\\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .sm\\:p-8 { padding: 2rem; }
  .sm\\:p-10 { padding: 2.5rem; }
  .sm\\:-top-4 { top: -1rem; }
  .sm\\:left-8 { left: 2rem; }
  .sm\\:w-7 { width: 1.75rem; }
  .sm\\:h-7 { height: 1.75rem; }
  .sm\\:w-8 { width: 2rem; }
  .sm\\:h-8 { height: 2rem; }
  .sm\\:mb-3 { margin-bottom: 0.75rem; }
  .sm\\:mb-4 { margin-bottom: 1rem; }
  .sm\\:mb-5 { margin-bottom: 1.25rem; }
  .sm\\:text-xl { font-size: 1.25rem; }
  .sm\\:text-base { font-size: 1rem; }
  .sm\\:text-sm { font-size: 0.875rem; }
  .sm\\:gap-3 { gap: 0.75rem; }
  .sm\\:gap-4 { gap: 1rem; }
}

@media (min-width: 768px) {
  .md\\:flex { display: flex; }
  .md\\:hidden { display: none; }
  .md\\:block { display: block; }
}

@media (min-width: 1024px) {
  .lg\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .lg\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .lg\\:mb-14 { margin-bottom: 3.5rem; }
  .lg\\:mb-10 { margin-bottom: 2.5rem; }
  .lg\\:mb-12 { margin-bottom: 3rem; }
  .lg\\:gap-8 { gap: 2rem; }
  .lg\\:gap-12 { gap: 3rem; }
  .lg\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ─── Interactive states (all pages) ─── */
.hover\\:underline:hover { text-decoration: underline; }
.hover\\:opacity-100:hover { opacity: 1; }
.hover\\:opacity-80:hover { opacity: 0.8; }
.hover\\:text-gray-600:hover { color: #4b5563; }
.hover\\:text-gray-500:hover { color: #6b7280; }
.hover\\:text-navy-900:hover { color: #102a43; }
.hover\\:text-navy-800:hover { color: #243b53; }
.hover\\:text-red-700:hover { color: #b91c1c; }
.hover\\:text-red-900:hover { color: #7f1d1d; }
.hover\\:text-gold-300:hover { color: #fcd34d; }
.hover\\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\\:bg-gray-300:hover { background-color: #d1d5db; }
.hover\\:bg-green-700:hover { background-color: #15803d; }
.hover\\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\\:bg-gold-100:hover { background-color: #ffefc2; }
.hover\\:bg-gold-600:hover { background-color: #b88c30; }
.hover\\:bg-white\\/20:hover { background-color: rgba(255,255,255,0.2); }
.hover\\:bg-white\\/30:hover { background-color: rgba(255,255,255,0.3); }
.hover\\:bg-navy-900:hover { background-color: #102a43; }
.hover\\:bg-red-50:hover { background-color: #fef2f2; }
.active\\:bg-white\\/30:active { background-color: rgba(255,255,255,0.3); }
.active\\:bg-gold-600:active { background-color: #b88c30; }
.active\\:bg-white\\/20:active { background-color: rgba(255,255,255,0.2); }

/* ─── Focus ring states ─── */
.focus\\:outline-none:focus { outline: none; }
.focus\\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color, #334e68); }
.focus\\:ring-4:focus { box-shadow: 0 0 0 4px var(--tw-ring-color, #334e68); }
.focus\\:ring-navy-500:focus { --tw-ring-color: #627d98; }
.focus\\:ring-gold-500\\/30:focus { --tw-ring-color: rgba(212,168,67,0.3); --tw-ring-offset-color: #fff; }
.focus\\:ring-offset-2:focus { --tw-ring-offset-width: 2px; }
.focus\\:border-navy-500:focus { border-color: #627d98; }
.focus\\:border-transparent:focus { border-color: transparent; }

/* ─── Disabled states ─── */
.disabled\\:opacity-50:disabled { opacity: 0.5; }
.disabled\\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* ─── Additional sm: responsive ─── */
@media (min-width: 640px) {
  .sm\\:pt-32 { padding-top: 8rem; }
  .sm\\:pb-40 { padding-bottom: 10rem; }
  .sm\\:pb-0 { padding-bottom: 0; }
  .sm\\:mx-0 { margin-left: 0; margin-right: 0; }
  .sm\\:px-0 { padding-left: 0; padding-right: 0; }
  .sm\\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sm\\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .sm\\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\\:items-center { align-items: center; }
  .sm\\:justify-between { justify-content: space-between; }
  .sm\\:flex-shrink-0 { flex-shrink: 0; }
  .sm\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\\:p-5 { padding: 1.25rem; }
  .sm\\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .sm\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\\:mb-6 { margin-bottom: 1.5rem; }
}

/* ─── Additional lg: responsive ─── */
@media (min-width: 1024px) {
  .lg\\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* ─── Additional md: responsive ─── */
@media (min-width: 768px) {
  .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\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\\:col-span-2 { grid-column: span 2 / span 2; }
  .md\\:flex-wrap { flex-wrap: wrap; }
  .md\\:p-8 { padding: 2rem; }
}

/* ─── Responsive padding (all pages) ─── */
@media (min-width: 640px) {
  .sm\\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .lg\\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* ─── Smooth scroll ─── */
html { scroll-behavior: smooth; }

/* ─── Additional responsive sm: ─── */
@media (min-width: 640px) {
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:h-7 { height: 1.75rem; }
  .sm\:h-8 { height: 2rem; }
  .sm\:h-10 { height: 2.5rem; }
  .sm\:h-14 { height: 3.5rem; }
  .sm\:w-7 { width: 1.75rem; }
  .sm\:w-8 { width: 2rem; }
  .sm\:w-10 { width: 2.5rem; }
  .sm\:w-14 { width: 3.5rem; }
  .sm\:w-auto { width: auto; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .sm\:mb-4 { margin-bottom: 1rem; }
  .sm\:mb-5 { margin-bottom: 1.25rem; }
  .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:mb-10 { margin-bottom: 2.5rem; }
  .sm\:mb-14 { margin-bottom: 3.5rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:gap-8 { gap: 2rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-shrink-0 { flex-shrink: 0; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:rounded-xl { border-radius: 0.75rem; }
  .sm\:rounded-2xl { border-radius: 1rem; }
  .sm\:-top-4 { top: -1rem; }
  .sm\:left-8 { left: 2rem; }
  .sm\:inline { display: inline; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

/* ─── Hover states (missing from earlier sections) ─── */
.hover\:bg-navy-50:hover { background-color: #f0f4f8; }
.hover\:bg-navy-800:hover { background-color: #243b53; }
.hover\:bg-gold-400:hover { background-color: #f9be53; }
.hover\:bg-white\/20:hover { background-color: rgba(255,255,255,0.2); }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:text-white:hover { color: #ffffff; }

/* ─── Active states ─── */
.active\:bg-gold-600:active { background-color: #b88c30; }
.active\:bg-gray-200:active { background-color: #e5e7eb; }
.active\:bg-white\/30:active { background-color: rgba(255,255,255,0.3); }
.active\:bg-white\/20:active { background-color: rgba(255,255,255,0.2); }

/* ─── Focus states (missing focus: variants) ─── */
.focus\:absolute:focus { position: absolute; }
.focus\:top-2:focus { top: 0.5rem; }
.focus\:left-2:focus { left: 0.5rem; }
.focus\:z-50:focus { z-index: 50; }
.focus\:px-4:focus { padding-left: 1rem; padding-right: 1rem; }
.focus\:py-2:focus { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.focus\:bg-navy-900:focus { background-color: #102a43; }
.focus\:text-white:focus { color: #ffffff; }
.focus\:rounded-lg:focus { border-radius: 0.5rem; }
.focus\:text-sm:focus { font-size: 0.875rem; }
.focus\:font-medium:focus { font-weight: 500; }
.focus\:not-sr-only:focus { position: static; width: auto; height: auto; padding: inherit; margin: inherit; overflow: visible; clip: auto; white-space: normal; }

/* ─── Gap utilities (missing) ─── */
.gap-2\.5 { gap: 0.625rem; }

/* ─── Space-y utilities (missing) ─── */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }

/* ─── Touch target ─── */
.touch-target { min-height: 44px; }
@media (min-width: 640px) { .touch-target { min-height: auto; } }

/* ─── Antialiased ─── */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ─── Border utilities ─── */
.border-t { border-top-width: 1px; border-top-style: solid; }

/* ─── Background utilities (missing opacity variants) ─── */
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-white\/30 { background-color: rgba(255,255,255,0.3); }
.bg-navy-800\/30 { background-color: rgba(36,59,83,0.3); }
.bg-navy-800\/80 { background-color: rgba(36,59,83,0.8); }
.bg-navy-700\/30 { background-color: rgba(51,78,104,0.3); }

/* ─── Text utilities (color variants) ─── */
.text-navy-300 { color: #9fb3c8; }
.text-navy-500 { color: #627d98; }
.text-navy-600 { color: #486581; }
.text-navy-700 { color: #334e68; }

/* ─── Padding utilities (py-1.5, py-2.5, py-3.5) ─── */
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }

/* ─── Transform utilities ─── */
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-1\/2 { transform: translateX(50%); }

/* ─── Margin utilities ─── */
.mt-0\.5 { margin-top: 0.125rem; }

/* ─── Shadow gold ─── */
.shadow-gold-500\/20 { box-shadow: 0 10px 15px -3px rgba(212,168,67,0.2); }

/* ─── Additional hover/active/focus states ─── */
.hover\:bg-navy-900:hover { background-color: #102a43; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:underline:hover { text-decoration: underline; }

