:root {
    --accent: #0ea5e9;
    --accent-strong: #0284c7;
    --accent-soft: #e0f2fe;
    --bg: #f3f6fb;
    --surface: #ffffff;
    --surface-strong: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --warning: #f59e0b;
    --danger: #dc2626;
    --success: #22c55e;
    --shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    --radius: 20px;
    --panel-pad: clamp(0.72rem, 0.35vw + 0.72rem, 0.95rem);
    --font-base: clamp(13px, 0.25vw + 12px, 15px);
    --font-small: clamp(12px, 0.18vw + 11px, 14px);
    --font-large: clamp(15px, 0.4vw + 14px, 18px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: linear-gradient(160deg, #ffffff 0%, #eef2f7 100%);
    color: var(--text);
    min-height: 100vh;
    font-size: var(--font-base);
    line-height: 1.55;
}

.bg-aurora {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.14), transparent 32%),
        radial-gradient(circle at 78% 10%, rgba(14, 165, 233, 0.1), transparent 26%),
        radial-gradient(circle at 50% 80%, rgba(34, 197, 94, 0.08), transparent 30%);
    z-index: 0;
    pointer-events: none;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(1400px, 94vw);
    margin: 0 auto;
    padding: clamp(0.8rem, 0.8vw + 0.65rem, 1.25rem) clamp(1rem, 1vw + 0.8rem, 2rem) 1.2rem;
}

.panel {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: var(--panel-pad);
    margin-bottom: clamp(0.6rem, 0.35vw + 0.5rem, 1rem);
}

.hero {
    padding: var(--panel-pad);
    margin-top: 0;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.5rem, 0.7vw, 1rem);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__content {
        grid-template-columns: 1.4fr 0.8fr;
    }
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-strong);
    font-weight: 700;
    font-size: 0.72rem;
}

.hero__title {
    font-family: "Space Grotesk", "Plus Jakarta Sans", system-ui, sans-serif;
    letter-spacing: -0.02em;
    font-size: clamp(1.05rem, 0.6vw + 0.92rem, 1.35rem);
    margin: 0;
}
.hero__title-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.hero__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.25), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 18px rgba(15, 23, 42, 0.08);
}
.hero__icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent-strong);
}

.hero__lead {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.25;
}

.hero__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: clamp(0.45rem, 0.6vw, 0.95rem);
    align-items: center;
    justify-content: flex-start;
}
.hero__meta--right {
    justify-content: flex-end;
    gap: 0.5rem;
}

.meta-card {
    background: linear-gradient(135deg, #f9fbff, #ffffff);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 0.55rem 0.68rem;
    min-width: 140px;
    box-shadow: 0 5px 11px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.meta-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meta-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.64rem;
    color: var(--muted);
    font-weight: 700;
}

.meta-sublabel {
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 600;
}

.section {
    backdrop-filter: blur(2px);
}

.section__header {
    margin-bottom: 0.4rem;
}

.section__title {
    font-size: clamp(1rem, 0.45vw + 0.95rem, 1.25rem);
    letter-spacing: -0.01em;
    font-weight: 700;
    margin: 0.12rem 0 0.18rem;
}

.section__lead {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.26rem 0.7rem;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    white-space: nowrap;
}

.pill--muted {
    background: var(--surface-strong);
    color: var(--muted);
    border-color: rgba(15, 23, 42, 0.07);
}

.pill--accent {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.35);
}

.pill--positive {
    background: #ecfdf3;
    color: var(--success);
    border-color: rgba(34, 197, 94, 0.25);
}

.pill--warning {
    background: #fff7ed;
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.35);
}

.pill--danger {
    background: #fef2f2;
    color: var(--danger);
    border-color: rgba(220, 38, 38, 0.35);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.chip--muted {
    background: var(--surface-strong);
    color: var(--muted);
    border-color: rgba(15, 23, 42, 0.08);
}

.chip--accent {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.28);
    border-color: transparent;
}

.chip--warning {
    background: #fff7ed;
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.35);
}

.chip--danger {
    background: #fef2f2;
    color: var(--danger);
    border-color: rgba(220, 38, 38, 0.35);
}

.chip--positive {
    background: #ecfdf3;
    color: var(--success);
    border-color: rgba(34, 197, 94, 0.25);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1.1;
    font-size: 0.72rem;
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #ecfdf3;
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-flex;
    background: #cbd5e1;
    position: relative;
}

.status-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.18;
}

.status-pill #statusIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    line-height: 1;
}

.status-pill.connected {
    background: #ecfdf3;
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--success);
}

.status-pill.connected .status-dot {
    background: var(--success);
    color: var(--success);
}

.status-pill.disconnected {
    background: #fff1f1;
    border-color: rgba(220, 38, 38, 0.25);
    color: var(--danger);
}
.status-pill.disconnected .status-dot {
    background: var(--danger);
    color: var(--danger);
}

.status-pill.loading {
    background: #fff4e5;
    border-color: rgba(245, 158, 11, 0.3);
    color: #c07a0c;
}
.status-pill.loading .status-dot {
    background: #f59e0b;
    color: #f59e0b;
}

.loading-spinner {
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-top: 2px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    width: 12px;
    height: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.last-update {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem 0;
    color: var(--muted);
    font-weight: 600;
}

.last-update .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.64rem;
}

.last-update .value {
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.metric-grid {
    margin-top: 0.35rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: clamp(0.55rem, 0.7vw, 1rem);
    align-items: stretch;
}

.power-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
    justify-content: center;
    gap: clamp(0.55rem, 0.7vw, 1rem);
    align-items: stretch;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
    justify-content: center;
    gap: clamp(0.5rem, 0.65vw, 0.95rem);
    align-items: stretch;
}

.metric-card,
.power-card {
    background: linear-gradient(150deg, #ffffff 0%, #f6f8fb 100%);
    border-radius: calc(var(--radius) - 8px);
    padding: 0.72rem 0.85rem 0.7rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.06);
    transition: transform 150ms ease, box-shadow 180ms ease, border-color 150ms ease;
}

.metric-card:hover,
.power-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.metric-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.18rem;
}

.metric-card__row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
}

.metric-card__titles {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
    flex: 1;
}

.metric-card__titles--inline {
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
}

.metric-card__titles-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.metric-card__header--balanced {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.icon-chip {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.2), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.metric-card__icon {
    font-size: 1rem;
}

.metric-card__label {
    font-size: clamp(0.84rem, 0.28vw + 0.78rem, 0.98rem);
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 0.08rem;
}

.metric-card__value {
    font-size: clamp(0.95rem, 0.45vw + 0.9rem, 1.15rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.04rem;
    text-align: right;
    white-space: nowrap;
    max-width: 92px;
    overflow: hidden;
}

.metric-card__header--balanced .metric-card__value {
    margin-bottom: 0;
}

.metric-card__subvalue {
    font-size: clamp(0.72rem, 0.24vw + 0.68rem, 0.88rem);
    color: var(--muted);
    font-weight: 600;
    margin-top: -0.12rem;
    margin-bottom: 0.24rem;
}

.metric-card__hint {
    font-size: clamp(0.68rem, 0.22vw + 0.64rem, 0.82rem);
    color: var(--muted);
    line-height: 1.2;
}

.metric-card__hint + .progress-track {
    margin-top: 0.1rem;
}

.metric-card--uptime .metric-card__value {
    font-size: clamp(0.85rem, 0.48vw + 0.84rem, 0.98rem);
    max-width: 104px;
    white-space: normal;
    line-height: 1.15;
}

.metric-card--uptime .metric-card__titles {
    gap: 0.04rem;
}

.metric-card__top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.16rem;
}

.progress-track {
    height: 5px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.14rem;
}

.metric-card__row + .progress-track {
    margin-top: 0.1rem;
}

.progress-fill {
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: width 250ms ease, background-color 150ms ease;
}

.progress-fill.warning {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.progress-fill.critical {
    background: linear-gradient(90deg, #f87171, #dc2626);
}

.metric-card.warning,
.power-card.warning {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 16px 28px rgba(245, 158, 11, 0.16);
}

.metric-card.critical,
.power-card.critical {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 16px 28px rgba(220, 38, 38, 0.18);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.34rem;
    margin-top: 0.16rem;
}

.metric-card--stat .metric-card__value {
    margin-bottom: 0.1rem;
}

.metric-card--stat .stat-grid {
    margin-top: 0.2rem;
}

.stat-grid--two {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.stat-block {
    background: var(--surface-strong);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 0.48rem 0.58rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stat-block--grow {
    flex: 1;
    min-width: 140px;
}

.stat-cluster {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.stat-block--inline {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
}

.stat-block--flush {
    padding: 0.5rem 0.66rem;
}

.stat-block--pill {
    padding: 0.42rem 0.62rem;
}

.stat-label {
    font-size: clamp(0.68rem, 0.22vw + 0.64rem, 0.84rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.stat-value {
    font-size: clamp(0.9rem, 0.3vw + 0.84rem, 1.08rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}

.stat-value.big {
    font-size: clamp(1rem, 0.35vw + 0.92rem, 1.18rem);
}

.meter {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    margin-top: 0.18rem;
}

.meter-track {
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    transition: width 220ms ease, background-color 150ms ease;
}

.meter-fill.warning {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.meter-fill.critical {
    background: linear-gradient(90deg, #f87171, #dc2626);
}

.meter-hint {
    font-size: 0.7rem;
    color: var(--muted);
}

.power-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.status-grid {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.status-item {
    background: var(--surface-strong);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.history-value {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.35;
}

.tone-good {
    color: var(--success);
    font-weight: 700;
}

.tone-warn {
    color: var(--warning);
    font-weight: 700;
}

.tone-bad {
    color: var(--danger);
    font-weight: 700;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.78rem;
    background: linear-gradient(145deg, #ffffff, #f7f9fd);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.07);
    transition: transform 150ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.service-card--empty {
    justify-content: space-between;
}

.service-status {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #cbd5e1;
    position: relative;
}

.service-status::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.12;
}

.service-meta { min-width: 0; flex: 1; }
.service-name { font-weight: 700; font-size: 0.82rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.service-state { font-size: 0.72rem; color: var(--muted); }

.service-status.bg-green-500 { color: #22c55e; background: #22c55e; }
.service-status.bg-red-500 { color: #dc2626; background: #dc2626; }
.service-status.bg-yellow-500 { color: #f59e0b; background: #f59e0b; }

.footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.72rem;
    padding: 0.5rem;
}

@media (max-width: 520px) {
    .metric-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .metric-card__row {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon titles"
            "value value";
        align-items: flex-start;
        gap: 0.35rem 0.4rem;
    }

    .metric-card__row .icon-chip { grid-area: icon; }
    .metric-card__titles { grid-area: titles; }
    .metric-card__value {
        grid-area: value;
        text-align: left;
        max-width: none;
        white-space: normal;
        line-height: 1.25;
        margin-top: 0.08rem;
    }

    .metric-card--uptime .metric-card__value {
        max-width: none;
    }

    body {
        background:
            radial-gradient(circle at 20% 8%, rgba(14, 165, 233, 0.12), transparent 40%),
            radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.1), transparent 36%),
            #eef2f7;
    }

    .page-shell {
        padding: calc(0.9rem + env(safe-area-inset-top, 0px)) clamp(0.78rem, 3vw, 1rem) 1.1rem;
    }

    .panel {
        border-radius: 18px;
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
        border: 1px solid rgba(15, 23, 42, 0.05);
    }

    .hero {
        position: sticky;
        top: clamp(0.3rem, 2vw, 0.6rem);
        z-index: 6;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(14, 165, 233, 0.1);
    }

    .hero__content { gap: 0.45rem; }
    .hero__lead { display: block; font-size: var(--font-small); }
    .hero__meta { gap: 0.4rem; }

    .meta-card {
        padding: 0.6rem 0.75rem;
        box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    }

    .metric-card,
    .power-card {
        border-radius: 18px;
    }

    .section__header { margin-bottom: 0.32rem; }
}

@media (max-width: 640px) {
    .page-shell { padding-inline: 0.85rem; }
    .panel { padding: 0.95rem; }
    .hero__meta { gap: 0.55rem; }
    .meta-card { width: 100%; }
    .status-pill { width: 100%; justify-content: center; }
    .last-update { width: 100%; justify-content: flex-start; }
}

@media (max-height: 900px) {
    :root { --panel-pad: 0.8rem; }
    .hero { padding: 0.4rem 0.6rem; }
    .metric-grid { gap: 0.45rem; }
    .power-grid { gap: 0.35rem; }
}

@media (max-height: 780px) {
    :root { --panel-pad: 0.6rem; }
    .hero { padding: 0.35rem 0.5rem; }
    .hero__lead,
    .section__lead { display: none; }
    .section__header { margin-bottom: 0.28rem; }
}

@media (min-width: 900px) {
    .page-shell { max-width: min(1420px, 94vw); }
    .panel { padding: calc(var(--panel-pad) + 0.15rem); }
    .metric-grid { gap: clamp(0.65rem, 0.6vw, 1.05rem); }
    .metric-card,
    .power-card { padding: 0.95rem 1rem 0.9rem; }
}

@media (min-width: 1040px) {
    .hero__content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 0.9rem;
        align-items: stretch;
    }
    .hero__meta {
        grid-template-columns: repeat(2, minmax(210px, 1fr));
        align-items: stretch;
    }
    .meta-card { height: 100%; }
    .metric-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 280px)); }
    .power-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 320px)); }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 300px)); }
    .panel { border-radius: 22px; }
}

@media (min-width: 1280px) {
    :root { --panel-pad: 1.05rem; }
    .page-shell {
        max-width: min(1460px, 93vw);
        padding-inline: clamp(1.2rem, 1vw + 0.8rem, 2.2rem);
    }
    .hero__title { font-size: clamp(1.18rem, 0.3vw + 1.08rem, 1.48rem); }
    .section__title { font-size: clamp(1.12rem, 0.28vw + 1.04rem, 1.38rem); }
    .metric-card__value { font-size: clamp(1.05rem, 0.26vw + 1rem, 1.3rem); }
    .metric-card__label { font-size: clamp(0.92rem, 0.2vw + 0.88rem, 1.1rem); }
    .stat-value { font-size: clamp(1rem, 0.22vw + 0.95rem, 1.22rem); }
    .stat-label { letter-spacing: 0.08em; }
    .metric-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 300px)); }
    .power-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 330px)); }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 310px)); }
}

