/* ============================================
   GWIN - Global Styles
   ============================================ */

html, body {
    background-color: #ffffff;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ============================================
   Button Styles
   ============================================ */

.pill-btn-dark {
    background-color: #111827;
    color: #ffffff;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill-btn-dark:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(17, 24, 39, 0.25);
}

.pill-btn-light {
    background-color: #f1f5f9;
    color: #0f172a;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill-btn-light:hover {
    background-color: #e2e8f0;
    transform: translateY(-1px);
}

/* ============================================
   Card Styles
   ============================================ */

.humane-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.humane-card:hover {
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

/* ============================================
   Navigation
   ============================================ */

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ============================================
   Canvas & Effects
   ============================================ */

#dot-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   Typing Cursor Animation
   ============================================ */

.typing-cursor::after {
    content: '▌';
    animation: blink 1s step-start infinite;
    color: #4f46e5;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ============================================
   Active Nav Link
   ============================================ */

.nav-link.active {
    color: #0f172a;
    font-weight: 600;
}

/* ============================================
   Typewriter Effect
   ============================================ */

.typewriter-cursor {
    display: inline;
    color: #4f46e5;
    font-weight: 400;
    animation: typewriter-blink 0.7s step-start infinite;
    margin-left: 2px;
}

.typewriter-cursor-fade {
    animation: typewriter-fade-out 0.8s ease forwards;
}

@keyframes typewriter-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes typewriter-fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
