/* CSS Variables & Theme */
:root {
    --zinc-950: #09090b;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-700: #3f3f46;
    --zinc-400: #a1a1aa;
    --zinc-100: #f4f4f5;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --indigo-500: #6366f1;
}

body {
    background-color: var(--zinc-950);
    color: var(--zinc-100);
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
}

/* Typography */
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism Components */
.glass {
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(63, 63, 70, 0.3);
}

.glass-pill {
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-slow {
    animation: fadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Meditative Stagger (800ms intervals for slow reflection) */
.animate-stagger-1 {
    animation-delay: 200ms;
    opacity: 0;
}

.animate-stagger-2 {
    animation-delay: 1000ms;
    opacity: 0;
}

.animate-stagger-3 {
    animation-delay: 1800ms;
    opacity: 0;
}

.animate-stagger-4 {
    animation-delay: 2600ms;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-pulse-slow {
    animation: pulseSlow 5s ease-in-out infinite;
}

@keyframes pulseSlow {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.02);
        filter: blur(2px);
    }
}

/* Truth Card */
.truth-card {
    position: relative;
    background: var(--zinc-900);
    border: 1px solid rgba(63, 63, 70, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 1.5rem;
}

.truth-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), transparent, rgba(99, 102, 241, 0.2));
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
}

.heavenly-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Selection Buttons */
.btn-selection {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-selection:active {
    transform: scale(0.98);
}

/* Utilities */
.selection-amber::selection {
    background: rgba(245, 158, 11, 0.3);
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[v-cloak] {
    display: none;
}