/*! Luniko Studios — Tailwind CSS build output (extracted utilities + custom theme) */

/* ============================================================================
   RESET / BASE
   ============================================================================ */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: rgba(255,255,255,0.1); }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body { margin: 0; line-height: inherit; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button, select { text-transform: none; }
button, [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; appearance: button; background-color: transparent; background-image: none; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; }
img, video { max-width: 100%; height: auto; }
*, ::before, ::after { --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgb(59 130 246 / 0.5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; }

/* ============================================================================
   CUSTOM THEME TOKENS
   ============================================================================ */
:root {
  --gold: #d4af37;
  --gold-light: #f0c96e;
  --gold-dark: #aa771c;
  --ink: #050505;
}

/* ============================================================================
   CUSTOM COMPONENT CLASSES
   ============================================================================ */

/* Already defined in index.html <style> block:
   .glass-panel, .grain-overlay, .text-gradient-gold, .perspective-1000,
   .tilt-card, #custom-cursor, .cursor-core, .cursor-lens, .cursor-spotlight,
   .custom-scrollbar
*/

.font-cinematic { font-family: 'Playfair Display', serif; }
.font-sans { font-family: Montserrat, ui-sans-serif, system-ui, sans-serif; }
.font-mono { font-family: ui-monospace, SFMono-Regular, 'Courier New', monospace; }

.bg-ink { background-color: var(--ink); }
.text-ink { color: var(--ink); }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-gold\/30 { color: rgba(212,175,55,0.3); }
.text-gold\/80 { color: rgba(212,175,55,0.8); }
.bg-gold { background-color: var(--gold); }
.bg-gold\/5 { background-color: rgba(212,175,55,0.05); }
.bg-gold\/10 { background-color: rgba(212,175,55,0.1); }
.bg-gold\/20 { background-color: rgba(212,175,55,0.2); }
.bg-gold\/30 { background-color: rgba(212,175,55,0.3); }
.from-gold { --tw-gradient-from: var(--gold) var(--tw-gradient-from-position); --tw-gradient-to: rgba(212,175,55,0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-gold\/20 { --tw-gradient-from: rgba(212,175,55,0.2) var(--tw-gradient-from-position); --tw-gradient-to: rgba(212,175,55,0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-gold\/5 { --tw-gradient-to: rgba(212,175,55,0.05) var(--tw-gradient-to-position); }
.to-gold-dark { --tw-gradient-to: var(--gold-dark) var(--tw-gradient-to-position); }
.border-gold\/10 { border-color: rgba(212,175,55,0.1); }
.border-gold\/20 { border-color: rgba(212,175,55,0.2); }
.border-gold\/30 { border-color: rgba(212,175,55,0.3); }
.border-t-gold { border-top-color: var(--gold); }
.shadow-gold\/20 { --tw-shadow-color: rgba(212,175,55,0.2); --tw-shadow: var(--tw-shadow-colored); }
.shadow-gold\/40 { --tw-shadow-color: rgba(212,175,55,0.4); --tw-shadow: var(--tw-shadow-colored); }
.selection\:bg-gold *::selection, .selection\:bg-gold::selection { background-color: var(--gold); }
.selection\:text-ink *::selection, .selection\:text-ink::selection { color: var(--ink); }
.focus\:border-gold\/50:focus { border-color: rgba(212,175,55,0.5); }
.focus\:ring-gold:focus { --tw-ring-color: var(--gold); }
.hover\:bg-gold-light:hover { background-color: var(--gold-light); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:border-gold\/30:hover { border-color: rgba(212,175,55,0.3); }
.group-hover\:bg-gold\/10:hover > .group-hover\:bg-gold\/10, .group:hover .group-hover\:bg-gold\/10 { background-color: rgba(212,175,55,0.1); }
.group-hover\:border-gold\/50:hover > .group-hover\:border-gold\/50, .group:hover .group-hover\:border-gold\/50 { border-color: rgba(212,175,55,0.5); }
.group-hover\:text-gold:hover > .group-hover\:text-gold, .group:hover .group-hover\:text-gold { color: var(--gold); }
.group-hover\:text-gold-light:hover > .group-hover\:text-gold-light, .group:hover .group-hover\:text-gold-light { color: var(--gold-light); }

/* ============================================================================
   CUSTOM ANIMATIONS
   ============================================================================ */

@keyframes cinematic-fade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.animate-cinematic-fade { animation: cinematic-fade 0.8s ease-out forwards; }
.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }
.animate-bounce { animation: bounce 1s infinite; }
@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); } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes pulse { 0%, 100% { opacity:1; } 50% { opacity:.5; } }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================================
   TAILWIND UTILITY CLASSES
   ============================================================================ */

/* --- Display / Position --- */
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }

/* --- Inset --- */
.inset-0 { inset: 0; }
.-inset-8 { inset: -2rem; }
.-inset-10 { inset: -2.5rem; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.top-8 { top: 2rem; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.left-0 { left: 0; }
.left-6 { left: 1.5rem; }
.left-8 { left: 2rem; }

/* --- Z-Index --- */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-\[80\] { z-index: 80; }
.z-\[100\] { z-index: 100; }
.z-\[110\] { z-index: 110; }
.z-\[200\] { z-index: 200; }

/* --- Width & Height --- */
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.h-1\.5 { height: 0.375rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }
.max-w-md { max-width: 28rem; }
.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-6xl { max-width: 72rem; }
.max-h-\[85vh\] { max-height: 85vh; }
.max-h-\[90vh\] { max-height: 90vh; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }

/* --- Flex --- */
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* --- Grid --- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* --- Spacing (margin) --- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.-mt-1 { margin-top: -0.25rem; }
.mt-4 { margin-top: 1rem; }
.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; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

/* --- Spacing (padding) --- */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-14 { padding: 3.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.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-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-0\.5 { padding-top: 0.125rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-20 { padding-top: 5rem; }
.pt-40 { padding-top: 10rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pr-6 { padding-right: 1.5rem; }

/* --- Space-Y --- */
.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-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }

/* --- Typography --- */
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.italic { font-style: italic; }
.leading-\[1\] { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.whitespace-pre-line { white-space: pre-line; }
.break-words { overflow-wrap: break-word; }
.line-through { text-decoration-line: line-through; }

/* --- Text Colors --- */
.text-white { color: #fff; }
.text-white\/20 { color: rgba(255,255,255,0.2); }
.text-white\/25 { color: rgba(255,255,255,0.25); }
.text-white\/30 { color: rgba(255,255,255,0.3); }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.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); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-red-400 { color: #f87171; }

/* --- Background Colors --- */
.bg-black { background-color: #000; }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }
.bg-black\/35 { background-color: rgba(0,0,0,0.35); }
.bg-black\/40 { background-color: rgba(0,0,0,0.4); }
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-black\/95 { background-color: rgba(0,0,0,0.95); }
.bg-black\/98 { background-color: rgba(0,0,0,0.98); }
.bg-transparent { background-color: transparent; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-red-500\/10 { background-color: rgba(239,68,68,0.1); }
.bg-red-500\/80 { background-color: rgba(239,68,68,0.8); }

/* --- Gradients --- */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-transparent { --tw-gradient-from: transparent var(--tw-gradient-from-position); --tw-gradient-to: transparent var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-white\/10 { --tw-gradient-to: rgba(255,255,255,0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), rgba(255,255,255,0.1) var(--tw-gradient-via-position), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent var(--tw-gradient-to-position); }

/* --- Borders --- */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-dashed { border-style: dashed; }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-red-500\/20 { border-color: rgba(239,68,68,0.2); }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-t-\[2\.5rem\] { border-top-left-radius: 2.5rem; border-top-right-radius: 2.5rem; }
.rounded-b-\[2\.5rem\] { border-bottom-left-radius: 2.5rem; border-bottom-right-radius: 2.5rem; }

/* --- Shadows --- */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* --- Backdrop / Blur / Filters --- */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); }
.blur-\[30px\] { filter: blur(30px); }
.blur-\[40px\] { filter: blur(40px); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); }
.drop-shadow-\[0_0_30px_rgba\(212\,175\,55\,0\.6\)\] { filter: drop-shadow(0 0 30px rgba(212,175,55,0.6)); }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* --- Object Fit --- */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* --- Opacity --- */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-60 { opacity: 0.6; }

/* --- Transforms --- */
.translate-y-full { --tw-translate-y: 100%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-full { --tw-translate-x: -100%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

/* --- Transitions --- */
.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, text-decoration-color, fill, stroke; 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; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

/* --- Cursor / Pointer --- */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.appearance-none { appearance: none; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.list-none { list-style-type: none; }
.placeholder-white\/10::placeholder { color: rgba(255,255,255,0.1); }

/* ============================================================================
   HOVER / FOCUS / GROUP / ACTIVE 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\:border-white\/30:hover { border-color: rgba(255,255,255,0.3); }
.hover\:text-white:hover { color: #fff; }
.hover\:scale-\[1\.03\]:hover { transform: scale(1.03); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.active\:scale-95:active { transform: scale(0.95); }
.group\/btn:hover .group-hover\/btn\:translate-y-0 { --tw-translate-y: 0; transform: translate(var(--tw-translate-x), var(--tw-translate-y)); }
.group:hover .group-hover\:opacity-20 { opacity: 0.2; }
.group:hover .group-hover\:opacity-80 { opacity: 0.8; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-x-full { --tw-translate-x: 100%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)); }

/* details[open] variants */
.open\:bg-white\/5[open], details[open] > .open\:bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.open\:border-gold\/20[open], details[open] > .open\:border-gold\/20 { border-color: rgba(212,175,55,0.2); }
.group-open\:rotate-45 { transition: transform 0.2s; }
details[open] .group-open\:rotate-45,
.group[open] .group-open\:rotate-45 { transform: rotate(45deg); }

/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================ */

/* sm: 640px */
@media (min-width: 640px) {
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .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\:p-12 { padding: 3rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* md: 768px */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:gap-20 { gap: 5rem; }
  .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\:h-24 { height: 6rem; }
  .md\:w-64 { width: 16rem; }
  .md\:w-auto { width: auto; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-14 { padding: 3.5rem; }
  .md\:pt-32 { padding-top: 8rem; }
  .md\:pt-48 { padding-top: 12rem; }
  .md\:text-\[10px\] { font-size: 10px; }
  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
