/* ============================================================
   munj.uk -- generative organic substrate
   Palette : deep burgundy with aurora interference
   Type    : Playfair Display + Source Sans 3 + IBM Plex Mono
   ============================================================ */

:root {
    /* ---- Palette ---- */
    --bg-base:        #1A0A12;
    --bg-edge:        #150810;
    --bg-secondary:   #2D1320;
    --bg-deep:        #1A0A12;
    --text-primary:   #E8DCD0;
    --text-heading:   #C4727F;
    --aurora-1:       #4ECDC4;
    --aurora-2:       #7BF5A5;
    --aurora-3:       #9B72CF;
    --earth:          #3A1F28;
    --earth-deep:     #1A0A12;

    /* ---- Type ---- */
    --font-display:  'Playfair Display', 'Lora', Georgia, serif;
    --font-body:     'Source Sans 3', 'Inter', system-ui, sans-serif;
    --font-mono:     'IBM Plex Mono', 'Menlo', monospace;

    /* ---- Motion ---- */
    --ease-natural: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-organic: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    letter-spacing: 0.005em;
    background-image: radial-gradient(ellipse at 50% 35%, var(--bg-base) 0%, var(--bg-edge) 90%);
}

/* ============================================================
   Aurora wash layers (parallax background)
   ============================================================ */
.aurora-layer {
    position: fixed;
    inset: -25vh -10vw;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    mix-blend-mode: screen;
    opacity: 0.55;
}

.aurora-layer-1 {
    background: radial-gradient(
        ellipse 50vw 35vh at 30% 20%,
        rgba(78, 205, 196, 0.08) 0%,
        rgba(78, 205, 196, 0.04) 40%,
        rgba(78, 205, 196, 0) 70%
    );
    animation: auroraDrift1 130s linear infinite;
}

.aurora-layer-2 {
    background: radial-gradient(
        ellipse 60vw 40vh at 70% 60%,
        rgba(123, 245, 165, 0.06) 0%,
        rgba(123, 245, 165, 0.03) 45%,
        rgba(123, 245, 165, 0) 75%
    );
    animation: auroraDrift2 170s linear infinite;
}

.aurora-layer-3 {
    background: radial-gradient(
        ellipse 70vw 50vh at 50% 80%,
        rgba(155, 114, 207, 0.07) 0%,
        rgba(155, 114, 207, 0.035) 40%,
        rgba(155, 114, 207, 0) 75%
    );
    animation: auroraDrift3 210s linear infinite;
}

@keyframes auroraDrift1 {
    0%   { transform: translate3d(-3vw,  4vh, 0) rotate(0deg);  }
    50%  { transform: translate3d( 4vw, -3vh, 0) rotate(8deg);  }
    100% { transform: translate3d(-3vw,  4vh, 0) rotate(0deg);  }
}

@keyframes auroraDrift2 {
    0%   { transform: translate3d( 3vw, -4vh, 0) rotate(0deg);   }
    50%  { transform: translate3d(-5vw,  5vh, 0) rotate(-10deg); }
    100% { transform: translate3d( 3vw, -4vh, 0) rotate(0deg);   }
}

@keyframes auroraDrift3 {
    0%   { transform: translate3d( 0,    -2vh, 0) rotate(0deg); }
    50%  { transform: translate3d( 4vw,   3vh, 0) rotate(6deg); }
    100% { transform: translate3d( 0,    -2vh, 0) rotate(0deg); }
}

/* Vignette */
.vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(15, 6, 11, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   Embedded organic flow navigation
   ============================================================ */
.flow-nav {
    position: fixed;
    top: 0;
    right: 1.6rem;
    width: 11rem;
    height: 100vh;
    z-index: 50;
    pointer-events: none;
}

.flow-nav-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.nav-node {
    position: absolute;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: auto;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.4s var(--ease-natural), transform 0.4s var(--ease-natural);
}

.nav-node-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aurora-1);
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.6),
                0 0 16px rgba(78, 205, 196, 0.25);
    position: relative;
    transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}

.nav-node-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.5) 0%, transparent 70%);
    animation: nodePulse 4s ease-in-out infinite;
}

.nav-node-label {
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.4s var(--ease-natural), transform 0.4s var(--ease-natural);
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.nav-node:hover,
.nav-node.is-active {
    opacity: 1;
    transform: translateY(-50%) translateX(-6px);
}

.nav-node:hover .nav-node-label,
.nav-node.is-active .nav-node-label {
    opacity: 1;
    transform: translateX(0);
}

.nav-node:hover .nav-node-dot,
.nav-node.is-active .nav-node-dot {
    background: var(--aurora-2);
    box-shadow: 0 0 12px rgba(123, 245, 165, 0.85),
                0 0 24px rgba(123, 245, 165, 0.35);
    transform: scale(1.2);
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1);   opacity: 0.55; }
    50%      { transform: scale(1.6); opacity: 0.0;  }
}

/* ============================================================
   Cursor reactive glow
   ============================================================ */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.07) 0%, rgba(78, 205, 196, 0) 70%);
    pointer-events: none;
    z-index: 2;
    transform: translate3d(-9999px, -9999px, 0);
    transition: opacity 0.4s var(--ease-natural);
    mix-blend-mode: screen;
    opacity: 0;
}

body.has-cursor .cursor-glow {
    opacity: 1;
}

/* ============================================================
   Flowfield main layout
   ============================================================ */
.flowfield {
    position: relative;
    z-index: 5;
    width: 100%;
}

.folio {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8vh 8vw 12vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.folio-final {
    min-height: 100vh;
    padding-bottom: 14vh;
}

.folio-content {
    position: relative;
    z-index: 4;
    max-width: 64rem;
    margin: 0 auto;
    width: 100%;
}

/* Organic content offsets per folio (no rows/columns) */
#folio-origin   .folio-content { transform: translateX(-2vw)  translateY(0); max-width: 56rem; }
#folio-substrate .folio-content { transform: translateX(4vw)  translateY(2vh); margin-left: 6vw; max-width: 52rem; }
#folio-flow     .folio-content { transform: translateX(-3vw) translateY(-1vh); max-width: 64rem; }
#folio-network  .folio-content { transform: translateX(2vw)  translateY(0);  max-width: 60rem; }
#folio-residue  .folio-content { transform: translateX(-4vw) translateY(2vh); max-width: 58rem; margin-left: 4vw; }
#folio-spore    .folio-content { transform: translateX(0)    translateY(0);  max-width: 50rem; text-align: center; }

/* ============================================================
   Background + accent blobs
   ============================================================ */
.bg-blob {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    opacity: 0.85;
    filter: blur(0.4px);
}

.bg-blob.bg-blob-large {
    width: 70vw;
    height: 70vw;
    max-width: 1100px;
    max-height: 1100px;
    top: -10vh;
    left: -10vw;
}

.bg-blob.bg-blob-medium {
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
}

.bg-blob.pos-tl { top: -10vh; left: -10vw; }
.bg-blob.pos-br { bottom: -15vh; right: -10vw; }
.bg-blob.pos-tr { top: -8vh;  right: -8vw; }
.bg-blob.pos-bl { bottom: -10vh; left: -10vw; }
.bg-blob.pos-c  { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.bg-blob path {
    transform-origin: center;
    animation: blobBreath 42s ease-in-out infinite;
}

.bg-blob.bg-blob-medium path { animation-duration: 36s; }

.accent-blob {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    width: 22vw;
    height: 22vw;
    max-width: 360px;
    max-height: 360px;
    opacity: 0.75;
}

.accent-blob.accent-top-right { top: 10vh;  right: 4vw; }
.accent-blob.accent-mid-left  { top: 28vh;  left: 2vw; }
.accent-blob.accent-center    { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accent-blob.accent-bot-left  { bottom: 8vh; left: 4vw; }

.accent-blob path {
    transform-origin: center;
    animation: blobRotate 45s linear infinite, accentStrokeShift 18s ease-in-out infinite;
}

@keyframes blobBreath {
    0%, 100% { transform: scale(1.0) rotate(0deg); }
    33%      { transform: scale(1.06) rotate(2deg); }
    66%      { transform: scale(0.96) rotate(-2deg); }
}

@keyframes blobRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes accentStrokeShift {
    0%, 100% { stroke: var(--aurora-1); }
    33%      { stroke: var(--aurora-2); }
    66%      { stroke: var(--aurora-3); }
}

/* ============================================================
   SVG path-draw mechanics
   ============================================================ */
.draw-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.6s var(--ease-natural);
}

.draw-path.is-drawn {
    stroke-dashoffset: 0;
}

.scroll-draw {
    /* progress controlled by JS (sets stroke-dashoffset directly) */
    transition: stroke-dashoffset 0.5s linear;
}

/* Section connector (between folios) */
.section-connector {
    position: absolute;
    bottom: -12vh;
    left: 50%;
    transform: translateX(-50%);
    width: 18vw;
    max-width: 240px;
    height: 24vh;
    z-index: 3;
    pointer-events: none;
    opacity: 0.85;
}

.section-connector.right-shift { transform: translateX(-30%); }

/* Heading wavy underline */
.heading-underline {
    display: block;
    width: 100%;
    max-width: 28rem;
    height: 14px;
    margin: 0.6rem 0 1.6rem;
}

.heading-underline.in-spore {
    margin-left: auto;
    margin-right: auto;
}

#folio-spore .heading-underline { margin: 0.6rem auto 1.6rem; }

/* Margin bracket */
.margin-bracket {
    position: absolute;
    width: 24px;
    height: 120px;
    z-index: 3;
}

.margin-bracket-left {
    left: -36px;
    top: 1rem;
}

/* ============================================================
   Typography
   ============================================================ */
.display-title,
.section-title {
    font-family: var(--font-display);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin-bottom: 0.6rem;
}

.display-title {
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 1.05;
}

.section-title {
    font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.display-title .word,
.section-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease-natural), transform 0.9s var(--ease-natural);
}

.display-title.is-visible .word,
.section-title.is-visible .word {
    opacity: 1;
    transform: translateY(0);
}

.display-title .word.punct {
    color: var(--aurora-1);
    margin: 0 -0.04em;
}

.display-title i,
.section-title i {
    font-style: italic;
    font-weight: 400;
    color: var(--text-heading);
}

.flow-title { letter-spacing: 0.02em; }

.spore-title {
    font-size: clamp(4rem, 10vw, 9rem);
    text-align: center;
}

.lede {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.7;
    color: var(--text-primary);
    max-width: 42rem;
    margin: 0 0 1.6rem;
    opacity: 0;
    transition: opacity 0.9s var(--ease-natural) 0.2s;
}

.lede.is-visible { opacity: 0.95; }

.body-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.78;
    max-width: 38rem;
    margin: 0 0 1.4rem;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.7s ease-in;
}

.body-text.is-visible { opacity: 0.92; }

.body-text-narrow { max-width: 32rem; }

.body-text em {
    font-style: italic;
    color: var(--text-heading);
    font-weight: 400;
}

/* Mono / annotation */
.mono {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--aurora-1);
    line-height: 1.5;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
    opacity: 0.85;
}

.meta-line .data-tag {
    color: var(--aurora-2);
}

.meta-line .coord {
    color: var(--aurora-1);
    opacity: 0.85;
}

.meta-line .ts {
    color: var(--aurora-3);
    opacity: 0.85;
}

.annotation {
    font-family: var(--font-mono);
    color: var(--aurora-1);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    line-height: 1.55;
    margin: 1.6rem 0;
    max-width: 38rem;
}

.aurora-text   { color: var(--aurora-1); }
.aurora-text-2 { color: var(--aurora-2); }
.aurora-text-3 { color: var(--aurora-3); }

/* Typewriter */
.typewriter {
    min-height: 1.4em;
}

.typewriter::after {
    content: '_';
    color: var(--aurora-2);
    margin-left: 2px;
    animation: caretBlink 1s steps(2) infinite;
}

.typewriter.is-done::after { opacity: 0.4; }

@keyframes caretBlink {
    0%, 50%   { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Reading list (substrate folio) */
.reading-list {
    list-style: none;
    margin: 1.4rem 0 0;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
    max-width: 38rem;
}

.reading-list li {
    margin: 0.4rem 0;
    line-height: 1.6;
    break-inside: avoid;
    color: rgba(232, 220, 208, 0.7);
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

/* Tributary (branch) */
.tributary {
    position: relative;
    padding: 0.6rem 0 0.6rem 0;
    margin: 1.4rem 0 1.4rem auto;
    max-width: 26rem;
    transform-origin: top left;
}

.tributary-right {
    margin-left: auto;
    margin-right: 6vw;
    transform: rotate(-3deg);
}

.tributary .branch-line {
    display: block;
    width: 100%;
    height: 28px;
    margin-bottom: 0.4rem;
}

.tributary .annotation {
    color: var(--aurora-2);
    margin: 0;
    font-size: 0.78rem;
}

/* ============================================================
   Flow grid (cards in folio 3)
   ============================================================ */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin: 2.4rem 0 2rem;
}

.flow-card,
.residue-card {
    background: linear-gradient(160deg, rgba(45, 19, 32, 0.85) 0%, rgba(26, 10, 18, 0.85) 100%);
    border: 1px solid rgba(58, 31, 40, 0.7);
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    backdrop-filter: blur(2px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-natural), transform 0.7s var(--ease-natural);
    will-change: transform;
}

.flow-card.is-visible,
.residue-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-card-1 { transform: rotate(-1.4deg) translateY(20px); }
.flow-card-2 { transform: rotate(0.6deg)  translateY(28px); }
.flow-card-3 { transform: rotate(-0.4deg) translateY(14px); }

.flow-card.is-visible.flow-card-1 { transform: rotate(-1.4deg) translateY(0); }
.flow-card.is-visible.flow-card-2 { transform: rotate(0.6deg)  translateY(0); }
.flow-card.is-visible.flow-card-3 { transform: rotate(-0.4deg) translateY(0); }

.flow-card::before,
.residue-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(78, 205, 196, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-natural);
    pointer-events: none;
}

.flow-card:hover::before,
.residue-card:hover::before {
    opacity: 1;
}

.card-tag {
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.card-title i {
    font-style: italic;
    font-weight: 400;
}

.card-body {
    color: rgba(232, 220, 208, 0.86);
    font-size: 0.98rem;
    line-height: 1.7;
}

.tilt {
    transition: transform 0.4s var(--ease-natural), opacity 0.7s var(--ease-natural);
}

/* ============================================================
   Pull quote (residue folio)
   ============================================================ */
.pull-quote {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.45;
    color: var(--text-primary);
    margin: 2rem 0 2.4rem;
    padding: 1rem 0 1rem 2.4rem;
    border-left: 1px solid var(--earth);
    max-width: 42rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s var(--ease-natural), transform 0.9s var(--ease-natural);
    font-weight: 400;
}

.pull-quote.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pull-quote i {
    color: var(--text-heading);
    font-weight: 700;
    font-style: italic;
}

.quote-mark {
    position: absolute;
    top: -0.6rem;
    left: 0.4rem;
    font-size: 3.2rem;
    line-height: 1;
    color: var(--aurora-3);
    opacity: 0.7;
    font-family: var(--font-display);
}

.residue-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    margin: 1.6rem 0 1rem;
}

/* ============================================================
   Root network (folio 4)
   ============================================================ */
.root-network-wrap {
    margin: 1.4rem auto 1.4rem;
    max-width: 60rem;
    width: 100%;
    position: relative;
}

.root-network {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(78, 205, 196, 0.18));
}

.root-network .draw-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 2.4s var(--ease-natural);
}

.root-network.is-visible .draw-path {
    stroke-dashoffset: 0;
}

.node-pulse {
    transform-origin: center;
    transform-box: fill-box;
    animation: pulseScale 3.6s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(123, 245, 165, 0.6));
}

.node-pulse-soft {
    transform-origin: center;
    transform-box: fill-box;
    animation: pulseScale 5s ease-in-out infinite;
    opacity: 0.85;
}

@keyframes pulseScale {
    0%, 100% { transform: scale(1);   opacity: 1;    }
    50%      { transform: scale(1.5); opacity: 0.55; }
}

/* ============================================================
   Spore folio final
   ============================================================ */
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 2.4rem 0;
    opacity: 0;
    transition: opacity 0.9s var(--ease-natural) 0.2s;
}

.contact-block.is-visible { opacity: 1; }

.contact-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    transition: color 0.3s var(--ease-natural), background 0.3s var(--ease-natural);
}

.contact-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.3s var(--ease-natural), transform 0.3s var(--ease-natural);
    pointer-events: none;
}

.contact-link:hover {
    color: var(--aurora-2);
}

.contact-link:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.footer-line {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: rgba(232, 220, 208, 0.4);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
}

.footer-line .dotted {
    color: var(--earth);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .flow-nav { width: 7rem; right: 0.6rem; }
    .nav-node-label { font-size: 0.65rem; }
}

@media (max-width: 760px) {
    body { font-size: 1rem; }

    .flow-nav { display: none; }

    .folio { padding: 8vh 6vw 12vh; }

    #folio-origin   .folio-content,
    #folio-substrate .folio-content,
    #folio-flow     .folio-content,
    #folio-network  .folio-content,
    #folio-residue  .folio-content,
    #folio-spore    .folio-content {
        transform: none;
        margin: 0 auto;
    }

    .flow-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .residue-pair {
        grid-template-columns: 1fr;
    }

    .reading-list {
        columns: 1;
    }

    .display-title { font-size: clamp(2.6rem, 12vw, 4rem); }
    .section-title { font-size: clamp(1.8rem, 8vw, 3rem); }
    .spore-title   { font-size: clamp(3.2rem, 16vw, 6rem); }

    .margin-bracket-left { display: none; }

    .tributary-right {
        margin-right: 0;
        transform: rotate(-2deg);
    }

    .accent-blob.accent-top-right { right: -6vw; }
    .accent-blob.accent-mid-left  { left: -6vw; }
    .accent-blob.accent-bot-left  { left: -6vw; }

    .section-connector { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }
}
