/* MindWave - Compiled Tailwind Utilities */
/* Generated from index.html - replaces CDN for faster loading */

/* ============================================
   RESET & BASE
   ============================================ */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

/* ============================================
   LAYOUT: DISPLAY & POSITIONING
   ============================================ */
.hidden {
    display: none;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.inline-flex {
    display: inline-flex;
}

.block {
    display: block;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    inset: 0;
}

.top-0 {
    top: 0;
}

.top-1 {
    top: 0.25rem;
}

.top-4 {
    top: 1rem;
}

.right-0 {
    right: 0;
}

.right-1 {
    right: 0.25rem;
}

.right-4 {
    right: 1rem;
}

.bottom-0 {
    bottom: 0;
}

.bottom-4 {
    bottom: 1rem;
}

.left-0 {
    left: 0;
}

.left-4 {
    left: 1rem;
}

.left-1\/2 {
    left: 50%;
}

/* Z-Index */
.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

/* ============================================
   FLEXBOX & GRID
   ============================================ */
.flex-1 {
    flex: 1 1 0%;
}

.flex-\[2\] {
    flex: 2;
}

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

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

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

.order-first {
    order: -9999;
}

.items-center {
    align-items: center;
}

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

.items-end {
    align-items: flex-end;
}

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

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

.justify-end {
    justify-content: flex-end;
}

.justify-around {
    justify-content: space-around;
}

.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-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

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

.col-span-2 {
    grid-column: span 2 / span 2;
}

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

/* ============================================
   SIZING
   ============================================ */
.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-px {
    height: 1px;
}

.h-1 {
    height: 0.25rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.h-2 {
    height: 0.5rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.h-28 {
    height: 7rem;
}

.h-\[env\(safe-area-inset-bottom\)\] {
    height: env(safe-area-inset-bottom);
}

.w-full {
    width: 100%;
}

.w-screen {
    width: 100vw;
}

.w-1\/4 {
    width: 25%;
}

.w-2 {
    width: 0.5rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-28 {
    width: 7rem;
}

.w-64 {
    width: 16rem;
}

.w-80 {
    width: 20rem;
}

.min-h-0 {
    min-height: 0;
}

.min-w-0 {
    min-width: 0;
}

.min-w-\[140px\] {
    min-width: 140px;
}

.min-w-\[2\.5rem\] {
    min-width: 2.5rem;
}

.max-h-40 {
    max-height: 10rem;
}

.max-h-\[85vh\] {
    max-height: 85vh;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-\[200px\] {
    max-width: 200px;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-sm {
    max-width: 24rem;
}

/* ============================================
   SPACING
   ============================================ */
.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-6 {
    padding: 1.5rem;
}

.px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.pt-2 {
    padding-top: 0.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.m-0 {
    margin: 0;
}

.-m-2 {
    margin: -0.5rem;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-0\.5 {
    margin-bottom: 0.125rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 0.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-\[8px\] {
    font-size: 8px;
    line-height: 1;
}

.text-\[9px\] {
    font-size: 9px;
    line-height: 1;
}

.text-\[10px\] {
    font-size: 10px;
    line-height: 1.2;
}

.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-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, monospace;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.tabular-nums {
    font-variant-numeric: tabular-nums;
}

/* Text Opacity */
.text-opacity-80 {
    --tw-text-opacity: 0.8;
}

/* ============================================
   COLORS - TEXT
   ============================================ */
.text-white {
    color: #fff;
}

.text-\[\#2dd4bf\] {
    color: #2dd4bf;
}

.text-\[var\(--accent\)\] {
    color: var(--accent);
}

.text-\[var\(--bg-main\)\] {
    color: var(--bg-main);
}

.text-\[var\(--text-main\)\] {
    color: var(--text-main);
}

.text-\[var\(--text-muted\)\] {
    color: var(--text-muted);
}

.text-amber-400 {
    color: #fbbf24;
}

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

.text-indigo-300 {
    color: #a5b4fc;
}

.text-purple-300 {
    color: #d8b4fe;
}

.text-purple-400 {
    color: #c084fc;
}

.text-red-400 {
    color: #f87171;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

/* ============================================
   COLORS - BACKGROUND
   ============================================ */
.bg-transparent {
    background-color: transparent;
}

.bg-black {
    background-color: #000;
}

.bg-black\/20 {
    background-color: rgb(0 0 0 / 0.2);
}

.bg-black\/40 {
    background-color: rgb(0 0 0 / 0.4);
}

.bg-black\/60 {
    background-color: rgb(0 0 0 / 0.6);
}

.bg-black\/90 {
    background-color: rgb(0 0 0 / 0.9);
}

.bg-black\/95 {
    background-color: rgb(0 0 0 / 0.95);
}

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

.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/20 {
    background-color: rgb(255 255 255 / 0.2);
}

.bg-\[\#0f172a\]\/0 {
    background-color: rgb(15 23 42 / 0);
}

.bg-\[\#0f172a\]\/50 {
    background-color: rgb(15 23 42 / 0.5);
}

.bg-\[\#0f172a\]\/80 {
    background-color: rgb(15 23 42 / 0.8);
}

.bg-\[var\(--accent\)\] {
    background-color: var(--accent);
}

.bg-\[var\(--accent\)\]\/10 {
    background-color: color-mix(in srgb, var(--accent) 10%, transparent);
}

.bg-\[var\(--accent\)\]\/20 {
    background-color: color-mix(in srgb, var(--accent) 20%, transparent);
}

.bg-\[var\(--bg-main\)\] {
    background-color: var(--bg-main);
}

.bg-\[var\(--bg-panel\)\] {
    background-color: var(--bg-panel);
}

.bg-\[var\(--bg-panel\)\]\/95 {
    background-color: color-mix(in srgb, var(--bg-panel) 95%, transparent);
}

.bg-slate-600 {
    background-color: #475569;
}

.bg-slate-700 {
    background-color: #334155;
}

.bg-slate-700\/50 {
    background-color: rgb(51 65 85 / 0.5);
}

.bg-slate-800 {
    background-color: #1e293b;
}

.bg-slate-900 {
    background-color: #0f172a;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-red-500\/10 {
    background-color: rgb(239 68 68 / 0.1);
}

.bg-red-500\/20 {
    background-color: rgb(239 68 68 / 0.2);
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-amber-500 {
    background-color: #f59e0b;
}

.bg-amber-500\/20 {
    background-color: rgb(245 158 11 / 0.2);
}

.bg-purple-500\/20 {
    background-color: rgb(168 85 247 / 0.2);
}

.bg-purple-500\/30 {
    background-color: rgb(168 85 247 / 0.3);
}

.bg-indigo-500\/20 {
    background-color: rgb(99 102 241 / 0.2);
}

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

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-purple-500\/20 {
    --tw-gradient-from: rgb(168 85 247 / 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-indigo-500\/20 {
    --tw-gradient-from: rgb(99 102 241 / 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-\[var\(--accent\)\]\/20 {
    --tw-gradient-from: color-mix(in srgb, var(--accent) 20%, transparent);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.to-purple-500\/20 {
    --tw-gradient-to: rgb(168 85 247 / 0.2);
}

.to-indigo-500\/20 {
    --tw-gradient-to: rgb(99 102 241 / 0.2);
}

.to-transparent {
    --tw-gradient-to: transparent;
}

/* ============================================
   BORDERS
   ============================================ */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-r {
    border-right-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-l {
    border-left-width: 1px;
}

.border-transparent {
    border-color: transparent;
}

.border-white\/5 {
    border-color: rgb(255 255 255 / 0.05);
}

.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
}

.border-white\/20 {
    border-color: rgb(255 255 255 / 0.2);
}

.border-\[var\(--accent\)\] {
    border-color: var(--accent);
}

.border-\[var\(--accent\)\]\/30 {
    border-color: color-mix(in srgb, var(--accent) 30%, transparent);
}

.border-\[var\(--border\)\] {
    border-color: var(--border);
}

.border-amber-500\/30 {
    border-color: rgb(245 158 11 / 0.3);
}

.border-purple-500\/30 {
    border-color: rgb(168 85 247 / 0.3);
}

.border-red-500\/20 {
    border-color: rgb(239 68 68 / 0.2);
}

.border-red-500\/30 {
    border-color: rgb(239 68 68 / 0.3);
}

.border-slate-700 {
    border-color: #334155;
}

.rounded {
    border-radius: 0.25rem;
}

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

/* ============================================
   EFFECTS & FILTERS
   ============================================ */
.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-100 {
    opacity: 1;
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

.shadow-\[0_0_10px_currentColor\] {
    box-shadow: 0 0 10px currentColor;
}

.shadow-\[0_0_10px_rgba\(255\,255\,255\,0\.2\)\] {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.shadow-\[0_0_15px_rgba\(239\,68\,68\,0\.5\)\] {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.shadow-\[0_0_15px_var\(--accent-glow\)\] {
    box-shadow: 0 0 15px var(--accent-glow);
}

.shadow-\[0_0_50px_var\(--accent-glow\)\] {
    box-shadow: 0 0 50px var(--accent-glow);
}

.shadow-\[var\(--accent\)\]\/20 {
    box-shadow: 0 4px 6px -1px color-mix(in srgb, var(--accent) 20%, transparent);
}

.shadow-\[var\(--accent\)\]\/30 {
    box-shadow: 0 4px 6px -1px color-mix(in srgb, var(--accent) 30%, transparent);
}

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

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

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

.backdrop-blur-2xl {
    backdrop-filter: blur(40px);
}

/* ============================================
   TRANSFORMS
   ============================================ */
.transform {
    transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}

.-translate-x-full {
    --tw-translate-x: -100%;
    transform: translateX(-100%);
}

.translate-x-full {
    --tw-translate-x: 100%;
    transform: translateX(100%);
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.rotate-\[-90deg\] {
    transform: rotate(-90deg);
}

.scale-105 {
    transform: scale(1.05);
}

.scale-110 {
    transform: scale(1.1);
}

/* ============================================
   TRANSITIONS & ANIMATIONS
   ============================================ */
.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;
}

.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-200 {
    transition-duration: 200ms;
}

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

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

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

.cursor-default {
    cursor: default;
}

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

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

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* ============================================
   HOVER STATES
   ============================================ */
.hover\:bg-white\/5:hover {
    background-color: rgb(255 255 255 / 0.05);
}

.hover\:bg-white\/10:hover {
    background-color: rgb(255 255 255 / 0.1);
}

.hover\:bg-white\/20:hover {
    background-color: rgb(255 255 255 / 0.2);
}

.hover\:bg-\[var\(--accent\)\]\/20:hover {
    background-color: color-mix(in srgb, var(--accent) 20%, transparent);
}

.hover\:bg-red-500\/20:hover {
    background-color: rgb(239 68 68 / 0.2);
}

.hover\:bg-red-500\/30:hover {
    background-color: rgb(239 68 68 / 0.3);
}

.hover\:bg-purple-500\/30:hover {
    background-color: rgb(168 85 247 / 0.3);
}

.hover\:text-white:hover {
    color: #fff;
}

.hover\:text-\[var\(--accent\)\]:hover {
    color: var(--accent);
}

.hover\:text-red-300:hover {
    color: #fca5a5;
}

.hover\:border-white\/10:hover {
    border-color: rgb(255 255 255 / 0.1);
}

.hover\:border-white\/20:hover {
    border-color: rgb(255 255 255 / 0.2);
}

.hover\:border-\[var\(--accent\)\]:hover {
    border-color: var(--accent);
}

.hover\:border-amber-500\/50:hover {
    border-color: rgb(245 158 11 / 0.5);
}

.hover\:border-purple-500:hover {
    border-color: #a855f7;
}

.hover\:border-red-500:hover {
    border-color: #ef4444;
}

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

.hover\:opacity-100:hover {
    opacity: 1;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

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

/* ============================================
   ACTIVE STATES
   ============================================ */
.active\:scale-95:active {
    transform: scale(0.95);
}

/* ============================================
   GROUP HOVER
   ============================================ */
.group:hover .group-hover\:text-white {
    color: #fff;
}

.group:hover .group-hover\:text-opacity-100 {
    --tw-text-opacity: 1;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE - MEDIUM (md:)
   ============================================ */
@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }

    .md\:gap-6 {
        gap: 1.5rem;
    }
}