:root {
    --bg: #070b17;
    --bg-soft: #0d1327;
    --panel: rgba(14, 22, 43, 0.66);
    --panel-strong: rgba(16, 25, 48, 0.88);
    --line: rgba(159, 185, 233, 0.16);
    --text: #f3f7ff;
    --muted: #9aa7c2;
    --blue: #61d8ff;
    --cyan: #6fffd9;
    --violet: #9b8cff;
    --header-height: 92px;
    --page-pad: clamp(24px, 5vw, 82px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 12%, rgba(37, 97, 170, 0.13), transparent 34%),
        radial-gradient(circle at 85% 72%, rgba(94, 70, 190, 0.1), transparent 35%),
        var(--bg);
    font-family: Inter, "SF Pro Display", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
    opacity: 0.28;
    background-image:
        radial-gradient(circle at 18% 34%, rgba(255,255,255,.75) 0 1px, transparent 1.2px),
        radial-gradient(circle at 72% 20%, rgba(113,221,255,.85) 0 1px, transparent 1.2px),
        radial-gradient(circle at 88% 62%, rgba(255,255,255,.65) 0 1px, transparent 1.2px),
        radial-gradient(circle at 45% 86%, rgba(159,140,255,.75) 0 1px, transparent 1.2px);
    background-size: 240px 240px, 310px 310px, 270px 270px, 360px 360px;
}

a {
    color: inherit;
}

::selection {
    color: #061019;
    background: var(--cyan);
}

.ambient {
    position: fixed;
    z-index: -1;
    width: 40vw;
    height: 40vw;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.13;
}

.ambient-one {
    top: -22vw;
    right: -9vw;
    background: #3766ff;
}

.ambient-two {
    bottom: -24vw;
    left: 20vw;
    background: #7c4dff;
}

.ambient-three {
    top: 42vh;
    left: -25vw;
    background: #00cfa8;
}

.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px var(--page-pad);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(111, 255, 217, 0.42);
    border-radius: 12px;
    color: var(--cyan);
    background: rgba(111, 255, 217, 0.06);
    box-shadow: inset 0 0 22px rgba(111, 255, 217, 0.05);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.brand-name {
    color: #e8efff;
    font-size: 14px;
    font-weight: 640;
    letter-spacing: .04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.site-nav a {
    position: relative;
    padding: 10px 0;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 560;
    letter-spacing: .045em;
    transition: color .25s ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.home-page {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
}

.home-main {
    display: grid;
    width: 100%;
    max-width: 1600px;
    flex: 1;
    grid-template-columns: minmax(0, 0.95fr) minmax(410px, 1.05fr);
    align-items: center;
    gap: clamp(28px, 5vw, 90px);
    margin: 0 auto;
    padding: 22px var(--page-pad) 38px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 720px;
    animation: rise-in .9s cubic-bezier(.2,.75,.2,1) both;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-copy h1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    line-height: .96;
}

.name-cn {
    font-size: clamp(60px, 7.7vw, 118px);
    font-weight: 760;
    letter-spacing: -.07em;
    background: linear-gradient(128deg, #ffffff 18%, #aeeeff 56%, #9b8cff 96%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.name-en {
    margin-left: 5px;
    color: rgba(197, 211, 238, .53);
    font-size: clamp(18px, 2vw, 29px);
    font-weight: 530;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 620px;
    margin: 34px 0 0;
    color: #dbe6fa;
    font-size: clamp(21px, 2.15vw, 32px);
    font-weight: 530;
    line-height: 1.55;
    letter-spacing: -.025em;
}

.hero-lead span {
    color: var(--blue);
}

.hero-description {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.topic-row span,
.card-tags span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #b8c8e5;
    background: rgba(145, 177, 232, .045);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .035em;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button-primary {
    color: #06131c;
    background: linear-gradient(105deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 34px rgba(74, 206, 255, .16);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 18px 42px rgba(74, 206, 255, .26);
}

.button-secondary {
    border-color: var(--line);
    color: #cbd8ef;
    background: rgba(255, 255, 255, .025);
    backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(111, 255, 217, .42);
    background: rgba(111, 255, 217, .055);
}

.globe-stage {
    position: relative;
    display: grid;
    min-height: min(650px, 70vh);
    place-items: center;
    animation: globe-in 1.15s .08s cubic-bezier(.2,.75,.2,1) both;
}

.globe-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: drop-shadow(0 35px 55px rgba(0,0,0,.34));
}

.globe-shell::after {
    position: absolute;
    inset: 5%;
    z-index: -2;
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 80px rgba(60, 155, 255, .16),
        0 0 160px rgba(92, 87, 255, .1);
}

.globe-canvas {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: grab;
    touch-action: none;
    outline: none;
}

.globe-canvas:active {
    cursor: grabbing;
}

.globe-canvas:focus-visible {
    box-shadow: 0 0 0 2px var(--cyan), 0 0 45px rgba(111, 255, 217, .22);
}

.globe-fallback {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(103, 224, 255, .3);
    border-radius: 50%;
    background:
        radial-gradient(circle at 33% 28%, rgba(165, 247, 255, .26), transparent 10%),
        radial-gradient(circle at 66% 70%, rgba(88, 88, 205, .32), transparent 32%),
        radial-gradient(circle at 32% 32%, #244f7f, #0b1b38 58%, #050815 75%);
    box-shadow: inset -38px -28px 72px rgba(0,0,0,.65), 0 0 42px rgba(63, 182, 255, .15);
}

.globe-orbit {
    position: absolute;
    z-index: 1;
    width: 88%;
    aspect-ratio: 1;
    border: 1px solid rgba(113, 216, 255, .14);
    border-radius: 50%;
    pointer-events: none;
}

.globe-orbit::after {
    position: absolute;
    top: 50%;
    left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: "";
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
}

.orbit-one {
    transform: rotate(-18deg) scaleY(.38);
    animation: orbit-pulse 5s ease-in-out infinite;
}

.orbit-two {
    width: 75%;
    border-color: rgba(157, 140, 255, .13);
    transform: rotate(56deg) scaleY(.46);
    animation: orbit-pulse 6.5s 1s ease-in-out infinite reverse;
}

.orbit-two::after {
    background: var(--violet);
    box-shadow: 0 0 18px var(--violet);
}

.globe-hint {
    position: absolute;
    z-index: 4;
    right: 2%;
    bottom: 14%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #9baccc;
    background: rgba(6, 12, 26, .62);
    backdrop-filter: blur(14px);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.drag-icon {
    color: var(--cyan);
    font-size: 15px;
}

.coordinate-card {
    position: absolute;
    z-index: 4;
    top: 18%;
    left: 1%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 15px 12px 17px;
    border-left: 1px solid var(--cyan);
    color: var(--muted);
    background: linear-gradient(90deg, rgba(9,17,34,.8), transparent);
    font-size: 8px;
    letter-spacing: .18em;
}

.coordinate-card strong {
    color: #dce9ff;
    font-size: 10px;
    letter-spacing: .1em;
}

.home-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px var(--page-pad) 26px;
    color: rgba(157, 173, 203, .66);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-footer p {
    margin: 0;
}

.home-footer a {
    text-decoration: none;
    text-transform: none;
    transition: color .2s ease;
}

.home-footer a:hover {
    color: var(--cyan);
}

.about-main {
    width: min(1380px, calc(100% - 2 * var(--page-pad)));
    margin: 0 auto;
    padding: 70px 0 120px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: end;
    gap: clamp(40px, 8vw, 130px);
    padding: 70px 0 94px;
}

.about-hero h1 {
    margin: 0;
    color: #f4f7ff;
    font-size: clamp(46px, 5.5vw, 82px);
    font-weight: 720;
    line-height: 1.24;
    letter-spacing: -.055em;
}

.about-hero h1 em {
    color: transparent;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
}

.about-intro {
    padding-bottom: 7px;
}

.about-intro p {
    margin: 0 0 20px;
    color: #aebbd4;
    font-size: 16px;
    line-height: 2;
}

.signal-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
}

.signal-strip > div {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    justify-content: center;
    gap: 11px;
    padding: 24px clamp(16px, 3vw, 42px);
    border-right: 1px solid var(--line);
}

.signal-strip > div:last-child {
    border-right: 0;
}

.signal-strip span,
.section-heading > p,
.project-kicker {
    margin: 0;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.signal-strip strong {
    color: #d8e3f7;
    font-size: 13px;
    font-weight: 560;
}

.content-section {
    padding: 120px 0 20px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(140px, .35fr) minmax(320px, .8fr) minmax(240px, .65fr);
    align-items: end;
    gap: 30px;
    margin-bottom: 52px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 690;
    letter-spacing: -.045em;
}

.section-heading > span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

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

.project-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: clamp(28px, 4vw, 50px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(24,37,70,.62), rgba(9,15,31,.82)),
        var(--panel);
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.project-card::before {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    content: "";
    background: rgba(97, 216, 255, .12);
    filter: blur(50px);
    transition: opacity .35s ease, transform .35s ease;
}

.project-card:hover {
    z-index: 2;
    border-color: rgba(97, 216, 255, .34);
    background:
        linear-gradient(145deg, rgba(27,44,83,.76), rgba(9,15,31,.9)),
        var(--panel);
    transform: translateY(-7px);
}

.project-card:hover::before {
    transform: scale(1.3);
}

.project-featured {
    background:
        linear-gradient(135deg, rgba(30,72,107,.72), rgba(20,22,64,.82)),
        var(--panel);
}

.project-number {
    position: absolute;
    top: 30px;
    right: 34px;
    color: rgba(190, 208, 238, .22);
    font-size: 42px;
    font-weight: 220;
}

.project-card h3 {
    max-width: 520px;
    margin: 18px 0 18px;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -.035em;
}

.project-card > p:not(.project-kicker) {
    max-width: 590px;
    margin: 0;
    color: #a5b3ce;
    font-size: 14px;
    line-height: 1.9;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.toolkit-section .section-heading {
    grid-template-columns: minmax(140px, .35fr) 1.45fr;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.toolkit-grid article {
    min-height: 235px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(13, 21, 42, .52);
}

.toolkit-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(111, 255, 217, .25);
    border-radius: 50%;
    color: var(--cyan);
}

.toolkit-grid h3 {
    margin: 35px 0 14px;
    color: #e7efff;
    font-size: 22px;
}

.toolkit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.offscreen-section {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    align-items: center;
    gap: clamp(50px, 10vw, 160px);
    padding: 145px clamp(20px, 7vw, 100px);
}

.offscreen-section h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(33px, 4vw, 58px);
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -.045em;
}

.offscreen-section > div:last-child > p:last-child {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.orbit-emblem {
    position: relative;
    display: grid;
    width: min(100%, 300px);
    aspect-ratio: 1;
    place-items: center;
    margin: auto;
    border: 1px solid rgba(97, 216, 255, .13);
    border-radius: 50%;
}

.orbit-emblem::before,
.orbit-emblem::after,
.orbit-emblem span {
    position: absolute;
    border: 1px solid rgba(111, 255, 217, .12);
    border-radius: 50%;
    content: "";
}

.orbit-emblem::before {
    inset: 15%;
}

.orbit-emblem::after {
    inset: 33%;
    background: rgba(97, 216, 255, .035);
}

.orbit-emblem span:nth-child(1) {
    inset: 8% 48%;
    border-color: transparent;
    background: linear-gradient(var(--cyan), transparent);
    transform: rotate(45deg);
}

.orbit-emblem span:nth-child(2) {
    inset: 48% 8%;
    border-color: transparent;
    background: linear-gradient(90deg, transparent, var(--violet));
    transform: rotate(-22deg);
}

.orbit-emblem span:nth-child(3) {
    top: 13%;
    right: 20%;
    width: 8px;
    height: 8px;
    border: 0;
    background: var(--cyan);
    box-shadow: 0 0 22px var(--cyan);
    animation: dot-breathe 2.2s ease-in-out infinite;
}

.orbit-emblem strong {
    z-index: 2;
    color: #ddecff;
    font-size: 20px;
    letter-spacing: .12em;
}

.contact-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(44px, 7vw, 90px);
    border: 1px solid rgba(116, 177, 255, .2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 28%, rgba(90, 109, 255, .24), transparent 32%),
        linear-gradient(135deg, rgba(23, 60, 91, .65), rgba(14, 17, 44, .88));
}

.contact-panel::after {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(111, 255, 217, .11);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(111,255,217,.025), 0 0 0 140px rgba(111,255,217,.018);
}

.contact-panel > * {
    position: relative;
    z-index: 2;
}

.contact-panel > p {
    margin: 0 0 22px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-panel h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 5.5vw, 78px);
    font-weight: 680;
    line-height: 1.2;
    letter-spacing: -.055em;
}

.contact-panel > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 42px;
}

.text-link {
    color: #b8c8e3;
    text-underline-offset: 5px;
    font-size: 12px;
}

.about-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px var(--page-pad) 42px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
}

@keyframes rise-in {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes globe-in {
    from { opacity: 0; transform: translateY(22px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes orbit-pulse {
    0%, 100% { opacity: .45; }
    50% { opacity: .95; }
}

@keyframes dot-breathe {
    0%, 100% { opacity: .45; transform: scale(.7); }
    50% { opacity: 1; transform: scale(1.25); }
}

@media (max-width: 1050px) {
    .home-main {
        grid-template-columns: minmax(0, .9fr) minmax(350px, 1.1fr);
        gap: 10px;
    }

    .globe-stage {
        min-height: 520px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-heading {
        grid-template-columns: .35fr 1.1fr;
    }

    .section-heading > span {
        display: none;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 80px;
        --page-pad: 24px;
    }

    .site-header {
        align-items: flex-start;
        padding-top: 20px;
    }

    .brand-name {
        display: none;
    }

    .site-nav {
        max-width: calc(100vw - 90px);
        gap: 20px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        white-space: nowrap;
    }

    .home-main {
        grid-template-columns: 1fr;
        padding-top: 66px;
    }

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

    .name-cn {
        font-size: clamp(58px, 17vw, 94px);
    }

    .name-en {
        font-size: 17px;
    }

    .globe-stage {
        min-height: auto;
        margin: 10px 0 40px;
    }

    .globe-shell {
        max-width: 580px;
    }

    .home-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-main {
        padding-top: 35px;
    }

    .about-hero {
        padding-top: 40px;
    }

    .signal-strip,
    .project-grid,
    .toolkit-grid {
        grid-template-columns: 1fr;
    }

    .signal-strip > div {
        min-height: 95px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .signal-strip > div:last-child {
        border-bottom: 0;
    }

    .section-heading,
    .toolkit-section .section-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .project-card {
        min-height: 0;
    }

    .offscreen-section {
        grid-template-columns: 1fr;
        padding-right: 0;
        padding-left: 0;
    }

    .orbit-emblem {
        width: 240px;
    }
}

@media (max-width: 520px) {
    .site-nav {
        gap: 15px;
    }

    .site-nav a {
        font-size: 11px;
    }

    .home-main {
        padding-top: 48px;
    }

    .hero-lead {
        font-size: 21px;
    }

    .globe-stage {
        margin-top: 24px;
    }

    .globe-hint {
        right: 0;
        bottom: 7%;
    }

    .coordinate-card {
        top: 11%;
        left: 0;
    }

    .about-main {
        width: calc(100% - 40px);
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .content-section {
        padding-top: 88px;
    }

    .project-card,
    .toolkit-grid article {
        padding: 27px;
        border-radius: 19px;
    }

    .project-number {
        top: 23px;
        right: 24px;
        font-size: 30px;
    }

    .contact-panel {
        border-radius: 23px;
    }

    .contact-panel > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
