/*! 
 * Broken UFO — Local Tailwind Utilities
 * Generated from theme source scan (244 classes)
 * Replaces Tailwind CDN (Play CDN + JIT)
 * 
 * Includes: Preflight (minimal), Layout, Flexbox/Grid, Spacing,
 * Sizing, Typography, Backgrounds, Borders, Effects, Transforms,
 * Transitions, Animations, Interactivity, Accessibility
 *
 * Custom theme tokens: deepspace, ufogreen, ufogreen2, spectral, spectral2,
 * shadow-ufo, shadow-neon, rounded-ufo
 */

/* ═══════════════════════════════════════════════════════════════════════
   PREFLIGHT (Tailwind v3 modern-normalize subset)
   ═══════════════════════════════════════════════════════════════════════ */

*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub { bottom: -0.25em; }
sup { top: -0.5em; }

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button, [role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════ */

.block        { display: block; }
.inline-block { display: inline-block; }
.inline-flex  { display: inline-flex; }
.flex         { display: flex; }
.grid         { display: grid; }
.hidden       { display: none; }
.visible      { visibility: visible; }

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

/* Inset / TRBL */
.inset-0  { inset: 0px; }
.top-0    { top: 0px; }
.top-1\/2 { top: 50%; }
.right-0  { right: 0px; }
.left-4   { left: 1rem; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Min-height */
.min-h-screen { min-height: 100vh; }

/* Min-width */
.min-w-0 { min-width: 0px; }


/* ═══════════════════════════════════════════════════════════════════════
   FLEXBOX
   ═══════════════════════════════════════════════════════════════════════ */

.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.items-baseline { align-items: baseline; }

.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }


/* ═══════════════════════════════════════════════════════════════════════
   GRID
   ═══════════════════════════════════════════════════════════════════════ */

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-y-1 { row-gap: 0.25rem; }


/* ═══════════════════════════════════════════════════════════════════════
   SPACING — Padding
   ═══════════════════════════════════════════════════════════════════════ */

.p-3  { padding: 0.75rem; }
.p-4  { padding: 1rem; }
.p-5  { padding: 1.25rem; }
.p-6  { padding: 1.5rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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; }

.py-1   { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2   { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3   { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4   { padding-top: 1rem; padding-bottom: 1rem; }
.py-5   { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-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; }
.py-20  { padding-top: 5rem; padding-bottom: 5rem; }

.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pl-11 { padding-left: 2.75rem; }
.pr-4 { padding-right: 1rem; }


/* ═══════════════════════════════════════════════════════════════════════
   SPACING — Margin
   ═══════════════════════════════════════════════════════════════════════ */

.mt-1  { margin-top: 0.25rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }

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

.mx-auto { margin-left: auto; margin-right: auto; }


/* ═══════════════════════════════════════════════════════════════════════
   SPACING — Space Between (children)
   ═══════════════════════════════════════════════════════════════════════ */

.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-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }


/* ═══════════════════════════════════════════════════════════════════════
   SIZING — Width
   ═══════════════════════════════════════════════════════════════════════ */

.w-2    { width: 0.5rem; }
.w-3    { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.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-16   { width: 4rem; }
.w-full { width: 100%; }

/* Arbitrary */
.w-\[88\%\] { width: 88%; }

/* Max-width */
.max-w-7xl       { max-width: 80rem; }
.max-w-\[400px\] { max-width: 400px; }


/* ═══════════════════════════════════════════════════════════════════════
   SIZING — Height
   ═══════════════════════════════════════════════════════════════════════ */

.h-2    { height: 0.5rem; }
.h-3    { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4    { height: 1rem; }
.h-5    { height: 1.25rem; }
.h-6    { height: 1.5rem; }
.h-8    { height: 2rem; }
.h-10   { height: 2.5rem; }
.h-12   { height: 3rem; }
.h-16   { height: 4rem; }
.h-24   { height: 6rem; }
.h-full { height: 100%; }

/* Arbitrary */
.h-\[2px\]                  { height: 2px; }
.h-\[calc\(100\%-80px\)\]   { height: calc(100% - 80px); }


/* ═══════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════ */

/* Font families (from tailwind.config theme extend) */
.font-sans    { font-family: Outfit, system-ui, -apple-system, sans-serif; }
.font-mono    { font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace; }
.font-display { font-family: 'Zen Dots', Outfit, system-ui, sans-serif; }

/* Font size */
.text-xs   { font-size: 0.75rem; line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
.text-\[10px\] { font-size: 10px; }

/* Font weight */
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }

/* Line height */
.leading-none    { line-height: 1; }
.leading-relaxed { line-height: 1.625; }

/* Letter spacing */
.tracking-tight  { letter-spacing: -0.025em; }
.tracking-wide   { letter-spacing: 0.025em; }
.tracking-wider  { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.24em\] { letter-spacing: 0.24em; }
.tracking-\[0\.4em\]  { letter-spacing: 0.4em; }

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

/* Text decoration */
.underline { text-decoration-line: underline; }
.decoration-white\/20 { text-decoration-color: rgba(255, 255, 255, 0.2); }

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

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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


/* ═══════════════════════════════════════════════════════════════════════
   TEXT COLORS
   ═══════════════════════════════════════════════════════════════════════ */

.text-white { color: rgb(255 255 255); }

/* Gray scale */
.text-gray-200 { color: rgb(229 231 235); }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }

/* Green */
.text-green-400     { color: rgb(74 222 128); }
.text-green-400\/70 { color: rgba(74, 222, 128, 0.7); }
.text-green-500\/50 { color: rgba(34, 197, 94, 0.5); }
.text-green-500\/70 { color: rgba(34, 197, 94, 0.7); }

/* Custom: spectral */
.text-spectral\/50 { color: rgba(167, 177, 194, 0.5); }
.text-spectral\/60 { color: rgba(167, 177, 194, 0.6); }
.text-spectral\/70 { color: rgba(167, 177, 194, 0.7); }
.text-spectral\/80 { color: rgba(167, 177, 194, 0.8); }
.text-spectral\/85 { color: rgba(167, 177, 194, 0.85); }
.text-spectral\/90 { color: rgba(167, 177, 194, 0.9); }

/* Custom: spectral2 */
.text-spectral2 { color: #E6ECF6; }

/* Custom: ufogreen */
.text-ufogreen\/80 { color: rgba(34, 197, 94, 0.8); }


/* ═══════════════════════════════════════════════════════════════════════
   BACKGROUNDS
   ═══════════════════════════════════════════════════════════════════════ */

.bg-green-400     { background-color: rgb(74 222 128); }
.bg-green-500     { background-color: rgb(34 197 94); }
.bg-green-500\/10 { background-color: rgba(34, 197, 94, 0.1); }

.bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }

.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }

/* Custom: ufogreen */
.bg-ufogreen\/80 { background-color: rgba(34, 197, 94, 0.8); }

/* Gradients */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

/* Gradient stops — custom deepspace #050508 */
.from-deepspace {
  --tw-gradient-from: #050508 var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(5, 5, 8, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-deepspace\/70 {
  --tw-gradient-to: rgba(5, 5, 8, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(5, 5, 8, 0.7) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-deepspace\/78 {
  --tw-gradient-to: rgba(5, 5, 8, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(5, 5, 8, 0.78) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-green-500\/10 {
  --tw-gradient-to: rgba(34, 197, 94, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(34, 197, 94, 0.1) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-deepspace\/20 {
  --tw-gradient-to: rgba(5, 5, 8, 0.2) var(--tw-gradient-to-position);
}
.to-deepspace\/35 {
  --tw-gradient-to: rgba(5, 5, 8, 0.35) var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

/* Arbitrary background (radial gradient) */
.bg-\[radial-gradient\(700px_circle_at_20\%_20\%\,rgba\(0\,255\,65\,\.16\)\,rgba\(255\,255\,255\,\.05\)_22\%\,rgba\(0\,0\,0\,0\)_55\%\)\] {
  background: radial-gradient(700px circle at 20% 20%, rgba(0,255,65,.16), rgba(255,255,255,.05) 22%, rgba(0,0,0,0) 55%);
}

/* Gradient CSS custom properties (defaults) */
*, ::before, ::after {
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
}


/* ═══════════════════════════════════════════════════════════════════════
   BORDERS
   ═══════════════════════════════════════════════════════════════════════ */

.border   { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-t { border-top-width: 1px; }

.border-white\/5    { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10   { border-color: rgba(255, 255, 255, 0.1); }
.border-green-500\/10 { border-color: rgba(34, 197, 94, 0.1); }

/* Border radius */
.rounded-lg  { border-radius: 0.5rem; }
.rounded-xl  { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Custom: rounded-ufo from tailwind.config */
.rounded-ufo { border-radius: 22px; }


/* ═══════════════════════════════════════════════════════════════════════
   BOX SHADOW
   ═══════════════════════════════════════════════════════════════════════ */

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Custom shadows from tailwind.config */
.shadow-ufo  { box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55); }
.shadow-neon { box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.22), 0 10px 40px rgba(0, 0, 0, 0.55); }

/* Arbitrary */
.shadow-\[0_0_18px_rgba\(0\,255\,65\,\.22\)\] {
  box-shadow: 0 0 18px rgba(0, 255, 65, .22);
}


/* ═══════════════════════════════════════════════════════════════════════
   OPACITY
   ═══════════════════════════════════════════════════════════════════════ */

.opacity-45 { opacity: 0.45; }
.opacity-75 { opacity: 0.75; }


/* ═══════════════════════════════════════════════════════════════════════
   BACKDROP
   ═══════════════════════════════════════════════════════════════════════ */

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }


/* ═══════════════════════════════════════════════════════════════════════
   TRANSFORMS
   ═══════════════════════════════════════════════════════════════════════ */

/* Arbitrary scale */
.scale-\[1\.02\] { transform: scale(1.02); }


/* ═══════════════════════════════════════════════════════════════════════
   TRANSITIONS
   ═══════════════════════════════════════════════════════════════════════ */

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-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;
}

.duration-700 { transition-duration: 700ms; }


/* ═══════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */

@keyframes tw-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes tw-pulse {
  50% {
    opacity: .5;
  }
}

.animate-ping  { animation: tw-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse { animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }


/* ═══════════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════════ */

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


/* ═══════════════════════════════════════════════════════════════════════
   GROUP UTILITY
   ═══════════════════════════════════════════════════════════════════════ */

/* .group is a marker class — no CSS needed, but group-hover variants below */


/* ═══════════════════════════════════════════════════════════════════════
   HOVER VARIANTS
   ═══════════════════════════════════════════════════════════════════════ */

.hover\:bg-green-500\/10:hover  { background-color: rgba(34, 197, 94, 0.1); }
.hover\:bg-green-500\/5:hover   { background-color: rgba(34, 197, 94, 0.05); }
.hover\:bg-red-500\/10:hover    { background-color: rgba(239, 68, 68, 0.1); }
.hover\:bg-white\/7:hover       { background-color: rgba(255, 255, 255, 0.07); }

.hover\:border-green-500\/30:hover { border-color: rgba(34, 197, 94, 0.3); }
.hover\:border-red-500\/30:hover   { border-color: rgba(239, 68, 68, 0.3); }

.hover\:text-green-400:hover { color: rgb(74 222 128); }
.hover\:text-white:hover     { color: rgb(255 255 255); }

.hover\:decoration-white\/50:hover { text-decoration-color: rgba(255, 255, 255, 0.5); }


/* ═══════════════════════════════════════════════════════════════════════
   FOCUS VARIANTS
   ═══════════════════════════════════════════════════════════════════════ */

.focus\:bg-black\/60:focus       { background-color: rgba(0, 0, 0, 0.6); }
.focus\:bg-gray-900\/90:focus    { background-color: rgba(17, 24, 39, 0.9); }
.focus\:border:focus             { border-width: 1px; }
.focus\:border-green-500\/30:focus { border-color: rgba(34, 197, 94, 0.3); }
.focus\:border-green-500\/40:focus { border-color: rgba(34, 197, 94, 0.4); }
.focus\:fixed:focus              { position: fixed; }
.focus\:left-4:focus             { left: 1rem; }
.focus\:outline-none:focus       { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:px-4:focus               { padding-left: 1rem; padding-right: 1rem; }
.focus\:py-2:focus               { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.focus\:rounded-full:focus       { border-radius: 9999px; }
.focus\:text-gray-200:focus      { color: rgb(229 231 235); }
.focus\:top-4:focus              { top: 1rem; }
.focus\:z-\[9999\]:focus         { z-index: 9999; }

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}


/* ═══════════════════════════════════════════════════════════════════════
   GROUP-HOVER VARIANTS
   ═══════════════════════════════════════════════════════════════════════ */

.group:hover .group-hover\:bg-green-500\/10  { background-color: rgba(34, 197, 94, 0.1); }
.group:hover .group-hover\:bg-green-500\/20  { background-color: rgba(34, 197, 94, 0.2); }
.group:hover .group-hover\:border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.group:hover .group-hover\:text-green-400    { color: rgb(74 222 128); }
.group:hover .group-hover\:text-red-400      { color: rgb(248 113 113); }
.group:hover .group-hover\:text-white        { color: rgb(255 255 255); }
.group:hover .group-hover\:scale-\[1\.05\]   { transform: scale(1.05); }
.group:hover .group-hover\:translate-x-1     { transform: translateX(0.25rem); }


/* ═══════════════════════════════════════════════════════════════════════
   PLACEHOLDER VARIANT
   ═══════════════════════════════════════════════════════════════════════ */

.placeholder\:text-gray-600::placeholder { color: rgb(75 85 99); }


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE: sm (640px)
   ═══════════════════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE: md (768px)
   ═══════════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .md\:block       { display: block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row    { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE: lg (1024px)
   ═══════════════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .lg\:flex          { display: flex; }
  .lg\:hidden        { display: none; }
  .lg\:sticky        { position: sticky; }
  .lg\:top-28        { top: 7rem; }
  .lg\:gap-8         { gap: 2rem; }
  .lg\:grid-cols-4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12  { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-1    { grid-column: span 1 / span 1; }
  .lg\:col-span-4    { grid-column: span 4 / span 4; }
  .lg\:col-span-8    { grid-column: span 8 / span 8; }
}


/* ═══════════════════════════════════════════════════════════════════════
   DYNAMIC / JS CLASSES (safelist)
   — Classes toggled via JavaScript classList operations
   ═══════════════════════════════════════════════════════════════════════ */

/* overflow-hidden is already defined above — used by JS scroll lock */
/* .hidden is already defined above — used by JS show/hide */
/* .visible is already defined above — used by JS scroll reveal */


.w-2\.5 { width: 0.625rem; }
.h-2\.5 { height: 0.625rem; }
.w-3\.5 { width: 0.875rem; }
.h-3\.5 { height: 0.875rem; }
