/* OmniByte AI - Premium CSS Stylesheet */

/* Custom Google Font - Outfit & Inter */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0b0b0c;
    --bg-secondary: #121215;
    --accent-violet: #a855f7;
    --accent-cyan: #06b6d4;
    --glow-violet: rgba(168, 85, 247, 0.45);
    --glow-cyan: rgba(6, 182, 212, 0.3);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --border-color: rgba(168, 85, 247, 0.2);
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-violet) var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #201f24;
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-violet);
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
.font-display-lg,
.font-headline-md,
.font-headline-sm {
    font-family: var(--font-heading);
}

/* Neon & Radial Gradients */
/* .bg-grid-pattern {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.radial-glow-violet {
    background: radial-gradient(circle at center, var(--glow-violet) 0%, transparent 65%);
}

.radial-glow-cyan {
    background: radial-gradient(circle at center, var(--glow-cyan) 0%, transparent 65%);
} */

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(18, 18, 21, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.7) 0%, rgba(11, 11, 12, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(168, 85, 247, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}

.glass-card:hover::before {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(6, 182, 212, 0.3));
}

/* Glow Effects */
.text-neon-violet {
    color: var(--accent-violet);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.text-neon-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.bg-neon-gradient {
    background: linear-gradient(135deg, var(--accent-violet) 0%, #c084fc 50%, var(--accent-cyan) 100%);
}

.glow-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.glow-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 25px var(--glow-violet);
    transform: translateY(-1px);
}

.glow-btn:hover::after {
    opacity: 1;
}

.input-glow:focus {
    border-color: var(--accent-violet);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
    outline: none;
}

/* Accordion Custom Style */
.accordion-content {
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
}

.accordion-item.active {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(20, 20, 25, 0.9);
}

/* Scroll Triggered Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}



/* Animated Stats Counter Styling */
.stat-number {
    background: linear-gradient(135deg, #fff 30%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Particle Canvas styling to cover full section */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}