body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.grid-pattern {
    background-image: radial-gradient(circle at 1px 1px, #e2e8f0 1px, transparent 0);
    background-size: 40px 40px;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations replacements for Framer Motion */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Circle Effect Animations */
.logo-circle-anim {
    stroke-dasharray: 283; /* 2 * PI * 45 */
    stroke-dashoffset: 283;
    animation: drawCircle 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards infinite alternate;
    transform-origin: center;
}

.logo-circle-anim-hero {
    stroke-dasharray: 240 40;
    animation: rotateDraw 4s linear infinite;
    transform-origin: center;
}

.bolt-glow {
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
    animation: boltPulse 3s ease-in-out infinite;
}

@keyframes drawCircle {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 283; }
}

@keyframes rotateDraw {
    0% { transform: rotate(0deg); stroke-dashoffset: 0; }
    100% { transform: rotate(360deg); stroke-dashoffset: 280; }
}

@keyframes boltPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(0.98); }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

@keyframes mobile-slide {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}