/* Previous content preserved... appending new styles */

.glass-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.bento-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #f0fdf4;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(22, 163, 74, 0.1);
    border-color: #dcfce7;
}

.orbit-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.leaf-card {
    background: white;
    border-radius: 40px 10px 40px 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0fdf4;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.leaf-card:hover {
    border-radius: 20px 40px 20px 40px;
    transform: translateY(-10px);
    box-shadow: 0 40px 60px -15px rgba(22, 163, 74, 0.15);
    border-color: #22c55e;
}

.book-spine {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.1) 100%);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Enhanced styles from reports & blog */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.filter-chip {
    padding: 10px 24px;
    border-radius: 14px;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-chip.active {
    background: #059669;
    color: white;
    border-color: #059669;
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.3);
    transform: scale(1.05);
}

.sticky-tools {
    position: sticky;
    top: 85px;
    z-index: 40;
    transition: all 0.4s ease;
}

.is-sticky .sticky-tools-bg {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    padding: 1.25rem;
    border-radius: 2.5rem;
    box-shadow: 0 15px 40px -15px rgba(6, 60, 46, 0.2);
    border: 1px solid #dcfce7;
    margin-top: 0.5rem;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.data-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid white;
    transition: all 0.3s ease;
}

.data-badge:hover {
    background: white;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #059669;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #059669;
    border-radius: 4px;
}

.hide-scroll::-webkit-scrollbar {
    display: none;
}

.article-card {
    background: white;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0fdf4;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.article-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(6, 60, 46, 0.15);
    border-color: #10b981;
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.bento-item-large {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-item-tall {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-standard {
    grid-column: span 3;
    grid-row: span 1;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item-large,
    .bento-item-tall,
    .bento-item-standard {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Article View Typography */
::selection {
    background: #dcfce7;
    color: #064e3b;
}

.article-content p {
    font-size: 1.3rem;
    line-height: 2.4;
    margin-bottom: 2rem;
    color: #334155;
    text-align: justify;
}

.article-content>p:first-of-type::first-letter {
    float: right;
    font-size: 4rem;
    line-height: 0.8;
    font-weight: 900;
    color: #059669;
    margin-left: 1rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #ecfdf5;
    border-radius: 1rem;
    border: 2px solid #a7f3d0;
}

.article-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to left, #064e3b, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    border-right: 5px solid #fbbf24;
    padding-right: 1.5rem;
}

.article-content h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content h3::before {
    content: '•';
    color: #fbbf24;
    font-size: 2rem;
    line-height: 0;
}

.article-content blockquote {
    position: relative;
    background: #f8fafc;
    border-right: 6px solid #10b981;
    padding: 3rem 2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.5rem;
    border-radius: 1rem;
    color: #065f46;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.article-content blockquote::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 2.5rem;
    color: #10b981;
    background: #fff;
    padding: 0 10px;
    border-radius: 50%;
}

.article-content img {
    border-radius: 2rem;
    margin: 3rem 0;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.article-content img:hover {
    transform: scale(1.02);
}

.article-content ul {
    list-style: none;
    padding-right: 0;
    margin-bottom: 2rem;
}

.article-content li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-right: 2rem;
}

.article-content li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: #10b981;
}

#reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to left, #10b981, #fbbf24);
    z-index: 100;
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 0 0 5px 0;
}

.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}