:root {
    --report-bg: #07111d;
    --report-panel: #0d1b2d;
    --report-panel-soft: #12243a;
    --report-border: rgba(158, 225, 255, 0.14);
    --report-text: #e7eef8;
    --report-muted: #9db1c9;
    --report-accent: #67d6ff;
    --report-accent-2: #6fe0c8;
    --report-warning: #ffd166;
    --report-good: #85e6b8;
    --report-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    --report-radius: 24px;
    --report-max: 1200px;
    --report-font: "DM Sans", Arial, sans-serif;
    --report-display: "Syne", Arial, sans-serif;
    --report-mono: "IBM Plex Mono", Consolas, monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--report-font);
    background:
        radial-gradient(circle at top left, rgba(103, 214, 255, 0.16), transparent 30%),
        radial-gradient(circle at bottom right, rgba(111, 224, 200, 0.08), transparent 28%),
        var(--report-bg);
    color: var(--report-text);
}

a {
    color: inherit;
}

.report-shell {
    width: min(calc(100% - 2rem), var(--report-max));
    margin: 0 auto;
}

.report-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: rgba(7, 17, 29, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.report-topbar__inner {
    width: min(calc(100% - 2rem), var(--report-max));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.report-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.report-brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--report-accent);
    border: 1px solid rgba(103, 214, 255, 0.26);
    background: rgba(255, 255, 255, 0.03);
}

.report-brand__label {
    display: grid;
    gap: 0.15rem;
}

.report-brand__eyebrow,
.report-kicker,
.report-chip,
.report-table th,
.report-meta__label {
    font-family: var(--report-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.report-brand__eyebrow,
.report-kicker,
.report-meta__label {
    color: var(--report-muted);
}

.report-brand__title {
    font-family: var(--report-display);
    font-size: 1.05rem;
    font-weight: 700;
}

.report-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.report-nav a {
    text-decoration: none;
    color: var(--report-muted);
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.report-nav a:hover,
.report-nav a.is-active {
    color: var(--report-text);
    border-color: rgba(103, 214, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.report-hero {
    padding: 4rem 0 2.25rem;
}

.report-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    align-items: start;
}

.report-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--report-border);
    border-radius: var(--report-radius);
    box-shadow: var(--report-shadow);
}

.report-hero__main {
    padding: 2rem;
}

.report-hero__title {
    margin: 0.35rem 0 0.9rem;
    font-family: var(--report-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.report-hero__summary,
.report-copy p,
.report-list,
.report-table td {
    color: var(--report-muted);
    line-height: 1.75;
    font-size: 1rem;
}

.report-hero__meta {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.report-meta {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.report-meta__value {
    margin-top: 0.35rem;
    color: var(--report-text);
    font-weight: 700;
}

.report-grid {
    display: grid;
    gap: 1.25rem;
}

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

.report-card {
    padding: 1.4rem;
}

.report-card h2,
.report-card h3,
.report-section h2,
.report-section h3 {
    margin: 0 0 0.8rem;
    font-family: var(--report-display);
    line-height: 1.08;
}

.report-card h2,
.report-section h2 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.report-card h3,
.report-section h3 {
    font-size: 1.15rem;
}

.report-section {
    padding: 0 0 1.5rem;
}

.report-section__inner {
    padding: 1.75rem;
}

.report-list {
    margin: 0;
    padding-left: 1.2rem;
}

.report-list li + li {
    margin-top: 0.55rem;
}

.report-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.report-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    color: var(--report-text);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.08em;
}

.report-table-wrap {
    overflow-x: auto;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
}

.report-table th,
.report-table td {
    text-align: left;
    padding: 0.9rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    vertical-align: top;
}

.report-table th {
    color: var(--report-text);
}

.report-status {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.report-status--good {
    color: #07111d;
    background: var(--report-good);
}

.report-status--watch {
    color: #2c2410;
    background: var(--report-warning);
}

.report-callout {
    padding: 1.2rem 1.25rem;
    border-left: 3px solid var(--report-accent);
    border-radius: 18px;
    background: rgba(103, 214, 255, 0.08);
}

.report-link-card {
    display: block;
    text-decoration: none;
    padding: 1.4rem;
    height: 100%;
    transition: 0.2s ease;
}

.report-link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(103, 214, 255, 0.26);
}

.report-link-card__title {
    margin: 0.35rem 0 0.7rem;
    font-family: var(--report-display);
    font-size: 1.25rem;
}

.report-link-card__summary {
    margin: 0;
    color: var(--report-muted);
    line-height: 1.7;
}

.report-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.report-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(103, 214, 255, 0.2);
    color: var(--report-text);
    background: rgba(255, 255, 255, 0.04);
}

.report-footer {
    padding: 2rem 0 3rem;
    color: var(--report-muted);
    font-size: 0.92rem;
}

.report-footer a {
    color: var(--report-text);
}

@media (max-width: 960px) {
    .report-hero__grid,
    .report-grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .report-topbar__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .report-nav {
        justify-content: flex-start;
    }

    .report-hero {
        padding-top: 2.5rem;
    }

    .report-hero__main,
    .report-hero__meta,
    .report-section__inner,
    .report-card,
    .report-link-card {
        padding: 1.2rem;
    }
}
