:root {
    --bg: #0a0b0f;
    --bg-2: #0f1117;
    --bg-3: #141720;
    --bg-panel: rgba(20, 23, 32, 0.9);
    --bg-soft: rgba(255, 255, 255, 0.035);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(0, 229, 255, 0.24);
    --accent: #00e5ff;
    --accent-2: #7b2fff;
    --text: #e8eefb;
    --text-soft: #c1cad8;
    --text-muted: #8d99af;
    --success: #17c887;
    --warning: #f7b546;
    --danger: #ff5478;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
    --gradient-main: linear-gradient(135deg, #00e5ff 0%, #7b2fff 100%);
    --nav-height: 78px;
    --transition: 0.2s ease;
    --transition-slow: 0.4s ease;
    --color-bg: #0a0b0f;
    --color-bg-2: #0f1117;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-glow: rgba(0, 229, 255, 0.25);
    --color-primary: #00e5ff;
    --color-primary-dim: rgba(0, 229, 255, 0.15);
    --color-text-light: #a8adb8;
    --color-white: #ffffff;
    --font-main: "Inter", "Segoe UI", system-ui, sans-serif;
    --font-display: "Inter", "Segoe UI", system-ui, sans-serif;
    --radius-full: 9999px;
}

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body.status-body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 10%, rgba(0, 229, 255, 0.13), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(123, 47, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #10131b 0%, #0a0b0f 32%, #0a0b0f 100%);
    position: relative;
}

body.status-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 10%, rgba(0, 0, 0, 0.85) 90%, transparent 100%);
    opacity: 0.3;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: #fff;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #0f1522;
    border: 1px solid var(--border-strong);
    color: #fff;
    z-index: 2000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

.page-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: calc(var(--nav-height) + 34px) 0 0;
    position: relative;
    z-index: 1;
}

.page-shell--nav,
.page-shell--footer {
    padding-top: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(13, 15, 22, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.28), rgba(123, 47, 255, 0.3));
}

.navbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__logo img {
    height: 40px;
    width: auto;
}

.navbar__logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--gradient-main);
    box-shadow: 0 0 26px rgba(0, 229, 255, 0.24);
    position: relative;
    flex-shrink: 0;
}

.navbar__logo-mark::before,
.navbar__logo-mark::after {
    content: "";
    position: absolute;
}

.navbar__logo-mark::before {
    inset: 9px;
    border: 1px solid rgba(255, 255, 255, 0.58);
}

.navbar__logo-mark::after {
    width: 10px;
    height: 10px;
    right: 9px;
    bottom: 9px;
    background: rgba(10, 11, 15, 0.7);
}

.navbar__logo-copy {
    display: flex;
    align-items: center;
    min-width: 0;
}

.navbar__logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.navbar__nav a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.navbar__nav a.active {
    color: var(--color-primary);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.content-grid {
    display: grid;
    gap: 22px;
    padding-bottom: 30px;
}

.hero-card,
.notice-panel,
.section-block,
.timeline-card,
.utility-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        var(--bg-panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.hero-card {
    padding: 36px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 380px;
    gap: 24px;
    border-color: var(--border-strong);
}

.hero-card__content {
    display: grid;
    gap: 18px;
}

.hero-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.eyebrow,
.stat-card__label,
.footer__col-title {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-card h1 {
    font-size: clamp(2.1rem, 5vw, 3.35rem);
    line-height: 1.02;
    max-width: 12ch;
}

.hero-card__summary {
    color: var(--text-muted);
    max-width: 64ch;
    font-size: 1rem;
}

.hero-card__meta {
    display: flex;
    align-items: center;
    gap: 10px 16px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.hero-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--text-soft);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.hero-band__item {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
    display: grid;
    gap: 8px;
}

.hero-band__item span {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-band__item strong {
    font-size: 1.1rem;
}

.hero-band__item--operational {
    border-color: rgba(23, 200, 135, 0.2);
}

.hero-band__item--degraded {
    border-color: rgba(247, 181, 70, 0.22);
}

.hero-band__item--outage {
    border-color: rgba(255, 84, 120, 0.24);
}

.hero-band__item--maintenance {
    border-color: rgba(123, 47, 255, 0.24);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.live-indicator::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.live-indicator--live {
    color: var(--success);
}

.live-indicator--cache {
    color: var(--warning);
}

.stat-card {
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        var(--bg-soft);
    min-height: 122px;
}

.stat-card strong {
    display: block;
    margin-top: 12px;
    font-size: 1.85rem;
    line-height: 1;
}

.notice-panel,
.section-block,
.timeline-card,
.utility-card {
    padding: 26px;
}

.section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.section-heading--compact h2 {
    font-size: 1.3rem;
}

.notice-list,
.timeline-list {
    display: grid;
    gap: 14px;
}

.notice-item,
.timeline-item,
.component-card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.018));
    border-radius: var(--radius-sm);
}

.notice-item,
.timeline-item {
    padding: 16px 18px;
}

.notice-item {
    display: grid;
    gap: 8px;
}

.notice-item__header,
.timeline-item__header,
.component-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.notice-item p,
.timeline-item p,
.component-card p,
.group-block__header p,
.footer__brand p,
.footer__links,
.footer__links span,
.footer__bottom,
.component-card__message {
    color: var(--text-muted);
}

.notice-item__meta,
.timeline-item__meta,
.component-card__meta {
    display: flex;
    gap: 10px 14px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.group-block {
    margin-top: 22px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
        rgba(9, 11, 18, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.group-block::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.8), rgba(123, 47, 255, 0.75));
}

.group-block__header {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.group-block__copy {
    display: grid;
    gap: 6px;
}

.group-block__header h3 {
    font-size: 1.24rem;
}

.group-block__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.group-block__stat {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 600;
}

.group-block__stat--stable {
    color: var(--success);
    border-color: rgba(23, 200, 135, 0.22);
}

.group-block__stat--active {
    color: var(--warning);
    border-color: rgba(247, 181, 70, 0.22);
}

.component-grid,
.timeline-grid {
    display: grid;
    gap: 16px;
}

.component-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.component-card {
    padding: 18px;
    display: grid;
    gap: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.component-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 229, 255, 0.22);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.component-card--degraded {
    border-color: rgba(247, 181, 70, 0.28);
}

.component-card--outage {
    border-color: rgba(255, 84, 120, 0.34);
}

.component-card--maintenance {
    border-color: rgba(123, 47, 255, 0.32);
}

.component-card__header h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.component-card__message {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.component-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mini-stat {
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
}

.mini-stat__label {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.mini-stat strong {
    font-size: 1rem;
}

.meter-block {
    display: grid;
    gap: 8px;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.trend-card {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.022);
}

.trend-bars {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: end;
    gap: 8px;
    min-height: 92px;
}

.trend-bars__item {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.trend-bars__bar {
    width: 100%;
    min-height: 14px;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, rgba(147, 160, 184, 0.7), rgba(147, 160, 184, 0.32));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.16);
}

.trend-bars__bar--low {
    background: linear-gradient(180deg, rgba(23, 200, 135, 1), rgba(23, 200, 135, 0.35));
}

.trend-bars__bar--medium {
    background: linear-gradient(180deg, rgba(247, 181, 70, 1), rgba(247, 181, 70, 0.35));
}

.trend-bars__bar--high {
    background: linear-gradient(180deg, rgba(255, 84, 120, 1), rgba(255, 84, 120, 0.35));
}

.trend-bars__bar--unknown,
.trend-bars__bar--empty {
    background: linear-gradient(180deg, rgba(147, 160, 184, 0.78), rgba(147, 160, 184, 0.24));
}

.trend-bars__label {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.meter-block__label {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.meter {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.meter__bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    min-width: 10px;
}

.meter__bar--low {
    background: linear-gradient(90deg, rgba(23, 200, 135, 0.8), rgba(23, 200, 135, 1));
}

.meter__bar--medium {
    background: linear-gradient(90deg, rgba(247, 181, 70, 0.75), rgba(247, 181, 70, 1));
}

.meter__bar--high {
    background: linear-gradient(90deg, rgba(255, 84, 120, 0.78), rgba(255, 84, 120, 1));
}

.meter__bar--unknown {
    background: linear-gradient(90deg, rgba(147, 160, 184, 0.65), rgba(147, 160, 184, 0.85));
}

.status-chip,
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.status-chip::before,
.status-pill::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 16px currentColor;
}

.status-chip--operational,
.status-chip--online {
    color: var(--success);
}

.status-chip--maintenance {
    color: #9d7cff;
}

.status-chip--degraded_performance,
.status-chip--degraded,
.status-chip--medium {
    color: var(--warning);
}

.status-chip--major_outage,
.status-chip--partial_outage,
.status-chip--offline,
.status-chip--high {
    color: var(--danger);
}

.status-chip--unknown {
    color: var(--text-muted);
}

.empty-state {
    padding: 18px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

@keyframes pulse-dot {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.footer--site {
    background: var(--color-bg-2);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 24px;
    margin-top: auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 28px;
    margin-bottom: 48px;
}

.footer__brand {
    display: grid;
    gap: 18px;
}

.footer__brand .navbar__logo {
    color: inherit;
}

.footer__brand--original {
    max-width: none;
}

.footer__col-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__brand img {
    height: 44px;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__links a,
.footer__bottom a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer__links a:hover,
.footer__bottom a:hover {
    color: var(--accent);
}

.footer__links--static span {
    display: block;
}

.footer__bottom {
    padding: 24px 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}

.btn-primary:hover {
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0, 229, 255, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.utility-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.utility-card {
    width: min(640px, 100%);
    display: grid;
    gap: 14px;
}

@media (max-width: 1080px) {
    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 980px) {
    .navbar {
        height: auto;
    }

    .navbar__inner {
        min-height: var(--nav-height);
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .navbar__nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .page-shell {
        padding-top: 148px;
    }

    .timeline-grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .group-block__header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 18px, 1280px);
        padding-top: 156px;
    }

    .hero-card,
    .notice-panel,
    .section-block,
    .timeline-card,
    .utility-card {
        padding: 18px;
    }

    .hero-stats,
    .component-card__stats {
        grid-template-columns: 1fr;
    }

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

    .hero-band {
        grid-template-columns: 1fr;
    }

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

    .hero-card h1 {
        max-width: none;
    }

    .navbar__actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer__grid {
        padding: 0 18px;
    }

    .footer__bottom {
        padding: 18px 18px 0;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* Status accessibility & refresh improvements */
:root {
    --color-text-muted: #8d99af;
    --focus-ring: 0 0 0 3px rgba(0, 229, 255, 0.24);
}

html {
    scrollbar-gutter: stable;
}

body.status-body {
    overflow-x: hidden;
}

:target {
    scroll-margin-top: calc(var(--nav-height) + 28px);
}

.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;
}

a,
button,
summary {
    touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid transparent;
    box-shadow: var(--focus-ring);
}

.navbar__logo,
.navbar__nav,
.hero-card__content,
.group-block__copy,
.notice-item__header > strong,
.timeline-item__header > strong,
.component-card__header > div {
    min-width: 0;
}

.navbar__nav a[aria-current='page'] {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.14);
}

.hero-card__tagline {
    color: var(--text-soft);
    font-size: 0.95rem;
    max-width: 56ch;
}

.hero-card h1,
.section-heading h2,
.group-block__header h3,
.component-card__header h4 {
    text-wrap: balance;
}

.hero-card__summary,
.notice-item p,
.timeline-item p,
.component-card p,
.component-card__message,
.group-block__header p,
.footer__brand p {
    overflow-wrap: anywhere;
}

.hero-card__timestamp,
.hero-card__refresh,
.stat-card strong,
.mini-stat strong,
.meter-block__label strong,
.notice-item__meta,
.timeline-item__meta,
.component-card__meta,
.footer__bottom {
    font-variant-numeric: tabular-nums;
}

.hero-card__refresh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-card__refresh::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.notice-item,
.timeline-item,
.component-card,
.component-card__details,
.component-card__toggle,
.trend-card,
.meter,
.hero-band__item,
.stat-card,
.group-block__stat,
.status-chip,
.status-pill {
    overflow: hidden;
}

.component-card__details {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.018);
}

.component-card__toggle {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    cursor: pointer;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 600;
}

.component-card__toggle::-webkit-details-marker {
    display: none;
}

.component-card__toggle::marker {
    content: '';
}

.component-card__toggle::after {
    content: '+';
    font-size: 1rem;
    line-height: 1;
    color: var(--accent);
}

.component-card__details[open] .component-card__toggle::after {
    content: 'â€“';
}

.component-card__details[open] .component-card__toggle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.component-card__toggle-copy {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.component-card__details .trend-grid {
    padding: 14px;
}

.trend-bars {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trend-bars__item {
    list-style: none;
}

.status-pill--operational,
.status-pill--online,
.status-chip--operational,
.status-chip--online {
    color: var(--success);
}

.status-pill--maintenance,
.status-chip--maintenance {
    color: #9d7cff;
}

.status-pill--degraded_performance,
.status-pill--degraded,
.status-pill--medium,
.status-chip--degraded_performance,
.status-chip--degraded,
.status-chip--medium {
    color: var(--warning);
}

.status-pill--major_outage,
.status-pill--partial_outage,
.status-pill--offline,
.status-pill--high,
.status-chip--major_outage,
.status-chip--partial_outage,
.status-chip--offline,
.status-chip--high {
    color: var(--danger);
}

.status-pill--unknown,
.status-chip--unknown {
    color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .component-card:hover,
    .btn-primary:hover {
        transform: none;
    }

    .live-indicator::before {
        animation: none;
    }
}




.btn:disabled {
    cursor: wait;
    opacity: 0.72;
}
