/* ============================================
   DESIGN SYSTEM - CSS Custom Properties
   ============================================ */
:root {
  /* Brand Colors */
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;

  /* Category Colors (standardized) */
  --cat-calc: #4A90E2;
  --cat-conv: #27AE60;
  --cat-gen: #9B59B6;
  --cat-files: #E67E22;
  --cat-img: #E91E63;
  --cat-seo: #00BCD4;
  --cat-time: #FF9800;
  --cat-other: #607D8B;

  /* Neutral Palette */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Shadows - Layered for depth */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1), 0 8px 16px -8px rgba(0,0,0,0.06);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 8px 30px rgba(37,99,235,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-nav: 0 4px 20px rgba(0,0,0,0.08), 0 0 1px rgba(0,0,0,0.1);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 350ms;
}

/* ============================================
   CATEGORY ICON COLORS (replaces inline styles)
   ============================================ */
.cat-icon-calc { color: var(--cat-calc); }
.cat-icon-conv { color: var(--cat-conv); }
.cat-icon-gen { color: var(--cat-gen); }
.cat-icon-files { color: var(--cat-files); }
.cat-icon-img { color: var(--cat-img); }
.cat-icon-seo { color: var(--cat-seo); }
.cat-icon-time { color: var(--cat-time); }
.cat-icon-other { color: var(--cat-other); }

/* Icon sizing variants for navigation */
.nav-icon { width: 16px; text-align: center; }
.nav-icon-sm { width: 14px; text-align: center; }
.nav-icon-lg { width: 18px; text-align: center; }

/* Category background tints (8% opacity) */
.cat-bg-calc { background: rgba(74, 144, 226, 0.08); }
.cat-bg-conv { background: rgba(39, 174, 96, 0.08); }
.cat-bg-gen { background: rgba(155, 89, 182, 0.08); }
.cat-bg-files { background: rgba(230, 126, 34, 0.08); }
.cat-bg-img { background: rgba(233, 30, 99, 0.08); }
.cat-bg-seo { background: rgba(0, 188, 212, 0.08); }
.cat-bg-time { background: rgba(255, 152, 0, 0.08); }
.cat-bg-other { background: rgba(96, 125, 139, 0.08); }

/* Category badges (for blog cards) */
.cat-badge-calc { color: var(--cat-calc); background: rgba(74, 144, 226, 0.08); }
.cat-badge-conv { color: var(--cat-conv); background: rgba(39, 174, 96, 0.08); }
.cat-badge-gen { color: var(--cat-gen); background: rgba(155, 89, 182, 0.08); }
.cat-badge-files { color: var(--cat-files); background: rgba(230, 126, 34, 0.08); }
.cat-badge-img { color: var(--cat-img); background: rgba(233, 30, 99, 0.08); }
.cat-badge-seo { color: var(--cat-seo); background: rgba(0, 188, 212, 0.08); }
.cat-badge-time { color: var(--cat-time); background: rgba(255, 152, 0, 0.08); }
.cat-badge-other { color: var(--cat-other); background: rgba(96, 125, 139, 0.08); }

/* ============================================
   ENHANCED COMPONENT STYLES
   ============================================ */

/* Premium card hover effects */
.tool-card {
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  will-change: transform;
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary-200);
}
.tool-card:active {
  transform: translateY(-2px);
}

.cat-card {
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-200);
}

/* Enhanced navigation dropdown */
header nav .group > div > div {
  box-shadow: var(--shadow-nav);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

/* Better result box gradient */
.result-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  border: 1px solid var(--color-primary-200);
}

/* Enhanced buttons */
.btn-primary {
  background: var(--color-primary);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: 0 1px 2px rgba(37,99,235,0.2), 0 1px 3px rgba(37,99,235,0.1);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3), 0 1px 3px rgba(37,99,235,0.2);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Better form inputs */
input[type="text"], input[type="number"], input[type="email"],
input[type="tel"], input[type="url"], input[type="search"],
select, textarea {
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
  outline: none;
}

/* Smooth scroll with offset for sticky header */
html {
  scroll-padding-top: 80px;
}

/* Better header sticky with glass effect */
header.bg-white {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* Footer links hover */
footer a {
  transition: color var(--duration-fast) ease;
}

/* Hero gradient enhancement */
.hero-gradient {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 40%, #3b82f6 100%);
}

/* Loading skeleton */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* Better FAQ/details styling */
details summary {
  cursor: pointer;
  user-select: none;
}
details summary::-webkit-details-marker {
  display: none;
}

/* Print styles */
@media print {
  header, footer, .ad-placeholder, nav { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .tool-card, .cat-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}

/* High contrast mode support */
@media (forced-colors: active) {
  .tool-card, .cat-card { border: 2px solid ButtonText; }
  a { color: LinkText; }
}


/* GlobalTool - Complete Tailwind Replacement CSS */
/* Preflight + Utilities + Custom Styles */

/* ============================================
   1. PREFLIGHT / RESET (Tailwind's normalize)
   ============================================ */
*,::before,::after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}
::before,::after{--tw-content:''}
html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}
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,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-.25em}
sup{top:-.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;letter-spacing:inherit;color:inherit;margin:0;padding:0}
button,select{text-transform:none}
button,input:where([type='button']),input:where([type='reset']),input:where([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}

/* ============================================
   2. CUSTOM SITE STYLES
   ============================================ */
*{font-family:'Inter',sans-serif}
html{scroll-behavior:smooth}
.tool-card{transition:all .2s ease}
.tool-card:hover{transform:translateY(-4px);box-shadow:0 12px 24px rgba(0,0,0,.12)}
.cat-card{transition:all .2s ease}
.cat-card:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.1)}
.result-box{background:linear-gradient(135deg,#f0f9ff 0%,#e0f2fe 100%)}
.ad-placeholder{background:#f8f9fa;border:2px dashed #dee2e6;min-height:90px;display:none;align-items:center;justify-content:center;color:#adb5bd;font-size:.8rem;border-radius:8px}
.prose h2{scroll-margin-top:80px}

/* Focus visible */
:focus-visible{outline:2px solid #3b82f6;outline-offset:2px}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
*,::before,::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
}

/* ============================================
   3. LAYOUT UTILITIES
   ============================================ */
.block{display:block}
.inline-block{display:inline-block}
.inline{display:inline}
.flex{display:flex}
.inline-flex{display:inline-flex}
.grid{display:grid}
.hidden{display:none}
.table{display:table}

/* Position */
.static{position:static}
.relative{position:relative}
.absolute{position:absolute}
.fixed{position:fixed}
.sticky{position:sticky}

/* Insets */
.inset-0{inset:0}
.top-0{top:0}
.top-full{top:100%}
.right-0{right:0}
.bottom-0{bottom:0}
.left-0{left:0}
.left-1\/2{left:50%}

/* Z-index */
.z-10{z-index:10}
.z-20{z-index:20}
.z-50{z-index:50}
.\!z-50{z-index:50!important}
.z-\[100\]{z-index:100}

/* ============================================
   4. FLEXBOX UTILITIES
   ============================================ */
.flex-row{flex-direction:row}
.flex-col{flex-direction:column}
.flex-wrap{flex-wrap:wrap}
.flex-nowrap{flex-wrap:nowrap}
.flex-1{flex:1 1 0%}
.flex-shrink-0{flex-shrink:0}
.shrink-0{flex-shrink:0}
.flex-grow{flex-grow:1}
.items-start{align-items:flex-start}
.items-center{align-items:center}
.items-end{align-items:flex-end}
.items-stretch{align-items:stretch}
.justify-start{justify-content:flex-start}
.justify-center{justify-content:center}
.justify-end{justify-content:flex-end}
.justify-between{justify-content:space-between}
.self-start{align-self:flex-start}
.self-center{align-self:center}

/* ============================================
   5. GRID UTILITIES
   ============================================ */
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.col-span-2{grid-column:span 2/span 2}
.col-span-3{grid-column:span 3/span 3}
.col-span-full{grid-column:1/-1}

/* ============================================
   6. GAP UTILITIES
   ============================================ */
.gap-0{gap:0}
.gap-0\.5{gap:.125rem}
.gap-1{gap:.25rem}
.gap-1\.5{gap:.375rem}
.gap-2{gap:.5rem}
.gap-3{gap:.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}

/* ============================================
   7. SPACING - PADDING
   ============================================ */
.p-0{padding:0}
.p-1{padding:.25rem}
.p-1\.5{padding:.375rem}
.p-2{padding:.5rem}
.p-3{padding:.75rem}
.p-4{padding:1rem}
.p-5{padding:1.25rem}
.p-6{padding:1.5rem}
.p-8{padding:2rem}
.p-10{padding:2.5rem}
.p-12{padding:3rem}
.px-1{padding-left:.25rem;padding-right:.25rem}
.px-2{padding-left:.5rem;padding-right:.5rem}
.px-3{padding-left:.75rem;padding-right:.75rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-5{padding-left:1.25rem;padding-right:1.25rem}
.px-6{padding-left:1.5rem;padding-right:1.5rem}
.px-8{padding-left:2rem;padding-right:2rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}
.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.py-3{padding-top:.75rem;padding-bottom:.75rem}
.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}
.pt-2{padding-top:.5rem}
.pt-4{padding-top:1rem}
.pt-8{padding-top:2rem}
.pb-2{padding-bottom:.5rem}
.pb-4{padding-bottom:1rem}
.pb-6{padding-bottom:1.5rem}
.pb-8{padding-bottom:2rem}
.pl-2{padding-left:.5rem}
.pl-4{padding-left:1rem}
.pl-6{padding-left:1.5rem}
.pr-2{padding-right:.5rem}
.pr-4{padding-right:1rem}

/* ============================================
   8. SPACING - MARGIN
   ============================================ */
.m-0{margin:0}
.m-1{margin:.25rem}
.m-2{margin:.5rem}
.m-4{margin:1rem}
.m-auto{margin:auto}
.mx-1{margin-left:.25rem;margin-right:.25rem}
.mx-2{margin-left:.5rem;margin-right:.5rem}
.mx-4{margin-left:1rem;margin-right:1rem}
.mx-auto{margin-left:auto;margin-right:auto}
.my-1{margin-top:.25rem;margin-bottom:.25rem}
.my-2{margin-top:.5rem;margin-bottom:.5rem}
.my-3{margin-top:.75rem;margin-bottom:.75rem}
.my-4{margin-top:1rem;margin-bottom:1rem}
.my-6{margin-top:1.5rem;margin-bottom:1.5rem}
.my-8{margin-top:2rem;margin-bottom:2rem}
.mt-0{margin-top:0}
.mt-1{margin-top:.25rem}
.mt-2{margin-top:.5rem}
.mt-3{margin-top:.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}
.mt-12{margin-top:3rem}
.mt-16{margin-top:4rem}
.mb-0{margin-bottom:0}
.mb-1{margin-bottom:.25rem}
.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:.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}
.ml-1{margin-left:.25rem}
.ml-2{margin-left:.5rem}
.ml-3{margin-left:.75rem}
.ml-4{margin-left:1rem}
.ml-auto{margin-left:auto}
.mr-1{margin-right:.25rem}
.mr-2{margin-right:.5rem}
.mr-3{margin-right:.75rem}
.mr-4{margin-right:1rem}
.-mt-1{margin-top:-.25rem}

/* ============================================
   9. SIZING
   ============================================ */
/* Width */
.w-2{width:.5rem}
.w-3{width:.75rem}
.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-24{width:6rem}
.w-32{width:8rem}
.w-40{width:10rem}
.w-48{width:12rem}
.w-64{width:16rem}
.w-1\/2{width:50%}
.w-1\/3{width:33.333333%}
.w-2\/3{width:66.666667%}
.w-full{width:100%}
.w-auto{width:auto}
.w-\[200px\]{width:200px}

/* Height */
.h-2{height:.5rem}
.h-3{height:.75rem}
.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}
.h-64{height:16rem}
.h-auto{height:auto}
.h-full{height:100%}
.h-screen{height:100vh}

/* Min/Max */
.min-w-0{min-width:0}
.min-w-\[200px\]{min-width:200px}
.min-h-screen{min-height:100vh}
.max-w-xs{max-width:20rem}
.max-w-sm{max-width:24rem}
.max-w-md{max-width:28rem}
.max-w-lg{max-width:32rem}
.max-w-xl{max-width:36rem}
.max-w-2xl{max-width:42rem}
.max-w-3xl{max-width:48rem}
.max-w-4xl{max-width:56rem}
.max-w-5xl{max-width:64rem}
.max-w-6xl{max-width:72rem}
.max-w-7xl{max-width:80rem}
.max-w-none{max-width:none}
.max-h-64{max-height:16rem}
.max-h-96{max-height:24rem}
.max-h-\[80vh\]{max-height:80vh}

/* ============================================
   10. TYPOGRAPHY
   ============================================ */
.text-\[9px\]{font-size:9px}
.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-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-normal{font-weight:400}
.font-medium{font-weight:500}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.font-extrabold{font-weight:800}

.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}

.leading-tight{line-height:1.25}
.leading-snug{line-height:1.375}
.leading-normal{line-height:1.5}
.leading-relaxed{line-height:1.625}
.leading-loose{line-height:2}

.tracking-tight{letter-spacing:-.025em}
.tracking-normal{letter-spacing:0}
.tracking-wide{letter-spacing:.025em}
.tracking-wider{letter-spacing:.05em}
.tracking-widest{letter-spacing:.1em}

.text-left{text-align:left}
.text-center{text-align:center}
.text-right{text-align:right}
.text-justify{text-align:justify}

.uppercase{text-transform:uppercase}
.lowercase{text-transform:lowercase}
.capitalize{text-transform:capitalize}
.normal-case{text-transform:none}

.underline{text-decoration-line:underline}
.line-through{text-decoration-line:line-through}
.no-underline{text-decoration-line:none}

.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.whitespace-nowrap{white-space:nowrap}
.whitespace-pre-wrap{white-space:pre-wrap}
.break-all{word-break:break-all}
.break-words{overflow-wrap:break-word}

/* ============================================
   11. COLORS - TEXT
   ============================================ */
.text-white{color:#fff}
.text-black{color:#000}
.text-transparent{color:transparent}
.text-inherit{color:inherit}

/* Gray */
.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}

/* Blue */
.text-blue-50{color:#eff6ff}
.text-blue-100{color:#dbeafe}
.text-blue-200{color:#bfdbfe}
.text-blue-300{color:#93c5fd}
.text-blue-400{color:#60a5fa}
.text-blue-500{color:#3b82f6}
.text-blue-600{color:#2563eb}
.text-blue-700{color:#1d4ed8}

/* Green */
.text-green-50{color:#f0fdf4}
.text-green-100{color:#dcfce7}
.text-green-200{color:#bbf7d0}
.text-green-300{color:#86efac}
.text-green-400{color:#4ade80}
.text-green-500{color:#22c55e}
.text-green-600{color:#16a34a}

/* Red */
.text-red-50{color:#fef2f2}
.text-red-100{color:#fee2e2}
.text-red-200{color:#fecaca}
.text-red-300{color:#fca5a5}
.text-red-400{color:#f87171}
.text-red-500{color:#ef4444}
.text-red-600{color:#dc2626}

/* Purple */
.text-purple-50{color:#faf5ff}
.text-purple-100{color:#f3e8ff}
.text-purple-200{color:#e9d5ff}
.text-purple-300{color:#d8b4fe}
.text-purple-400{color:#c084fc}
.text-purple-500{color:#a855f7}
.text-purple-600{color:#9333ea}

/* Orange */
.text-orange-50{color:#fff7ed}
.text-orange-100{color:#ffedd5}
.text-orange-200{color:#fed7aa}
.text-orange-300{color:#fdba74}
.text-orange-400{color:#fb923c}
.text-orange-500{color:#f97316}
.text-orange-600{color:#ea580c}

/* Pink */
.text-pink-50{color:#fdf2f8}
.text-pink-100{color:#fce7f3}
.text-pink-200{color:#fbcfe8}
.text-pink-300{color:#f9a8d4}
.text-pink-400{color:#f472b6}
.text-pink-500{color:#ec4899}
.text-pink-600{color:#db2777}

/* Cyan */
.text-cyan-50{color:#ecfeff}
.text-cyan-100{color:#cffafe}
.text-cyan-200{color:#a5f3fc}
.text-cyan-300{color:#67e8f9}
.text-cyan-400{color:#22d3ee}
.text-cyan-500{color:#06b6d4}
.text-cyan-600{color:#0891b2}

/* Yellow */
.text-yellow-50{color:#fefce8}
.text-yellow-100{color:#fef9c3}
.text-yellow-200{color:#fef08a}
.text-yellow-300{color:#fde047}
.text-yellow-400{color:#facc15}
.text-yellow-500{color:#eab308}

/* Indigo */
.text-indigo-50{color:#eef2ff}
.text-indigo-100{color:#e0e7ff}
.text-indigo-200{color:#c7d2fe}
.text-indigo-300{color:#a5b4fc}
.text-indigo-400{color:#818cf8}
.text-indigo-500{color:#6366f1}

/* Teal */
.text-teal-50{color:#f0fdfa}
.text-teal-100{color:#ccfbf1}
.text-teal-200{color:#99f6e4}
.text-teal-300{color:#5eead4}
.text-teal-400{color:#2dd4bf}
.text-teal-500{color:#14b8a6}

/* Amber */
.text-amber-500{color:#f59e0b}

/* ============================================
   12. COLORS - BACKGROUND
   ============================================ */
.bg-white{background-color:#fff}
.bg-black{background-color:#000}
.bg-transparent{background-color:transparent}

/* Gray */
.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-gray-500{background-color:#6b7280}
.bg-gray-600{background-color:#4b5563}
.bg-gray-700{background-color:#374151}
.bg-gray-800{background-color:#1f2937}
.bg-gray-900{background-color:#111827}

/* Blue */
.bg-blue-50{background-color:#eff6ff}
.bg-blue-100{background-color:#dbeafe}
.bg-blue-200{background-color:#bfdbfe}
.bg-blue-300{background-color:#93c5fd}
.bg-blue-400{background-color:#60a5fa}
.bg-blue-500{background-color:#3b82f6}
.bg-blue-600{background-color:#2563eb}
.bg-blue-700{background-color:#1d4ed8}

/* Green */
.bg-green-50{background-color:#f0fdf4}
.bg-green-100{background-color:#dcfce7}
.bg-green-200{background-color:#bbf7d0}
.bg-green-300{background-color:#86efac}
.bg-green-400{background-color:#4ade80}
.bg-green-500{background-color:#22c55e}
.bg-green-600{background-color:#16a34a}

/* Red */
.bg-red-50{background-color:#fef2f2}
.bg-red-100{background-color:#fee2e2}
.bg-red-200{background-color:#fecaca}
.bg-red-300{background-color:#fca5a5}
.bg-red-400{background-color:#f87171}
.bg-red-500{background-color:#ef4444}

/* Purple */
.bg-purple-50{background-color:#faf5ff}
.bg-purple-100{background-color:#f3e8ff}
.bg-purple-200{background-color:#e9d5ff}
.bg-purple-300{background-color:#d8b4fe}
.bg-purple-400{background-color:#c084fc}
.bg-purple-500{background-color:#a855f7}
.bg-purple-600{background-color:#9333ea}

/* Orange */
.bg-orange-50{background-color:#fff7ed}
.bg-orange-100{background-color:#ffedd5}
.bg-orange-200{background-color:#fed7aa}
.bg-orange-300{background-color:#fdba74}
.bg-orange-400{background-color:#fb923c}
.bg-orange-500{background-color:#f97316}

/* Pink */
.bg-pink-50{background-color:#fdf2f8}
.bg-pink-100{background-color:#fce7f3}
.bg-pink-200{background-color:#fbcfe8}
.bg-pink-300{background-color:#f9a8d4}
.bg-pink-400{background-color:#f472b6}
.bg-pink-500{background-color:#ec4899}

/* Cyan */
.bg-cyan-50{background-color:#ecfeff}
.bg-cyan-100{background-color:#cffafe}
.bg-cyan-200{background-color:#a5f3fc}
.bg-cyan-300{background-color:#67e8f9}
.bg-cyan-400{background-color:#22d3ee}
.bg-cyan-500{background-color:#06b6d4}

/* Yellow */
.bg-yellow-50{background-color:#fefce8}
.bg-yellow-100{background-color:#fef9c3}
.bg-yellow-200{background-color:#fef08a}
.bg-yellow-300{background-color:#fde047}
.bg-yellow-400{background-color:#facc15}
.bg-yellow-500{background-color:#eab308}

/* Indigo */
.bg-indigo-50{background-color:#eef2ff}
.bg-indigo-100{background-color:#e0e7ff}
.bg-indigo-200{background-color:#c7d2fe}
.bg-indigo-300{background-color:#a5b4fc}
.bg-indigo-400{background-color:#818cf8}
.bg-indigo-500{background-color:#6366f1}

/* Teal */
.bg-teal-50{background-color:#f0fdfa}
.bg-teal-100{background-color:#ccfbf1}
.bg-teal-200{background-color:#99f6e4}
.bg-teal-300{background-color:#5eead4}
.bg-teal-400{background-color:#2dd4bf}
.bg-teal-500{background-color:#14b8a6}

/* Amber */
.bg-amber-500{background-color:#f59e0b}

/* ============================================
   13. BORDERS
   ============================================ */
.border{border-width:1px}
.border-0{border-width:0}
.border-2{border-width:2px}
.border-4{border-width:4px}
.border-t{border-top-width:1px}
.border-b{border-bottom-width:1px}
.border-l{border-left-width:1px}
.border-r{border-right-width:1px}
.border-l-4{border-left-width:4px}

.border-dashed{border-style:dashed}
.border-solid{border-style:solid}
.border-none{border-style:none}

.border-collapse{border-collapse:collapse}

/* Border colors */
.border-transparent{border-color:transparent}
.border-white{border-color:#fff}
.border-gray-100{border-color:#f3f4f6}
.border-gray-200{border-color:#e5e7eb}
.border-gray-300{border-color:#d1d5db}
.border-gray-400{border-color:#9ca3af}
.border-blue-100{border-color:#dbeafe}
.border-blue-200{border-color:#bfdbfe}
.border-blue-300{border-color:#93c5fd}
.border-blue-400{border-color:#60a5fa}
.border-blue-500{border-color:#3b82f6}
.border-blue-600{border-color:#2563eb}
.border-green-100{border-color:#dcfce7}
.border-green-200{border-color:#bbf7d0}
.border-green-300{border-color:#86efac}
.border-green-400{border-color:#4ade80}
.border-green-500{border-color:#22c55e}
.border-red-100{border-color:#fee2e2}
.border-red-200{border-color:#fecaca}
.border-red-300{border-color:#fca5a5}
.border-red-400{border-color:#f87171}
.border-red-500{border-color:#ef4444}
.border-purple-100{border-color:#f3e8ff}
.border-purple-200{border-color:#e9d5ff}
.border-purple-300{border-color:#d8b4fe}
.border-orange-200{border-color:#fed7aa}
.border-orange-300{border-color:#fdba74}
.border-yellow-200{border-color:#fef08a}
.border-yellow-300{border-color:#fde047}

/* Border radius */
.rounded-none{border-radius:0}
.rounded-sm{border-radius:.125rem}
.rounded{border-radius:.25rem}
.rounded-md{border-radius:.375rem}
.rounded-lg{border-radius:.5rem}
.rounded-xl{border-radius:.75rem}
.rounded-2xl{border-radius:1rem}
.rounded-3xl{border-radius:1.5rem}
.rounded-full{border-radius:9999px}
.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}
.rounded-b-lg{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}

/* ============================================
   14. EFFECTS & SHADOWS
   ============================================ */
.shadow-sm{box-shadow:0 1px 2px 0 rgb(0 0 0/.05)}
.shadow{box-shadow:0 1px 3px 0 rgb(0 0 0/.1),0 1px 2px -1px rgb(0 0 0/.1)}
.shadow-md{box-shadow:0 4px 6px -1px rgb(0 0 0/.1),0 2px 4px -2px rgb(0 0 0/.1)}
.shadow-lg{box-shadow:0 10px 15px -3px rgb(0 0 0/.1),0 4px 6px -4px rgb(0 0 0/.1)}
.shadow-xl{box-shadow:0 20px 25px -5px rgb(0 0 0/.1),0 8px 10px -6px rgb(0 0 0/.1)}
.shadow-2xl{box-shadow:0 25px 50px -12px rgb(0 0 0/.25)}
.shadow-none{box-shadow:0 0 #0000}

.opacity-0{opacity:0}
.opacity-10{opacity:.1}
.opacity-20{opacity:.2}
.opacity-25{opacity:.25}
.opacity-30{opacity:.3}
.opacity-40{opacity:.4}
.opacity-50{opacity:.5}
.opacity-60{opacity:.6}
.opacity-70{opacity:.7}
.opacity-75{opacity:.75}
.opacity-80{opacity:.8}
.opacity-90{opacity:.9}
.opacity-100{opacity:1}

/* ============================================
   15. TRANSITIONS & TRANSFORMS
   ============================================ */
.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(.4,0,.2,1);transition-duration:150ms}
.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,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(.4,0,.2,1);transition-duration:150ms}
.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:150ms}
.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:150ms}

.duration-100{transition-duration:100ms}
.duration-150{transition-duration:150ms}
.duration-200{transition-duration:200ms}
.duration-300{transition-duration:300ms}
.duration-500{transition-duration:500ms}

.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}
.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}
.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}

/* Transforms */
.transform{transform:translate(var(--tw-translate-x,0),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-x-1\/2{--tw-translate-x:50%;transform:translate(var(--tw-translate-x,0),var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1))}
.-translate-x-1\/2{--tw-translate-x:-50%;transform:translate(var(--tw-translate-x,0),var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1))}
.translate-y-0{--tw-translate-y:0;transform:translate(var(--tw-translate-x,0),var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1))}
.rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x,0),var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1))}
.scale-100{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x,0),var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1))}
.scale-95{--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x,0),var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1))}

/* ============================================
   16. OVERFLOW & SCROLL
   ============================================ */
.overflow-hidden{overflow:hidden}
.overflow-auto{overflow:auto}
.overflow-visible{overflow:visible}
.overflow-scroll{overflow:scroll}
.overflow-x-auto{overflow-x:auto}
.overflow-y-auto{overflow-y:auto}
.overflow-x-hidden{overflow-x:hidden}

/* ============================================
   17. VISIBILITY & DISPLAY HELPERS
   ============================================ */
.visible{visibility:visible}
.invisible{visibility:hidden}
.collapse{visibility:collapse}

/* ============================================
   18. CURSOR & INTERACTION
   ============================================ */
.cursor-pointer{cursor:pointer}
.cursor-default{cursor:default}
.cursor-not-allowed{cursor:not-allowed}
.select-none{user-select:none}
.select-all{user-select:all}
.select-text{user-select:text}
.resize{resize:both}
.resize-none{resize:none}
.resize-y{resize:vertical}
.resize-x{resize:horizontal}
.pointer-events-none{pointer-events:none}
.pointer-events-auto{pointer-events:auto}

/* ============================================
   19. SPACE-Y / SPACE-X UTILITIES
   ============================================ */
.space-y-0\.5>:not([hidden])~:not([hidden]){margin-top:.125rem}
.space-y-1>:not([hidden])~:not([hidden]){margin-top:.25rem}
.space-y-1\.5>:not([hidden])~:not([hidden]){margin-top:.375rem}
.space-y-2>:not([hidden])~:not([hidden]){margin-top:.5rem}
.space-y-3>:not([hidden])~:not([hidden]){margin-top:.75rem}
.space-y-4>:not([hidden])~:not([hidden]){margin-top:1rem}
.space-y-5>:not([hidden])~:not([hidden]){margin-top:1.25rem}
.space-y-6>:not([hidden])~:not([hidden]){margin-top:1.5rem}
.space-y-8>:not([hidden])~:not([hidden]){margin-top:2rem}
.space-y-10>:not([hidden])~:not([hidden]){margin-top:2.5rem}
.space-x-1>:not([hidden])~:not([hidden]){margin-left:.25rem}
.space-x-2>:not([hidden])~:not([hidden]){margin-left:.5rem}
.space-x-3>:not([hidden])~:not([hidden]){margin-left:.75rem}
.space-x-4>:not([hidden])~:not([hidden]){margin-left:1rem}

/* ============================================
   20. DIVIDE UTILITIES
   ============================================ */
.divide-y>:not([hidden])~:not([hidden]){border-top-width:1px}
.divide-x>:not([hidden])~:not([hidden]){border-left-width:1px}
.divide-gray-100>:not([hidden])~:not([hidden]){border-color:#f3f4f6}
.divide-gray-200>:not([hidden])~:not([hidden]){border-color:#e5e7eb}

/* ============================================
   21. SR-ONLY & ACCESSIBILITY
   ============================================ */
.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}
.not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}
.focus\:not-sr-only:focus{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}

/* ============================================
   22. FOCUS UTILITIES
   ============================================ */
.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}
.focus\:ring-0:focus{box-shadow:0 0 0 0px transparent}
.focus\:ring-1:focus{box-shadow:0 0 0 1px var(--tw-ring-color,#3b82f6)}
.focus\:ring-2:focus{box-shadow:0 0 0 2px var(--tw-ring-color,#3b82f6)}
.focus\:ring-blue-500:focus{--tw-ring-color:#3b82f6;box-shadow:0 0 0 2px #3b82f6}
.focus\:ring-green-500:focus{--tw-ring-color:#22c55e;box-shadow:0 0 0 2px #22c55e}
.focus\:ring-red-500:focus{--tw-ring-color:#ef4444;box-shadow:0 0 0 2px #ef4444}
.focus\:ring-purple-500:focus{--tw-ring-color:#a855f7;box-shadow:0 0 0 2px #a855f7}
.focus\:ring-offset-2:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--tw-ring-color,#3b82f6)}
.focus\:border-blue-500:focus{border-color:#3b82f6}
.focus\:border-green-500:focus{border-color:#22c55e}

/* ============================================
   23. HOVER UTILITIES
   ============================================ */
.hover\:bg-white:hover{background-color:#fff}
.hover\:bg-gray-50:hover{background-color:#f9fafb}
.hover\:bg-gray-100:hover{background-color:#f3f4f6}
.hover\:bg-gray-200:hover{background-color:#e5e7eb}
.hover\:bg-gray-700:hover{background-color:#374151}
.hover\:bg-gray-800:hover{background-color:#1f2937}
.hover\:bg-blue-50:hover{background-color:#eff6ff}
.hover\:bg-blue-100:hover{background-color:#dbeafe}
.hover\:bg-blue-600:hover{background-color:#2563eb}
.hover\:bg-blue-700:hover{background-color:#1d4ed8}
.hover\:bg-green-50:hover{background-color:#f0fdf4}
.hover\:bg-green-600:hover{background-color:#16a34a}
.hover\:bg-green-700:hover{background-color:#15803d}
.hover\:bg-red-50:hover{background-color:#fef2f2}
.hover\:bg-red-600:hover{background-color:#dc2626}
.hover\:bg-red-700:hover{background-color:#b91c1c}
.hover\:bg-purple-50:hover{background-color:#faf5ff}
.hover\:bg-purple-700:hover{background-color:#7e22ce}
.hover\:bg-orange-50:hover{background-color:#fff7ed}
.hover\:bg-orange-700:hover{background-color:#c2410c}

.hover\:text-white:hover{color:#fff}
.hover\:text-gray-600:hover{color:#4b5563}
.hover\:text-gray-700:hover{color:#374151}
.hover\:text-gray-800:hover{color:#1f2937}
.hover\:text-gray-900:hover{color:#111827}
.hover\:text-blue-500:hover{color:#3b82f6}
.hover\:text-blue-600:hover{color:#2563eb}
.hover\:text-blue-700:hover{color:#1d4ed8}
.hover\:text-green-600:hover{color:#16a34a}
.hover\:text-red-600:hover{color:#dc2626}
.hover\:text-purple-600:hover{color:#9333ea}
.hover\:text-orange-500:hover{color:#f97316}
.hover\:text-orange-600:hover{color:#ea580c}
.hover\:text-pink-600:hover{color:#db2777}
.hover\:text-cyan-600:hover{color:#0891b2}

.hover\:border-blue-300:hover{border-color:#93c5fd}
.hover\:border-gray-300:hover{border-color:#d1d5db}
.hover\:shadow-md:hover{box-shadow:0 4px 6px -1px rgb(0 0 0/.1),0 2px 4px -2px rgb(0 0 0/.1)}
.hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgb(0 0 0/.1),0 4px 6px -4px rgb(0 0 0/.1)}
.hover\:opacity-100:hover{opacity:1}
.hover\:underline:hover{text-decoration-line:underline}
.hover\:no-underline:hover{text-decoration-line:none}
.hover\:scale-105:hover{transform:scale(1.05)}

/* ============================================
   24. GROUP HOVER UTILITIES
   ============================================ */
.group:hover .group-hover\:opacity-100{opacity:1}
.group:hover .group-hover\:visible{visibility:visible}
.group:hover .group-hover\:text-blue-600{color:#2563eb}
.group:hover .group-hover\:text-gray-900{color:#111827}
.group:hover .group-hover\:bg-gray-50{background-color:#f9fafb}
.group:hover .group-hover\:scale-105{transform:scale(1.05)}
.group:hover .group-hover\:translate-x-1{transform:translateX(.25rem)}

/* ============================================
   25. GROUP-OPEN UTILITIES (details/summary)
   ============================================ */
.group[open] .group-open\:rotate-180{transform:rotate(180deg)}
.group[open] .group-open\:block{display:block}
.group[open] .group-open\:hidden{display:none}
details[open].group .group-open\:rotate-180{transform:rotate(180deg)}

/* ============================================
   26. PROSE (basic typographic styling)
   ============================================ */
.prose{color:#374151;line-height:1.75;max-width:65ch}
.prose p{margin-top:1.25em;margin-bottom:1.25em}
.prose h1{font-size:2.25em;margin-top:0;margin-bottom:.8889em;line-height:1.1111;font-weight:800}
.prose h2{font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333;font-weight:700}
.prose h3{font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6;font-weight:600}
.prose h4{margin-top:1.5em;margin-bottom:.5em;line-height:1.5;font-weight:600}
.prose a{color:#2563eb;text-decoration:underline;font-weight:500}
.prose a:hover{color:#1d4ed8}
.prose strong{font-weight:600;color:#111827}
.prose ol{list-style-type:decimal;padding-left:1.625em;margin-top:1.25em;margin-bottom:1.25em}
.prose ul{list-style-type:disc;padding-left:1.625em;margin-top:1.25em;margin-bottom:1.25em}
.prose li{margin-top:.5em;margin-bottom:.5em}
.prose blockquote{font-style:italic;color:#111827;border-left-width:4px;border-left-color:#e5e7eb;padding-left:1em;margin-top:1.6em;margin-bottom:1.6em}
.prose code{color:#111827;font-weight:600;font-size:.875em}
.prose code::before,.prose code::after{content:'`'}
.prose pre{color:#e5e7eb;background-color:#1f2937;overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding:.8571429em 1.1428571em}
.prose pre code{background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;line-height:inherit}
.prose pre code::before,.prose pre code::after{content:none}
.prose table{width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}
.prose thead{border-bottom-width:1px;border-bottom-color:#d1d5db}
.prose thead th{color:#111827;font-weight:600;vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}
.prose tbody tr{border-bottom-width:1px;border-bottom-color:#e5e7eb}
.prose tbody td{vertical-align:baseline}
.prose img{margin-top:2em;margin-bottom:2em}
.prose hr{border-color:#e5e7eb;margin-top:3em;margin-bottom:3em}
.prose>:first-child{margin-top:0}
.prose>:last-child{margin-bottom:0}
.prose.max-w-none{max-width:none}

/* ============================================
   27. RING UTILITIES (general)
   ============================================ */
.ring-1{box-shadow:0 0 0 1px var(--tw-ring-color,rgba(59,130,246,.5))}
.ring-2{box-shadow:0 0 0 2px var(--tw-ring-color,rgba(59,130,246,.5))}
.ring-blue-500{--tw-ring-color:#3b82f6}
.ring-green-500{--tw-ring-color:#22c55e}

/* ============================================
   28. OBJECT FIT
   ============================================ */
.object-cover{object-fit:cover}
.object-contain{object-fit:contain}
.object-center{object-position:center}

/* ============================================
   29. LIST STYLE
   ============================================ */
.list-none{list-style-type:none}
.list-disc{list-style-type:disc}
.list-decimal{list-style-type:decimal}
.list-inside{list-style-position:inside}

/* ============================================
   30. TABLE
   ============================================ */
.table-auto{table-layout:auto}
.table-fixed{table-layout:fixed}

/* ============================================
   31. ASPECT RATIO
   ============================================ */
.aspect-square{aspect-ratio:1/1}
.aspect-video{aspect-ratio:16/9}

/* ============================================
   32. BACKGROUND GRADIENT
   ============================================ */
.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}
.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}
.from-blue-500{--tw-gradient-from:#3b82f6;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(59,130,246,0))}
.to-blue-600{--tw-gradient-to:#2563eb}
.from-blue-600{--tw-gradient-from:#2563eb;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(37,99,235,0))}
.to-blue-700{--tw-gradient-to:#1d4ed8}
.from-green-500{--tw-gradient-from:#22c55e;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(34,197,94,0))}
.to-green-600{--tw-gradient-to:#16a34a}
.from-purple-500{--tw-gradient-from:#a855f7;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(168,85,247,0))}
.to-purple-600{--tw-gradient-to:#9333ea}

/* ============================================
   33. RESPONSIVE BREAKPOINTS
   ============================================ */

/* sm: 640px */
@media(min-width:640px){
.sm\:block{display:block}
.sm\:hidden{display:none}
.sm\:flex{display:flex}
.sm\:grid{display:grid}
.sm\:inline-block{display:inline-block}
.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\:flex-row{flex-direction:row}
.sm\:px-4{padding-left:1rem;padding-right:1rem}
.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}
.sm\:py-4{padding-top:1rem;padding-bottom:1rem}
.sm\:p-6{padding:1.5rem}
.sm\:p-8{padding:2rem}
.sm\:text-sm{font-size:.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\:gap-4{gap:1rem}
.sm\:gap-6{gap:1.5rem}
.sm\:w-auto{width:auto}
.sm\:w-1\/2{width:50%}
.sm\:items-center{align-items:center}
.sm\:justify-between{justify-content:space-between}
.sm\:mb-0{margin-bottom:0}
.sm\:mt-0{margin-top:0}
.sm\:space-y-0>:not([hidden])~:not([hidden]){margin-top:0}
}

/* md: 768px */
@media(min-width:768px){
.md\:block{display:block}
.md\:hidden{display:none}
.md\:flex{display:flex}
.md\:grid{display:grid}
.md\:inline-block{display:inline-block}
.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\:flex-row{flex-direction:row}
.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}
.md\:px-8{padding-left:2rem;padding-right:2rem}
.md\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}
.md\:py-8{padding-top:2rem;padding-bottom:2rem}
.md\:py-12{padding-top:3rem;padding-bottom:3rem}
.md\:p-6{padding:1.5rem}
.md\:p-8{padding:2rem}
.md\:text-base{font-size:1rem;line-height:1.5rem}
.md\:text-lg{font-size:1.125rem;line-height:1.75rem}
.md\:text-xl{font-size:1.25rem;line-height:1.75rem}
.md\:text-2xl{font-size:1.5rem;line-height:2rem}
.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}
.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}
.md\:gap-4{gap:1rem}
.md\:gap-6{gap:1.5rem}
.md\:gap-8{gap:2rem}
.md\:w-auto{width:auto}
.md\:w-1\/2{width:50%}
.md\:w-1\/3{width:33.333333%}
.md\:items-center{align-items:center}
.md\:justify-between{justify-content:space-between}
.md\:mb-0{margin-bottom:0}
.md\:mt-0{margin-top:0}
.md\:space-y-0>:not([hidden])~:not([hidden]){margin-top:0}
}

/* lg: 1024px */
@media(min-width:1024px){
.lg\:block{display:block}
.lg\:hidden{display:none}
.lg\:flex{display:flex}
.lg\:grid{display:grid}
.lg\:inline-block{display:inline-block}
.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.lg\:flex-row{flex-direction:row}
.lg\:px-8{padding-left:2rem;padding-right:2rem}
.lg\:py-8{padding-top:2rem;padding-bottom:2rem}
.lg\:py-12{padding-top:3rem;padding-bottom:3rem}
.lg\:p-8{padding:2rem}
.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}
.lg\:text-xl{font-size:1.25rem;line-height:1.75rem}
.lg\:text-2xl{font-size:1.5rem;line-height:2rem}
.lg\:text-3xl{font-size:1.875rem;line-height:2.25rem}
.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}
.lg\:text-5xl{font-size:3rem;line-height:1}
.lg\:gap-6{gap:1.5rem}
.lg\:gap-8{gap:2rem}
.lg\:w-auto{width:auto}
.lg\:w-1\/3{width:33.333333%}
.lg\:w-1\/4{width:25%}
.lg\:items-center{align-items:center}
.lg\:justify-between{justify-content:space-between}
.lg\:mb-0{margin-bottom:0}
.lg\:mt-0{margin-top:0}
}

/* xl: 1280px */
@media(min-width:1280px){
.xl\:block{display:block}
.xl\:hidden{display:none}
.xl\:flex{display:flex}
.xl\:grid{display:grid}
.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-5{grid-template-columns:repeat(5,minmax(0,1fr))}
.xl\:px-8{padding-left:2rem;padding-right:2rem}
.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}
.xl\:gap-8{gap:2rem}
}

/* ============================================
   34. APPEARANCE
   ============================================ */
.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}

/* ============================================
   35. MISC UTILITIES
   ============================================ */
.align-middle{vertical-align:middle}
.align-top{vertical-align:top}
.align-bottom{vertical-align:bottom}
.text-ellipsis{text-overflow:ellipsis}
.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}
.scroll-mt-20{scroll-margin-top:5rem}
.scroll-smooth{scroll-behavior:smooth}
.snap-x{scroll-snap-type:x mandatory}
.snap-start{scroll-snap-align:start}

/* ============================================
   36. ADDITIONAL HOVER & STATE VARIANTS
   ============================================ */
.hover\:bg-opacity-80:hover{--tw-bg-opacity:.8}
.active\:bg-blue-700:active{background-color:#1d4ed8}
.active\:bg-green-700:active{background-color:#15803d}
.disabled\:opacity-50:disabled{opacity:.5}
.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}

/* ============================================
   37. PLACEHOLDER COLOR
   ============================================ */
.placeholder-gray-400::placeholder{color:#9ca3af}
.placeholder-gray-500::placeholder{color:#6b7280}

/* ============================================
   38. BACKGROUND SIZE & POSITION
   ============================================ */
.bg-cover{background-size:cover}
.bg-center{background-position:center}
.bg-no-repeat{background-repeat:no-repeat}

/* ============================================
   39. FILTER UTILITIES
   ============================================ */
.blur-sm{filter:blur(4px)}
.blur{filter:blur(8px)}
.brightness-50{filter:brightness(.5)}
.backdrop-blur-sm{backdrop-filter:blur(4px)}
.backdrop-blur-md{backdrop-filter:blur(12px)}

/* ============================================
   40. OUTLINE
   ============================================ */
.outline-none{outline:2px solid transparent;outline-offset:2px}
.outline{outline-style:solid}

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

/* ============================================
   42. CONTENT
   ============================================ */
.content-none{content:none}

/* ============================================
   AUTO-GENERATED: Missing Tailwind utilities
   ============================================ */
.-translate-y-1\/2{transform:translateY(-50%)}
.bg-amber-100{background-color:#fef3c7}
.bg-amber-50{background-color:#fffbeb}
.border-amber-200{border-color:#fde68a}
.border-blue-50{border-color:#eff6ff}
.border-cyan-100{border-color:#cffafe}
.border-cyan-400{border-color:#22d3ee}
.border-cyan-500{border-color:#06b6d4}
.border-gray-50{border-color:#f9fafb}
.border-gray-500{border-color:#6b7280}
.border-gray-800{border-color:#1f2937}
.border-indigo-100{border-color:#e0e7ff}
.border-indigo-400{border-color:#818cf8}
.border-orange-400{border-color:#fb923c}
.border-orange-500{border-color:#f97316}
.border-pink-400{border-color:#f472b6}
.border-pink-500{border-color:#ec4899}
.border-purple-400{border-color:#c084fc}
.border-purple-500{border-color:#a855f7}
.border-teal-100{border-color:#ccfbf1}
.border-teal-400{border-color:#2dd4bf}
.border-yellow-400{border-color:#facc15}
.border-yellow-500{border-color:#eab308}
.focus\:bg-blue-600:focus{background-color:#2563eb}
.focus\:border-amber-500:focus{border-color:#f59e0b}
.focus\:ring-amber-500:focus{--tw-ring-color:#f59e0b}
.focus\:ring-cyan-500:focus{--tw-ring-color:#06b6d4}
.focus\:ring-gray-500:focus{--tw-ring-color:#6b7280}
.focus\:ring-orange-500:focus{--tw-ring-color:#f97316}
.from-blue-400{--tw-gradient-from:#60a5fa;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(0,0,0,0))}
.hover\:bg-amber-100:hover{background-color:#fef3c7}
.hover\:bg-amber-600:hover{background-color:#d97706}
.hover\:bg-cyan-600:hover{background-color:#0891b2}
.hover\:bg-gray-300:hover{background-color:#d1d5db}
.hover\:bg-orange-600:hover{background-color:#ea580c}
.hover\:bg-pink-600:hover{background-color:#db2777}
.hover\:bg-purple-600:hover{background-color:#9333ea}
.hover\:bg-red-100:hover{background-color:#fee2e2}
.hover\:bg-yellow-600:hover{background-color:#ca8a04}
.hover\:border-blue-200:hover{border-color:#bfdbfe}
.hover\:border-orange-400:hover{border-color:#fb923c}
.hover\:border-pink-400:hover{border-color:#f472b6}
.max-w-full{max-width:100%}
.min-w-\[120px\]{min-width:120px}
.text-\[10px\]{font-size:10px}
.text-\[8px\]{font-size:8px}
.text-amber-600{color:#d97706}
.text-amber-700{color:#b45309}
.text-amber-800{color:#92400e}
.text-blue-800{color:#1e40af}
.text-blue-900{color:#1e3a8a}
.text-cyan-700{color:#0e7490}
.text-cyan-800{color:#155e75}
.text-cyan-900{color:#164e63}
.text-green-700{color:#15803d}
.text-green-800{color:#166534}
.text-green-900{color:#14532d}
.text-indigo-700{color:#4338ca}
.text-indigo-800{color:#3730a3}
.text-orange-700{color:#c2410c}
.text-orange-800{color:#9a3412}
.text-orange-900{color:#7c2d12}
.text-pink-700{color:#be185d}
.text-pink-800{color:#9d174d}
.text-pink-900{color:#831843}
.text-purple-700{color:#7e22ce}
.text-purple-800{color:#6b21a8}
.text-red-700{color:#b91c1c}
.text-red-800{color:#991b1b}
.text-teal-700{color:#0f766e}
.text-teal-800{color:#115e59}
.text-yellow-600{color:#ca8a04}
.text-yellow-700{color:#a16207}
.text-yellow-800{color:#854d0e}
.text-yellow-900{color:#713f12}
.to-red-400{--tw-gradient-to:#f87171}