:root {
    --ink: #102033;
    --muted: #64748b;
    --paper: #f6f8fc;
    --surface: #ffffff;
    --line: rgba(16, 32, 51, 0.12);
    --coral: #f43f5e;
    --aqua: #0ea5e9;
    --lime: #14b8a6;
    --violet: #4f46e5;
    --sun: #f59e0b;
    --soft-blue: #dbeafe;
    --soft-teal: #ccfbf1;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

@media (prefers-color-scheme: dark) {
    :root {
        --ink: #e5edf7;
        --muted: #a8b6c8;
        --paper: #08111f;
        --surface: #101c2f;
        --line: rgba(229, 237, 247, 0.14);
        --coral: #fb7185;
        --aqua: #38bdf8;
        --lime: #2dd4bf;
        --violet: #a5b4fc;
        --sun: #fbbf24;
        --soft-blue: #172554;
        --soft-teal: #134e4a;
        --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    }
}

[data-theme="light"] {
    --ink: #102033;
    --muted: #64748b;
    --paper: #f6f8fc;
    --surface: #ffffff;
    --line: rgba(16, 32, 51, 0.12);
    --coral: #f43f5e;
    --aqua: #0ea5e9;
    --lime: #14b8a6;
    --violet: #4f46e5;
    --sun: #f59e0b;
    --soft-blue: #dbeafe;
    --soft-teal: #ccfbf1;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] {
    --ink: #e5edf7;
    --muted: #a8b6c8;
    --paper: #08111f;
    --surface: #101c2f;
    --line: rgba(229, 237, 247, 0.14);
    --coral: #fb7185;
    --aqua: #38bdf8;
    --lime: #2dd4bf;
    --violet: #a5b4fc;
    --sun: #fbbf24;
    --soft-blue: #172554;
    --soft-teal: #134e4a;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.18), transparent 22rem),
        radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.16), transparent 24rem),
        linear-gradient(180deg, var(--surface) 0%, var(--paper) 48%, var(--soft-blue) 100%),
        var(--paper);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 18px;
    left: 50%;
    display: flex;
    width: min(1120px, calc(100% - 32px));
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 3;
}

.brand {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--soft-teal);
    font-weight: 800;
    text-decoration: none;
}

.theme-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
}

.language-toggle {
    position: relative;
    display: grid;
    width: 82px;
    height: 44px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    overflow: hidden;
    padding: 0;
}

[data-theme="dark"] .language-toggle {
    color: #e5edf7;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .language-toggle {
        color: #e5edf7;
    }
}

.language-option {
    position: relative;
    z-index: 1;
    display: grid;
    height: 100%;
    place-items: center;
    font-size: 0.78rem;
    transition: color 180ms ease;
}

.language-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 999px;
    background: var(--soft-teal);
    box-shadow: inset 0 0 0 1px rgba(16, 32, 51, 0.08);
    transition: transform 220ms ease, background 220ms ease;
}

[data-language="en"] .language-thumb {
    background: var(--soft-blue);
    transform: translateX(100%);
}

.theme-icon {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sun);
    box-shadow: inset -5px -5px 0 rgba(16, 32, 51, 0.24);
}

[data-theme="dark"] .theme-icon {
    background: var(--soft-blue);
    box-shadow: inset 5px -3px 0 var(--sun);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-icon {
        background: var(--soft-blue);
        box-shadow: inset 5px -3px 0 var(--sun);
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    order: 2;
    margin-left: auto;
}

.main-nav a {
    padding: 12px 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--ink);
    color: var(--surface);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--surface);
}

.section-band {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 96px 0;
}

.hero {
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: 44px;
    padding-top: 134px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--violet);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(3.4rem, 9vw, 7.9rem);
    line-height: 0.88;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.15;
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.6;
}

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

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    box-shadow: 5px 5px 0 var(--ink);
    transform: translate(-3px, -3px);
}

.button.primary {
    background: var(--soft-teal);
}

.button.ghost {
    background: var(--surface);
}

.quality-panel,
.profile-card,
.timeline,
.project-card,
.study-card,
.playbook-card,
.language-card,
.contact {
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .quality-panel,
[data-theme="dark"] .profile-card,
[data-theme="dark"] .timeline,
[data-theme="dark"] .project-card,
[data-theme="dark"] .study-card,
[data-theme="dark"] .playbook-card,
[data-theme="dark"] .language-card,
[data-theme="dark"] .contact {
    background: rgba(16, 28, 47, 0.82);
}

[data-theme="dark"] .site-header {
    background: rgba(16, 28, 47, 0.84);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .quality-panel,
    :root:not([data-theme="light"]) .profile-card,
    :root:not([data-theme="light"]) .timeline,
    :root:not([data-theme="light"]) .project-card,
    :root:not([data-theme="light"]) .study-card,
    :root:not([data-theme="light"]) .playbook-card,
    :root:not([data-theme="light"]) .language-card,
    :root:not([data-theme="light"]) .contact {
        background: rgba(16, 28, 47, 0.82);
    }

    :root:not([data-theme="light"]) .site-header {
        background: rgba(16, 28, 47, 0.84);
    }
}

.quality-panel {
    position: relative;
    overflow: hidden;
    padding: 22px;
}

.quality-panel::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(16, 32, 51, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(16, 32, 51, 0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    content: "";
}

.panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.panel-label,
.project-type {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.panel-top strong {
    display: block;
    margin-top: 6px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.95;
}

.status-pill {
    padding: 8px 12px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--soft-blue);
    font-size: 0.78rem;
    font-weight: 800;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.signal-card {
    min-height: 126px;
    padding: 14px;
    border: 2px solid var(--ink);
    border-radius: 8px;
}

.signal-card span {
    display: block;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
}

.signal-card p {
    margin: 12px 0 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.coral {
    background: var(--coral);
    color: var(--surface);
}

.aqua {
    background: var(--aqua);
    color: var(--surface);
}

.lime {
    background: var(--soft-teal);
}

.checklist {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.checklist div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

[data-theme="dark"] .checklist div {
    background: rgba(16, 28, 47, 0.78);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .checklist div {
        background: rgba(16, 28, 47, 0.78);
    }
}

.checklist span {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.18);
}

.checklist em {
    font-style: normal;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.profile-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.profile-card {
    padding: 24px;
}

.profile-card p,
.timeline-item p,
.project-card p,
.study-card p,
.language-card p,
.contact-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.timeline-item p + p,
.project-card p + p {
    margin-top: 10px;
}

.timeline {
    overflow: hidden;
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
    padding: 24px;
    border-top: 1px solid var(--line);
}

.timeline-item:first-child {
    border-top: 0;
}

.date {
    color: var(--violet);
    font-size: 0.86rem;
    font-weight: 800;
}

.project-card {
    display: grid;
    gap: 20px;
    padding: 18px;
}

.project-card.featured {
    grid-column: span 2;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
    align-items: center;
}

.project-visual {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #102033 0%, #1d4ed8 100%);
}

.bot-visual {
    display: grid;
    place-items: center;
}

.coupon-card {
    position: absolute;
    top: 34px;
    left: 28px;
    display: grid;
    width: 122px;
    height: 86px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--soft-teal);
    color: var(--ink);
    transform: rotate(-8deg);
}

.coupon-card::before,
.coupon-card::after {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: #102033;
    content: "";
    transform: translateY(-50%);
}

.coupon-card::before {
    left: -11px;
}

.coupon-card::after {
    right: -11px;
}

.coupon-card span {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 0.8;
}

.coupon-card small {
    font-weight: 800;
}

.telegram-mark {
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: 104px;
    height: 104px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--aqua);
}

.telegram-mark::before {
    position: absolute;
    top: 31px;
    left: 25px;
    width: 52px;
    height: 38px;
    background: var(--surface);
    clip-path: polygon(0 45%, 100% 0, 72% 100%, 46% 66%, 29% 82%);
    content: "";
}

.course-lines {
    position: absolute;
    right: 104px;
    top: 80px;
    display: grid;
    width: 128px;
    gap: 12px;
}

.course-lines span {
    height: 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--surface);
}

.course-lines span:nth-child(2) {
    width: 78%;
    background: var(--sun);
}

.course-lines span:nth-child(3) {
    width: 58%;
    background: var(--coral);
}

.qa-visual,
.bi-visual {
    display: grid;
    min-height: 190px;
    place-items: center;
}

.delivery-visual {
    min-height: 190px;
}

.route-line {
    position: absolute;
    inset: 58px 44px auto 44px;
    height: 76px;
    border-bottom: 5px dashed rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.route-dot {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--soft-teal);
}

.route-dot.start {
    left: 34px;
    top: 82px;
}

.route-dot.middle {
    left: 50%;
    top: 48px;
    background: var(--sun);
    transform: translateX(-50%);
}

.route-dot.end {
    right: 34px;
    top: 112px;
    background: var(--coral);
}

.package-box {
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 82px;
    height: 66px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    background: var(--surface);
    transform: translateX(-50%) rotate(-4deg);
}

.package-box::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--ink);
    content: "";
    transform: translateX(-50%);
}

.qa-visual i {
    position: absolute;
    width: 72%;
    height: 22px;
    border-radius: 999px;
    background: var(--surface);
}

.qa-visual i:nth-child(1) {
    top: 42px;
}

.qa-visual i:nth-child(2) {
    top: 86px;
    width: 52%;
    background: var(--lime);
}

.qa-visual i:nth-child(3) {
    top: 130px;
    width: 62%;
    background: var(--aqua);
}

.bi-visual b {
    position: absolute;
    border: 20px solid transparent;
    border-radius: 50%;
}

.bi-visual b:nth-child(1) {
    width: 130px;
    height: 130px;
    border-top-color: var(--coral);
    border-right-color: var(--sun);
}

.bi-visual b:nth-child(2) {
    width: 88px;
    height: 88px;
    border-bottom-color: var(--aqua);
    border-left-color: var(--lime);
}

.bi-visual b:nth-child(3) {
    width: 28px;
    height: 28px;
    border: 0;
    background: var(--surface);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.chips span,
.skill-list span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 800;
}

[data-theme="dark"] .chips span,
[data-theme="dark"] .skill-list span {
    background: rgba(16, 28, 47, 0.78);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .chips span,
    :root:not([data-theme="light"]) .skill-list span {
        background: rgba(16, 28, 47, 0.78);
    }
}

.project-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 0 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--soft-teal);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.project-link:hover {
    box-shadow: 4px 4px 0 var(--ink);
    transform: translate(-2px, -2px);
}

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

.study-card {
    padding: 24px;
}

.study-card .date {
    display: block;
    margin-bottom: 14px;
}

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

.playbook-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    padding: 22px;
}

.playbook-card::before {
    position: absolute;
    top: -34px;
    right: -34px;
    width: 116px;
    height: 116px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--soft-blue);
    content: "";
}

.playbook-card:nth-child(2)::before {
    background: var(--soft-teal);
}

.playbook-card:nth-child(3)::before {
    background: color-mix(in srgb, var(--coral) 22%, var(--surface));
}

.playbook-card:nth-child(4)::before {
    background: color-mix(in srgb, var(--sun) 34%, var(--surface));
}

.step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    color: var(--violet);
    font-weight: 800;
}

.playbook-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.language-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
}

.language-level {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    margin-bottom: 38px;
    padding: 7px 12px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--soft-teal);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
}

[data-theme="dark"] .language-level {
    color: #ecfeff;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .language-level {
        color: #ecfeff;
    }
}

.skill-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.filter {
    min-height: 42px;
    padding: 0 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.filter.active {
    background: var(--violet);
    color: var(--surface);
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-list span.hidden {
    display: none;
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    padding: 32px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--ink), #1d4ed8);
    color: #ffffff;
}

.contact .eyebrow,
.contact-copy p {
    color: #ccfbf1;
}

.contact .button.ghost {
    color: var(--ink);
}

[data-theme="dark"] .contact {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #f8fafc;
}

[data-theme="dark"] .contact .eyebrow,
[data-theme="dark"] .contact-copy p {
    color: #bae6fd;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .contact {
        background: linear-gradient(135deg, #0f172a, #1e3a8a);
        color: #f8fafc;
    }

    :root:not([data-theme="light"]) .contact .eyebrow,
    :root:not([data-theme="light"]) .contact-copy p {
        color: #bae6fd;
    }
}

[data-theme="dark"] .button.primary,
[data-theme="dark"] .project-link {
    color: #ecfeff;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .button.primary,
    :root:not([data-theme="light"]) .project-link {
        color: #ecfeff;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero,
    .profile-grid,
    .project-grid,
    .project-card.featured,
    .study-grid,
    .playbook-grid,
    .language-grid,
    .contact {
        grid-template-columns: 1fr;
    }

    .project-card.featured {
        grid-column: auto;
    }

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

@media (max-width: 720px) {
    .site-header {
        align-items: flex-start;
        border-radius: 28px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 66px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.65);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    }

    [data-theme="dark"] .main-nav {
        background: rgba(16, 28, 47, 0.96);
    }

    @media (prefers-color-scheme: dark) {
        :root:not([data-theme="light"]) .main-nav {
            background: rgba(16, 28, 47, 0.96);
        }
    }

    .site-header.open .main-nav {
        display: flex;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .section-band {
        padding: 74px 0;
    }

    .hero {
        padding-top: 124px;
    }

    .contact {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
