/*
 * Luobo landing page styles
 * Structure:
 * 1. Design tokens and base reset
 * 2. Ambient background effects
 * 3. Header and navigation
 * 4. Shared section primitives
 * 5. Page sections
 * 6. Motion system
 * 7. Responsive rules
 */

/* 1. Design tokens and base reset */
:root {
    --cream: #FAF5EA;
    --cream-deep: #F2EAD5;
    --beige: #E8DFC9;
    --warm-gray: #B5A98F;
    --text-main: #3A3226;
    --text-soft: #6B5F4A;
    --text-light: #8B7E6A;
    --accent-brown: #8B6F47;
    --accent-deep: #6B5436;
    --accent-light: #A88560;
    --sprout: #7A8B5C;
    --sprout-deep: #5C6B45;
    --sprout-light: #9BAA7E;
    --line-color: #D4C9B0;
    --water: #8BAFCD;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    --font-serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
    --font-latin: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
}

body {
    background: var(--cream);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -ms-overflow-style: none;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
}

/* 2. Ambient background effects */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(232, 223, 201, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(232, 223, 201, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: multiply;
}

.mouse-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: multiply;
}

.spore {
    position: fixed;
    border-radius: 50%;
    background: rgba(168, 133, 96, 0.3);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    animation: spore-float 20s linear infinite;
}

.spore-1 {
    left: 10%;
    width: 4px;
    height: 4px;
    animation-delay: 0s;
}

.spore-2 {
    left: 30%;
    width: 3px;
    height: 3px;
    animation-delay: 3s;
}

.spore-3 {
    left: 60%;
    width: 5px;
    height: 5px;
    animation-delay: 6s;
}

.spore-4 {
    left: 80%;
    width: 3px;
    height: 3px;
    animation-delay: 9s;
}

.spore-5 {
    left: 50%;
    width: 4px;
    height: 4px;
    animation-delay: 12s;
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

@keyframes spore-float {
    0% {
        transform: translate(0, 100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translate(20px, 80vh) scale(1);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translate(50px, -20vh) scale(0.5);
        opacity: 0;
    }
}

/* 3. Header and navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(250, 245, 234, 0.92) 60%, rgba(250, 245, 234, 0));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
    box-shadow: 0 1px 20px rgba(139, 111, 71, 0.06);
    padding: 16px 56px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-main);
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 0.82rem;
    color: var(--text-soft);
    letter-spacing: 0.08em;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-brown);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--accent-brown);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* 4. Shared section primitives */
section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 110px 56px;
    position: relative;
}

.section-label {
    font-family: var(--font-latin);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--accent-brown);
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-brown);
    opacity: 0.6;
    flex-shrink: 0;
}

.section-label-center,
.principle .section-label {
    justify-content: center;
}

.section-label-center::after,
.principle .section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-brown);
    opacity: 0.6;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.section-quote {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-brown);
    margin-bottom: 42px;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.section-text {
    font-size: 0.98rem;
    color: var(--text-soft);
    line-height: 2.1;
    max-width: 520px;
}

.section-text p + p {
    margin-top: 20px;
}

.latin-em {
    position: relative;
    display: inline-block;
    padding: 0 0.16em;
    color: var(--accent-deep);
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 500;
    isolation: isolate;
}

.latin-em::before {
    content: '';
    position: absolute;
    inset: 0.16em -0.18em 0.08em -0.16em;
    background: rgba(155, 170, 126, 0.26);
    border-radius: 54% 46% 58% 42% / 46% 60% 40% 54%;
    transform: rotate(-2deg);
    pointer-events: none;
    z-index: -1;
}

/* 5. Page sections */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 56px 80px;
    position: relative;
}

.hero-tag {
    font-family: var(--font-latin);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 36px;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-tag::before, .hero-tag::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--warm-gray);
    opacity: 0.6;
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: 38px;
    letter-spacing: 0.08em;
}

.hero-title .accent {
    color: var(--accent-brown);
    font-style: italic;
    font-family: var(--font-latin);
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background: rgba(139, 111, 71, 0.15);
    border-radius: 50%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.hero-title.visible .accent::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 540px;
    line-height: 2.1;
    margin-bottom: 50px;
}

.hero-illustration {
    width: 340px;
    height: 400px;
    position: relative;
}

.floating-seed {
    position: absolute;
    opacity: 0;
    animation: float-down 14s linear infinite;
}

.floating-seed:nth-child(1) {
    left: 12%;
    top: 15%;
    animation-delay: 0s;
    animation-duration: 16s;
}

.floating-seed:nth-child(2) {
    left: 78%;
    top: 22%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.floating-seed:nth-child(3) {
    left: 25%;
    top: 60%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.floating-seed:nth-child(4) {
    left: 88%;
    top: 55%;
    animation-delay: 9s;
    animation-duration: 17s;
}

.floating-seed:nth-child(5) {
    left: 45%;
    top: 80%;
    animation-delay: 4s;
    animation-duration: 19s;
}

@keyframes float-down {
    0% {
        transform: translate(0, -40px) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.55;
    }
    50% {
        transform: translate(25px, 40px) rotate(180deg);
        opacity: 0.55;
    }
    92% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, 100px) rotate(360deg);
        opacity: 0;
    }
}

.intention,
.practice,
.about {
    display: grid;
    gap: 80px;
    align-items: center;
}

.intention {
    grid-template-columns: 1.15fr 1fr;
}

.practice,
.about {
    grid-template-columns: 1fr 1.15fr;
}

.intention-illust,
.practice-illust {
    width: 100%;
    max-width: 460px;
}

.intention-illust {
    margin-left: auto;
}

.practice-illust {
    margin-right: auto;
}

.principle {
    text-align: center;
    position: relative;
    padding: 120px 56px 60px;
    max-width: 1200px;
    overflow: visible;
}

.principle-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.principle .section-text {
    margin: 0 auto;
    max-width: 600px;
    font-size: 1rem;
}

.principle-roots-section {
    position: relative;
    width: 100%;
    height: 360px;
    margin-top: 0;
    overflow: visible;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.principle-roots-section svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    height: 100%;
    overflow: visible;
}

.planted {
    max-width: 880px;
}

.planted-header {
    text-align: center;
    margin-bottom: 72px;
}

.planted-intro {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-top: 12px;
    font-family: var(--font-latin);
    font-style: italic;
    letter-spacing: 0.05em;
}

.project {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px dashed var(--line-color);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project:last-of-type {
    border-bottom: none;
}

.project:hover {
    transform: translateX(10px);
}

.project-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project:hover .project-icon {
    transform: rotate(-8deg);
}

.project:hover .project-icon::before {
    opacity: 1;
    transform: scale(1.5);
}

.project-name {
    font-family: var(--font-latin);
    font-size: 1.45rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.project:hover .project-name {
    color: var(--accent-brown);
}

.project-desc {
    color: var(--text-soft);
    line-height: 1.9;
    font-size: 0.95rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-brown);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-latin);
    font-style: italic;
    letter-spacing: 0.05em;
    transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
    white-space: nowrap;
}

.project-link:hover {
    gap: 16px;
    color: var(--accent-deep);
}

.planted-footer {
    margin-top: 56px;
    padding-top: 36px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    font-family: var(--font-latin);
    text-align: center;
    line-height: 1.9;
    letter-spacing: 0.03em;
    position: relative;
}

.planted-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--line-color);
}

.about-illust {
    width: 100%;
    max-width: 540px;
}

.contact {
    text-align: center;
    padding: 120px 56px 100px;
    max-width: 760px;
}

.contact-text {
    color: var(--text-soft);
    line-height: 2;
    max-width: 480px;
    margin: 0 auto 48px;
    font-size: 0.98rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--text-soft);
    text-decoration: none;
    font-family: var(--font-latin);
    font-size: 1.1rem;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 6px;
    letter-spacing: 0.04em;
    display: inline-block;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-brown);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
    color: var(--accent-brown);
    transform: translateY(-4px);
}

.contact-link:hover::after {
    width: 100%;
    left: 0;
}

.contact-link-disabled {
    cursor: default;
    opacity: 0.55;
}

.contact-link-disabled:hover {
    color: var(--text-soft);
    transform: none;
}

.contact-link-disabled:hover::after {
    width: 0;
    left: 50%;
}

footer {
    text-align: center;
    padding: 70px 56px 60px;
    border-top: 1px dashed var(--line-color);
    margin: 40px auto 0;
    max-width: 1080px;
}

.footer-sprout {
    margin-bottom: 24px;
    display: inline-block;
}

.footer-text {
    font-family: var(--font-serif);
    color: var(--text-soft);
    font-size: 0.98rem;
    margin-bottom: 14px;
    letter-spacing: 0.2em;
}

.footer-copy {
    font-family: var(--font-latin);
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    font-style: italic;
}

/* 6. Motion system */
@keyframes wind-gust {
    0%, 80%, 100% {
        transform: rotate(0deg);
    }
    82% {
        transform: rotate(-0.8deg);
    }
    86% {
        transform: rotate(1.2deg);
    }
    90% {
        transform: rotate(-0.5deg);
    }
    94% {
        transform: rotate(0deg);
    }
}

@keyframes subtle-breathe {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes drop-fall {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    85% {
        opacity: 0.7;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        transform: translateY(50px) scale(0.3);
        opacity: 0;
    }
}

@keyframes draw-line {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes illust-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.gust-1 {
    animation: wind-gust 9s ease-in-out infinite;
}

.gust-2 {
    animation: wind-gust 11s ease-in-out infinite 1.5s;
}

.gust-3 {
    animation: wind-gust 13s ease-in-out infinite 3s;
}

.breathe {
    animation: subtle-breathe 5s ease-in-out infinite;
}

.hero-illustration {
    animation: illust-float 8s ease-in-out infinite;
}

.illust-wrapper {
    perspective: 1000px;
    position: relative;
}

.illust-tilt {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.visible > *:nth-child(2) {
    transition-delay: 0.25s;
}

.reveal-stagger.visible > *:nth-child(3) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible > *:nth-child(4) {
    transition-delay: 0.55s;
}

.reveal-stagger.visible > *:nth-child(5) {
    transition-delay: 0.7s;
}

.illust-reveal {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.illust-reveal.visible {
    opacity: 1;
    transform: scale(1);
}

.principle-roots-section path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.principle.reveal.visible .principle-roots-section path {
    animation: draw-line 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.principle.reveal.visible .principle-roots-section path:nth-child(2) {
    animation-delay: 0.2s;
}

.principle.reveal.visible .principle-roots-section path:nth-child(3) {
    animation-delay: 0.4s;
}

.principle.reveal.visible .principle-roots-section path:nth-child(4) {
    animation-delay: 0.1s;
}

.principle.reveal.visible .principle-roots-section path:nth-child(5) {
    animation-delay: 0.3s;
}

.principle.reveal.visible .principle-roots-section path:nth-child(6) {
    animation-delay: 0.5s;
}

.principle.reveal.visible .principle-roots-section path:nth-child(7) {
    animation-delay: 0.15s;
}

.principle.reveal.visible .principle-roots-section path:nth-child(8) {
    animation-delay: 0.35s;
}

.principle.reveal.visible .principle-roots-section path:nth-child(n+9) {
    animation-delay: 0.6s;
}

a:focus-visible {
    outline: 2px solid var(--accent-brown);
    outline-offset: 4px;
    border-radius: 2px;
}

.nav-links a:focus-visible {
    outline-offset: 6px;
}

/* 7. Responsive rules */
@media (max-width: 860px) {
    nav {
        padding: 16px 24px;
    }

    nav.scrolled {
        padding: 14px 24px;
    }

    .nav-links {
        gap: 18px;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    section {
        padding: 80px 28px;
    }

    .hero {
        padding: 110px 28px 60px;
    }

    .intention-text, .practice-text, .about-text {
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .section-label::after {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--accent-brown);
        opacity: 0.6;
        flex-shrink: 0;
    }

    .section-title, .section-quote, .section-text {
        text-align: center;
    }

    .section-text {
        margin-left: auto;
        margin-right: auto;
    }

    .intention, .practice, .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intention-illust, .practice-illust, .about-illust {
        max-width: 340px;
        margin: 0 auto;
    }

    .principle {
        padding: 80px 28px 40px;
    }

    .principle-roots-section {
        height: 240px;
    }

    .project {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 12px;
        padding: 32px 0;
    }

    .project:hover {
        transform: translateY(-6px);
    }

    .project-icon {
        margin-bottom: 4px;
    }

    .project-link {
        margin-top: 8px;
    }

    .contact-links {
        gap: 28px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-quote {
        font-size: 1.1rem;
    }

    .planted-header {
        margin-bottom: 56px;
    }

    .planted-footer {
        margin-top: 40px;
        padding-top: 28px;
    }
}

@media (max-width: 520px) {
    .nav-links a:nth-child(4), .nav-links a:nth-child(5) {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .section-text {
        font-size: 0.92rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-quote {
        font-size: 1.05rem;
    }

    .contact-links {
        gap: 20px;
    }

    .contact-link {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal, .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }

    .illust-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
