/* ======================================================================
   concepts.news
   vaporwave × botanical naturalism — midnight-blue, layered depth, morph
   Typography note: Monoton (Google Fonts), Righteous, Spectral, IBM Plex Mono.
   Motif note: Interspersed with the botanical elements: CRT scanlines and dithered gradients.
   ====================================================================== */

:root {
    --c-bg-abyssal:   #0a0e27;
    --c-bg-twilight:  #121a3a;
    --c-bg-violet:    #1a1040;
    --c-bg-deeper:    #070a1f;
    --c-mag:          #e040fb;
    --c-cyan:         #5ce0d2;
    --c-orchid:       #9b72cf;
    --c-orchid-deep: #7c1fa0;
    --c-orchid-dark: #4a0072;
    --c-text:         #c8c8e8;
    --c-text-muted:   #6a6aa0;
    --c-amber:        #f0c040;
    --c-coral:        #ff6b8a;
    --c-wire:         #2a2a5a;

    --font-display: "Monoton", "Inter", sans-serif;
    --font-sub:     "Righteous", "Inter", sans-serif;
    --font-body:    "Spectral", "Lora", Georgia, serif;
    --font-mono:    "IBM Plex Mono", "Space Mono", monospace;

    --ease-cubic: cubic-bezier(0.65, 0.05, 0.36, 1);
    --ease-lux:   cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--c-bg-abyssal);
    color: var(--c-text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    position: relative;
    min-height: 100vh;
}

/* --- PLANES (layered depth) -------------------------------------------- */
.plane {
    pointer-events: none;
}

.plane-background,
.plane-midground,
.plane-foreground {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.plane-background { z-index: -3; }
.plane-midground  { z-index: -2; }
.plane-content    { position: relative; z-index: 1; pointer-events: auto; }
.plane-foreground { z-index: 4; mix-blend-mode: screen; }

/* --- Gradient field (plane 0) ------------------------------------------ */
.gradient-field {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(1200px 800px at 20% 30%, rgba(224, 64, 251, 0.10), transparent 60%),
        radial-gradient(1000px 700px at 80% 70%, rgba(92, 224, 210, 0.08), transparent 60%),
        radial-gradient(900px 600px at 50% 90%, rgba(155, 114, 207, 0.09), transparent 65%),
        linear-gradient(160deg, #0a0e27 0%, #121a3a 45%, #1a1040 100%);
    animation: gradient-morph 24s var(--ease-lux) infinite alternate;
    filter: saturate(1.05);
}

@keyframes gradient-morph {
    0%   { transform: scale(1)    translate(0, 0)   rotate(0deg); filter: hue-rotate(0deg) saturate(1.05); }
    50%  { transform: scale(1.04) translate(-1%, 1%) rotate(2deg); filter: hue-rotate(-8deg) saturate(1.15); }
    100% { transform: scale(1.02) translate(1%, -1%) rotate(-1deg); filter: hue-rotate(6deg) saturate(1.05); }
}

.bg-botanical {
    position: absolute;
    width: 70vmax;
    height: 70vmax;
    opacity: 0.55;
    pointer-events: none;
    will-change: transform;
}
.bg-botanical-1 {
    top: -10vmax;
    left: -15vmax;
}
.bg-botanical-2 {
    bottom: -20vmax;
    right: -15vmax;
    opacity: 0.42;
}

/* CRT scanlines */
.crt-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(26, 16, 64, 0.40) 0px,
        rgba(26, 16, 64, 0.40) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.5;
    mix-blend-mode: multiply;
    will-change: transform;
}

/* CRT noise */
.crt-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        radial-gradient(1px 1px at 25% 30%, rgba(200, 200, 232, 0.9) 50%, transparent 51%),
        radial-gradient(1px 1px at 75% 70%, rgba(200, 200, 232, 0.8) 50%, transparent 51%),
        radial-gradient(1px 1px at 45% 80%, rgba(200, 200, 232, 0.9) 50%, transparent 51%),
        radial-gradient(1px 1px at 15% 60%, rgba(200, 200, 232, 0.7) 50%, transparent 51%),
        radial-gradient(1px 1px at 90% 15%, rgba(200, 200, 232, 0.8) 50%, transparent 51%);
    background-size: 200px 200px, 240px 240px, 180px 180px, 220px 220px, 260px 260px;
    mix-blend-mode: screen;
    animation: noise-flicker 2s steps(8) infinite;
}

@keyframes noise-flicker {
    0%, 100% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    25%      { background-position: 5px 7px, -3px 4px, 2px -6px, -7px 3px, 4px -2px; }
    50%      { background-position: -4px 2px, 6px -5px, -2px 8px, 5px -4px, -6px 5px; }
    75%      { background-position: 3px -6px, -5px 3px, 6px 4px, -2px -3px, 7px 6px; }
}

/* --- Vellum mid-ground panels ----------------------------------------- */
.vellum-panel {
    position: absolute;
    width: 34vw;
    max-width: 520px;
    min-width: 220px;
    aspect-ratio: 1 / 1;
    opacity: 0.55;
    backdrop-filter: blur(2px) brightness(0.82);
    -webkit-backdrop-filter: blur(2px) brightness(0.82);
    background: linear-gradient(140deg, rgba(18, 26, 58, 0.28), rgba(26, 16, 64, 0.12));
    /* hand-torn vellum edges via clip-path */
    clip-path: polygon(
        4% 8%, 18% 2%, 36% 6%, 55% 1%, 78% 4%, 94% 10%,
        98% 28%, 95% 52%, 99% 72%, 92% 90%,
        74% 96%, 52% 92%, 34% 98%, 16% 93%, 4% 86%,
        2% 66%, 6% 44%, 1% 22%
    );
    filter: drop-shadow(0 6px 30px rgba(224, 64, 251, 0.08));
    will-change: transform;
}

.vellum-panel svg {
    width: 100%;
    height: 100%;
    display: block;
}

.vellum-1 { top: 15vh;  left: -6vw;  transform: rotate(-6deg); }
.vellum-2 { top: 85vh;  right: -4vw; transform: rotate(5deg); width: 28vw; }
.vellum-3 { top: 165vh; left: 55vw;  transform: rotate(-3deg); width: 32vw; }
.vellum-4 { top: 245vh; left: -2vw;  transform: rotate(8deg); width: 30vw; }

/* --- Side navigation --------------------------------------------------- */
.side-nav {
    position: fixed;
    top: 4rem;
    left: 1.5rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    pointer-events: auto;
}

.nav-glyph {
    position: relative;
    width: 28px;
    height: 28px;
    display: block;
    color: var(--c-cyan);
    opacity: 0.55;
    transition: transform 0.5s var(--ease-lux), opacity 0.5s var(--ease-lux), filter 0.5s var(--ease-lux);
    text-decoration: none;
    filter: drop-shadow(0 0 0 rgba(92, 224, 210, 0));
}

.nav-glyph svg {
    width: 100%;
    height: 100%;
    display: block;
}

.nav-glyph:hover {
    transform: scale(3);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(92, 224, 210, 0.6));
    z-index: 21;
}

.nav-glyph.active {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(92, 224, 210, 0.8));
    animation: glyph-pulse 3s ease-in-out infinite;
}

@keyframes glyph-pulse {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(92, 224, 210, 0.45)); }
    50%      { filter: drop-shadow(0 0 10px rgba(92, 224, 210, 0.9)); }
}

.nav-label {
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px) scale(0.3);
    transform-origin: left center;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: var(--c-mag);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
    pointer-events: none;
    text-shadow:
        0 0 6px rgba(224, 64, 251, 0.8),
        0 0 14px rgba(124, 31, 160, 0.6);
}

.nav-glyph:hover .nav-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(0.34);
}

/* --- Scroll-linked vine (right edge) ---------------------------------- */
.scroll-vine {
    position: fixed;
    top: 0;
    right: 1rem;
    width: 48px;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(92, 224, 210, 0.5));
}

#vine-path {
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    transition: stroke-dashoffset 0.15s linear;
}

.vine-leaf {
    opacity: 0;
    transform-origin: 40px center;
    transform: scale(0.2);
    transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
    filter: drop-shadow(0 0 3px rgba(92, 224, 210, 0.5));
}
.vine-leaf.visible {
    opacity: 1;
    transform: scale(1);
}

.vine-bloom {
    opacity: 0;
    transform-origin: 40px 20px;
    transform: scale(0.1);
    transition: opacity 1.2s var(--ease-lux), transform 1.2s var(--ease-lux);
    filter: drop-shadow(0 0 6px rgba(240, 192, 64, 0.9));
}
.vine-bloom.visible {
    opacity: 1;
    transform: scale(1);
    animation: bloom-pulse 3s ease-in-out infinite;
}

@keyframes bloom-pulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(240, 192, 64, 0.7)); }
    50%      { filter: drop-shadow(0 0 14px rgba(240, 192, 64, 1)); }
}

/* --- Content plane ----------------------------------------------------- */
.plane-content {
    position: relative;
    z-index: 1;
    padding: 0 6vw 0 6vw;
    margin-left: 3.5rem;
}

/* Sections */
.section {
    position: relative;
    min-height: 100vh;
    padding: 14vh 2vw 14vh 2vw;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 1.4rem;
    row-gap: 6vh;
    align-content: center;
}

.section-prologue  { min-height: 110vh; }
.section-colophon  { min-height: 90vh; }

/* Void zone between sections */
.void-zone {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    pointer-events: none;
    opacity: 0.7;
}

.void-wire {
    width: 62%;
    height: auto;
    animation: void-breathe 9s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(92, 224, 210, 0.15));
}

@keyframes void-breathe {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.55; }
    50%      { transform: scale(1.06) translateY(-6px); opacity: 0.85; }
}

/* Section markers */
.section-marker {
    grid-column: 1 / span 12;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s var(--ease-lux), transform 1.2s var(--ease-lux);
    margin-bottom: 2vh;
}
.section-marker svg {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
}
.marker-label {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.section.in-view .section-marker {
    opacity: 1;
    transform: translateY(0);
}

/* Islands (content blocks) */
.island {
    position: relative;
    padding: 1.6rem 1.9rem;
    background: linear-gradient(145deg, rgba(18, 26, 58, 0.55), rgba(10, 14, 39, 0.45));
    border: 1px solid rgba(155, 114, 207, 0.14);
    border-radius: 2px;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux);
    box-shadow:
        0 0 0 1px rgba(92, 224, 210, 0.04),
        0 20px 60px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(26, 16, 64, 0.35);
}

/* Chromatic aberration on island edge */
.island::before,
.island::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.45;
}
.island::before {
    transform: translate(-1px, 0);
    border-color: rgba(224, 64, 251, 0.28);
}
.island::after {
    transform: translate(1px, 0);
    border-color: rgba(92, 224, 210, 0.28);
}

.section.in-view .island {
    opacity: 1;
    transform: translateY(0);
}

/* Island grid placements */
.col-1-6  { grid-column: 1 / span 6; }
.col-1-7  { grid-column: 1 / span 6; }
.col-2-7  { grid-column: 2 / span 5; }
.col-2-8  { grid-column: 2 / span 6; }
.col-2-10 { grid-column: 2 / span 9; }
.col-3-9  { grid-column: 3 / span 6; }
.col-3-10 { grid-column: 3 / span 7; }
.col-4-10 { grid-column: 4 / span 6; }
.col-5-11 { grid-column: 5 / span 6; }
.col-6-12 { grid-column: 6 / span 7; }
.col-7-12 { grid-column: 7 / span 6; }
.col-8-12 { grid-column: 8 / span 5; }
.col-1-5  { grid-column: 1 / span 5; }

.island-left     { grid-column: 2 / span 6; }
.island-right    { grid-column: 8 / span 4; }
.island-center   { grid-column: 3 / span 8; text-align: center; }
.island-masthead { padding: 2.4rem 2.4rem; }
.island-fiddlehead {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.island-fiddlehead::before,
.island-fiddlehead::after { display: none; }

.island-diagram {
    background: linear-gradient(145deg, rgba(18, 26, 58, 0.35), rgba(10, 14, 39, 0.2));
    text-align: center;
}

/* --- Typography -------------------------------------------------------- */

.display-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    letter-spacing: 0.15em;
    line-height: 1.05;
    margin: 0.4em 0 0.5em;
    color: var(--c-mag);
}

.neon-text,
.neon-dot {
    display: inline-block;
    color: #fff0ff;
    text-shadow:
        0 0 7px #e040fb,
        0 0 20px #e040fb,
        0 0 42px #7c1fa0,
        0 0 82px #4a0072;
    animation: neon-idle 3s ease-in-out infinite;
    transition: text-shadow 0.4s var(--ease-lux), color 0.4s var(--ease-lux);
}
.neon-dot {
    color: var(--c-cyan);
    text-shadow:
        0 0 5px #5ce0d2,
        0 0 14px #5ce0d2,
        0 0 30px #5ce0d2;
}

.display-title:hover .neon-text {
    color: #ffffff;
    text-shadow:
        0 0 10px #ffffff,
        0 0 28px #e040fb,
        0 0 60px #7c1fa0,
        0 0 120px #4a0072;
}

@keyframes neon-idle {
    0%, 100% {
        text-shadow:
            0 0 7px #e040fb,
            0 0 20px #e040fb,
            0 0 42px #7c1fa0,
            0 0 82px #4a0072;
        opacity: 1;
    }
    45%  { opacity: 0.85; }
    50%  {
        text-shadow:
            0 0 5px #e040fb,
            0 0 14px #e040fb,
            0 0 30px #7c1fa0,
            0 0 58px #4a0072;
        opacity: 0.72;
    }
    55%  { opacity: 0.88; }
}

.masthead-sub {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--c-text);
    opacity: 0.85;
    margin: 0.5rem 0 0;
    max-width: 34rem;
}

.section-title {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 0.05em;
    margin: 0.2em 0 0.6em;
    line-height: 1.15;
}
.section-title-magenta { color: var(--c-mag);  text-shadow: 0 0 14px rgba(224, 64, 251, 0.45); }
.section-title-cyan    { color: var(--c-cyan); text-shadow: 0 0 14px rgba(92, 224, 210, 0.45); }

.sub-title {
    font-family: var(--font-sub);
    font-size: clamp(1.15rem, 2.4vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--c-orchid);
    margin: 0.2em 0 0.7em;
    line-height: 1.25;
}

.body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    color: var(--c-text);
    margin: 0 0 1.1em;
}
.body.center { text-align: center; }

.emph {
    font-style: italic;
    font-weight: 500;
    color: var(--c-cyan);
}

.metadata {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin: 0 0 0.8rem;
}
.metadata.right { text-align: right; }
.metadata.center { text-align: center; }

.caption {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin: 0.6rem 0 0;
    text-align: center;
    text-transform: lowercase;
}

.pull-quote {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.2rem, 2.6vw, 1.8rem);
    line-height: 1.45;
    color: var(--c-text);
    margin: 0 0 0.7em;
    padding: 0.3em 0 0.3em 1.2em;
    border-left: 2px solid var(--c-mag);
    text-shadow: 0 0 10px rgba(224, 64, 251, 0.25);
}
.pull-quote-amber {
    border-left-color: var(--c-amber);
    color: var(--c-amber);
    text-shadow: 0 0 12px rgba(240, 192, 64, 0.35);
}

.dot-divider {
    display: inline-block;
    margin: 0 0.9em;
    color: var(--c-orchid);
    opacity: 0.55;
    font-size: 1.2rem;
}

/* --- Botanical illustrations ------------------------------------------ */
.botanical-illus {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 8px rgba(155, 114, 207, 0.3));
}

.botanical-illus path,
.botanical-illus circle {
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    transition: stroke-dashoffset 1.6s var(--ease-lux);
}
.section.in-view .botanical-illus path,
.section.in-view .botanical-illus circle {
    stroke-dashoffset: 0;
}

/* Fiddlehead */
.fiddlehead {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(92, 224, 210, 0.6));
}
#fiddlehead-path {
    stroke-dasharray: 620;
    stroke-dashoffset: 620;
    animation: fiddle-unfurl 3.8s var(--ease-lux) forwards;
}
@keyframes fiddle-unfurl {
    to { stroke-dashoffset: 0; }
}

/* Dithered patch */
.dithered-patch {
    width: 100%;
    max-width: 340px;
    height: 160px;
    margin: 0 auto;
    background-image:
        repeating-linear-gradient(0deg,
            rgba(224, 64, 251, 0.75) 0, rgba(224, 64, 251, 0.75) 2px,
            transparent 2px, transparent 4px),
        repeating-linear-gradient(90deg,
            rgba(92, 224, 210, 0.65) 0, rgba(92, 224, 210, 0.65) 2px,
            transparent 2px, transparent 4px),
        linear-gradient(135deg, rgba(224, 64, 251, 0.55), rgba(92, 224, 210, 0.55));
    background-size: 4px 4px, 4px 4px, 100% 100%;
    background-blend-mode: screen, screen, normal;
    border: 1px solid rgba(155, 114, 207, 0.25);
    filter: contrast(1.1) saturate(1.2);
    animation: dither-shift 4s steps(6) infinite;
}
@keyframes dither-shift {
    0%   { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 4px 4px, -4px -4px, 0 0; }
}

/* --- Foreground drift artifacts --------------------------------------- */
.fg-drift {
    position: absolute;
    width: 140px;
    height: 140px;
    opacity: 0.6;
    pointer-events: none;
    will-change: transform;
    filter: drop-shadow(0 0 10px rgba(92, 224, 210, 0.4));
}
.fg-drift-1 { top: 20vh; right: 8vw; }
.fg-drift-2 { top: 140vh; left: 12vw; opacity: 0.45; }
.fg-drift-3 { top: 260vh; right: 14vw; opacity: 0.5; }

.fg-drift path,
.fg-drift circle {
    animation: fg-breathe 7s ease-in-out infinite;
}
@keyframes fg-breathe {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.55; }
}

.fg-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(224, 64, 251, 0.0) 20%,
        rgba(224, 64, 251, 0.5) 48%,
        rgba(92, 224, 210, 0.5) 52%,
        rgba(224, 64, 251, 0.0) 80%,
        transparent 100%);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* --- Section-level layout tweaks -------------------------------------- */
.section-prologue .island-masthead { align-self: center; }
.section-prologue .island-fiddlehead { align-self: center; }

.section-colophon .island-center {
    text-align: center;
    padding: 3rem 2.4rem;
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
    .plane-content { padding: 0 4vw; margin-left: 2.5rem; }
    .section {
        grid-template-columns: repeat(6, 1fr);
        column-gap: 0.8rem;
        padding: 10vh 2vw;
    }
    .col-1-6, .col-1-7, .col-2-7, .col-2-8, .col-2-10,
    .col-3-9, .col-3-10, .col-4-10, .col-5-11,
    .col-6-12, .col-7-12, .col-8-12, .col-1-5,
    .island-left, .island-right, .island-center {
        grid-column: 1 / -1;
    }
    .side-nav { top: 1rem; left: 0.8rem; gap: 0.9rem; }
    .nav-glyph { width: 22px; height: 22px; }
    .nav-glyph:hover { transform: scale(2); }
    .scroll-vine { right: 0.3rem; width: 30px; }
    .vellum-panel { opacity: 0.35; }
    .fg-drift { width: 90px; height: 90px; opacity: 0.4; }
}

@media (max-width: 600px) {
    .display-title { font-size: clamp(2rem, 12vw, 3.5rem); }
    .section-title { font-size: clamp(1.4rem, 7vw, 2.2rem); }
    .island { padding: 1.2rem 1.2rem; }
    .void-zone { height: 40vh; }
}

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