/* ═══════════════════════════════════════════════
   TABMON · Custom CSS  — Deep Ocean Design System
   ═══════════════════════════════════════════════ */

/* ─── ANTIALIASING ─── */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* ─── STAT / METRIC CARDS (homepage numbers) ─── */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.stat-card {
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    color: white;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #06B6D4, #10B981);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #06B6D4;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ─── CTA / LINK HIGHLIGHT BOXES ─── */
.cta-box {
    display: block;
    background: linear-gradient(135deg, #F0F9FF, #ECFEFF);
    border: 2px solid rgba(6, 182, 212, 0.25);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    margin: 1.75rem 0;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none !important;
}

.cta-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.18);
    border-color: rgba(6, 182, 212, 0.5);
}

.cta-box strong {
    display: block;
    font-size: 1.15rem;
    color: #0891B2;
    margin-bottom: 0.3rem;
}

.cta-box em {
    color: #475569;
    font-style: normal;
    font-size: 0.9rem;
}

/* ─── FEATURE / INFO CARDS ─── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 1.75rem 0;
}

.feature-card {
    background: #fff;
    border: 1px solid #E0F2FE;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(10, 25, 47, 0.07);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06B6D4, #10B981);
    opacity: 0;
    transition: opacity 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.14);
    border-color: #BAE6FD;
}

.feature-card:hover::after {
    opacity: 1;
}

/* ─── ALERT / INFO BOXES ─── */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.alert-info {
    background: #F0F9FF;
    border-left-color: #0891B2;
    color: #0C4A6E;
}

.alert-success {
    background: #F0FDF4;
    border-left-color: #059669;
    color: #064E3B;
}

.alert-warning {
    background: #FFFBEB;
    border-left-color: #F59E0B;
    color: #78350F;
}

/* ─── TABLES ─── */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 25, 47, 0.08);
    border: 1px solid #E0F2FE;
}

th {
    background: linear-gradient(135deg, #0A192F, #112240);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E0F2FE;
}

tr:nth-child(even) {
    background: #F8FBFF;
}

tr:hover {
    background: #EFF8FF;
}

/* ─── IMAGES ─── */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(10, 25, 47, 0.1);
}

/* ─── BUTTONS ─── */
.btn,
button {
    background: linear-gradient(135deg, #0891B2, #06B6D4);
    color: white;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.btn:hover,
button:hover {
    background: linear-gradient(135deg, #0E7490, #0891B2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35);
    color: white;
    text-decoration: none;
}

/* ─── SEARCH ─── */
.search-box {
    border: 1.5px solid #BAE6FD;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.search-box:focus {
    border-color: #0891B2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}

/* ─── NAV HOVER ─── */
.nav-link:hover {
    color: #0891B2 !important;
}

/* ─── FOOTER ─── */
footer {
    margin-top: 2rem;
}

/* ─── FOCUS ─── */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid #0891B2;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ─── LISTS ─── */
ul li::marker,
ol li::marker {
    color: #0891B2;
}

/* ─── BLOCKQUOTE ─── */
blockquote {
    border-left: 4px solid #06B6D4;
    background: linear-gradient(135deg, #F0F9FF, #ECFEFF);
    padding: 1.25rem 1.75rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.08);
}

blockquote p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1e3a4f;
}

blockquote cite {
    font-style: normal;
    font-weight: 600;
    color: #0891B2;
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

blockquote cite::before {
    content: "— ";
}

/* ─── ANIMATIONS ─── */
.fade-in {
    animation: fadeIn 0.5s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── HIGHLIGHT SECTION (banner-style) ─── */
.highlight-section {
    background: linear-gradient(135deg, #0A192F, #0E7490);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-section h2,
.highlight-section h3 {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: none;
}

/* ─── CODE HIGHLIGHTS ─── */
.highlight pre {
    background: #0A192F !important;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight code {
    background: none !important;
    border: none !important;
    color: #E2F8FC !important;
}

/* ─── ACCESSIBILITY ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── TEAM PAGE: Original styling ─── */
.team-section {
    margin: 1.25rem 0 2rem;
}

.team-member {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0;
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.member-info h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    background: none;
    border: none;
    padding: 0;
}

.member-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
}

/* ─── FIGURE CAPTIONS ─── */
.figure-caption {
    font-size: 0.85rem;
    color: #94A3B8;
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* ─── HERO IMAGE (full-width on content pages) ─── */
.hero-image {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
    margin-bottom: 2rem;
}

/* ─── COUNTRY FLAGS ROW ─── */
.country-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.country-card {
    background: linear-gradient(135deg, #F0F9FF, #F8FAFC);
    border: 1px solid #E0F2FE;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.country-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12);
}

.country-card .flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.country-card h4 {
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: #0F172A;
}

.country-card p {
    font-size: 0.82rem;
    color: #475569;
    margin: 0;
}

/* ─── TIMELINE (for news/milestones) ─── */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #06B6D4, #10B981, #06B6D4);
    border-radius: 999px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.65rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    background: #06B6D4;
    border-radius: 50%;
    border: 3px solid #F0F9FF;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.timeline-item h4 {
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 0.25rem;
    color: #0F172A;
    font-size: 0.95rem;
}

.timeline-item .timeline-date {
    font-size: 0.78rem;
    color: #0891B2;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.timeline-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   GLOBAL OVERRIDES — Reset heading styles inside
   custom card/component containers
   ═══════════════════════════════════════════════ */
.pub-card h3,
.pub-card h4,
.resource-card h3,
.resource-card h4,
.repo-card h3,
.repo-card h4,
.country-card h3,
.country-card h4,
.resource-card-content h3,
.resource-card-content h4 {
    background: none !important;
    border: none !important;
    border-left: none !important;
    padding: 0 !important;
    margin: 0 0 0.5rem !important;
    border-radius: 0 !important;
}

.pub-card p,
.resource-card p,
.repo-card p,
.country-card p {
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════
   PUBLICATIONS PAGE — Card Layout
   ═══════════════════════════════════════════════ */

/* Section intro */
.pub-section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1E293B;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Stats bar */
.pub-stats-bar {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(16, 185, 129, 0.06));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
}

.pub-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.pub-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.pub-stat-label {
    font-size: 0.8rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Publication card */
.pub-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-radius: 12px;
    transition: all 0.25s ease;
    position: relative;
}

.pub-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pub-card.featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(15, 23, 42, 0.4));
}

.pub-card.featured:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

/* Year pill on the left */
.pub-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    min-width: 48px;
    padding-top: 0.35rem;
    flex-shrink: 0;
}

/* Content area */
.pub-content {
    flex: 1;
    min-width: 0;
}

/* Badges */
.pub-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.pub-badge.journal {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.pub-badge.preprint {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.pub-badge.talk {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.pub-badge.poster {
    background: rgba(139, 92, 246, 0.12);
    color: #A78BFA;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.pub-badge.panel {
    background: rgba(251, 113, 133, 0.12);
    color: #FB7185;
    border: 1px solid rgba(251, 113, 133, 0.25);
}

.pub-badge.press,
.pub-badge.press-nature {
    background: rgba(99, 102, 241, 0.12);
    color: #818CF8;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.pub-badge.press-nature {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.pub-badge.thesis {
    background: rgba(148, 163, 184, 0.1);
    color: #94A3B8;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.pub-badge.thesis-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Title */
.pub-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

/* Authors */
.pub-authors {
    font-size: 0.88rem;
    color: #334155;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.pub-authors a {
    color: #06B6D4;
    text-decoration: none;
}

.pub-authors a:hover {
    text-decoration: underline;
}

/* Venue */
.pub-venue {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.pub-venue a {
    color: #06B6D4;
    text-decoration: none;
}

.pub-venue a:hover {
    text-decoration: underline;
}

/* Links */
.pub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #06B6D4 !important;
    text-decoration: none !important;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.pub-link:hover {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.35);
    transform: translateX(3px);
}

.pub-link svg {
    flex-shrink: 0;
}

/* CTA at bottom */
.pub-cta {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 16px;
    color: #334155;
    font-size: 1rem;
}

.pub-cta a {
    color: #06B6D4;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 640px) {
    .pub-card {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pub-year {
        font-size: 0.75rem;
    }

    .pub-stats-bar {
        gap: 1rem;
        padding: 1rem;
    }

    .pub-stat-num {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════
   RESOURCES PAGE — Cards & Grid Layout
   ═══════════════════════════════════════════════ */

/* Resource platform cards (Dashboard + Listening Lab) */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.resource-card {
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.12);
    background: rgba(6, 182, 212, 0.03);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.resource-card--dashboard {
    border-color: rgba(6, 182, 212, 0.2);
}

.resource-card--dashboard:hover {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.06);
}

.resource-card--lab {
    border-color: rgba(16, 185, 129, 0.2);
}

.resource-card--lab:hover {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.06);
}

.resource-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.08);
}

.resource-card--lab .resource-card-icon {
    background: rgba(16, 185, 129, 0.08);
}

.resource-card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.5rem;
}

.resource-card-content>p {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.resource-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.resource-features li {
    font-size: 0.88rem;
    color: #475569;
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
    line-height: 1.5;
}

.resource-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06B6D4;
}

.resource-card--lab .resource-features li::before {
    background: #10B981;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0891B2 !important;
    text-decoration: none !important;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.2s ease;
}

.resource-card--lab .resource-link {
    color: #059669 !important;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.resource-link:hover {
    background: rgba(6, 182, 212, 0.18);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateX(3px);
}

.resource-card--lab .resource-link:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Repository cards */
.repo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.repo-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.03);
    transition: all 0.25s ease;
}

.repo-card:hover {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.repo-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.repo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    flex: 1;
}

.repo-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    background: rgba(6, 182, 212, 0.1);
    color: #0891B2;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.repo-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Data integration badges */
.data-integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.data-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.12);
    background: rgba(6, 182, 212, 0.03);
    transition: all 0.2s ease;
}

.data-badge:hover {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.06);
}

.data-badge strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    color: #0F172A;
    margin-bottom: 0.3rem;
}

.data-badge span {
    font-size: 0.82rem;
    color: #64748B;
}

/* Responsive */
@media (max-width: 640px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        flex-direction: column;
        gap: 1rem;
    }

    .repo-grid {
        grid-template-columns: 1fr;
    }

    .data-integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
}