   @font-face {
            font-family: 'GlacialIndifference';
            src: url('./fonts/GlacialIndifference-Regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'GlacialIndifference';
            src: url('./fonts/GlacialIndifference-Bold.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
        }
        @font-face {
            font-family: 'GlacialIndifference';
            src: url('./fonts/GlacialIndifference-Italic.otf') format('opentype');
            font-weight: normal;
            font-style: italic;
        }

    :root {
        color-scheme: dark;
        --page: #2c2925;
        --surface: #39352f;
        --surface-raised: #423d36;
        --border: #60584e;
        --text: #fff;
        --muted: #d4cabe;
        --accent: #ff5100;
        --accent-light: #ff7433;
    }

    * { box-sizing: border-box; }

    body {
        min-width: 20rem;
        margin: 0;
        background-color: var(--page);
        color: var(--text);
        font-family: 'GlacialIndifference', Arial, sans-serif;
        font-weight: normal;
    }

    button, a { font: inherit; }

    .home-page {
        width: min(72rem, 100%);
        min-height: 100vh;
        margin: 0 auto;
        padding: clamp(1.5rem, 5vw, 4rem);
    }
    .home-page :focus-visible {
        outline: 3px solid var(--accent-light);
        outline-offset: 4px;
    }
    .home-eyebrow {
        margin: 0 0 .35rem;
        color: var(--accent-light);
        font-size: .78rem;
        font-weight: bold;
        letter-spacing: .14em;
        text-transform: uppercase;
    }
    .home-logo, .login-logo {
        display: block;
        object-fit: contain;
    }
    .home-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: clamp(2rem, 6vw, 4.5rem);
        border-bottom: 1px solid var(--border);
    }
    .home-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .home-brand h1 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: .9;
    }
    .account-summary {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        text-align: right;
    }
    .account-summary p { margin: 0; }
    .account-summary span { display: block; }
    .account-label, .account-username {
        color: var(--muted);
        font-size: .85rem;
    }
    .secondary-button {
        padding: .55rem .85rem;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--text);
        cursor: pointer;
    }
    .secondary-button:hover {
        border-color: var(--muted);
        background: var(--surface);
    }
    .home-intro { margin: clamp(2.5rem, 6vw, 4.5rem) 0 1.5rem; }
    .home-intro h2 {
        margin: 0;
        font-size: clamp(2rem, 5vw, 3.75rem);
        line-height: 1;
    }
    .home-intro > p:last-child {
        max-width: 34rem;
        margin: 1rem 0 0;
        color: var(--muted);
        font-size: 1.05rem;
    }
    .report-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
    .report-link {
        position: relative;
        display: grid;
        grid-template-rows: auto 1fr auto;
        min-height: 15rem;
        padding: 1.4rem;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text);
        text-decoration: none;
        transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
    }
    .report-link::before {
        position: absolute;
        top: 0;
        right: 0;
        width: 3.25rem;
        height: .22rem;
        background: var(--accent);
        content: "";
        transition: width 160ms ease;
    }
    .report-link:hover {
        border-color: var(--accent-light);
        background: var(--surface-raised);
        transform: translateY(-3px);
    }
    .report-link:hover::before { width: 100%; }
    .report-link-number {
        color: var(--accent-light);
        font-size: .8rem;
        font-weight: bold;
        letter-spacing: .12em;
    }
    .report-link-content {
        align-self: end;
        margin-top: 2.5rem;
    }
    .report-link-content strong {
        display: block;
        margin-bottom: .65rem;
        font-size: 1.5rem;
        line-height: 1.1;
    }
    .report-link-content > span {
        display: block;
        color: var(--muted);
        line-height: 1.45;
    }
    .report-link-arrow {
        justify-self: end;
        margin-top: 1.5rem;
        color: var(--accent-light);
        font-size: 1.6rem;
        line-height: 1;
        transition: transform 160ms ease;
    }
    .report-link:hover .report-link-arrow { transform: translateX(.3rem); }

    .login-page {
        display: grid;
        place-items: center;
    }
    .login-card {
        width: min(29rem, 100%);
        padding: clamp(2rem, 7vw, 3.25rem);
        border: 1px solid var(--border);
        border-top: 3px solid var(--accent);
        background: var(--surface);
        box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 24%);
    }
    .login-logo { margin-bottom: 1.75rem; }
    .login-card h1 {
        margin: 0;
        font-size: clamp(2.75rem, 10vw, 4.5rem);
        line-height: 1;
    }
    .login-intro {
        margin: 1.25rem 0 2rem;
        color: var(--muted);
        font-size: 1.08rem;
        line-height: 1.55;
    }
    .primary-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: .9rem 1.1rem;
        border: 1px solid var(--accent);
        background: var(--accent);
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
    }
    .primary-link:hover {
        border-color: var(--accent-light);
        background: var(--accent-light);
        transform: translateY(-2px);
    }
    .primary-link span:last-child {
        font-size: 1.35rem;
        line-height: 1;
    }
    .login-note {
        margin: 1rem 0 0;
        color: var(--muted);
        font-size: .82rem;
        text-align: center;
    }

    @media (max-width: 48rem) {
        .report-links { grid-template-columns: 1fr; }
        .report-link { min-height: 11rem; }
        .home-header { align-items: flex-start; }
        .account-summary { align-items: flex-end; flex-direction: column; gap: .75rem; }
    }

    @media (max-width: 32rem) {
        .home-header { flex-direction: column; }
        .account-summary { align-items: flex-start; text-align: left; }
        .login-card { padding: 1.75rem; }
    }

    @media (prefers-reduced-motion: reduce) {
        .report-link, .report-link::before, .report-link-arrow, .primary-link { transition: none; }
    }

    .report-page {
        max-width: 1600px;
        margin: 0 auto;
        padding: 1rem;
        line-height: 1.5;
    }
    .report-page a { color: #eac98e; }
    .report-page button {
        font: inherit;
        padding: .4rem .75rem;
        border: 1px solid #b4aa9d;
        background: #faf5ec;
        color: #2c2925;
    }
    .report-page button { cursor: pointer; }
    .report-page :focus-visible { outline: 3px solid #eac98e; outline-offset: 3px; }
    .report-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .report-nav { justify-content: space-between; }
    .report-controls {
        display: flex;
        gap: .75rem 2rem;
        flex-wrap: wrap;
        margin: 1rem 0;
        padding: .75rem 1rem;
        background: #39352f;
    }
    .report-control { display: flex; gap: .75rem; align-items: baseline; }
    .report-control-label { font-weight: bold; }
    .report-control-links { display: inline-flex; gap: .75rem; }
    .report-control-links [aria-current] {
        color: #fff;
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: .2rem;
    }
    .report-filters {
        margin: 1rem 0;
        padding: .75rem 1rem;
        background: #39352f;
    }
    .report-filter-groups {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: .75rem;
    }
    .report-filter {
        border: 1px solid #60584e;
        background: #302d28;
    }
    .report-filter summary {
        padding: .55rem .7rem;
        cursor: pointer;
        font-weight: bold;
    }
    .report-filter fieldset {
        margin: 0;
        padding: 0 .7rem .7rem;
        border: 0;
    }
    .report-filter-options {
        display: grid;
        gap: .3rem;
        max-height: 16rem;
        overflow-y: auto;
    }
    .report-filter-options label {
        display: flex;
        align-items: center;
        gap: .5rem;
        padding: .15rem;
        cursor: pointer;
    }
    .report-filter-options input { flex: none; }
    .report-filter-empty { margin: .25rem 0; color: #d4cabe; }
    .report-filter-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: .75rem;
    }
    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .country-label {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        vertical-align: middle;
    }
    .country-flag {
        width: 1.5rem;
        height: 1.125rem;
        box-shadow: 0 0 0 1px rgb(255 255 255 / 20%);
        object-fit: cover;
        flex: none;
    }
    .report-hint { color: #d4cabe; font-size: .95rem; }
    .report-notice { padding: .75rem 1rem; border-left: 3px solid #eac98e; background: #39352f; }
    .report-table-scroll { overflow-x: auto; margin: 1.5rem 0; }
    .report-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
    .report-table caption { text-align: left; font-weight: bold; padding: .5rem 0; }
    .report-table th, .report-table td {
        padding: .65rem .85rem;
        border-bottom: 1px solid #60584e;
        text-align: right;
        white-space: nowrap;
    }
    .report-table th:first-child { text-align: left; }
    .report-table thead, .report-table tfoot { background: #39352f; font-weight: bold; }
    .report-table tbody tr:hover { background: #35312b; }
