/* Custom Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky navbar */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: #0f172a;
}

/* Infinite Smooth Marquee Animation */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Modern Glassmorphism & UI Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.85);
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 65, 85, 0.6);
}

.glass-pill {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 213, 225, 0.7);
}

:root {
    --brand-primary: #437554;
    --brand-dark: #365e44;
    --brand-light: #e4eee7;
    --brand-soft: #f3f7f4;
}

.subtle-mesh-bg {
    background-color: #f7faf8;
    background-image: 
        radial-gradient(at 0% 0%, rgba(67, 117, 84, 0.14) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(84, 139, 100, 0.12) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(243, 247, 244, 0.85) 0px, transparent 50%);
}

.dark-mesh-bg {
    background-color: #0c140f;
    background-image: 
        radial-gradient(at 0% 0%, rgba(67, 117, 84, 0.35) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(38, 62, 47, 0.35) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(84, 139, 100, 0.20) 0px, transparent 50%);
}

/* Smooth custom transitions & Card Glow */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-lift {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}

.card-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.08), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, rgba(67, 117, 84, 0.5), rgba(111, 159, 125, 0.4));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 1;
}

/* Brand Primary Button Accent */
.btn-brand {
    background-color: #437554;
    color: #ffffff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-brand:hover {
    background-color: #365e44;
    box-shadow: 0 10px 25px -4px rgba(67, 117, 84, 0.4);
}

.btn-brand-outline {
    background-color: transparent;
    color: #437554;
    border: 1.5px solid rgba(67, 117, 84, 0.35);
    transition: all 0.25s ease;
}

.btn-brand-outline:hover {
    background-color: rgba(67, 117, 84, 0.08);
    border-color: #437554;
    color: #365e44;
}

/* Modern Card & Bento Utilities */
.bento-card {
    background: #ffffff;
    border-radius: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.08), 0 12px 24px -8px rgba(67, 117, 84, 0.06);
    border-color: rgba(67, 117, 84, 0.4);
}

.bento-card-dark {
    background: rgba(18, 35, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.75rem;
    border: 1px solid rgba(67, 117, 84, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(67, 117, 84, 0.25);
    border-color: rgba(111, 159, 125, 0.6);
}

.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Custom Accordion Details Marker Reset */
details summary::-webkit-details-marker {
    display: none;
}
details summary {
    list-style: none;
}



