/* Global Marketing Styles */
body {
    background-color: #0B0F19;
    color: #ffffff;
    overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.4) 0%, rgba(17, 24, 39, 0.4) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Abstract Background Glow */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

/* Hero Animation - Audio Wave */
.audio-bar {
    width: 6px;
    background: linear-gradient(180deg, #3B82F6, #8B5CF6);
    border-radius: 9999px;
    animation: audio-wave 1s ease-in-out infinite;
}

@keyframes audio-wave {

    0%,
    100% {
        height: 10px;
        opacity: 0.5;
    }

    50% {
        height: 30px;
        opacity: 1;
    }
}

.cursor-blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Check Icon Utility */
.check-icon {
    color: #4ade80;
    /* text-green-400 */
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.75rem;
    flex-shrink: 0;
    /* shrink-0 */
}

/* Sidebar Links (Docs) */
.sidebar-link.active {
    color: #3B82F6;
    background-color: rgba(59, 130, 246, 0.1);
}

/* Typography Overrides (Legal Pages) */
.prose h1,
.prose h2,
.prose h3 {
    color: white;
}

.prose p,
.prose li {
    color: #9CA3AF;
}

.prose strong {
    color: white;
}

/* Agentic Writing Demo - Purple Audio Bars */
.agentic-audio-bar {
    width: 6px;
    background: linear-gradient(180deg, #8B5CF6, #3B82F6);
    border-radius: 9999px;
    animation: agentic-audio-wave 1s ease-in-out infinite;
}

@keyframes agentic-audio-wave {
    0%, 100% {
        height: 10px;
        opacity: 0.5;
    }
    50% {
        height: 30px;
        opacity: 1;
    }
}
