/* =============================================
   Tailwind Mobile — Static Utility Classes
   Replaces: cdn.tailwindcss.com/3.4.1 (~300KB JS)
   This file: ~18KB CSS, zero JS, zero render-blocking.
   ============================================= */

/* === TAILWIND PREFLIGHT (CSS Reset) === */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-feature-settings: normal; font-variation-settings: normal; }
body { margin: 0; line-height: inherit; }
hr { height: 0; color: inherit; border-top-width: 1px; }
abbr:where([title]) { text-decoration: underline dotted; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
code, kbd, samp, pre { font-family: ui-monospace, SFMono-Regular, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
table { text-indent: 0; border-color: inherit; border-collapse: collapse; }
button, input, optgroup, select, textarea { font-family: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button, select { text-transform: none; }
button, [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; background-color: transparent; background-image: none; }
:-moz-focusring { outline: auto; }
:-moz-ui-invalid { box-shadow: none; }
progress { vertical-align: baseline; }
::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; }
[type='search'] { -webkit-appearance: textfield; outline-offset: -2px; }
::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
summary { display: list-item; }
blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre { margin: 0; }
fieldset { margin: 0; padding: 0; }
legend { padding: 0; }
ol, ul, menu { list-style: none; margin: 0; padding: 0; }
dialog { padding: 0; }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { opacity: 1; color: #9ca3af; }
button, [role="button"] { cursor: pointer; }
:disabled { cursor: default; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
[hidden] { display: none; }

/* === FONT FAMILY (from tailwind config) === */
.font-sans, html { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.font-mono { font-family: ui-monospace, SFMono-Regular, monospace; }

/* === DISPLAY === */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.block { display: block; }
.hidden { display: none; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* === FLEXBOX === */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.min-w-auto { min-width: auto; }

/* === ALIGN === */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-items-center { justify-items: center; }

/* === POSITION === */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* === Z-INDEX === */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* === WIDTH === */
.w-full { width: 100%; }
.w-1\.5 { width: 0.375rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.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-18 { width: 4.5rem; }
.w-\[7px\] { width: 7px; }
.w-\[12px\] { width: 12px; }
.w-\[14px\] { width: 14px; }
.w-\[18px\] { width: 18px; }
.w-\[20px\] { width: 20px; }
.w-\[37px\] { width: 37px; }
.w-\[45px\] { width: 45px; }
.w-\[52px\] { width: 52px; }
.max-w-md { max-width: 28rem; }
.max-h-none { max-height: none; }

/* === HEIGHT === */
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-18 { height: 4.5rem; }
.h-45 { height: 11.25rem; }
.h-50 { height: 12.5rem; }
.h-55 { height: 13.75rem; }
.h-full { height: 100%; }
.h-1\.5 { height: 0.375rem; }
.h-\[7px\] { height: 7px; }
.h-\[20px\] { height: 20px; }
.h-\[34px\] { height: 34px; }
.h-\[37px\] { height: 37px; }
.h-\[45px\] { height: 45px; }
.h-\[52px\] { height: 52px; }
.min-h-\[200px\] { min-height: 200px; }

/* === PADDING === */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-\[10px\] { padding: 10px; }
.p-\[20px\] { padding: 20px; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-\[10px\] { padding-left: 10px; padding-right: 10px; }
.px-\[12px\] { padding-left: 12px; padding-right: 12px; }
.px-\[15px\] { padding-left: 15px; padding-right: 15px; }
.px-\[20px\] { padding-left: 20px; padding-right: 20px; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-\[10px\] { padding-top: 10px; padding-bottom: 10px; }
.py-\[16px\] { padding-top: 16px; padding-bottom: 16px; }
.py-\[20px\] { padding-top: 20px; padding-bottom: 20px; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-28 { padding-bottom: 7rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pl-2 { padding-left: 0.5rem; }
.pr-2 { padding-right: 0.5rem; }

/* === MARGIN === */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-20 { margin-top: 5rem; }

/* === GAP === */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-\[8px\] { gap: 8px; }
.gap-\[10px\] { gap: 10px; }
.gap-\[12px\] { gap: 12px; }
.gap-\[14px\] { gap: 14px; }

/* === FONT SIZE === */
.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-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[28px\] { font-size: 28px; }

/* === FONT WEIGHT === */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* === LINE HEIGHT === */
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }

/* === TRACKING === */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }

/* === TEXT TRANSFORM === */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }

/* === TEXT ALIGN === */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* === TEXT COLOR === */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-yellow-500 { color: #eab308; }
.text-\[\#7f91a4\] { color: #7f91a4; }
.text-\[\#BBC4D1\] { color: #BBC4D1; }
.text-\[\#556677\] { color: #556677; }
.text-\[\#D8DEE6\] { color: #D8DEE6; }
.text-\[\#B22234\] { color: #B22234; }
.text-\[\#FFCB40\] { color: #FFCB40; }

/* === BACKGROUND === */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-slate-600 { background-color: #475569; }
.bg-\[\#283341\] { background-color: #283341; }
.bg-\[\#242F3D\] { background-color: #242F3D; }
.bg-\[\#17212B\] { background-color: #17212B; }
.bg-\[\#7F91A4\] { background-color: #7F91A4; }
.bg-\[\#7F7F7F\] { background-color: #7F7F7F; }
.bg-\[\#B22234\] { background-color: #B22234; }
.bg-\[\#FFCB40\] { background-color: #FFCB40; }
.bg-\[\#0088cc\] { background-color: #0088cc; }
.bg-\[\#25D366\] { background-color: #25D366; }

/* === BG WITH OPACITY === */
.bg-black\/50 { background-color: rgba(0,0,0,0.5); }
.bg-black\/40 { background-color: rgba(0,0,0,0.4); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-\[\#0088cc\]\/10 { background-color: rgba(0,136,204,0.1); }
.bg-\[\#0088cc\]\/20 { background-color: rgba(0,136,204,0.2); }
.bg-\[\#25D366\]\/10 { background-color: rgba(37,211,102,0.1); }
.bg-\[\#25D366\]\/20 { background-color: rgba(37,211,102,0.2); }

/* === OPACITY === */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }
.opacity-0\.4 { opacity: 0.4; }

/* === BORDER RADIUS === */
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-\[3px\] { border-radius: 3px; }
.rounded-\[4px\] { border-radius: 4px; }
.rounded-\[7px\] { border-radius: 7px; }
.rounded-\[8px\] { border-radius: 8px; }
.rounded-\[11\.25px\] { border-radius: 11.25px; }
.rounded-\[12px\] { border-radius: 12px; }
.rounded-\[32px\] { border-radius: 32px; }
.rounded-t-\[8px\] { border-top-left-radius: 8px; border-top-right-radius: 8px; }
.rounded-b-\[8px\] { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
.rounded-t-\[12px\] { border-top-left-radius: 12px; border-top-right-radius: 12px; }

/* === BORDER === */
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: #e5e7eb; }
.border-2 { border-width: 2px; border-style: solid; border-color: #e5e7eb; }
.border-transparent { border-color: transparent; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }

/* === OVERFLOW === */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-visible { overflow: visible; }
.overflow-x-auto { overflow-x: auto; }

/* === POINTER EVENTS === */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* === CURSOR === */
.cursor-pointer { cursor: pointer; }

/* === SHADOW === */
.shadow-\[0_-10px_40px_rgba\(0\,0\,0\,0\.3\)\] { box-shadow: 0 -10px 40px rgba(0,0,0,0.3); }

/* === BACKDROP FILTER === */
.backdrop-blur-xl { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.backdrop-blur-\[2px\] { -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }

/* === TRANSFORM === */
.transform { transform: translateX(var(--tw-translate-x,0)) translateY(var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) skewX(var(--tw-skew-x,0)) skewY(var(--tw-skew-y,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1)); }
.translate-y-0 { --tw-translate-y: 0px; transform: translateY(0); }
.translate-y-full { --tw-translate-y: 100%; transform: translateY(100%); }
.translate-y-\[100\%\] { --tw-translate-y: 100%; transform: translateY(100%); }
.scale-0 { transform: scale(0); }
.scale-100 { transform: scale(1); }
.scale-\[0\.95\] { transform: scale(0.95); }
.scale-\[0\.97\] { transform: scale(0.97); }
.scale-\[0\.98\] { transform: scale(0.98); }

/* === TRANSITIONS === */
.transition-all { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, transform; 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-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-250 { transition-duration: 250ms; }
.duration-300 { transition-duration: 300ms; }

/* === TRUNCATION === */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* === ANTIALIASING === */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* === WILL-CHANGE === */
.will-change-transform { will-change: transform; }

/* =============================================
   HOVER STATES
   ============================================= */
.hover\:bg-\[\#0088cc\]\/20:hover { background-color: rgba(0,136,204,0.2); }
.hover\:bg-\[\#25D366\]\/20:hover { background-color: rgba(37,211,102,0.2); }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }

/* =============================================
   ACTIVE STATES
   ============================================= */
.active\:scale-95:active { transform: scale(0.95); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }
.active\:scale-\[0\.97\]:active { transform: scale(0.97); }

/* =============================================
   DARK MODE — html.dark overrides
   ============================================= */
html.dark .dark\:text-white { color: #ffffff; }
html.dark .dark\:text-gray-300 { color: #d1d5db; }
html.dark .dark\:text-gray-400 { color: #9ca3af; }
html.dark .dark\:text-gray-600 { color: #4b5563; }
html.dark .dark\:text-gray-700 { color: #374151; }
html.dark .dark\:text-slate-900 { color: #0f172a; }
html.dark .dark\:bg-slate-900 { background-color: #0f172a; }
html.dark .dark\:bg-white\/5 { background-color: rgba(255,255,255,0.05); }
html.dark .dark\:bg-white\/10 { background-color: rgba(255,255,255,0.1); }
html.dark .dark\:bg-gray-700 { background-color: #374151; }
html.dark .dark\:bg-gray-800 { background-color: #1f2937; }
html.dark .dark\:bg-\[\#242F3D\] { background-color: #242F3D; }
html.dark .dark\:bg-\[\#17212B\] { background-color: #17212B; }
html.dark .dark\:border-white\/5 { border-color: rgba(255,255,255,0.05); }
html.dark .dark\:border-white\/10 { border-color: rgba(255,255,255,0.1); }
html.dark .dark\:hover\:bg-gray-700:hover { background-color: #374151; }
html.dark .dark\:hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }

/* =============================================
   BRAND COLORS (from tailwind config)
   ============================================= */
.bg-brand-blue { background-color: #172554; }
.text-brand-yellow { color: #eab308; }
.bg-brand-yellow { background-color: #eab308; }

/* =============================================
   BURGER MENU + MOBILE HEADER
   ============================================= */
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.font-extrabold { font-weight: 800; }
.tracking-widest { letter-spacing: 0.1em; }
.ml-auto { margin-left: auto; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-\[\#B22234\] { color: #B22234; }
.bg-white\/40 { background-color: rgba(255,255,255,0.4); }
.bg-white\/95 { background-color: rgba(255,255,255,0.95); }
.bg-yellow-500 { background-color: #eab308; }
.bg-blue-400\/20 { background-color: rgba(96,165,250,0.2); }
.bg-purple-400\/20 { background-color: rgba(192,132,252,0.2); }
.bg-\[\#E8E8E8\]\/95 { background-color: rgba(232,232,232,0.95); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.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-\[0_4px_15px_rgba\(0\,0\,0\,0\.06\)\] { box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.shadow-\[0_0_8px_rgba\(255\,185\,0\,0\.6\)\] { box-shadow: 0 0 8px rgba(255,185,0,0.6); }
.opacity-40 { opacity: 0.4; }
.opacity-90 { opacity: 0.9; }
.left-\[10\%\] { left: 10%; }
.left-\[30\%\] { left: 30%; }
.top-\[10\%\] { top: 10%; }
.top-\[60\%\] { top: 60%; }
.w-\[180px\] { width: 180px; }
.w-\[200px\] { width: 200px; }
.h-\[180px\] { height: 180px; }
.h-\[200px\] { height: 200px; }
.-z-10 { z-index: -10; }
.group { }

/* Hover states for burger menu */
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:text-slate-900:hover { color: #0f172a; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.group:hover .group-hover\:text-yellow-500 { color: #eab308; }

/* Dark mode for burger menu */
html.dark .dark\:bg-\[\#1e293b\]\/95 { background-color: rgba(30,41,59,0.95); }
html.dark .dark\:bg-\[\#242F3D\] { background-color: #242F3D; }
html.dark .dark\:bg-transparent { background-color: transparent; }
html.dark .dark\:bg-white\/10 { background-color: rgba(255,255,255,0.1); }
html.dark .dark\:border-transparent { border-color: transparent; }
html.dark .dark\:border-white\/10 { border-color: rgba(255,255,255,0.1); }
html.dark .dark\:text-white { color: #ffffff; }
html.dark .dark\:text-gray-400 { color: #9ca3af; }
html.dark .dark\:text-slate-400 { color: #94a3b8; }
html.dark .dark\:shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
html.dark .dark\:opacity-20 { opacity: 0.2; }
html.dark .dark\:hover\:bg-white\/5:hover { background-color: rgba(255,255,255,0.05); }
html.dark .dark\:hover\:text-white:hover { color: #ffffff; }
html.dark .dark\:hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
