/* ─── IBM Plex Mono ──────────────────────────────────────── */
@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/fonts/IBMPlexMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/fonts/IBMPlexMono-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('/fonts/IBMPlexMono-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ─── Spectral (serif headlines) ─────────────────────────── */
@font-face {
    font-family: 'Spectral';
    src: url('/fonts/Spectral-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Spectral';
    src: url('/fonts/Spectral-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Spectral';
    src: url('/fonts/Spectral-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Spectral';
    src: url('/fonts/Spectral-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Spectral';
    src: url('/fonts/Spectral-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Spectral';
    src: url('/fonts/Spectral-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Spectral';
    src: url('/fonts/Spectral-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
    /* ── Fonts ── */
    --font-serif: 'Spectral', Georgia, 'Times New Roman', serif;
    --font-mono:  'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
    --font-sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* ── Brand navy ── */
    --color-navy:       #26395f;
    --color-navy-deep:  #1b2741;
    --color-navy-tint:  #e7ebf2;   /* light navy wash for badges */
    --color-on-navy:    #c3cce0;   /* light text on navy */

    /* ── Palette — Light (parchment / navy editorial) ── */
    --color-bg:           #f4f1ea;   /* parchment page */
    --color-surface:      #fffdf8;   /* card / raised */
    --color-surface-2:    #faf8f2;   /* sunken / header strips */
    --color-text:         #1b212b;   /* ink */
    --color-text-muted:   #6c7380;
    --color-sand:         #8c8472;   /* mono labels / eyebrows */
    --color-accent:       #26395f;   /* primary action = navy */
    --color-accent-hover: #1b2741;
    --color-on-accent:    #ffffff;
    --color-border:       #e6e1d6;   /* warm taupe */
    --color-border-strong:#cfc8b8;
    --blur:               none;      /* editorial = solid cards, no glass */

    /* ── Semantic verdict / status ── */
    --c-clean:       #3f7d57;  --c-clean-tint:  #eef4ee;
    --c-issues:      #9a6a17;  --c-issues-tint: #f7efdc;
    --c-threat:      #a83a2c;  --c-threat-tint: #f6e7e3;
    --c-na:          #8a8470;  --c-na-tint:     #efece4;

    /* ── Shape & depth ── */
    --radius-sm:   2px;
    --radius-md:   3px;
    --radius-lg:   4px;
    --shadow-card: 0 18px 40px -28px rgba(38, 57, 95, 0.40);
    --shadow-lg:   0 24px 60px -40px rgba(38, 57, 95, 0.50);
    --shadow-sm:   0 1px 3px rgba(27, 39, 65, 0.08);

    /* Footer — always deep navy (both themes) */
    --footer-bg:              #1b2741;
    --footer-surface:         #22324f;
    --footer-text:            #ffffff;
    --footer-text-muted:      #9fb0d0;
    --footer-border:          #344767;
    --footer-accent:          #ffffff;
    --footer-accent-hover:    #e7ebf2;
    --footer-field-bg:        #1b2741;
    --footer-field-bg-focus:  #1f2f4f;
    --footer-field-border:    #3c517a;

    /* Spacing scale */
    --space-xs:  0.5rem;   /*  8px */
    --space-sm:  1rem;     /* 16px */
    --space-md:  1.5rem;   /* 24px */
    --space-lg:  2.5rem;   /* 40px */
    --space-xl:  4rem;     /* 64px */
    --space-2xl: 6rem;     /* 96px */

    /* Layout — mobile-first, overridden at breakpoints */
    --layout-gap:    var(--space-md);
    --container-max: 1180px;
    --container-px:  var(--space-sm);

    /* Typography — fluid scale */
    --text-hero:    clamp(1.375rem, 5vw, 2rem);
    --text-body:    clamp(0.875rem, 2.5vw, 0.9375rem);

    /* Topbar */
    --topbar-bg:   #26395f;
    --topbar-text: #aebbd4;
}

@media (min-width: 768px) {
    :root {
        --layout-gap:   var(--space-lg);
        --container-px: var(--space-lg);
    }
}

/* ─── Palette — Dark (warm "library at night": navy ink + parchment) ─── */
[data-theme="dark"] {
    --color-navy:       #26395f;
    --color-navy-deep:  #131a28;
    --color-navy-tint:  #243049;
    --color-on-navy:    #c3cce0;

    --color-bg:           #151b27;   /* deep warm navy-charcoal */
    --color-surface:      #1e2735;   /* card */
    --color-surface-2:    #232d3d;   /* sunken / strips */
    --color-text:         #ece7db;   /* warm parchment ink */
    --color-text-muted:   #9aa3b4;
    --color-sand:         #9a9c9e;
    --color-accent:       #aebbd4;   /* navy reused, lightened for contrast */
    --color-accent-hover: #c9d3e6;
    --color-on-accent:    #1b2741;   /* dark text on the light accent */
    --color-border:       #2e3a4d;   /* warm slate border */
    --color-border-strong:#3a4860;
    --blur:               none;

    /* Semantic — brightened for dark, warm tints */
    --c-clean:       #5fa37a;  --c-clean-tint:  #1c2a23;
    --c-issues:      #cba24f;  --c-issues-tint: #2a2418;
    --c-threat:      #d9806f;  --c-threat-tint: #2c1d1a;
    --c-na:          #8f8a7c;  --c-na-tint:     #242017;

    --shadow-card: 0 18px 40px -28px rgba(0, 0, 0, 0.65);
    --shadow-lg:   0 24px 60px -40px rgba(0, 0, 0, 0.7);
    --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.35);

    /* Footer stays deep navy in both themes (slightly deeper in dark) */
    --footer-bg:              #131a28;
    --footer-surface:         #1c2638;
    --footer-text:            #f3efe6;
    --footer-text-muted:      #9fb0d0;
    --footer-border:          #2b3a55;
    --footer-accent:          #ffffff;
    --footer-accent-hover:    #e7ebf2;
    --footer-field-bg:        #141c2b;
    --footer-field-bg-focus:  #1a2336;
    --footer-field-border:    #34466a;

    --topbar-bg:   #1d2a44;
    --topbar-text: #aebbd4;
}

/* ─── Base ───────────────────────────────────────────────── */
html {
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--layout-gap);
}

/* ─── Container ──────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
    width: 100%;
}

/* ─── Skip link ──────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    z-index: 9999;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: var(--space-xs) var(--space-md);
    border-radius: 0 0 0.75rem 0.75rem;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* ─── Topbar ─────────────────────────────────────────────── */
.topbar {
    background: var(--topbar-bg);
    color: var(--topbar-text);
    font-family: 'IBM Plex Mono', monospace;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
}

.topbar__text,
.topbar__sep,
.topbar__lang-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.topbar__text {
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar__langs {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.topbar__sep {
    opacity: 0.35;
    margin: 0 0.3rem;
    user-select: none;
    pointer-events: none;
}

.topbar__lang-btn {
    background: none;
    border: none;
    color: var(--topbar-text);
    padding: 0.25rem 0;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.15s ease;
}

.topbar__lang-btn:hover {
    opacity: 1;
}

.topbar__lang-btn.is-active {
    opacity: 1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.topbar__text-short { display: none; }

@media (max-width: 599px) {
    .topbar__text-full  { display: none; }
    .topbar__text-short { display: inline; }
}

@media (max-width: 399px) {
    .topbar__text  { display: none; }
    .topbar__inner { justify-content: center; }
}

/* ─── Focus outline ──────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── Utility ────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ─── Footer — full-bleed deep navy, two-column ──────────── */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    margin-top: auto;
}

.site-footer .container {
    padding-top: var(--space-xl);
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 880px) {
    .footer-contact {
        grid-template-columns: 1fr 1.05fr;
        align-items: start;
        gap: var(--space-xl);
    }
}

/* Info column */
.footer-contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Brand lockup */
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand__mark { flex: none; display: block; }
.footer-brand__word {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1;
}
.footer-brand__by {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--footer-text-muted);
    margin-top: 0.3rem;
}
.footer-brand__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--footer-text-muted);
    max-width: 42ch;
    margin: 0;
}

/* Legal + social meta row */
.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: 0.25rem;
}
.footer-meta__legal {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}
.footer-meta__legal a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-meta__legal a:hover { color: #fff; }
.footer-meta__social { display: flex; gap: 0.5rem; }

/* Right column: "talk to a human" + form panel */
.footer-contact__form-wrap {
    background: var(--footer-surface);
    border: 1px solid var(--footer-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.footer-contact__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--footer-text-muted);
    text-transform: uppercase;
}

.footer-contact__title {
    font-family: var(--font-serif);
    font-size: 1.4375rem;
    font-weight: 600;
    color: var(--footer-text);
    line-height: 1.22;
    margin: 0.5rem 0 var(--space-md);
}

.footer-contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact__detail {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--footer-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact__detail--address {
    align-items: flex-start;
}
.footer-contact__detail--address svg {
    position: relative;
    top: 4px;
}

a.footer-contact__detail:hover {
    color: var(--footer-accent);
}

.footer-contact__detail svg {
    flex-shrink: 0;
    color: var(--footer-text-muted);
    transition: color 0.2s ease;
}

a.footer-contact__detail:hover svg {
    color: var(--footer-accent);
}

/* Form column */
.footer-contact__form-note {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--footer-text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
}

.footer-contact__hint {
    font-size: 0.75rem;
    color: var(--footer-text-muted);
    margin-top: var(--space-xs);
    line-height: 1.5;
}

.footer-contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact__row {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (min-width: 600px) {
    .footer-contact__row {
        flex-direction: row;
    }

    .footer-contact__row .footer-contact__field {
        flex: 1;
    }
}

.footer-contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.footer-contact__field label {
    font-size: 0.8125rem;
    color: var(--footer-text-muted);
}

.footer-contact__field input,
.footer-contact__field textarea {
    background: var(--footer-field-bg);
    border: 1px solid var(--footer-field-border);
    border-radius: var(--radius-md);
    color: var(--footer-text);
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    padding: 0.75rem 0.8125rem;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
}

.footer-contact__field input::placeholder,
.footer-contact__field textarea::placeholder {
    color: var(--footer-text-muted);
    opacity: 0.7;
}

.footer-contact__field input:focus,
.footer-contact__field textarea:focus {
    border-color: var(--color-on-navy);
    background: var(--footer-field-bg-focus);
}

/* Send button: white fill, navy ink (per design) */
.footer-contact__btn {
    align-self: flex-start;
    background: var(--footer-accent);
    color: var(--color-navy);
    border: 1px solid var(--footer-accent);
    border-radius: var(--radius-md);
    padding: 0.8125rem var(--space-md);
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    margin-top: var(--space-xs);
}

.footer-contact__btn:hover:not(:disabled) {
    background: var(--footer-accent-hover);
    border-color: var(--footer-accent-hover);
    transform: translateY(-1px);
}

.footer-contact__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.field-required {
    color: var(--color-on-navy);
    font-size: 0.75rem;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}
@media (max-width: 400px) {
    .footer-bottom {
        flex-direction: column;
    }
}

.footer-bottom__left {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-bottom__right {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-bottom__right a {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.footer-bottom__right a:hover {
    color: var(--footer-accent);
}

/* LinkedIn icon button */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--footer-border);
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social:hover {
    color: var(--footer-accent);
    border-color: var(--footer-accent);
}

.footer-dot {
    color: var(--footer-border);
    font-size: 0.8125rem;
    user-select: none;
}

.footer-copy {
    color: var(--footer-text-muted);
    font-size: 0.8125rem;
    text-align: center;
    width: 100%;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
    border-top: 1px solid var(--footer-border);
}

.footer-copy a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-copy a:hover {
    color: var(--footer-accent);
}

.footer-version-badge {
    position: relative;
    cursor: default;
}

.footer-version-badge::after {
    content: attr(data-version);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.6875rem;
    font-family: monospace;
    white-space: nowrap;
    color: var(--color-text-muted);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.footer-version-badge:hover::after {
    opacity: 1;
}

/* ─── Header ─────────────────────────────────────────────── */
/* Sticky nav wrapper — header stays visible on scroll (topbar scrolls away) */
.site-header-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-surface-2);
    border-bottom: 1px solid var(--color-border);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 0.8125rem var(--container-px);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

/* Logo lockup: shield mark + serif wordmark + mono tagline */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--color-text);
    text-decoration: none;
}

.logo__mark {
    flex: none;
    display: block;
    color: var(--color-navy);
}
[data-theme="dark"] .logo__mark { color: var(--color-accent); }

.logo__lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo__word {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--color-text);
    white-space: nowrap;
}

.logo__tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.59rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sand);
    margin-top: 0.2rem;
}

a.logo:hover .logo__word { color: var(--color-accent); }

.header-controls {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* "Scan your own site →" button (report page header) */
.nav-scan-own {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-on-accent);
    background: var(--color-navy);
    border: 1px solid var(--color-navy);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.nav-scan-own:hover { background: var(--color-accent-hover); }
[data-theme="dark"] .nav-scan-own { background: var(--color-accent); color: var(--color-on-accent); }

@media (max-width: 520px) {
    .nav-scan-own { font-size: 0.75rem; padding: 0.45rem 0.6rem; }
}

/* ─── Language switcher ──────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    height: 2.25rem;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.lang-switcher:hover,
.lang-switcher.is-open {
    border-color: var(--color-accent);
}

.lang-switcher__expand {
    display: flex;
    align-items: center;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__expand {
    max-width: 180px;
    opacity: 1;
}

.lang-option {
    background: none;
    border: none;
    padding: 0 0.45rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.lang-option:hover {
    color: var(--color-accent);
}

.lang-option.is-active {
    color: var(--color-accent);
    display: none;
}

/* Hide separator immediately after a hidden active option */
.lang-option.is-active + .lang-sep {
    display: none;
}

/* Divider between expanded list and current lang button */
.lang-switcher.is-open .lang-toggle {
    border-left: 1px solid var(--color-border);
}

.lang-sep {
    color: var(--color-border);
    font-size: 0.75rem;
    user-select: none;
    pointer-events: none;
}

.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.lang-toggle:hover {
    color: var(--color-accent);
}

/* ─── Theme toggle ───────────────────────────────────────── */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-strong);
    background: none;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: flex; }

[data-theme="dark"] .theme-toggle .icon-sun  { display: flex; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
