/**
 * Custom Utility Classes - Pokemon Card Tracker
 * 
 * Direct replacements for Tailwind CSS utility classes.
 * Generated from audit of 1,310 unique classes across 178 component files.
 * 
 * Breakpoints (custom, previously from tailwind.config.js):
 *   xs: 475px | sm: 769px | md: 768px | lg: 1024px
 *   xl: 1280px | 2xl: 1536px | 3xl: 1792px | 4xl: 2048px
 * 
 * All values reference design tokens from base.css where possible.
 */

/* =============================================================================
   DISPLAY
   ============================================================================= */

.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }
.hidden { display: none; }
.table { display: table; }
.table-cell { display: table-cell; }
.contents { display: contents; }

/* =============================================================================
   POSITION
   ============================================================================= */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: -webkit-sticky; position: sticky; }
.static { position: static; }

.inset-0 { inset: 0; }
.-inset-1 { inset: -0.25rem; }
.-inset-2 { inset: -0.5rem; }

.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-1\/2 { top: 50%; }
.-top-1 { top: -0.25rem; }
.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }

.right-0 { right: 0; }
.right-1 { right: 0.25rem; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.-right-1 { right: -0.25rem; }
.-right-3 { right: -0.75rem; }

.bottom-0 { bottom: 0; }
.bottom-1 { bottom: 0.25rem; }
.bottom-2 { bottom: 0.5rem; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }

.left-0 { left: 0; }
.left-1 { left: 0.25rem; }
.left-2 { left: 0.5rem; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }

.bottom-1\/4 { bottom: 25%; }
.top-1\/4 { top: 25%; }
.right-1\/4 { right: 25%; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* =============================================================================
   FLEXBOX
   ============================================================================= */

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col-reverse { flex-direction: column-reverse; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.flex-1 { flex: 1 1; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }

.grow { flex-grow: 1; }
.grow-0 { flex-grow: 0; }
.shrink { flex-shrink: 1; }
.shrink-0 { flex-shrink: 0; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.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; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }
.self-auto { align-self: auto; }

.align-middle { vertical-align: middle; }
.align-text-bottom { vertical-align: text-bottom; }

/* =============================================================================
   GRID
   ============================================================================= */

.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)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.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; }

.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }

/* =============================================================================
   GAP & SPACE
   ============================================================================= */

.gap-0 { gap: 0; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.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-16 { gap: 4rem; }

/* Space between children (vertical) */
.space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0; }
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.125rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.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 between children (horizontal) */
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.25rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }

/* =============================================================================
   PADDING
   ============================================================================= */

.p-0 { padding: 0; }
.p-0\.5 { padding: 0.125rem; }
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.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; }
.p-12 { padding: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.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-0 { padding-top: 0; padding-bottom: 0; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.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; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }

.pb-0 { padding-bottom: 0; }
.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-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }

/* =============================================================================
   MARGIN
   ============================================================================= */

.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.-mx-4 { margin-left: -1rem; margin-right: -1rem; }
.-mx-5 { margin-left: -1.25rem; margin-right: -1.25rem; }
.-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

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

.mb-0 { margin-bottom: 0; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.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-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.-mb-5 { margin-bottom: -1.25rem; }

.ml-0 { margin-left: 0; }
.ml-0\.5 { margin-left: 0.125rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-1\.5 { margin-left: 0.375rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.-ml-1 { margin-left: -0.25rem; }

.mr-0 { margin-right: 0; }
.mr-0\.5 { margin-right: 0.125rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-1\.5 { margin-right: 0.375rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

/* =============================================================================
   WIDTH & HEIGHT
   ============================================================================= */

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-0 { width: 0; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.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-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-0 { height: 0; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.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-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-screen { height: 100vh; }

/* Size (width + height) */
.size-1 { width: 0.25rem; height: 0.25rem; }
.size-1\.5 { width: 0.375rem; height: 0.375rem; }
.size-2 { width: 0.5rem; height: 0.5rem; }
.size-3 { width: 0.75rem; height: 0.75rem; }
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.size-8 { width: 2rem; height: 2rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-12 { width: 3rem; height: 3rem; }
.size-14 { width: 3.5rem; height: 3.5rem; }
.size-16 { width: 4rem; height: 4rem; }
.size-20 { width: 5rem; height: 5rem; }
.size-24 { width: 6rem; height: 6rem; }
.size-96 { width: 24rem; height: 24rem; }
.size-full { width: 100%; height: 100%; }

/* Min/Max */
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }
.min-h-\[200px\] { min-height: 200px; }

.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-full { max-width: 100%; }
.max-w-none { max-width: none; }
.max-w-prose { max-width: 65ch; }

.max-h-60 { max-height: 15rem; }
.max-h-\[80vh\] { max-height: 80vh; }

/* =============================================================================
   OVERFLOW
   ============================================================================= */

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */

/* Font Size */
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-xs { font-size: var(--font-size-xs); line-height: 1rem; }
.text-sm { font-size: var(--font-size-sm); line-height: 1.25rem; }
.text-base { font-size: var(--font-size-base); line-height: 1.5rem; }
.text-lg { font-size: var(--font-size-lg); line-height: 1.75rem; }
.text-xl { font-size: var(--font-size-xl); line-height: 1.75rem; }
.text-2xl { font-size: var(--font-size-2xl); line-height: 2rem; }
.text-3xl { font-size: var(--font-size-3xl); line-height: 2.25rem; }
.text-4xl { font-size: var(--font-size-4xl); line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

/* Font Weight */
.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

/* Font Family */
.font-mono { font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace; }

/* Line Height */
.leading-none { line-height: 1; }
.leading-tight { line-height: var(--line-height-tight); }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }
.leading-loose { line-height: 2; }

/* Letter Spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Text Decoration */
.underline { -webkit-text-decoration-line: underline; text-decoration-line: underline; }
.no-underline { -webkit-text-decoration-line: none; text-decoration-line: none; }
.line-through { -webkit-text-decoration-line: line-through; text-decoration-line: line-through; }

/* Text Overflow */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.text-clip { text-overflow: clip; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-normal { white-space: normal; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* Word Break */
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* =============================================================================
   TEXT COLORS
   ============================================================================= */

.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-transparent { color: transparent; }
.text-current { color: currentColor; }

/* Gray */
.text-gray-50 { color: var(--color-gray-50); }
.text-gray-100 { color: var(--color-gray-100); }
.text-gray-200 { color: var(--color-gray-200); }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-800 { color: var(--color-gray-800); }
.text-gray-900 { color: var(--color-gray-900); }

/* Blue */
.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; }
.text-blue-800 { color: #1e40af; }

/* Green */
.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; }
.text-green-700 { color: #15803d; }

/* Red */
.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; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }

/* Purple */
.text-purple-300 { color: #d8b4fe; }
.text-purple-400 { color: #c084fc; }
.text-purple-500 { color: #a855f7; }
.text-purple-600 { color: #9333ea; }

/* Yellow / Amber */
.text-yellow-200 { color: #fef08a; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }
.text-yellow-500 { color: #eab308; }
.text-yellow-600 { color: #ca8a04; }
.text-amber-200 { color: #fde68a; }
.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }

/* Orange */
.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-400 { color: #f472b6; }
.text-pink-500 { color: #ec4899; }

/* Neutral */
.text-neutral-400 { color: #a3a3a3; }
.text-neutral-500 { color: #737373; }

/* Emerald */
.text-emerald-400 { color: #34d399; }

/* Semantic token text colors */
.text-error { color: var(--color-error); }

/* Text opacity utilities */
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }

/* =============================================================================
   BACKGROUND COLORS
   ============================================================================= */

.bg-transparent { background-color: transparent; }
.bg-white { background-color: var(--color-white); }
.bg-black { background-color: var(--color-black); }

/* White opacity */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-white\/50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/\[0\.03\] { background-color: rgba(255, 255, 255, 0.03); }
.bg-white\/\[0\.05\] { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/\[0\.06\] { background-color: rgba(255, 255, 255, 0.06); }
.bg-white\/\[0\.08\] { background-color: rgba(255, 255, 255, 0.08); }

/* Black opacity */
.bg-black\/5 { background-color: rgba(0, 0, 0, 0.05); }
.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }

/* Gray */
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-gray-200 { background-color: var(--color-gray-200); }
.bg-gray-300 { background-color: var(--color-gray-300); }
.bg-gray-400 { background-color: var(--color-gray-400); }
.bg-gray-500 { background-color: var(--color-gray-500); }
.bg-gray-600 { background-color: var(--color-gray-600); }
.bg-gray-700 { background-color: var(--color-gray-700); }
.bg-gray-800 { background-color: var(--color-gray-800); }
.bg-gray-900 { background-color: var(--color-gray-900); }
.bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }

/* Blue */
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-blue-800 { background-color: #1e40af; }
.bg-blue-900 { background-color: #1e3a8a; }
.bg-blue-500\/5 { background-color: rgba(59, 130, 246, 0.05); }
.bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-blue-600\/10 { background-color: rgba(37, 99, 235, 0.1); }

/* Green */
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-400 { background-color: #4ade80; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }
.bg-green-900 { background-color: #14532d; }
.bg-green-500\/10 { background-color: rgba(34, 197, 94, 0.1); }
.bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }

/* Red */
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-red-700 { background-color: #b91c1c; }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-red-500\/20 { background-color: rgba(239, 68, 68, 0.2); }

/* Purple */
.bg-purple-400 { background-color: #c084fc; }
.bg-purple-500 { background-color: #a855f7; }
.bg-purple-600 { background-color: #9333ea; }
.bg-purple-700 { background-color: #7e22ce; }
.bg-purple-900 { background-color: #581c87; }
.bg-purple-500\/5 { background-color: rgba(168, 85, 247, 0.05); }
.bg-purple-500\/10 { background-color: rgba(168, 85, 247, 0.1); }
.bg-purple-500\/20 { background-color: rgba(168, 85, 247, 0.2); }
.bg-purple-600\/10 { background-color: rgba(147, 51, 234, 0.1); }

/* Yellow / Amber */
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-yellow-500 { background-color: #eab308; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-500 { background-color: #f59e0b; }

/* Orange */
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: #ea580c; }
.bg-orange-700 { background-color: #c2410c; }

/* Pink */
.bg-pink-500 { background-color: #ec4899; }
.bg-pink-600 { background-color: #db2777; }
.bg-pink-600\/10 { background-color: rgba(219, 39, 119, 0.1); }

/* Emerald */
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }

/* Neutral */
.bg-neutral-600 { background-color: #525252; }
.bg-neutral-700 { background-color: #404040; }
.bg-neutral-900 { background-color: #171717; }

/* Arbitrary background colors */
.bg-\[\#0B0F19\] { background-color: #0B0F19; }
.bg-\[\#0F0F0F\] { background-color: #0F0F0F; }
.bg-\[\#1B2131\] { background-color: #1B2131; }
.bg-\[\#dc2626\] { background-color: #dc2626; }

/* Semantic token backgrounds */
.bg-surface-secondary { background-color: var(--color-surface-secondary); }
.bg-\[var\(--color-bg-secondary\)\] { background-color: var(--color-bg-secondary); }

/* =============================================================================
   GRADIENTS
   ============================================================================= */

.bg-gradient-to-r { background-image: linear-gradient(to right, transparent); background-image: linear-gradient(to right, var(--tw-gradient-stops, transparent)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, transparent); background-image: linear-gradient(to left, var(--tw-gradient-stops, transparent)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, transparent); background-image: linear-gradient(to top, var(--tw-gradient-stops, transparent)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, transparent); background-image: linear-gradient(to bottom, var(--tw-gradient-stops, transparent)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, transparent); background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, transparent)); }
.bg-gradient-to-bl { background-image: linear-gradient(to bottom left, transparent); background-image: linear-gradient(to bottom left, var(--tw-gradient-stops, transparent)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, transparent); background-image: linear-gradient(to top right, var(--tw-gradient-stops, transparent)); }

.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* Gradient color stops - these use the --tw-gradient-stops pattern */
.from-blue-400 { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); }
.from-blue-600\/10 { --tw-gradient-from: rgba(37, 99, 235, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); }
.from-green-400 { --tw-gradient-from: #4ade80; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 222, 128, 0)); }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.from-pink-500 { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.from-pink-600 { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); }

.via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #c084fc, var(--tw-gradient-to, rgba(192, 132, 252, 0)); }
.via-purple-600\/10 { --tw-gradient-stops: var(--tw-gradient-from), rgba(147, 51, 234, 0.1), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.via-white\/10 { --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.1), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }

.to-blue-500 { --tw-gradient-to: #3b82f6; }
.to-blue-600 { --tw-gradient-to: #2563eb; }
.to-emerald-600 { --tw-gradient-to: #059669; }
.to-green-500 { --tw-gradient-to: #22c55e; }
.to-pink-400 { --tw-gradient-to: #f472b6; }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.to-pink-600 { --tw-gradient-to: #db2777; }
.to-pink-600\/10 { --tw-gradient-to: rgba(219, 39, 119, 0.1); }
.to-purple-500 { --tw-gradient-to: #a855f7; }
.to-purple-600 { --tw-gradient-to: #9333ea; }

/* =============================================================================
   BORDER
   ============================================================================= */

.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-none { border-style: none; }

/* Border Colors */
.border-transparent { border-color: transparent; }
.border-white { border-color: var(--color-white); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/8 { border-color: rgba(255, 255, 255, 0.08); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }
.border-gray-600 { border-color: var(--color-gray-600); }
.border-gray-700 { border-color: var(--color-gray-700); }
.border-gray-800 { border-color: var(--color-gray-800); }
.border-blue-400 { border-color: #60a5fa; }
.border-blue-500 { border-color: #3b82f6; }
.border-blue-600 { border-color: #2563eb; }
.border-blue-800 { border-color: #1e40af; }
.border-green-400 { border-color: #4ade80; }
.border-green-500 { border-color: #22c55e; }
.border-green-700 { border-color: #15803d; }
.border-green-800 { border-color: #166534; }
.border-green-900 { border-color: #14532d; }
.border-red-400 { border-color: #f87171; }
.border-red-500 { border-color: #ef4444; }
.border-red-800 { border-color: #991b1b; }
.border-purple-500 { border-color: #a855f7; }
.border-yellow-700 { border-color: #a16207; }
.border-yellow-800 { border-color: #854d0e; }
.border-yellow-900 { border-color: #713f12; }
.border-amber-800 { border-color: #92400e; }
.border-orange-500 { border-color: #f97316; }
.border-neutral-700 { border-color: #404040; }
.border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.border-blue-900\/30 { border-color: rgba(30, 58, 138, 0.3); }
.border-green-900\/30 { border-color: rgba(20, 83, 45, 0.3); }
.border-red-900\/30 { border-color: rgba(127, 29, 29, 0.3); }
.border-orange-900\/30 { border-color: rgba(124, 45, 18, 0.3); }
.border-yellow-900\/30 { border-color: rgba(113, 63, 18, 0.3); }

/* Divide */
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; border-top-style: solid; }

/* =============================================================================
   BORDER RADIUS
   ============================================================================= */

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }
.rounded-b-xl { border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }

/* =============================================================================
   SHADOWS
   ============================================================================= */

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.shadow-none { box-shadow: none; }
.shadow-green-500\/20 { box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.2); }

/* Ring */
.ring-1 { box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5); box-shadow: 0 0 0 1px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.ring-2 { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.ring-gray-700 { --tw-ring-color: var(--color-gray-700); }
.ring-gray-900 { --tw-ring-color: var(--color-gray-900); }

/* =============================================================================
   OPACITY
   ============================================================================= */

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* =============================================================================
   FILTERS & EFFECTS
   ============================================================================= */

.blur { filter: blur(8px); }
.blur-sm { filter: blur(4px); }
.blur-lg { filter: blur(16px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

.backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.backdrop-blur-md { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.backdrop-blur-lg { -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.backdrop-blur-xl { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }

/* =============================================================================
   TRANSITIONS & ANIMATIONS
   ============================================================================= */

.transition { transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color; 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; }
.transition-transform { transition-property: transform; 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; }

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

.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.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); }

/* Animations */
.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes bounce { 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); } 50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); } }

/* =============================================================================
   TRANSFORMS
   ============================================================================= */

.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-\[1\.02\] { transform: scale(1.02); }

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-x-full { transform: translateX(-100%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-full { transform: translateY(100%); }

/* =============================================================================
   INTERACTIVITY
   ============================================================================= */

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-grab { cursor: grab; }
.cursor-grabbing { cursor: grabbing; }
.cursor-move { cursor: move; }

.select-none { user-select: none; -webkit-user-select: none; }
.select-text { user-select: text; -webkit-user-select: text; }
.select-all { user-select: all; -webkit-user-select: all; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.touch-none { touch-action: none; }
.touch-auto { touch-action: auto; }

/* =============================================================================
   OBJECT FIT
   ============================================================================= */

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }

/* =============================================================================
   ORDER
   ============================================================================= */

.order-1 { order: 1; }
.order-2 { order: 2; }
.order-first { order: -9999; }
.order-last { order: 9999; }

/* =============================================================================
   ASPECT RATIO
   ============================================================================= */

.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }

/* =============================================================================
   GROUP UTILITY
   ============================================================================= */

.group { position: relative; }

/* =============================================================================
   IMPORTANT OVERRIDES (! prefix)
   ============================================================================= */

.\!border-white\/60 { border-color: rgba(255, 255, 255, 0.6) !important; }
.\!rounded-full { border-radius: 9999px !important; }
.\!text-white { color: var(--color-white) !important; }

/* =============================================================================
   GAP FILL — Additional utilities found in gap analysis
   ============================================================================= */

/* Inset negatives */
.-inset-1 { inset: -0.25rem; }
.-inset-2 { inset: -0.5rem; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }

/* Additional positions */
.top-8 { top: 2rem; }
.top-12 { top: 3rem; }
.top-16 { top: 4rem; }
.top-24 { top: 6rem; }
.top-full { top: 100%; }
.right-2\.5 { right: 0.625rem; }

/* Additional widths */
.w-28 { width: 7rem; }
.w-36 { width: 9rem; }
.w-56 { width: 14rem; }
.w-96 { width: 24rem; }
.w-5\/6 { width: 83.333333%; }
.w-\[calc\(100vw-5rem\)\] { width: calc(100vw - 5rem); }

/* Additional heights */
.h-px { height: 1px; }
.h-0\.5 { height: 0.125rem; }
.h-1\.5 { height: 0.375rem; }
.h-2\.5 { height: 0.625rem; }
.h-72 { height: 18rem; }
.h-\[280px\] { height: 280px; }
.h-\[calc\(100vh-200px\)\] { height: calc(100vh - 200px); }

/* Additional sizes */
.size-1\.5 { width: 0.375rem; height: 0.375rem; }
.size-2\.5 { width: 0.625rem; height: 0.625rem; }
.size-9 { width: 2.25rem; height: 2.25rem; }
.size-\[29px\] { width: 29px; height: 29px; }

/* Additional max dimensions */
.max-h-40 { max-height: 10rem; }
.max-h-48 { max-height: 12rem; }
.max-h-64 { max-height: 16rem; }
.max-h-80 { max-height: 20rem; }
.max-h-96 { max-height: 24rem; }
.max-h-\[600px\] { max-height: 600px; }
.max-h-\[70vh\] { max-height: 70vh; }
.max-h-\[85vh\] { max-height: 85vh; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-w-\[150px\] { max-width: 150px; }
.max-w-\[200px\] { max-width: 200px; }
.max-w-\[260px\] { max-width: 260px; }
.max-w-\[60\%\] { max-width: 60%; }
.max-w-\[80\%\] { max-width: 80%; }
.max-w-\[90\%\] { max-width: 90%; }
.max-w-\[92\%\] { max-width: 92%; }
.max-w-\[calc\(100vw-2rem\)\] { max-width: calc(100vw - 2rem); }

/* Additional min dimensions */
.min-h-\[120px\] { min-height: 120px; }
.min-h-\[150px\] { min-height: 150px; }
.min-h-\[16px\] { min-height: 16px; }
.min-h-\[300px\] { min-height: 300px; }
.min-h-\[44px\] { min-height: 44px; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.min-w-\[120px\] { min-width: 120px; }
.min-w-\[160px\] { min-width: 160px; }
.min-w-\[24px\] { min-width: 24px; }
.min-w-\[80px\] { min-width: 80px; }

/* Additional padding */
.p-0\.5 { padding: 0.125rem; }
.p-1\.5 { padding: 0.375rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.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; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-px { padding-top: 1px; padding-bottom: 1px; }
.pt-12 { padding-top: 3rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-2\.5 { padding-bottom: 0.625rem; }
.pb-safe { padding-bottom: env(safe-area-inset-bottom); }
.pl-5 { padding-left: 1.25rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-7 { padding-right: 1.75rem; }
.pr-8 { padding-right: 2rem; }

/* Additional margin */
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-auto { margin-top: auto; }
.mt-2\.5 { margin-top: 0.625rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-\[16px\] { margin-left: 16px; }
.ml-\[52px\] { margin-left: 52px; }

/* Additional gaps */
.gap-0\.5 { gap: 0.125rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-2 { row-gap: 0.5rem; }

/* Additional space */
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }

/* Aspect ratios */
.aspect-\[2\.5\/3\.5\] { aspect-ratio: 2.5 / 3.5; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }
.aspect-\[9\/16\] { aspect-ratio: 9 / 16; }

/* Additional z-index */
.z-\[60\] { z-index: 60; }
.z-\[100\] { z-index: 100; }
.z-\[2500\] { z-index: 2500; }
.z-\[9999\] { z-index: 9999; }
.z-\[60000\] { z-index: 60000; }
.z-\[60050\] { z-index: 60050; }
.z-\[70000\] { z-index: 70000; }

/* Font weight */
.font-extrabold { font-weight: 800; }

/* Additional text colors */
.text-primary { color: var(--color-primary-500); }
.text-text-primary { color: var(--color-text-primary); }
.text-text-secondary { color: var(--color-text-secondary); }
.text-text-tertiary { color: var(--color-text-tertiary); }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-amber-800 { color: #92400e; }
.text-blue-900 { color: #1e3a8a; }
.text-cyan-400 { color: #22d3ee; }
.text-green-800 { color: #166534; }
.text-green-900 { color: #14532d; }
.text-indigo-400 { color: #818cf8; }
.text-indigo-500 { color: #6366f1; }
.text-neutral-300 { color: #d4d4d4; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }
.text-purple-100 { color: #f3e8ff; }
.text-purple-700 { color: #7e22ce; }
.text-teal-400 { color: #2dd4bf; }
.text-yellow-700 { color: #a16207; }
.text-yellow-800 { color: #854d0e; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[18px\] { font-size: 18px; }
.text-black\/30 { color: rgba(0, 0, 0, 0.3); }
.text-black\/50 { color: rgba(0, 0, 0, 0.5); }
.text-black\/60 { color: rgba(0, 0, 0, 0.6); }
.text-black\/70 { color: rgba(0, 0, 0, 0.7); }
.text-black\/90 { color: rgba(0, 0, 0, 0.9); }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* Additional background colors */
.bg-surface-primary { background-color: var(--color-surface-primary); }
.bg-\[var\(--primary\)\] { background-color: var(--primary); }
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-500\/10 { background-color: rgba(245, 158, 11, 0.1); }
.bg-amber-500\/15 { background-color: rgba(245, 158, 11, 0.15); }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.2); }
.bg-amber-500\/90 { background-color: rgba(245, 158, 11, 0.9); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }
.bg-black\/\[0\.02\] { background-color: rgba(0, 0, 0, 0.02); }
.bg-black\/\[0\.03\] { background-color: rgba(0, 0, 0, 0.03); }
.bg-black\/\[0\.06\] { background-color: rgba(0, 0, 0, 0.06); }
.bg-blue-200 { background-color: #bfdbfe; }
.bg-blue-50\/50 { background-color: rgba(239, 246, 255, 0.5); }
.bg-blue-500\/15 { background-color: rgba(59, 130, 246, 0.15); }
.bg-cyan-500\/10 { background-color: rgba(6, 182, 212, 0.1); }
.bg-gray-500\/5 { background-color: rgba(107, 114, 128, 0.05); }
.bg-green-50\/50 { background-color: rgba(240, 253, 244, 0.5); }
.bg-green-500\/15 { background-color: rgba(34, 197, 94, 0.15); }
.bg-green-500\/5 { background-color: rgba(34, 197, 94, 0.05); }
.bg-green-600\/20 { background-color: rgba(22, 163, 74, 0.2); }
.bg-indigo-500 { background-color: #6366f1; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-neutral-50 { background-color: #fafafa; }
.bg-neutral-100 { background-color: #f5f5f5; }
.bg-neutral-500 { background-color: #737373; }
.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-500\/10 { background-color: rgba(249, 115, 22, 0.1); }
.bg-orange-500\/20 { background-color: rgba(249, 115, 22, 0.2); }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-purple-500\/5 { background-color: rgba(168, 85, 247, 0.05); }
.bg-red-400 { background-color: #f87171; }
.bg-red-50\/50 { background-color: rgba(254, 242, 242, 0.5); }
.bg-red-500\/5 { background-color: rgba(239, 68, 68, 0.05); }
.bg-yellow-500\/10 { background-color: rgba(234, 179, 8, 0.1); }
.bg-yellow-500\/20 { background-color: rgba(234, 179, 8, 0.2); }

/* Additional border styles */
.border-dashed { border-style: dashed; }
.border-separate { border-collapse: separate; }
.border-spacing-0 { border-spacing: 0; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-x { border-left-width: 1px; border-right-width: 1px; border-left-style: solid; border-right-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid; }
.border-t-transparent { border-top-color: transparent; }

/* Additional border colors */
.border-border { border-color: var(--color-border); }
.border-black\/10 { border-color: rgba(0, 0, 0, 0.1); }
.border-black\/20 { border-color: rgba(0, 0, 0, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-amber-200 { border-color: #fde68a; }
.border-amber-300 { border-color: #fcd34d; }
.border-amber-500\/20 { border-color: rgba(245, 158, 11, 0.2); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-300 { border-color: #93c5fd; }
.border-blue-500\/20 { border-color: rgba(59, 130, 246, 0.2); }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3); }
.border-blue-500\/60 { border-color: rgba(59, 130, 246, 0.6); }
.border-cyan-500\/20 { border-color: rgba(6, 182, 212, 0.2); }
.border-gray-500\/20 { border-color: rgba(107, 114, 128, 0.2); }
.border-green-100 { border-color: #dcfce7; }
.border-green-200 { border-color: #bbf7d0; }
.border-green-300 { border-color: #86efac; }
.border-green-500\/20 { border-color: rgba(34, 197, 94, 0.2); }
.border-neutral-200 { border-color: #e5e5e5; }
.border-orange-200 { border-color: #fed7aa; }
.border-orange-500\/20 { border-color: rgba(249, 115, 22, 0.2); }
.border-orange-500\/30 { border-color: rgba(249, 115, 22, 0.3); }
.border-purple-500\/20 { border-color: rgba(168, 85, 247, 0.2); }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3); }
.border-red-100 { border-color: #fee2e2; }
.border-red-200 { border-color: #fecaca; }
.border-red-300 { border-color: #fca5a5; }
.border-red-500\/10 { border-color: rgba(239, 68, 68, 0.1); }
.border-red-500\/20 { border-color: rgba(239, 68, 68, 0.2); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.border-red-600 { border-color: #dc2626; }
.border-yellow-200 { border-color: #fef08a; }
.border-yellow-500 { border-color: #eab308; }
.border-yellow-500\/20 { border-color: rgba(234, 179, 8, 0.2); }
.border-yellow-500\/30 { border-color: rgba(234, 179, 8, 0.3); }

/* Additional border radius */
.rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; }
.rounded-b-md { border-bottom-left-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }

/* Additional ring */
.ring-gray-200 { --tw-ring-color: #e5e5e5; }
.ring-white { --tw-ring-color: var(--color-white); }

/* Additional shadows */
.shadow-blue-500\/10 { box-shadow: 0 10px 25px -3px rgba(59, 130, 246, 0.1); }

/* Blur */
.blur-xl { filter: blur(24px); }

/* Cursor */
.cursor-zoom-out { cursor: zoom-out; }

/* Object position */
.object-center { object-position: center; }
.object-top { object-position: top; }

/* Additional gradient stops */
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-black { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-black\/70 { --tw-gradient-from: rgba(0, 0, 0, 0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-\[rgba\(31\,41\,55\,0\.5\)\] { --tw-gradient-from: rgba(31, 41, 55, 0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); }
.from-amber-500 { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
.from-blue-500\/10 { --tw-gradient-from: rgba(59, 130, 246, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.from-blue-500\/20 { --tw-gradient-from: rgba(59, 130, 246, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.from-emerald-500\/20 { --tw-gradient-from: rgba(16, 185, 129, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
.from-gray-700 { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); }
.from-green-500\/20 { --tw-gradient-from: rgba(34, 197, 94, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.from-indigo-500\/20 { --tw-gradient-from: rgba(99, 102, 241, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); }
.from-orange-500\/20 { --tw-gradient-from: rgba(249, 115, 22, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
.from-purple-50 { --tw-gradient-from: #faf5ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); }
.from-purple-500\/20 { --tw-gradient-from: rgba(168, 85, 247, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.from-red-50 { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); }
.from-red-400 { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); }
.from-red-500\/20 { --tw-gradient-from: rgba(239, 68, 68, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); }
.from-red-600\/10 { --tw-gradient-from: rgba(220, 38, 38, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); }
.from-teal-500 { --tw-gradient-from: #14b8a6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 184, 166, 0)); }
.from-teal-500\/20 { --tw-gradient-from: rgba(20, 184, 166, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 184, 166, 0)); }
.from-yellow-400 { --tw-gradient-from: #facc15; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }

.via-black\/90 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.9), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-white\/40 { --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.4), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }

.to-transparent { --tw-gradient-to: transparent; }
.to-\[rgba\(17\,24\,39\,0\.5\)\] { --tw-gradient-to: rgba(17, 24, 39, 0.5); }
.to-amber-500\/20 { --tw-gradient-to: rgba(245, 158, 11, 0.2); }
.to-blue-50 { --tw-gradient-to: #eff6ff; }
.to-blue-400 { --tw-gradient-to: #60a5fa; }
.to-blue-500\/20 { --tw-gradient-to: rgba(59, 130, 246, 0.2); }
.to-blue-600\/10 { --tw-gradient-to: rgba(37, 99, 235, 0.1); }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.to-cyan-500 { --tw-gradient-to: #06b6d4; }
.to-cyan-500\/20 { --tw-gradient-to: rgba(6, 182, 212, 0.2); }
.to-emerald-500\/20 { --tw-gradient-to: rgba(16, 185, 129, 0.2); }
.to-gray-800 { --tw-gradient-to: #1f2937; }
.to-green-500\/20 { --tw-gradient-to: rgba(34, 197, 94, 0.2); }
.to-indigo-500\/20 { --tw-gradient-to: rgba(99, 102, 241, 0.2); }
.to-orange-100 { --tw-gradient-to: #ffedd5; }
.to-orange-500 { --tw-gradient-to: #f97316; }
.to-orange-500\/20 { --tw-gradient-to: rgba(249, 115, 22, 0.2); }
.to-pink-500\/20 { --tw-gradient-to: rgba(236, 72, 153, 0.2); }
.to-purple-400 { --tw-gradient-to: #c084fc; }
.to-purple-500\/10 { --tw-gradient-to: rgba(168, 85, 247, 0.1); }
.to-purple-500\/20 { --tw-gradient-to: rgba(168, 85, 247, 0.2); }
.to-red-500\/20 { --tw-gradient-to: rgba(239, 68, 68, 0.2); }
.to-yellow-500 { --tw-gradient-to: #eab308; }

/* Animations */
.animate-shimmer { animation: shimmer 2s linear infinite; }
.animate-in { animation: fadeIn 0.2s ease-out; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============================================================================
   HOVER STATE VARIANTS
   ============================================================================= */

.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.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-white\/10:hover { background-color: rgba(255, 255, 255, 0.1) !important; }
.hover\:bg-black\/5:hover { background-color: rgba(0, 0, 0, 0.05); }
.hover\:bg-black\/10:hover { background-color: rgba(0, 0, 0, 0.1); }
.hover\:bg-black\/60:hover { background-color: rgba(0, 0, 0, 0.6); }
.hover\:bg-black\/70:hover { background-color: rgba(0, 0, 0, 0.7); }
.hover\:bg-black\/\[0\.03\]:hover { background-color: rgba(0, 0, 0, 0.03); }
.hover\:bg-gray-50:hover { background-color: var(--color-gray-50); }
.hover\:bg-gray-700:hover { background-color: var(--color-gray-700); }
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-green-100:hover { background-color: #dcfce7; }
.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-500\/20:hover { background-color: rgba(239, 68, 68, 0.2); }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-purple-700:hover { background-color: #7e22ce; }
.hover\:bg-orange-600:hover { background-color: #ea580c; }
.hover\:bg-orange-700:hover { background-color: #c2410c; }
.hover\:bg-yellow-600:hover { background-color: #ca8a04; }
.hover\:bg-neutral-600:hover { background-color: #525252; }
.hover\:bg-surface-secondary:hover { background-color: var(--color-surface-secondary); }
.hover\:bg-\[var\(--color-bg-secondary\)\]:hover { background-color: var(--color-bg-secondary); }
.hover\:bg-\[var\(--primary-dark\)\]:hover { background-color: var(--primary-dark); }
.hover\:bg-\[dc2626\]:hover { background-color: #dc2626; }

.hover\:text-white:hover { color: var(--color-white); }
.hover\:text-blue-300:hover { color: #93c5fd; }
.hover\:text-blue-400:hover { color: #60a5fa; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-blue-700:hover { color: #1d4ed8; }
.hover\:text-blue-800:hover { color: #1e40af; }
.hover\:text-red-700:hover { color: #b91c1c; }
.hover\:text-red-800:hover { color: #991b1b; }
.hover\:text-purple-600:hover { color: #9333ea; }
.hover\:text-error\/80:hover { color: rgba(239, 68, 68, 0.8); }

.hover\:border-blue-400:hover { border-color: #60a5fa; }
.hover\:border-green-500\/50:hover { border-color: rgba(34, 197, 94, 0.5); }

.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-green-500\/30:hover { box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.3); }

.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }

.hover\:underline:hover { -webkit-text-decoration-line: underline; text-decoration-line: underline; }

.hover\:from-green-500\/30:hover { --tw-gradient-from: rgba(34, 197, 94, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.hover\:from-purple-500\/30:hover { --tw-gradient-from: rgba(168, 85, 247, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.hover\:from-purple-600:hover { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.hover\:to-blue-500\/30:hover { --tw-gradient-to: rgba(59, 130, 246, 0.3); }
.hover\:to-pink-500\/30:hover { --tw-gradient-to: rgba(236, 72, 153, 0.3); }
.hover\:to-pink-600:hover { --tw-gradient-to: #db2777; }
.hover\:to-pink-700:hover { --tw-gradient-to: #be185d; }

/* Group hover variants */
.group:hover .group-hover\:blur-lg { filter: blur(16px); }
.group:hover .group-hover\:blur-2xl { filter: blur(40px); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-blue-400 { color: #60a5fa; }
.group:hover .group-hover\:text-green-400 { color: #4ade80; }
.group:hover .group-hover\:text-purple-400 { color: #c084fc; }
.group:hover .group-hover\:text-purple-600 { color: #9333ea; }
.group:hover .group-hover\:underline { -webkit-text-decoration-line: underline; text-decoration-line: underline; }

/* =============================================================================
   FOCUS STATE VARIANTS
   ============================================================================= */

.focus\:outline-none:focus { outline: none; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5); box-shadow: 0 0 0 1px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.focus\:ring-blue-400\/20:focus { box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2); }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); }
.focus\:ring-blue-500\/50:focus { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); }
.focus\:ring-purple-500:focus { box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.5); }
.focus\:ring-red-500:focus { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.5); }
.focus\:ring-white\/10:focus { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1); }
.focus\:ring-primary:focus { box-shadow: 0 0 0 3px var(--color-primary-500-20); }
.focus\:ring-primary\/20:focus { box-shadow: 0 0 0 3px var(--color-primary-500-20); }
.focus\:ring-indigo-500:focus { box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5); }
.focus\:ring-offset-2:focus { box-shadow: 0 0 0 2px var(--color-surface-primary), 0 0 0 4px rgba(59, 130, 246, 0.5); box-shadow: 0 0 0 2px var(--color-surface-primary), 0 0 0 4px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.focus\:border-blue-400:focus { border-color: #60a5fa; }
.focus\:border-blue-500:focus { border-color: #3b82f6; }
.focus\:border-indigo-500:focus { border-color: #6366f1; }
.focus\:border-primary:focus { border-color: var(--color-primary-500); }

/* =============================================================================
   DISABLED STATE VARIANTS
   ============================================================================= */

.disabled\:opacity-30:disabled { opacity: 0.3; }
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* =============================================================================
   ACTIVE STATE VARIANTS
   ============================================================================= */

.active\:scale-95:active { transform: scale(0.95); }

/* =============================================================================
   PLACEHOLDER VARIANTS
   ============================================================================= */

.placeholder\:text-gray-400::placeholder { color: var(--color-gray-400); }
.placeholder\:text-gray-500::placeholder { color: var(--color-gray-500); }

/* =============================================================================
   DARK MODE VARIANTS
   ============================================================================= */

/* Dark text colors */
.dark .dark\:text-white { color: var(--color-white); }
.dark .dark\:text-black { color: var(--color-black); }
.dark .dark\:text-error { color: var(--color-error); }
.dark .dark\:text-white\/30 { color: rgba(255, 255, 255, 0.3); }
.dark .dark\:text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.dark .dark\:text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.dark .dark\:text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.dark .dark\:text-blue-100 { color: #dbeafe; }
.dark .dark\:text-blue-200 { color: #bfdbfe; }
.dark .dark\:text-blue-300 { color: #93c5fd; }
.dark .dark\:text-blue-400 { color: #60a5fa; }
.dark .dark\:text-green-100 { color: #dcfce7; }
.dark .dark\:text-green-200 { color: #bbf7d0; }
.dark .dark\:text-green-300 { color: #86efac; }
.dark .dark\:text-green-400 { color: #4ade80; }
.dark .dark\:text-red-200 { color: #fecaca; }
.dark .dark\:text-red-300 { color: #fca5a5; }
.dark .dark\:text-red-400 { color: #f87171; }
.dark .dark\:text-red-500 { color: #ef4444; }
.dark .dark\:text-purple-300 { color: #d8b4fe; }
.dark .dark\:text-purple-400 { color: #c084fc; }
.dark .dark\:text-yellow-200 { color: #fef08a; }
.dark .dark\:text-yellow-300 { color: #fde047; }
.dark .dark\:text-yellow-400 { color: #facc15; }
.dark .dark\:text-amber-200 { color: #fde68a; }
.dark .dark\:text-amber-300 { color: #fcd34d; }
.dark .dark\:text-amber-400 { color: #fbbf24; }
.dark .dark\:text-orange-200 { color: #fed7aa; }
.dark .dark\:text-orange-300 { color: #fdba74; }
.dark .dark\:text-orange-400 { color: #fb923c; }
.dark .dark\:text-neutral-400 { color: #a3a3a3; }
.dark .dark\:text-neutral-500 { color: #737373; }

/* Dark background colors */
.dark .dark\:bg-black { background-color: var(--color-black); }
.dark .dark\:bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.dark .dark\:bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.dark .dark\:bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.dark .dark\:bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.dark .dark\:bg-white\/\[0\.03\] { background-color: rgba(255, 255, 255, 0.03); }
.dark .dark\:bg-white\/\[0\.05\] { background-color: rgba(255, 255, 255, 0.05); }
.dark .dark\:bg-white\/\[0\.06\] { background-color: rgba(255, 255, 255, 0.06); }
.dark .dark\:bg-white\/\[0\.08\] { background-color: rgba(255, 255, 255, 0.08); }
.dark .dark\:bg-blue-600 { background-color: #2563eb; }
.dark .dark\:bg-blue-800 { background-color: #1e40af; }
.dark .dark\:bg-blue-900 { background-color: #1e3a8a; }
.dark .dark\:bg-blue-900\/10 { background-color: rgba(30, 58, 138, 0.1); }
.dark .dark\:bg-blue-900\/20 { background-color: rgba(30, 58, 138, 0.2); }
.dark .dark\:bg-blue-900\/30 { background-color: rgba(30, 58, 138, 0.3); }
.dark .dark\:bg-green-900 { background-color: #14532d; }
.dark .dark\:bg-green-900\/10 { background-color: rgba(20, 83, 45, 0.1); }
.dark .dark\:bg-green-900\/20 { background-color: rgba(20, 83, 45, 0.2); }
.dark .dark\:bg-green-900\/30 { background-color: rgba(20, 83, 45, 0.3); }
.dark .dark\:bg-green-950\/30 { background-color: rgba(5, 46, 22, 0.3); }
.dark .dark\:bg-red-900\/10 { background-color: rgba(127, 29, 29, 0.1); }
.dark .dark\:bg-red-900\/20 { background-color: rgba(127, 29, 29, 0.2); }
.dark .dark\:bg-purple-400 { background-color: #c084fc; }
.dark .dark\:bg-purple-900 { background-color: #581c87; }
.dark .dark\:bg-purple-900\/20 { background-color: rgba(88, 28, 135, 0.2); }
.dark .dark\:bg-purple-900\/30 { background-color: rgba(88, 28, 135, 0.3); }
.dark .dark\:bg-yellow-900\/20 { background-color: rgba(113, 63, 18, 0.2); }
.dark .dark\:bg-yellow-900\/30 { background-color: rgba(113, 63, 18, 0.3); }
.dark .dark\:bg-amber-900\/10 { background-color: rgba(120, 53, 15, 0.1); }
.dark .dark\:bg-amber-900\/20 { background-color: rgba(120, 53, 15, 0.2); }
.dark .dark\:bg-amber-900\/30 { background-color: rgba(120, 53, 15, 0.3); }
.dark .dark\:bg-orange-900\/20 { background-color: rgba(124, 45, 18, 0.2); }
.dark .dark\:bg-neutral-700 { background-color: #404040; }
.dark .dark\:bg-neutral-900 { background-color: #171717; }
.dark .dark\:bg-\[\#0B0F19\] { background-color: #0B0F19; }
.dark .dark\:bg-\[\#0F0F0F\] { background-color: #0F0F0F; }
.dark .dark\:bg-\[\#1B2131\] { background-color: #1B2131; }

/* Dark border colors */
.dark .dark\:border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.dark .dark\:border-white\/8 { border-color: rgba(255, 255, 255, 0.08); }
.dark .dark\:border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.dark .dark\:border-\[\#ffffff1a\] { border-color: #ffffff1a; }
.dark .dark\:border-blue-800 { border-color: #1e40af; }
.dark .dark\:border-blue-900\/30 { border-color: rgba(30, 58, 138, 0.3); }
.dark .dark\:border-green-700 { border-color: #15803d; }
.dark .dark\:border-green-800 { border-color: #166534; }
.dark .dark\:border-green-900 { border-color: #14532d; }
.dark .dark\:border-green-900\/30 { border-color: rgba(20, 83, 45, 0.3); }
.dark .dark\:border-red-400 { border-color: #f87171; }
.dark .dark\:border-red-800 { border-color: #991b1b; }
.dark .dark\:border-red-900\/30 { border-color: rgba(127, 29, 29, 0.3); }
.dark .dark\:border-yellow-700 { border-color: #a16207; }
.dark .dark\:border-yellow-800 { border-color: #854d0e; }
.dark .dark\:border-yellow-900 { border-color: #713f12; }
.dark .dark\:border-yellow-900\/30 { border-color: rgba(113, 63, 18, 0.3); }
.dark .dark\:border-amber-800 { border-color: #92400e; }
.dark .dark\:border-orange-900\/30 { border-color: rgba(124, 45, 18, 0.3); }
.dark .dark\:border-neutral-700 { border-color: #404040; }

/* Dark gradient stops */
.dark .dark\:from-purple-900\/20 { --tw-gradient-from: rgba(88, 28, 135, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.dark .dark\:via-white\/10 { --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.1), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.dark .dark\:to-blue-900\/20 { --tw-gradient-to: rgba(30, 58, 138, 0.2); }

/* Dark ring colors */
.dark .dark\:ring-gray-700 { --tw-ring-color: var(--color-gray-700); }
.dark .dark\:ring-gray-900 { --tw-ring-color: var(--color-gray-900); }

/* Dark placeholder */
.dark .dark\:placeholder\:text-gray-400::placeholder { color: var(--color-gray-400); }

/* Dark hover combinations */
.dark .dark\:hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.dark .dark\:hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.dark .dark\:hover\:bg-white\/\[0\.03\]:hover { background-color: rgba(255, 255, 255, 0.03); }
.dark .dark\:hover\:bg-white:hover { background-color: var(--color-white); }
.dark .dark\:hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.dark .dark\:hover\:bg-green-900\/20:hover { background-color: rgba(20, 83, 45, 0.2); }
.dark .dark\:hover\:bg-red-900:hover { background-color: #7f1d1d; }
.dark .dark\:hover\:text-blue-300:hover { color: #93c5fd; }
.dark .dark\:hover\:text-blue-400:hover { color: #60a5fa; }
.dark .dark\:hover\:text-purple-400:hover { color: #c084fc; }
.dark .dark\:hover\:text-red-300:hover { color: #fca5a5; }
.dark .dark\:hover\:text-error\/80:hover { color: rgba(239, 68, 68, 0.8); }

/* Dark group hover */
.dark .group:hover .dark\:group-hover\:text-purple-400 { color: #c084fc; }

/* =============================================================================
   RESPONSIVE VARIANTS - sm (min-width: 769px)
   ============================================================================= */

@media (min-width: 769px) {
  /* Display */
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:inline { display: inline; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:hidden { display: none; }
  .sm\:table-cell { display: table-cell; }
  .sm\:contents { display: contents; }

  /* Flex */
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-wrap { flex-wrap: wrap; }
  .sm\:flex-none { flex: none; }
  .sm\:shrink { flex-shrink: 1; }
  .sm\:items-center { align-items: center; }
  .sm\:items-start { align-items: flex-start; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:justify-center { justify-content: center; }
  .sm\:justify-end { justify-content: flex-end; }

  /* Grid */
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:col-span-3 { grid-column: span 3 / span 3; }

  /* Gap */
  .sm\:gap-0 { gap: 0; }
  .sm\:gap-3 { gap: 0.75rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:gap-8 { gap: 2rem; }
  .sm\:gap-12 { gap: 3rem; }

  /* Spacing */
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0; }
  .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
  .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }

  /* Padding */
  .sm\:p-0 { padding: 0; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-0 { padding-left: 0; padding-right: 0; }
  .sm\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .sm\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:pt-1 { padding-top: 0.25rem; }
  .sm\:pt-4 { padding-top: 1rem; }
  .sm\:pt-16 { padding-top: 4rem; }
  .sm\:pt-28 { padding-top: 7rem; }
  .sm\:pb-0 { padding-bottom: 0; }
  .sm\:pb-8 { padding-bottom: 2rem; }
  .sm\:pb-20 { padding-bottom: 5rem; }

  /* Margin */
  .sm\:mb-2 { margin-bottom: 0.5rem; }
  .sm\:mb-3 { margin-bottom: 0.75rem; }
  .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-12 { margin-bottom: 3rem; }
  .sm\:mb-16 { margin-bottom: 4rem; }
  .sm\:mt-6 { margin-top: 1.5rem; }
  .sm\:mt-12 { margin-top: 3rem; }
  .sm\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; }

  /* Width */
  .sm\:w-auto { width: auto; }
  .sm\:w-40 { width: 10rem; }
  .sm\:w-48 { width: 12rem; }
  .sm\:max-w-none { max-width: none; }
  .sm\:max-w-xs { max-width: 20rem; }
  .sm\:max-w-sm { max-width: 24rem; }

  /* Height */
  .sm\:h-11 { height: 2.75rem; }

  /* Size */
  .sm\:size-2 { width: 0.5rem; height: 0.5rem; }
  .sm\:size-20 { width: 5rem; height: 5rem; }

  /* Typography */
  .sm\:text-xs { font-size: var(--font-size-xs); line-height: 1rem; }
  .sm\:text-sm { font-size: var(--font-size-sm); line-height: 1.25rem; }
  .sm\:text-base { font-size: var(--font-size-base); line-height: 1.5rem; }
  .sm\:text-lg { font-size: var(--font-size-lg); line-height: 1.75rem; }
  .sm\:text-xl { font-size: var(--font-size-xl); line-height: 1.75rem; }
  .sm\:text-2xl { font-size: var(--font-size-2xl); line-height: 2rem; }
  .sm\:text-3xl { font-size: var(--font-size-3xl); line-height: 2.25rem; }
  .sm\:text-4xl { font-size: var(--font-size-4xl); line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-8xl { font-size: 6rem; line-height: 1; }
  .sm\:text-right { text-align: right; }

  /* Border radius */
  .sm\:rounded-2xl { border-radius: 1rem; }
  .sm\:rounded-3xl { border-radius: 1.5rem; }

  /* Position */
  .sm\:right-6 { right: 1.5rem; }
  .sm\:top-6 { top: 1.5rem; }
  .sm\:-inset-4 { inset: -1rem; }
}

/* =============================================================================
   RESPONSIVE VARIANTS - md (min-width: 768px)
   ============================================================================= */

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

  /* Flex */
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:self-stretch { align-self: stretch; }

  /* Grid */
  .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-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }

  /* Spacing */
  .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { margin-left: 0; }
  .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }

  /* Padding */
  .md\:p-4 { padding: 1rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:pr-4 { padding-right: 1rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-32 { padding-top: 8rem; }
  .md\:pb-24 { padding-bottom: 6rem; }

  /* Margin */
  .md\:mb-20 { margin-bottom: 5rem; }

  /* Typography */
  .md\:text-lg { font-size: var(--font-size-lg); line-height: 1.75rem; }
  .md\:text-xl { font-size: var(--font-size-xl); line-height: 1.75rem; }
  .md\:text-3xl { font-size: var(--font-size-3xl); line-height: 2.25rem; }
  .md\:text-4xl { font-size: var(--font-size-4xl); line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }

  /* Height */
  .md\:h-\[260px\] { height: 260px; }
  .md\:h-\[380px\] { height: 380px; }
  .md\:h-\[calc\(100vh-150px\)\] { height: calc(100vh - 150px); }

  /* Overflow */
  .md\:overflow-x-visible { overflow-x: visible; }
}

/* =============================================================================
   RESPONSIVE VARIANTS - lg (min-width: 1024px)
   ============================================================================= */

@media (min-width: 1024px) {
  /* Display */
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }

  /* Flex */
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:self-start { align-self: flex-start; }

  /* Grid */
  .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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:grid-cols-\[320px_1fr\] { grid-template-columns: 320px 1fr; }
  .lg\:grid-cols-\[minmax\(0\,5fr\)_minmax\(0\,7fr\)\] { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }

  /* Gap */
  .lg\:gap-2 { gap: 0.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-16 { gap: 4rem; }

  /* Padding */
  .lg\:p-8 { padding: 2rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }

  /* Margin */
  .lg\:mb-4 { margin-bottom: 1rem; }
  .lg\:mb-16 { margin-bottom: 4rem; }

  /* Typography */
  .lg\:text-base { font-size: var(--font-size-base); line-height: 1.5rem; }
  .lg\:text-xl { font-size: var(--font-size-xl); line-height: 1.75rem; }
  .lg\:text-2xl { font-size: var(--font-size-2xl); line-height: 2rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }

  /* Position */
  .lg\:sticky { position: -webkit-sticky; position: sticky; }
  .lg\:top-0 { top: 0; }

  /* Order */
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* =============================================================================
   RESPONSIVE VARIANTS - xl (min-width: 1280px)
   ============================================================================= */

@media (min-width: 1280px) {
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .xl\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* =============================================================================
   RESPONSIVE VARIANTS - 2xl (min-width: 1536px)
   ============================================================================= */

@media (min-width: 1536px) {
  .\32xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .\32xl\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}

/* =============================================================================
   RESPONSIVE VARIANTS - 3xl (min-width: 1792px)
   ============================================================================= */

@media (min-width: 1792px) {
  .\33xl\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .\33xl\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}

/* =============================================================================
   RESPONSIVE VARIANTS - 4xl (min-width: 2048px)
   ============================================================================= */

@media (min-width: 2048px) {
  .\34xl\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .\34xl\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
}

/* =============================================================================
   RESPONSIVE VARIANTS - xs (min-width: 475px)
   ============================================================================= */

@media (min-width: 475px) {
  .xs\:inline { display: inline; }
}

/**
 * Page Layout Patterns - Pokemon Card Tracker
 * 
 * Semantic classes for repeating page-level patterns found across
 * public pages (Home, Pricing, Features, About, etc.).
 * 
 * These replace long Tailwind utility strings with meaningful names
 * while preserving the exact same visual output.
 */

/* =============================================================================
   HERO SECTION
   Shared by: Home, Pricing, Features, About, CollectingGuide, etc.
   Replaces: "relative overflow-hidden px-4 pb-16 pt-24 md:pb-24 md:pt-32 
              sm:px-6 sm:pb-20 sm:pt-28 lg:px-8"
   ============================================================================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 1rem 4rem;
}

@media (min-width: 769px) {
  .page-hero {
    padding: 7rem 1.5rem 5rem;
  }
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Hero gradient background overlay
   Replaces: "absolute inset-0 bg-gradient-to-br from-blue-600/10 
              via-purple-600/10 to-pink-600/10" */
.page-hero__gradient {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to bottom right,
    rgba(37, 99, 235, 0.1),
    rgba(147, 51, 234, 0.1),
    rgba(219, 39, 119, 0.1)
  );
}

/* Decorative blur orbs
   Replaces: "absolute left-1/4 top-1/4 size-96 rounded-full bg-blue-500/5 blur-3xl" */
.page-hero__orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(64px);
}

.page-hero__orb--blue {
  left: 25%;
  top: 25%;
  background-color: rgba(59, 130, 246, 0.05);
}

.page-hero__orb--purple {
  right: 25%;
  bottom: 25%;
  background-color: rgba(168, 85, 247, 0.05);
}

/* Hero content container
   Replaces: "relative z-10 mx-auto max-w-4xl text-center" */
.page-hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Hero top badge pill
   Replaces: "bg-white/10 border-white/8 mb-6 inline-flex items-center 
              rounded-full border px-3 py-1.5 text-xs font-medium 
              backdrop-blur-sm sm:mb-8 sm:px-4 sm:py-2 sm:text-sm" */
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .page-hero__badge {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    margin-bottom: 2rem;
  }
}

/* Badge status dot
   Replaces: "mr-2 size-1.5 rounded-full bg-green-400 sm:size-2" */
.page-hero__badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: #4ade80;
  margin-right: 0.5rem;
}

@media (min-width: 769px) {
  .page-hero__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
  }
}

/* Hero headline
   Replaces: "mb-4 text-3xl font-bold leading-tight md:text-5xl 
              sm:mb-6 sm:text-4xl lg:text-6xl xl:text-7xl" */
.page-hero__title {
  margin-bottom: 1rem;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

@media (min-width: 769px) {
  .page-hero__title {
    margin-bottom: 1.5rem;
    font-size: var(--font-size-4xl);
  }
}

@media (min-width: 768px) {
  .page-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .page-hero__title {
    font-size: 4.5rem;
  }
}

/* Hero gradient text accent
   Replaces: "block bg-gradient-to-r from-blue-400 via-purple-400 
              to-pink-400 bg-clip-text text-transparent" */
.page-hero__title-accent {
  display: block;
  background-image: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero subtitle
   Replaces: "mx-auto mb-8 max-w-3xl text-base leading-relaxed text-gray-300 
              md:text-xl sm:mb-12 sm:text-lg lg:text-2xl" */
.page-hero__subtitle {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-300);
}

@media (min-width: 769px) {
  .page-hero__subtitle {
    margin-bottom: 3rem;
    font-size: var(--font-size-lg);
  }
}

@media (min-width: 768px) {
  .page-hero__subtitle {
    font-size: var(--font-size-xl);
  }
}

@media (min-width: 1024px) {
  .page-hero__subtitle {
    font-size: var(--font-size-2xl);
  }
}

/* Hero CTA button group
   Replaces: "mb-12 flex flex-col items-center justify-center gap-3 px-4 
              sm:mb-16 sm:flex-row sm:gap-4" */
.page-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 769px) {
  .page-hero__actions {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 4rem;
  }
}

/* =============================================================================
   PAGE SECTION
   The standard content section below the hero.
   Replaces: "bg-black px-4 py-12 md:py-20 sm:px-6 sm:py-16 lg:px-8"
   ============================================================================= */

.page-section {
  background-color: var(--color-black);
  padding: 3rem 1rem;
}

@media (min-width: 769px) {
  .page-section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .page-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Larger variant (py-24 at md)
   Replaces: "bg-black px-4 py-12 md:py-24 sm:px-6 sm:py-16 lg:px-8" */
.page-section--lg {
  background-color: var(--color-black);
  padding: 3rem 1rem;
}

@media (min-width: 769px) {
  .page-section--lg {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .page-section--lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .page-section--lg {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* =============================================================================
   CONTENT CONTAINERS
   Max-width wrappers used inside sections.
   ============================================================================= */

.content-narrow { max-width: 56rem; margin-left: auto; margin-right: auto; }
.content-medium { max-width: 64rem; margin-left: auto; margin-right: auto; }
.content-wide { max-width: 80rem; margin-left: auto; margin-right: auto; }

/* =============================================================================
   SECTION HEADER
   Heading + subtitle pattern at the top of each section.
   Replaces: wrapper "mb-12 text-center sm:mb-16"
             h2 "mb-4 text-2xl font-bold md:text-4xl sm:mb-6 sm:text-3xl"
             p  "mx-auto max-w-2xl text-base text-gray-300 md:text-xl sm:text-lg"
   ============================================================================= */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 769px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header__title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  margin-bottom: 1rem;
  color: var(--color-white);
}

@media (min-width: 769px) {
  .section-header__title {
    font-size: var(--font-size-3xl);
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .section-header__title {
    font-size: var(--font-size-4xl);
  }
}

.section-header__subtitle {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--font-size-base);
  color: var(--color-gray-300);
}

@media (min-width: 769px) {
  .section-header__subtitle {
    font-size: var(--font-size-lg);
  }
}

@media (min-width: 768px) {
  .section-header__subtitle {
    font-size: var(--font-size-xl);
  }
}

/* =============================================================================
   CARD GRIDS
   Responsive grid layouts for cards, features, testimonials, etc.
   ============================================================================= */

/* 1 → 2 → 3 column grid
   Replaces: "grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3" */
.card-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 769px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 1 → 3 column grid (skipping 2)
   Replaces: "grid grid-cols-1 gap-6 md:grid-cols-3 sm:gap-8" */
.card-grid--trio {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 769px) {
  .card-grid--trio {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .card-grid--trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 1 → 2 column grid for side-by-side content
   Replaces: "grid grid-cols-1 gap-8 lg:grid-cols-2 lg:gap-16" */
.card-grid--duo {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .card-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}

/* =============================================================================
   GLASS PANEL
   Standard glass card with padding.
   Replaces: "liquid-glass-card rounded-2xl p-6 sm:p-8" or "lg:p-8"
   ============================================================================= */

.glass-panel {
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 769px) {
  .glass-panel {
    padding: 2rem;
  }
}

/* =============================================================================
   FEATURE ICON BOX
   Gradient icon container used in feature lists.
   Replaces: "flex size-12 items-center justify-center rounded-xl 
              bg-gradient-to-br from-blue-500/20 to-purple-500/20"
   ============================================================================= */

.feature-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-image: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
  background-image: linear-gradient(to bottom right, var(--feature-icon-from, rgba(59, 130, 246, 0.2)), var(--feature-icon-to, rgba(168, 85, 247, 0.2)));
}

.feature-icon--blue { --feature-icon-from: rgba(59, 130, 246, 0.2); --feature-icon-to: rgba(168, 85, 247, 0.2); }
.feature-icon--green { --feature-icon-from: rgba(34, 197, 94, 0.2); --feature-icon-to: rgba(16, 185, 129, 0.2); }
.feature-icon--purple { --feature-icon-from: rgba(168, 85, 247, 0.2); --feature-icon-to: rgba(236, 72, 153, 0.2); }
.feature-icon--teal { --feature-icon-from: rgba(20, 184, 166, 0.2); --feature-icon-to: rgba(6, 182, 212, 0.2); }

/* =============================================================================
   TRUST BADGE
   Pill badges used in the social proof section.
   Replaces: "border-white/5 bg-white/5 flex items-center gap-2 rounded-full 
              border px-4 py-2 text-xs text-gray-300 sm:text-sm"
   ============================================================================= */

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  font-size: var(--font-size-xs);
  color: var(--color-gray-300);
}

@media (min-width: 769px) {
  .trust-badge {
    font-size: var(--font-size-sm);
  }
}

/* =============================================================================
   CHECK LIST ITEM
   Feature list items with green checkmark.
   Replaces: the flex + rounded-full + bg-green-500/20 + text-green-400 pattern
   ============================================================================= */

.check-item {
  display: flex;
  align-items: flex-start;
}

.check-item__icon {
  display: flex;
  width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(34, 197, 94, 0.2);
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  font-size: var(--font-size-sm);
  color: #4ade80;
}

/* =============================================================================
   CTA SECTION
   Final call-to-action block at bottom of pages.
   Combines page-section + centered text + button.
   ============================================================================= */

.cta-section {
  text-align: center;
}

.cta-section__title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  margin-bottom: 1rem;
}

@media (min-width: 769px) {
  .cta-section__title {
    font-size: var(--font-size-3xl);
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .cta-section__title {
    font-size: var(--font-size-4xl);
  }
}

.cta-section__subtitle {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  font-size: var(--font-size-base);
  color: var(--color-gray-300);
}

@media (min-width: 769px) {
  .cta-section__subtitle {
    margin-bottom: 3rem;
    font-size: var(--font-size-lg);
  }
}

@media (min-width: 768px) {
  .cta-section__subtitle {
    font-size: var(--font-size-xl);
  }
}

/* =============================================================================
   SIDEBAR LAYOUT
   Content + sidebar grid used on About page.
   Replaces: "grid grid-cols-1 gap-8 lg:grid-cols-4"
   ============================================================================= */

.sidebar-layout {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .sidebar-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* =============================================================================
   SCREENSHOT SHOWCASE
   Image display with glow effect, used on Home page.
   ============================================================================= */

.screenshot-card {
  position: relative;
}

.screenshot-card__glow {
  position: absolute;
  inset: -0.5rem;
  border-radius: 1rem;
  filter: blur(24px);
  transition: all 300ms;
}

.screenshot-card__glow--blue {
  background-image: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.screenshot-card__glow--purple {
  background-image: linear-gradient(to right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
}

@media (min-width: 769px) {
  .screenshot-card__glow {
    inset: -1rem;
    border-radius: 1.5rem;
  }
}

.screenshot-card:hover .screenshot-card__glow {
  filter: blur(40px);
}

