/* BengalCloud Status Center v5 */
:root {
    --font: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1080px;

    --orange: #ef8100;
    --orange-dark: #d47200;
    --orange-glow: rgba(239, 129, 0, 0.18);
    --green: #16a34a;
    --green-light: #22c55e;
    --red: #dc2626;
    --red-light: #ef4444;
    --amber: #d97706;
    --amber-light: #f59e0b;
    --blue: #2563eb;
    --blue-light: #3b82f6;

    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;

    --shadow-sm: 0 1px 3px rgba(2, 6, 23, 0.12), 0 1px 2px rgba(2, 6, 23, 0.08);
    --shadow: 0 4px 16px rgba(2, 6, 23, 0.18), 0 1px 4px rgba(2, 6, 23, 0.1);
    --shadow-lg: 0 20px 60px rgba(2, 6, 23, 0.28);
}

/* ── DARK THEME ── */
html[data-theme="dark"] {
    --bg: #0a0f1e;
    --bg-soft: #0d1526;
    --bg-alt: #111c31;
    --surface: #14213d;
    --surface-soft: #1a2a45;
    --surface-hover: #1f3050;
    --border: rgba(148, 163, 184, 0.14);
    --border-soft: rgba(148, 163, 184, 0.09);
    --border-strong: rgba(148, 163, 184, 0.22);
    --text: #f1f5f9;
    --text-soft: #e2e8f0;
    --muted: #7c8db0;
    --muted-strong: #a0b0c8;
    --header-bg: rgba(10, 15, 30, 0.88);
    --uptime-empty: rgba(148, 163, 184, 0.12);
}

/* ── LIGHT THEME ── */
html[data-theme="light"] {
    --bg: #f6f9fc;
    --bg-soft: #edf2f7;
    --bg-alt: #e8eef5;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --surface-hover: #eaf0f8;
    --border: rgba(15, 23, 42, 0.1);
    --border-soft: rgba(15, 23, 42, 0.07);
    --border-strong: rgba(15, 23, 42, 0.16);
    --text: #0f172a;
    --text-soft: #1e293b;
    --muted: #64748b;
    --muted-strong: #475569;
    --header-bg: rgba(255, 255, 255, 0.9);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
    --uptime-empty: rgba(15, 23, 42, 0.08);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute; top: -80px; left: 16px; z-index: 200;
    background: var(--orange); color: #fff;
    padding: 10px 16px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.9rem;
}
.skip-link:focus { top: 16px; }

/* ── HEADER ── */
.header {
    position: sticky; top: 0; z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    height: 68px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
}

/* Brand */
.brand {
    display: inline-flex; align-items: center;
    gap: 12px; min-width: 0; flex-shrink: 0;
}
.brand__logo { display: block; width: 142px; height: auto; object-fit: contain; }
html[data-theme="dark"] .brand__logo--light,
html[data-theme="light"] .brand__logo--dark { display: none; }
.brand__divider {
    width: 1px; height: 22px;
    background: var(--border-strong); flex-shrink: 0;
}
.brand__label {
    color: var(--muted); font-weight: 700;
    font-size: 0.85rem; white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Nav */
.nav {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.88rem; font-weight: 600;
}
.nav a {
    color: var(--muted); padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--text); background: var(--surface-soft); }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 8px; }

.refresh-chip {
    height: 34px; display: inline-flex; align-items: center; gap: 5px;
    padding: 0 13px; border-radius: 999px;
    font-size: 0.82rem; font-weight: 600; white-space: nowrap;
    background: var(--surface-soft); border: 1px solid var(--border);
    color: var(--muted);
}
.refresh-chip strong { color: var(--orange); }

.theme-toggle, .refresh-button {
    height: 34px; display: inline-flex; align-items: center;
    justify-content: center; border-radius: 999px;
    font-size: 0.84rem; font-weight: 700; cursor: pointer;
    transition: all 0.15s ease; border: 1px solid var(--border);
    background: var(--surface); color: var(--text);
    white-space: nowrap; padding: 0 14px;
}
.theme-toggle { gap: 6px; }
.theme-toggle:hover, .refresh-button:hover { border-color: rgba(239,129,0,0.4); }
.refresh-button {
    background: var(--orange); border-color: var(--orange); color: #fff;
}
.refresh-button:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.refresh-button.is-loading { opacity: 0.65; pointer-events: none; }

/* ── STATUS BANNER ── */
.status-banner {
    border-bottom: 1px solid var(--border-soft);
}
.status-banner--operational { background: rgba(22, 163, 74, 0.08); border-bottom-color: rgba(22, 163, 74, 0.2); }
.status-banner--degraded    { background: rgba(239, 129, 0, 0.09); border-bottom-color: rgba(239, 129, 0, 0.24); }
.status-banner--partial_outage { background: rgba(217, 119, 6, 0.1); border-bottom-color: rgba(217, 119, 6, 0.25); }
.status-banner--major_outage   { background: rgba(220, 38, 38, 0.09); border-bottom-color: rgba(220, 38, 38, 0.22); }
.status-banner--maintenance    { background: rgba(37, 99, 235, 0.08); border-bottom-color: rgba(37, 99, 235, 0.2); }
.status-banner--unknown        { background: var(--surface-soft); }

.status-banner__inner {
    min-height: 52px; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding: 10px 0;
}
.status-banner__left { display: flex; align-items: center; gap: 10px; }
.status-banner__text {
    font-size: 0.9rem; font-weight: 700; color: var(--text-soft);
}
.status-banner__time { font-size: 0.82rem; color: var(--muted); }
.status-banner__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.subscribe-btn {
    height: 32px; display: inline-flex; align-items: center; gap: 6px;
    padding: 0 14px; border-radius: 999px; border: 1px solid var(--border-strong);
    background: var(--surface); color: var(--text); font-size: 0.82rem;
    font-weight: 700; cursor: pointer; transition: all 0.15s;
    font-family: var(--font);
}
.subscribe-btn:hover { border-color: var(--orange); color: var(--orange); }
.subscribe-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── MAIN LAYOUT ── */
.main { padding: 40px 0 80px; }

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px; align-items: start; margin-bottom: 18px;
}

.hero__content {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 36px 40px;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 8px; color: var(--orange);
    text-transform: uppercase; letter-spacing: 0.1em;
    font-size: 0.72rem; font-weight: 800;
}

h1 {
    margin: 0; font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05; letter-spacing: -0.04em; font-weight: 800;
    overflow-wrap: anywhere;
}

.hero__text {
    margin: 14px 0 0; color: var(--muted-strong);
    font-size: 0.98rem; max-width: 520px;
}

/* Overall card */
.overall-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 26px 28px;
    box-shadow: var(--shadow); display: flex;
    flex-direction: column; gap: 0;
}
.overall-card__top {
    display: flex; align-items: center; gap: 8px;
    color: var(--muted); font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.overall-card__status {
    display: block; font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1; letter-spacing: -0.04em; font-weight: 800;
}
.overall-card__meta {
    margin: 10px 0 0; color: var(--muted); font-size: 0.84rem;
}
.overall-card__divider {
    height: 1px; background: var(--border-soft);
    margin: 18px 0;
}
.overall-card__stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.overall-stat {
    background: var(--surface-soft); border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm); padding: 12px 14px;
}
.overall-stat__label {
    font-size: 0.76rem; color: var(--muted);
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
}
.overall-stat__value {
    display: block; font-size: 1.5rem; font-weight: 800;
    letter-spacing: -0.04em; margin-top: 4px; line-height: 1;
}
.overall-stat--operational .overall-stat__value { color: var(--green-light); }
.overall-stat--issues .overall-stat__value { color: var(--orange); }

/* ── STATUS DOTS ── */
.status-dot {
    width: 10px; height: 10px; display: inline-block;
    border-radius: 999px; flex-shrink: 0;
    background: var(--muted);
}
.status-dot--operational  { background: var(--green-light); box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.status-dot--degraded     { background: var(--orange);      box-shadow: 0 0 0 3px rgba(239,129,0,0.18); }
.status-dot--partial_outage { background: var(--amber-light); box-shadow: 0 0 0 3px rgba(245,158,11,0.18); }
.status-dot--major_outage { background: var(--red-light);   box-shadow: 0 0 0 3px rgba(239,68,68,0.18); }
.status-dot--maintenance  { background: var(--blue-light);  box-shadow: 0 0 0 3px rgba(59,130,246,0.18); }
.status-dot--unknown      { background: var(--muted);       box-shadow: 0 0 0 3px rgba(148,163,184,0.14); }

/* Large pulsing dot for banner */
.status-dot--lg {
    width: 13px; height: 13px;
}
.status-dot--operational.status-dot--pulse {
    animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50%       { box-shadow: 0 0 0 7px rgba(34,197,94,0.08); }
}

/* ── BADGES ── */
.badge {
    min-height: 26px; display: inline-flex; align-items: center;
    justify-content: center; padding: 0 10px;
    border-radius: 999px; font-size: 0.78rem; font-weight: 800;
    border: 1px solid transparent; white-space: nowrap;
    letter-spacing: 0.01em;
}
.badge--operational   { color: #15803d; background: rgba(34,197,94,0.12);  border-color: rgba(34,197,94,0.25); }
.badge--degraded      { color: #c45d00; background: rgba(239,129,0,0.12);  border-color: rgba(239,129,0,0.28); }
.badge--partial_outage{ color: #92400e; background: rgba(245,158,11,0.13); border-color: rgba(245,158,11,0.28); }
.badge--major_outage  { color: #991b1b; background: rgba(239,68,68,0.12);  border-color: rgba(239,68,68,0.26); }
.badge--maintenance   { color: #1e40af; background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.24); }
.badge--resolved, .badge--unknown {
    color: var(--muted-strong); background: rgba(148,163,184,0.12);
    border-color: rgba(148,163,184,0.22);
}
html[data-theme="dark"] .badge--operational  { color: #86efac; }
html[data-theme="dark"] .badge--degraded     { color: #fdba74; }
html[data-theme="dark"] .badge--partial_outage { color: #fcd34d; }
html[data-theme="dark"] .badge--major_outage { color: #fca5a5; }
html[data-theme="dark"] .badge--maintenance  { color: #93c5fd; }

/* ── INCIDENT NOTICE ── */
.notice {
    border-radius: var(--radius-lg); padding: 16px 20px;
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 18px;
    background: rgba(239,129,0,0.1); border: 1px solid rgba(239,129,0,0.28);
}
.notice--hidden { display: none; }
.notice__icon {
    width: 26px; height: 26px; display: inline-grid;
    place-items: center; flex: 0 0 auto; border-radius: 999px;
    background: var(--orange); color: #fff;
    font-weight: 900; font-size: 0.85rem;
}
.notice strong { display: block; margin-bottom: 2px; font-size: 0.94rem; }
.notice p { margin: 0; color: var(--muted-strong); font-size: 0.88rem; }

/* ── PANELS ── */
.panel {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow); margin-top: 18px;
}
.panel__header {
    min-height: 72px; padding: 20px 24px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    border-bottom: 1px solid var(--border-soft);
}
.panel__header h2 {
    margin: 0; font-size: 1.2rem; letter-spacing: -0.025em;
    font-weight: 800; overflow-wrap: anywhere;
}
.panel__meta {
    margin: 0; color: var(--muted); font-weight: 600;
    font-size: 0.85rem; text-align: right; flex-shrink: 0;
}

/* ── SERVICE LIST ── */
.service-list { display: grid; }

.service-group + .service-group {
    border-top: 1px solid var(--border-soft);
}

.service-group__head {
    width: 100%; border: 0; background: transparent;
    color: var(--text); padding: 18px 24px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 14px; align-items: center;
    cursor: pointer; text-align: left;
    transition: background 0.14s;
}
.service-group__head:hover {
    background: var(--surface-hover);
}
.service-group__left {
    display: flex; align-items: center; gap: 12px; min-width: 0;
}
.service-group__name  { display: block; font-weight: 800; font-size: 0.97rem; }
.service-group__count { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.service-group__right { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }

.chevron {
    width: 18px; height: 18px; display: inline-flex;
    align-items: center; justify-content: center;
    color: var(--muted); transition: transform 0.2s ease;
    font-style: normal;
}
.service-group__head[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.service-group__body {
    border-top: 1px solid var(--border-soft);
    background: var(--bg-soft);
}
.service-group__body[hidden] { display: none; }

.service-row {
    min-height: 58px; padding: 13px 24px 13px 52px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 14px; align-items: center;
    transition: background 0.12s;
}
.service-row:hover { background: color-mix(in srgb, var(--surface-soft) 60%, transparent); }
.service-row + .service-row { border-top: 1px solid var(--border-soft); }
.service-row__name  { font-weight: 600; font-size: 0.92rem; }
.service-row__time  {
    display: block; margin-top: 3px;
    color: var(--muted); font-size: 0.8rem;
}

/* ── UPTIME BAR ── */
.uptime-bar-wrap {
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border-soft);
    background: var(--bg-soft);
}
.uptime-bar-wrap--group {
    padding: 18px 24px; background: transparent;
    border-top: none; border-bottom: 1px solid var(--border-soft);
}
.uptime-bar-label {
    display: flex; justify-content: space-between;
    align-items: baseline; margin-bottom: 8px;
}
.uptime-bar-label span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.uptime-bar-label strong { font-size: 0.82rem; color: var(--muted-strong); font-weight: 700; }

.uptime-bar {
    display: flex; gap: 2px; height: 28px;
    align-items: stretch;
}
.uptime-bar__day {
    flex: 1; border-radius: 3px; min-width: 3px;
    background: var(--uptime-empty);
    transition: opacity 0.15s;
    position: relative; cursor: default;
}
.uptime-bar__day--operational  { background: var(--green-light); }
.uptime-bar__day--degraded     { background: var(--orange); }
.uptime-bar__day--partial_outage { background: var(--amber-light); }
.uptime-bar__day--major_outage { background: var(--red-light); }
.uptime-bar__day--maintenance  { background: var(--blue-light); }
.uptime-bar__day--no_data      { background: var(--uptime-empty); }
.uptime-bar__day:hover         { opacity: 0.72; }

.uptime-bar__day[title]:hover::after {
    content: attr(title);
    position: absolute; bottom: calc(100% + 6px);
    left: 50%; transform: translateX(-50%);
    background: var(--bg-alt); border: 1px solid var(--border);
    color: var(--text); font-size: 0.74rem; font-weight: 600;
    white-space: nowrap; padding: 4px 8px;
    border-radius: var(--radius-xs); pointer-events: none;
    z-index: 20; box-shadow: var(--shadow-sm);
}

.uptime-bar-footer {
    display: flex; justify-content: space-between;
    margin-top: 6px;
}
.uptime-bar-footer span { font-size: 0.74rem; color: var(--muted); }

/* ── GRID 2 ── */
.grid-2 {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ── ITEM CARDS (incidents / maintenance) ── */
.item-list, .history-list {
    display: grid; gap: 10px; padding: 16px;
}

.item-card, .history-item {
    border: 1px solid var(--border-soft);
    background: var(--surface-soft);
    border-radius: var(--radius-md);
}
.item-card { padding: 16px; }
.item-card__head {
    display: flex; justify-content: space-between;
    gap: 10px; align-items: flex-start; margin-bottom: 8px;
}
.item-card h3, .history-item h3 {
    margin: 0; font-size: 0.94rem;
    letter-spacing: -0.01em; font-weight: 700;
    overflow-wrap: anywhere;
}
.item-card p, .history-item p {
    margin: 4px 0 0; color: var(--muted); font-size: 0.84rem;
}
.item-card__affected {
    margin: 8px 0 0; font-size: 0.82rem;
    color: var(--muted-strong); display: flex;
    align-items: center; gap: 5px; flex-wrap: wrap;
}
.item-card__tag {
    display: inline-block; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius-xs);
    padding: 1px 7px; font-size: 0.76rem; font-weight: 600;
    color: var(--muted-strong);
}

.history-item {
    padding: 15px 16px;
    display: grid; grid-template-columns: minmax(0,1fr) auto;
    gap: 12px; align-items: start;
}
.history-item__duration {
    font-size: 0.78rem; color: var(--muted);
    margin-top: 5px;
}

/* Empty state */
.empty-state {
    text-align: center; padding: 28px 20px;
    color: var(--muted); font-size: 0.9rem;
    border: 1px dashed var(--border); border-radius: var(--radius-md);
}
.empty-state__icon {
    font-size: 1.6rem; display: block; margin-bottom: 8px;
}

/* Skeleton */
.skeleton-list { padding: 20px; display: grid; gap: 10px; }
.skeleton-list span {
    display: block; height: 56px; border-radius: var(--radius-md);
    background: linear-gradient(90deg,
        rgba(148,163,184,0.07),
        rgba(148,163,184,0.16),
        rgba(148,163,184,0.07));
    background-size: 200% 100%;
    animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── FOOTER ── */
.footer {
    border-top: 1px solid var(--border-soft);
    background: var(--header-bg);
    backdrop-filter: blur(16px);
}
.footer__inner {
    min-height: 70px; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    color: var(--muted); font-size: 0.85rem; flex-wrap: wrap;
    padding: 14px 0;
}
.footer__links { display: flex; align-items: center; gap: 20px; }
.footer__links a { color: var(--muted); transition: color 0.14s; font-weight: 600; font-size: 0.84rem; }
.footer__links a:hover { color: var(--orange); }
.footer strong { color: var(--text-soft); }

/* ── MODAL (subscribe) ── */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: grid; place-items: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s;
}
.modal-backdrop.is-open {
    opacity: 1; pointer-events: all;
}
.modal {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 32px;
    width: min(100%, 420px); box-shadow: var(--shadow-lg);
    transform: translateY(12px);
    transition: transform 0.22s ease;
}
.modal-backdrop.is-open .modal { transform: translateY(0); }
.modal__head {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 12px; margin-bottom: 20px;
}
.modal__head h2 { margin: 0; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.025em; }
.modal__close {
    background: var(--surface-soft); border: 1px solid var(--border);
    border-radius: 999px; width: 30px; height: 30px;
    display: grid; place-items: center; cursor: pointer;
    color: var(--muted); font-size: 1rem; flex-shrink: 0;
    transition: all 0.14s;
}
.modal__close:hover { color: var(--text); border-color: var(--border-strong); }
.modal p { margin: 0 0 18px; color: var(--muted-strong); font-size: 0.9rem; }
.modal__form { display: flex; flex-direction: column; gap: 10px; }
.modal__input {
    width: 100%; height: 42px; padding: 0 14px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--surface-soft); color: var(--text);
    font-family: var(--font); font-size: 0.9rem;
    transition: border-color 0.15s; outline: none;
}
.modal__input:focus { border-color: var(--orange); }
.modal__submit {
    height: 42px; background: var(--orange); border: none;
    border-radius: var(--radius-sm); color: #fff;
    font-family: var(--font); font-size: 0.9rem; font-weight: 700;
    cursor: pointer; transition: background 0.15s;
}
.modal__submit:hover { background: var(--orange-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .nav { display: none; }
    .hero { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .container { width: min(100% - 28px, var(--container)); }

    .header__inner {
        height: auto; padding: 12px 0;
        flex-wrap: wrap; gap: 10px;
    }
    .brand { width: 100%; }
    .brand__logo { width: 132px; }
    .header__actions { width: 100%; justify-content: space-between; }
    .refresh-chip { flex: 1; }
    .theme-toggle__text { display: none; }

    .hero__content { padding: 24px; }
    h1 { font-size: clamp(2rem, 12vw, 2.8rem); }

    .panel__header { flex-direction: column; align-items: flex-start; }
    .panel__meta { text-align: left; }

    .service-group__head,
    .service-row,
    .history-item {
        grid-template-columns: 1fr;
    }
    .service-row { padding-left: 24px; }

    .uptime-bar { height: 22px; }

    .footer__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer__links { flex-wrap: wrap; gap: 14px; }

    .status-banner__inner { flex-wrap: wrap; gap: 8px; }
}

/* ── UTILITIES ── */
h2, h3, p { overflow-wrap: anywhere; }
