/* ADBPureFlow website
   A small, dependency-free design system for the static project site. */

* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --background: #ffffff;
    --surface: #f7f7f6;
    --surface-strong: #efefed;
    --text: #171717;
    --text-soft: #5f5f5b;
    --text-faint: #70706c;
    --border: #dededb;
    --border-strong: #c7c7c2;
    --accent: #315fcb;
    --accent-soft: #e9efff;
    --button: #191919;
    --button-text: #ffffff;
    --focus: #315fcb;
    --header-background: rgba(255, 255, 255, 0.92);
    --code-background: #eeeeeb;
    --max-width: 1080px;
    --reading-width: 760px;
    --radius-sm: 6px;
    --radius: 9px;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --background: #111111;
    --surface: #181818;
    --surface-strong: #222222;
    --text: #f1f1ef;
    --text-soft: #aaa9a5;
    --text-faint: #83827e;
    --border: #30302e;
    --border-strong: #474744;
    --accent: #8cafff;
    --accent-soft: #1d2a47;
    --button: #f0f0ed;
    --button-text: #171717;
    --focus: #9bb8ff;
    --header-background: rgba(17, 17, 17, 0.92);
    --code-background: #282826;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        color-scheme: dark;
        --background: #111111;
        --surface: #181818;
        --surface-strong: #222222;
        --text: #f1f1ef;
        --text-soft: #aaa9a5;
        --text-faint: #83827e;
        --border: #30302e;
        --border-strong: #474744;
        --accent: #8cafff;
        --accent-soft: #1d2a47;
        --button: #f0f0ed;
        --button-text: #171717;
        --focus: #9bb8ff;
        --header-background: rgba(17, 17, 17, 0.92);
        --code-background: #282826;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--background);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
.site-header,
.button,
.theme-toggle,
.icon-link,
.download-link,
.project-links a {
    transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

::selection {
    background: var(--accent-soft);
    color: var(--text);
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.content-shell {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.reading-width {
    max-width: var(--reading-width);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 8px 12px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--background);
    color: var(--text);
    font-weight: 650;
    text-decoration: none;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: var(--header-background);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.nav-shell {
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 62px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 720;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.brand-mark {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: var(--button);
    color: var(--button-text);
    font-size: 14px;
    font-weight: 760;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.site-nav a,
.icon-link {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 590;
    text-decoration: none;
}

.site-nav a:hover,
.icon-link:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-inline: 10px;
    border-radius: var(--radius-sm);
}

.icon-link svg {
    width: 18px;
    height: 18px;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
}

.theme-toggle:hover {
    border-color: var(--border);
    background: var(--surface);
    color: var(--text);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

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

:root[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

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

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .sun-icon {
        display: block;
    }

    :root:not([data-theme="light"]) .theme-toggle .moon-icon {
        display: none;
    }
}

/* Shared typography */
.eyebrow {
    margin: 0 0 16px;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 690;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    color: var(--text);
    text-wrap: balance;
}

h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 710;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 680;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 660;
    letter-spacing: -0.018em;
    line-height: 1.35;
}

.section-heading > p:not(.eyebrow),
.section-heading-split > p {
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
    align-items: end;
    gap: 72px;
}

.section-heading-split > p {
    margin: 0 0 3px;
    font-size: 15px;
}

/* Hero */
.hero {
    padding: 118px 0 112px;
}

.hero-copy {
    max-width: 820px;
}

.hero-description {
    max-width: 710px;
    margin: 30px 0 0;
    color: var(--text-soft);
    font-size: clamp(19px, 2.4vw, 23px);
    letter-spacing: -0.018em;
    line-height: 1.55;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
}

.button svg {
    width: 18px;
    height: 18px;
}

.button-primary {
    border-color: var(--button);
    background: var(--button);
    color: var(--button-text);
}

.button-primary:hover {
    opacity: 0.86;
}

.button-secondary {
    border-color: var(--border-strong);
    background: var(--background);
    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--text-faint);
    background: var(--surface);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 30px 0 0;
    padding: 0;
    color: var(--text-faint);
    font-size: 13px;
    list-style: none;
}

.hero-meta li {
    display: flex;
    align-items: center;
}

.hero-meta li:not(:last-child)::after {
    content: "";
    width: 3px;
    height: 3px;
    margin-inline: 11px;
    border-radius: 50%;
    background: var(--border-strong);
}

/* Product showcase */
.product-section,
.features-section,
.download-section,
.open-source-section {
    border-top: 1px solid var(--border);
}

.product-section {
    padding: 100px 0 96px;
    background: var(--surface);
}

.product-figure {
    margin: 56px 0 0;
}

.product-stage {
    padding: clamp(16px, 4vw, 48px);
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-strong);
}

.app-window {
    max-width: 900px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid #383a3f;
    border-radius: 9px;
    background: #202125;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
    color: #f0f1f3;
    font-family: var(--font-sans);
}

.window-titlebar {
    min-height: 37px;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    padding-inline: 12px;
    border-bottom: 1px solid #3c3d42;
    background: #2b2c31;
}

.window-controls {
    display: flex;
    gap: 7px;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border: 1px solid #5c5e65;
    border-radius: 50%;
    background: #414248;
}

.window-title {
    overflow: hidden;
    color: #b9bbc0;
    font-size: 11px;
    line-height: 1;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-content {
    padding: 20px 24px 17px;
}

.app-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding-block: 2px 13px;
}

.app-heading strong {
    font-size: 19px;
    letter-spacing: -0.02em;
}

.app-heading span {
    color: #a9abb1;
    font-size: 11px;
    font-style: italic;
}

.app-divider {
    height: 1px;
    background: #3b3d42;
}

.device-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 2px;
    color: #d5d6da;
    font-size: 12px;
}

.device-select {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 11px;
    border: 1px solid #4a4c52;
    border-radius: 5px;
    background: #292a2f;
    color: #f0f1f3;
}

.select-arrow {
    color: #aeb0b5;
    font-size: 15px;
}

.app-toolbar {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 2px 8px;
}

.app-toolbar > i {
    width: 1px;
    height: 27px;
    margin-inline: 4px;
    background: #43454b;
}

.app-toolbar > b {
    flex: 1;
}

.mock-tool {
    min-width: 62px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 8px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #c7c9ce;
    font-size: 10px;
    font-style: normal;
}

.mock-tool svg {
    width: 15px;
    height: 15px;
}

.mock-tool-active {
    border-color: #4d566e;
    background: #303849;
    color: #dce6ff;
}

.log-panel {
    min-height: 248px;
    margin-top: 14px;
    padding: 18px 20px;
    border: 1px solid #414248;
    border-radius: 5px;
    background: #191a1e;
    color: #c6c8cd;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.85;
}

.log-label {
    margin-bottom: 9px;
    color: #777a82;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.log-panel p {
    margin: 0;
    white-space: nowrap;
}

.log-panel time {
    margin-right: 9px;
    color: #777a82;
}

.log-panel .log-success {
    color: #9ed4ae;
}

.app-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px 0;
    color: #a6a8ae;
    font-size: 10px;
}

.app-footer > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #70bd84;
}

.product-figure figcaption {
    margin-top: 13px;
    color: var(--text-faint);
    font-size: 12px;
}

.showcase-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 34px 0 0;
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    list-style: none;
}

.showcase-notes li {
    min-height: 90px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 23px 24px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.showcase-notes li:first-child {
    padding-left: 0;
}

.showcase-notes li:last-child {
    padding-right: 0;
}

.showcase-notes li + li {
    border-left: 1px solid var(--border);
}

.showcase-notes span {
    flex: 0 0 auto;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 11px;
}

/* Editorial feature list */
.features-section {
    padding: 112px 0;
}

.feature-list {
    margin-top: 68px;
    border-top: 1px solid var(--border-strong);
}

.feature-row {
    display: grid;
    grid-template-columns: 54px minmax(190px, 0.65fr) minmax(300px, 1fr);
    gap: 34px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.feature-index {
    padding-top: 4px;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 11px;
}

.feature-row h3 {
    padding-top: 1px;
}

.feature-row p {
    max-width: 580px;
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

code {
    padding: 0.12em 0.35em;
    border-radius: 4px;
    background: var(--code-background);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.9em;
}

/* Downloads */
.download-section {
    padding: 104px 0 88px;
    background: var(--surface);
}

.download-heading {
    align-items: end;
}

.release-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 3px;
    color: var(--text-faint);
    font-size: 12px;
    line-height: 1.6;
}

.release-summary strong {
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 650;
}

#releaseStatus[data-state="ready"] {
    color: var(--text-faint);
}

#releaseStatus[data-state="error"] {
    color: var(--text-soft);
}

.download-list {
    margin-top: 50px;
    border-top: 1px solid var(--border-strong);
}

.download-row {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(340px, 0.95fr);
    align-items: center;
    gap: 42px;
    min-height: 106px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.platform-name {
    display: flex;
    align-items: center;
    gap: 14px;
}

.platform-monogram {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: var(--background);
    color: var(--text-soft);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 650;
}

.platform-name h3 {
    font-size: 15px;
}

.platform-name p {
    margin: 1px 0 0;
    color: var(--text-faint);
    font-size: 12px;
}

.detected-label {
    display: none;
    margin-left: 7px;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 10px;
    font-weight: 680;
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-transform: uppercase;
}

.download-row.is-detected .detected-label {
    display: inline-flex;
}

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

.download-link {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 13px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.25;
    text-decoration: none;
}

.download-link:hover {
    border-color: var(--text-faint);
    background: var(--surface-strong);
}

.download-link small {
    overflow: hidden;
    color: var(--text-faint);
    font-size: 10px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-row.is-detected .download-link-primary {
    border-color: var(--button);
    background: var(--button);
    color: var(--button-text);
}

.download-row.is-detected .download-link-primary small {
    color: currentColor;
    opacity: 0.66;
}

.download-row.is-detected .download-link-primary:hover {
    opacity: 0.86;
}

.download-footnote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 21px;
}

.download-footnote p {
    margin: 0;
    color: var(--text-faint);
    font-size: 12px;
}

.download-footnote a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 620;
    text-decoration: none;
}

.download-footnote a:hover {
    color: var(--text);
}

.download-footnote svg {
    width: 15px;
    height: 15px;
}

/* Open source */
.open-source-section {
    padding: 112px 0;
}

.open-source-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
    align-items: start;
    gap: 110px;
}

.open-source-layout .section-heading > p:not(.eyebrow) {
    max-width: 610px;
    font-size: 15px;
}

.stack-line {
    color: var(--text-faint) !important;
    font-family: var(--font-mono);
    font-size: 11px !important;
    letter-spacing: 0.01em;
}

.stack-line span {
    margin-inline: 5px;
    color: var(--border-strong);
}

.project-links {
    border-top: 1px solid var(--border-strong);
}

.project-links a {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 3px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
}

.project-links a:hover {
    padding-left: 9px;
    background: var(--surface);
}

.project-links a > span {
    display: flex;
    flex-direction: column;
}

.project-links strong {
    font-size: 14px;
    font-weight: 650;
}

.project-links small {
    margin-top: 2px;
    color: var(--text-faint);
    font-size: 11px;
}

.project-links svg {
    width: 17px;
    height: 17px;
    color: var(--text-faint);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
}

.footer-layout {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--text-faint);
    font-size: 12px;
}

.footer-layout p {
    margin: 0;
}

.footer-layout strong {
    color: var(--text-soft);
    font-weight: 650;
}

.footer-layout a {
    color: var(--text-soft);
    text-underline-offset: 3px;
}

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

/* Responsive */
@media (max-width: 860px) {
    .site-nav {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .section-heading-split,
    .open-source-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading-split > p {
        max-width: 650px;
    }

    .feature-row {
        grid-template-columns: 42px minmax(170px, 0.55fr) minmax(250px, 1fr);
        gap: 22px;
    }

    .download-heading {
        gap: 25px;
    }

    .release-summary {
        padding: 0;
    }

    .open-source-layout {
        gap: 58px;
    }
}

@media (max-width: 680px) {
    .content-shell,
    .nav-shell {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .nav-shell {
        min-height: 58px;
    }

    .github-link span {
        display: none;
    }

    .github-link {
        width: 36px;
        justify-content: center;
        padding: 0;
    }

    .hero {
        padding: 82px 0 78px;
    }

    h1 {
        font-size: clamp(44px, 14vw, 58px);
    }

    h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .hero-description {
        margin-top: 24px;
        font-size: 18px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .button {
        flex: 1 1 220px;
    }

    .hero-meta {
        row-gap: 5px;
    }

    .product-section,
    .features-section,
    .download-section,
    .open-source-section {
        padding: 72px 0;
    }

    .product-figure {
        margin-top: 38px;
    }

    .product-stage {
        margin-inline: -16px;
        padding: 12px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .app-content {
        padding: 15px 14px 13px;
    }

    .window-titlebar {
        grid-template-columns: 58px 1fr 58px;
    }

    .window-title {
        font-size: 9px;
    }

    .mock-tool {
        min-width: 36px;
        padding-inline: 8px;
    }

    .mock-tool > span {
        display: none;
    }

    .app-toolbar > i {
        margin-inline: 2px;
    }

    .log-panel {
        min-height: 225px;
        overflow: hidden;
        padding: 14px;
        font-size: 9px;
    }

    .showcase-notes {
        grid-template-columns: 1fr;
    }

    .showcase-notes li,
    .showcase-notes li:first-child,
    .showcase-notes li:last-child {
        min-height: auto;
        padding: 17px 0;
    }

    .showcase-notes li + li {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .feature-list {
        margin-top: 48px;
    }

    .feature-row {
        grid-template-columns: 34px 1fr;
        gap: 8px 12px;
        padding: 25px 0;
    }

    .feature-index {
        grid-row: 1 / span 2;
    }

    .feature-row p {
        grid-column: 2;
        margin-top: 4px;
    }

    .download-list {
        margin-top: 38px;
    }

    .download-row {
        grid-template-columns: 1fr;
        gap: 15px;
        min-height: auto;
        padding: 22px 0;
    }

    .platform-downloads {
        padding-left: 52px;
    }

    .download-footnote,
    .footer-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .download-footnote {
        gap: 14px;
    }

    .open-source-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-layout {
        min-height: auto;
        gap: 7px;
        padding-block: 28px;
    }
}

@media (max-width: 420px) {
    .brand span:last-child {
        font-size: 13px;
    }

    .device-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .app-toolbar {
        gap: 2px;
    }

    .mock-tool {
        min-width: 32px;
        padding-inline: 6px;
    }

    .platform-downloads {
        padding-left: 0;
    }

    .download-link {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 3px;
    }
}

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

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