/* CSS Design System - Samruk Monitoring Landing Page */

:root {
    --bg-dark: #07090e;
    --card-bg: rgba(15, 22, 36, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.5);
    --secondary: #3b82f6;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glass-grad: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Beautiful Glowing Circles in Background */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-1 {
    background: radial-gradient(circle, var(--primary) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    left: -150px;
}

.glow-2 {
    background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
    top: 500px;
    right: -200px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    background: rgba(7, 9, 14, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .icon {
    font-size: 24px;
}

.logo .brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo .highlight {
    color: var(--primary);
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-nav {
    background: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.btn-nav:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 16px 36px;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.4);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(29, 78, 216, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--card-border);
    padding: 16px 36px;
    font-size: 16px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.hero-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 36px;
    letter-spacing: 6px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #60a5fa 20%, #2563eb 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mockup Showcase Section */
.mockup-section {
    padding: 80px 8%;
    background: radial-gradient(ellipse at bottom, rgba(15, 23, 42, 0.6) 0%, rgba(7, 9, 14, 0) 70%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Telegram Mockup Design (High-End Styling) */
.telegram-mockup {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(13, 17, 28, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}

.mockup-header {
    background: rgba(18, 24, 38, 0.9);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.mockup-title {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 10px;
    font-weight: 500;
}

.mockup-content {
    padding: 24px;
}

.telegram-message {
    display: flex;
    gap: 16px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(29, 78, 216, 0.3);
}

.message-body {
    flex: 1;
}

.message-sender {
    font-weight: 700;
    font-size: 15px;
    color: #60a5fa;
    margin-bottom: 6px;
}

.bot-badge {
    background: rgba(96, 165, 250, 0.15);
    color: #93c5fd;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 6px;
}

.message-text {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.message-text p {
    margin-bottom: 8px;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: #eab308;
    font-weight: 700;
}

.price-text {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.status-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.message-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.msg-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(43, 82, 120, 0.3);
    border: 1px solid rgba(43, 82, 120, 0.5);
    color: #8cc2f2;
    padding: 10px 14px;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.msg-btn:hover {
    background: rgba(43, 82, 120, 0.5);
    color: #fff;
}

.msg-btn.primary {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.5);
    color: #93c5fd;
}

.msg-btn.primary:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

/* Features Grid */
.features {
    padding: 80px 8%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 8%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
}

.faq-question {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 15px;
}

/* Footer styling */
footer {
    padding: 60px 8%;
    border-top: 1px solid var(--card-border);
    text-align: center;
    background: rgba(5, 7, 10, 0.95);
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 13px;
}

/* ==========================================================================
   Interactive Infographics Dashboard Styles (Rule of Thirds)
   ========================================================================== */
.dashboard-section {
    padding: 100px 8%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, rgba(7, 9, 14, 0) 80%);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

/* Metric Cards Layout */
.metrics-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.metric-value.price {
    color: var(--accent);
}

.metric-subtext {
    font-size: 12px;
    color: var(--text-muted);
}

/* Chart Cards */
.chart-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 480px;
    box-sizing: border-box;
}

.chart-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 14px;
}

.chart-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #3b82f6;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.chart-toggle-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.toggle-btn:hover:not(.active) {
    color: var(--text-main);
}

.chart-container {
    height: 350px;
    position: relative;
    width: 100%;
}

/* Side Panel Doughnut Details */
.doughnut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doughnut-container {
    height: 180px;
    width: 180px;
    position: relative;
    margin: 10px 0;
}

.doughnut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-label {
    color: var(--text-muted);
    flex: 1;
}

.legend-pct {
    font-weight: 700;
    color: var(--text-main);
}

/* Live Feed / Parser Parser Live Log */
.feed-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 480px;
    box-sizing: border-box;
    overflow: hidden;
}

.feed-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: hidden;
    height: 380px;
}

.feed-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInSlide 0.4s ease-out forwards;
}

.feed-badge-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.feed-item.goods .feed-badge {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.feed-item.works .feed-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.feed-item.services .feed-badge {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.feed-time {
    font-size: 11px;
    color: var(--text-muted);
}

.feed-title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.feed-customer {
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.feed-price {
    font-weight: 700;
    color: var(--accent);
}

/* Green Live Pulsing Dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.6s infinite;
}

/* Glow Background 3 */
.glow-3 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: 1200px;
    left: 20%;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Interactive ENSTRU Search Section */
.enstru-section {
    padding: 80px 8%;
    background: radial-gradient(ellipse at top, rgba(30, 41, 59, 0.2) 0%, rgba(7, 9, 14, 0) 80%);
}

.enstru-search-box {
    max-width: 1200px;
    margin: 40px auto 0;
}

.search-input-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto 40px;
}

#enstru-input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--text-main);
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

#enstru-input:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.25), inset 0 0 10px rgba(37, 99, 235, 0.1);
    background: rgba(30, 41, 59, 0.65);
}

.search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.6;
    pointer-events: none;
}

.clear-btn {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 0;
    line-height: 1;
}

.clear-btn:hover {
    opacity: 1;
    color: var(--text-main);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}

/* ENSTRU Card */
.enstru-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enstru-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.55);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(37, 99, 235, 0.1);
}

.enstru-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.enstru-card:hover::before {
    transform: translateX(100%);
}

.card-badge {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.badge-goods {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.badge-works {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.badge-services {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.card-code {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.card-name {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    font-weight: 600;
    font-size: 13px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    cursor: pointer;
}

.enstru-card:hover .card-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.card-btn:hover {
    transform: scale(1.02);
}

/* Loading & Empty states */
.search-loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 15px;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.search-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    background: rgba(30, 41, 59, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.search-empty p {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.search-empty span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 5%;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-brand {
        font-size: 26px;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .metrics-bar {
        grid-template-columns: 1fr;
    }
}
