/*
 * AUTESTME — THE TOY MINT
 * A family game that became an experiment in intelligence and restraint.
 */

:root {
    --mint-petrol: #082f2c;
    --mint-petrol-deep: #031d1c;
    --mint-coral: #f06452;
    --mint-coral-dark: #d84c3d;
    --mint-butter: #f6c65b;
    --mint-lilac: #a999d4;
    --mint-mint: #a8cbb8;
    --mint-cream: #f5ecda;
    --mint-paper: #fffaf0;
    --mint-ink: #152b2a;
    --mint-chrome: #dce7e3;
    --mint-shadow: 0 30px 80px rgba(2, 23, 22, .18);
}

html { scroll-padding-top: 88px; }

body {
    overflow-x: hidden;
    background: var(--mint-cream);
    color: var(--mint-ink);
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-synthesis: none;
}

h1, h2, .story-lead, .wordmark {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    letter-spacing: -.035em;
}

h2 {
    color: var(--mint-ink);
    font-size: clamp(2.6rem, 5.3vw, 5.8rem);
    line-height: .95;
}

::selection { background: var(--mint-coral); color: white; }

/* Glass navigation, integrated into the scene */
.navbar {
    height: 78px;
    padding: 0 clamp(20px, 4vw, 64px);
    background: linear-gradient(180deg, rgba(3, 29, 28, .82), rgba(3, 29, 28, .34));
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: none !important;
    backdrop-filter: blur(20px) saturate(125%);
}

.nav-container { max-width: 1600px; height: 100%; }

.logo { gap: 12px; color: var(--mint-paper); }
.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.18);
}

.wordmark {
    display: grid;
    font-size: 1.32rem;
    line-height: 1;
    letter-spacing: -.02em;
}
.wordmark small {
    margin-top: 5px;
    color: rgba(255,255,255,.57);
    font: 500 .58rem/1 'DM Sans', sans-serif;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.nav-links { gap: 27px; }
.nav-links > a {
    position: relative;
    width: 48px;
    height: 6px;
    overflow: visible;
    border-radius: 999px;
    background: rgba(255,250,240,.72);
    color: transparent;
    font-size: 0;
    transition: width .25s ease, background .25s ease, transform .25s ease;
}
.nav-links > a::after {
    content: attr(title);
    position: absolute;
    left: 50%;
    top: 17px;
    width: max-content;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(3,29,28,.92);
    color: var(--mint-paper);
    font: 600 .62rem/1 'DM Sans', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translate(-50%, -5px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.nav-links > a:hover, .nav-links > a:focus-visible { width: 62px; background: var(--mint-butter); transform: translateY(-1px); }
.nav-links > a:hover::after, .nav-links > a:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.nav-links > a[href="#origin"] { background: var(--mint-coral); }
.nav-links > a.is-active { width: 62px; background: var(--mint-coral); }
.nav-links > a[href="#bounties"] { display: none; }

.lang-toggle {
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: white;
    padding: 9px 13px;
    font-size: .72rem;
}
.lang-toggle:hover { background: var(--mint-coral); }
.lang-menu {
    background: rgba(255,250,240,.97);
    border: 1px solid rgba(8,47,44,.12);
    border-radius: 18px;
    margin-top: 12px;
    box-shadow: var(--mint-shadow);
}
.lang-menu button { background: transparent; color: var(--mint-ink); }
.lang-menu button:hover { background: rgba(240,100,82,.12); }

/* Hero — the machine is the world, not an illustration beside it */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    justify-content: flex-start;
    padding: 145px clamp(24px, 7vw, 130px) 86px;
    background-color: var(--mint-petrol-deep);
    background-image:
        linear-gradient(90deg, rgba(3,29,28,.9) 0%, rgba(3,29,28,.54) 31%, rgba(3,29,28,.05) 54%, transparent 70%),
        url('images/toy-mint-canon.png');
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    color: var(--mint-paper);
}
.hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle at 72% 50%, transparent 0 17%, rgba(246,198,91,.11) 28%, transparent 42%);
    pointer-events: none;
}
.hero-content { max-width: 690px; margin: 0; }
.hero h1 {
    max-width: 650px;
    color: var(--mint-paper);
    font-size: clamp(3.55rem, 5.8vw, 6.3rem);
    font-weight: 500;
    line-height: .89;
    letter-spacing: -.055em;
    text-wrap: balance;
    text-shadow: 0 12px 44px rgba(0,0,0,.25);
}
.hero-badge {
    border: 0;
    border-radius: 0;
    padding: 0 0 0 44px;
    background: none;
    color: var(--mint-butter);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}
.hero-badge::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    margin: .55em 0 0 -44px;
    background: var(--mint-coral);
}
.hero-subtitle {
    max-width: 610px;
    color: rgba(255,250,240,.79);
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
    line-height: 1.65;
}
.hero-buttons { margin-top: 31px; }

.btn {
    min-height: 50px;
    justify-content: center;
    padding: .82rem 1.5rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .045em;
    box-shadow: none;
}
.btn-primary { background: var(--mint-coral); color: white; }
.btn-primary:hover {
    background: var(--mint-butter);
    color: var(--mint-petrol-deep);
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}
.btn-secondary {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.3);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); }
.btn-outline {
    border: 1px solid rgba(8,47,44,.32);
    color: var(--mint-petrol);
}
.btn-outline:hover { background: var(--mint-petrol); border-color: var(--mint-petrol); }

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stat {
    min-width: 145px;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.15);
    border-radius: 0;
    background: transparent;
    padding: 18px 24px 0 0;
    margin-right: 24px;
}
.hero-stat .stat-label { color: rgba(255,255,255,.45); font-size: .6rem; }
.hero-stat .stat-value { color: var(--mint-paper); font-size: .9rem; font-weight: 600; }

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 999px;
}
.hero-scroll span {
    position: absolute;
    top: 9px;
    left: 13px;
    width: 3px;
    height: 9px;
    border-radius: 3px;
    background: var(--mint-butter);
    animation: mint-scroll 1.8s infinite;
}
@keyframes mint-scroll { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(19px); opacity: 0; } }

.hero-ambient { display: none; }
.shape-circle { width: 27px; height: 27px; border-radius: 50%; background: var(--mint-coral); left: 47%; top: 24%; }
.shape-square { width: 22px; height: 22px; border-radius: 6px; background: var(--mint-lilac); left: 62%; top: 78%; transform: rotate(7deg); }
.shape-triangle { width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-bottom: 25px solid var(--mint-butter); left: 84%; top: 20%; }

/* The story alternates like a physical picture book */
.story-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    min-height: 760px;
    overflow: hidden;
    background: var(--mint-paper);
}
.story-media { position: relative; min-height: 610px; overflow: hidden; }
.story-media::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 90px rgba(3,29,28,.12);
    pointer-events: none;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy {
    align-self: center;
    max-width: 690px;
    padding: clamp(70px, 9vw, 150px) clamp(35px, 7vw, 120px);
}
.story-copy .section-label { text-align: left; color: var(--mint-coral-dark); }
.story-copy h2 { margin: 16px 0 32px; }
.story-copy p { max-width: 590px; color: rgba(21,43,42,.71); font-size: 1.02rem; line-height: 1.75; }
.story-copy .story-lead { color: var(--mint-ink); font-size: clamp(1.42rem, 2.1vw, 2.1rem); line-height: 1.27; }

.story-origin::before {
    content: '';
    position: absolute;
    z-index: 3;
    width: 130px;
    height: 130px;
    left: calc(54% - 65px);
    top: 11%;
    border-radius: 50%;
    background: var(--mint-butter);
    mix-blend-mode: multiply;
    opacity: .78;
    pointer-events: none;
}
.shape-alphabet { display: flex; gap: 12px; margin-top: 38px; }
.shape-alphabet b {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 12px;
    background: var(--mint-mint);
    color: var(--mint-petrol);
    font-size: 1rem;
    box-shadow: 0 7px 0 rgba(8,47,44,.12);
}
.shape-alphabet b:nth-child(2) { background: var(--mint-coral); color: white; transform: rotate(4deg); }
.shape-alphabet b:nth-child(3) { background: var(--mint-butter); transform: rotate(-5deg); }
.shape-alphabet b:nth-child(4) { background: var(--mint-lilac); }

.story-rule { grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr); background: var(--mint-petrol); }
.story-rule .story-copy { color: var(--mint-paper); }
.story-rule .story-copy h2, .story-rule .story-copy p { color: var(--mint-paper); }
.story-rule .story-copy p:not(.story-lead) { color: rgba(255,250,240,.68); }
.story-rule .section-label { color: var(--mint-butter); }
.rule-steps { display: flex; align-items: center; gap: 10px; margin-top: 42px; color: var(--mint-cream); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.rule-steps i { flex: 1; max-width: 35px; height: 1px; background: var(--mint-coral); }

/* Existing information, recast as parts of one machine */
.section { position: relative; padding: clamp(90px, 10vw, 160px) clamp(24px, 6vw, 100px); }
.container { max-width: 1260px; }
.section h2 { text-align: center; }
.section-intro { max-width: 720px; color: rgba(21,43,42,.68); font-size: 1.07rem; line-height: 1.75; }
.section-label { color: var(--mint-coral-dark); font-size: .66rem; letter-spacing: .22em; }
.section-alt { background: var(--mint-paper); }
.section-plate {
    position: relative;
    margin: 54px auto 64px;
    overflow: hidden;
    border-radius: 42px 42px 14px 42px;
    background: var(--mint-petrol);
    box-shadow: var(--mint-shadow);
}
.section-plate img { display: block; width: 100%; height: auto; }
.section-plate figcaption {
    position: absolute;
    right: 22px;
    bottom: 20px;
    max-width: 340px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(3,29,28,.78);
    color: rgba(255,250,240,.86);
    font-size: .72rem;
    line-height: 1.35;
    backdrop-filter: blur(12px);
}

#agents { background: var(--mint-cream); }
.agent-grid { gap: 18px; align-items: stretch; }
.agent-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8,47,44,.13);
    border-radius: 34px 34px 12px 34px;
    background: rgba(255,250,240,.82);
    padding: 34px;
    box-shadow: 0 18px 50px rgba(8,47,44,.08);
}
.agent-card::before {
    content: '';
    display: block;
    width: 34px;
    height: 8px;
    margin-bottom: 25px;
    border-radius: 99px;
    background: var(--mint-coral);
    box-shadow: 12px 0 0 var(--mint-butter), 24px 0 0 var(--mint-mint);
}
.agent-card:hover { transform: translateY(-7px) rotate(-.4deg); box-shadow: var(--mint-shadow); }
.agent-card h3 { color: var(--mint-ink); font-size: 1.08rem; }
.agent-card p { color: rgba(21,43,42,.66); }
.contract-box { border: 0; border-radius: 14px; background: rgba(8,47,44,.06); }
.copy-btn-sm { border-radius: 99px; background: var(--mint-petrol); }
.copy-btn-sm:hover { background: var(--mint-coral); }
.info-box { border: 0; border-radius: 26px; background: var(--mint-mint); color: var(--mint-petrol); padding: 28px 32px; }

#bounties { background: var(--mint-butter); }
.bounty-board-full { max-width: 1040px; margin: 50px auto 0; }
.bounty-board-full .bounty-item,
.bounty-board-full .bounty-item.featured {
    border: 0;
    border-radius: 999px;
    background: rgba(255,250,240,.78);
    padding: 16px 24px;
    box-shadow: 0 8px 0 rgba(21,43,42,.12);
}
.bounty-board-full .bounty-item:hover { border: 0; transform: translateX(8px) rotate(-.25deg); }
.bounty-board-full .bounty-reward,
.bounty-board-full .bounty-item.featured .bounty-reward { color: var(--mint-coral-dark); }
.bounty-tag { color: var(--mint-petrol); background: var(--mint-mint); }
.bounty-status-open { color: white; background: var(--mint-petrol); }
.contact-block { border-color: rgba(21,43,42,.15); }

#play { background: var(--mint-petrol-deep); color: var(--mint-paper); }
#play h2 { color: var(--mint-paper); }
#play .section-intro { color: rgba(255,250,240,.67); }
#play .section-label { color: var(--mint-butter); }
#play .section-plate { max-width: 1120px; border-color: rgba(255,255,255,.14); }
.cards { align-items: stretch; gap: 18px; }
.card {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px 26px 70px 26px;
    background: rgba(255,255,255,.055);
    color: var(--mint-paper);
    padding: 32px;
    backdrop-filter: blur(12px);
}
.card:nth-child(2) { transform: translateY(28px); }
.card:nth-child(3) { transform: translateY(-12px); }
.card h3 { color: var(--mint-paper); }
.card p { color: rgba(255,250,240,.62); }
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--mint-coral);
    color: white;
    box-shadow: 0 9px 0 rgba(0,0,0,.22);
}
.card:nth-child(2) .card-icon { border-radius: 50%; background: var(--mint-butter); color: var(--mint-petrol); }
.card:nth-child(3) .card-icon { border-radius: 6px; background: var(--mint-lilac); }
.card:nth-child(4) .card-icon { background: var(--mint-mint); color: var(--mint-petrol); }

#token { background: var(--mint-coral); }
#token h2, #token .section-label, #token .section-intro { color: white; }
.token-grid { gap: 12px; }
.token-item {
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 22px;
    background: rgba(255,250,240,.13);
    color: white;
    backdrop-filter: blur(10px);
}
.token-item .t-label { color: rgba(255,255,255,.62); }
.token-item .t-value { color: white; }
#token .btn-primary { background: var(--mint-petrol); }
#token .btn-outline { border-color: rgba(255,255,255,.45); color: white; }
#token .section-plate { max-width: 1120px; }

#buy { background: var(--mint-cream); }
.buy-warning { border-radius: 28px; background: var(--mint-butter); border: 0; color: var(--mint-ink); }
.buy-step { border: 1px solid rgba(8,47,44,.12); border-radius: 28px; background: var(--mint-paper); box-shadow: 0 14px 40px rgba(8,47,44,.06); }
.buy-step-num { color: var(--mint-coral-dark); }
.buy-security-note { border-radius: 15px; }
.buy-contract-highlight { border: 0; border-radius: 24px; background: var(--mint-petrol); color: white; }
.buy-contract-highlight .label, .buy-contract-highlight code { color: white; }
.buy-faq-item { border-color: rgba(8,47,44,.14); }

#vision { background: var(--mint-paper); }
.vision-block {
    position: relative;
    overflow: hidden;
    border-radius: 56px 56px 160px 56px;
    background: var(--mint-petrol);
    box-shadow: var(--mint-shadow);
}
.vision-block::after {
    content: '';
    position: absolute;
    width: 270px;
    height: 270px;
    right: -65px;
    bottom: -85px;
    border-radius: 50%;
    background: var(--mint-coral);
    box-shadow: -155px 44px 0 var(--mint-butter), -70px -125px 0 var(--mint-lilac);
    opacity: .78;
}
.vision-block > * { position: relative; z-index: 1; }

.footer { background: var(--mint-petrol-deep); color: var(--mint-paper); }
.footer-logo { border-radius: 18px; }
.footer-brand p, .footer-links a { color: rgba(255,250,240,.61); }
.footer-links a:hover { color: var(--mint-butter); }
.footer-bottom { border-color: rgba(255,255,255,.1); }

/* Whitepaper and privacy remain part of the same physical universe. */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mint-paper);
    font: 500 1.22rem/1 'Fraunces', Georgia, serif;
    text-decoration: none;
}
.nav-logo img { width: 40px; height: 40px !important; border-radius: 13px; }
.navbar .nav-links li a { color: rgba(255,250,240,.7); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.navbar .nav-links li a:hover { color: var(--mint-butter); }
.nav-toggle { color: var(--mint-paper); }
.policy-hero, .wp-hero {
    min-height: 480px;
    display: grid;
    align-content: end;
    padding: 150px max(24px, calc((100vw - 960px) / 2)) 82px;
    background-color: var(--mint-petrol);
    background-image: linear-gradient(90deg, rgba(3,29,28,.94), rgba(3,29,28,.52) 50%, rgba(3,29,28,.12)), url('images/toy-mint-canon.png');
    background-position: center;
    background-size: cover;
    color: var(--mint-paper);
    text-align: left;
}
.policy-hero h1, .wp-hero h1 {
    max-width: 760px;
    color: var(--mint-paper);
    font: 500 clamp(3.6rem, 8vw, 7rem)/.9 'Fraunces', Georgia, serif;
    letter-spacing: -.05em;
}
.policy-hero p, .wp-hero .subtitle, .wp-hero .meta { color: rgba(255,250,240,.72); }
.wp-hero .meta { justify-content: flex-start; }
.policy-content, .wp-content {
    max-width: 860px;
    padding: 84px 28px 120px;
    background: var(--mint-paper);
}
.policy-content h2, .wp-content h2 {
    border: 0;
    color: var(--mint-petrol);
    font: 500 clamp(2rem, 4vw, 3.2rem)/1 'Fraunces', Georgia, serif;
    letter-spacing: -.035em;
}
.policy-content p, .policy-content ul, .wp-content p, .wp-content ul { color: rgba(21,43,42,.76); }
.policy-updated, .version { background: var(--mint-mint); color: var(--mint-petrol); }
.contact-box, .abstract {
    border: 0;
    border-radius: 26px 26px 8px 26px;
    background: var(--mint-cream);
    box-shadow: 0 14px 45px rgba(8,47,44,.07);
}
.token-table { border-collapse: separate; border-spacing: 0 4px; }
.token-table th { background: var(--mint-petrol); }
.token-table th:first-child { border-radius: 14px 0 0 14px; }
.token-table th:last-child { border-radius: 0 14px 14px 0; }
.token-table td { border: 0; background: var(--mint-cream); }
.address-box { border: 0; border-radius: 16px; background: var(--mint-cream); }

/* Motion is an invitation, never a demand */
.reveal { transition: opacity .8s ease, transform .9s cubic-bezier(.18,.8,.24,1); }
.reveal.reveal-pending { opacity: 0; transform: translateY(32px); }
.reveal.reveal-in { opacity: 1; transform: none; }

@media (max-width: 1040px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn span { background: var(--mint-paper); }
    .mobile-menu {
        top: 78px;
        background: rgba(3,29,28,.97);
        color: white;
        border-bottom: 1px solid rgba(255,255,255,.12);
        box-shadow: var(--mint-shadow);
    }
    .mobile-menu a { color: var(--mint-paper); }
    .mobile-menu a:hover { background: rgba(255,255,255,.08); }
    .story-section { grid-template-columns: 1fr; min-height: 0; }
    .story-rule .story-media { order: -1; }
    .story-media { min-height: min(70vw, 620px); }
    .story-copy { max-width: 820px; }
    .story-origin::before { left: auto; right: 8%; top: calc(min(70vw, 620px) - 65px); }
}

@media (max-width: 720px) {
    html { scroll-padding-top: 70px; }
    .navbar { height: 70px; padding: 0 18px; }
    .logo-img { width: 39px; height: 39px; border-radius: 12px; }
    .wordmark { font-size: 1.16rem; }
    .wordmark small { display: none; }
    .mobile-menu { top: 70px; max-height: calc(100svh - 70px); overflow-y: auto; }
    .hero {
        min-height: 920px;
        align-items: flex-end;
        padding: 110px 22px 54px;
        background-image:
            linear-gradient(0deg, rgba(3,29,28,.99) 0%, rgba(3,29,28,.96) 38%, rgba(3,29,28,.05) 66%),
            url('images/toy-mint-canon.png');
        background-size: auto 72%;
        background-position: 68% top;
    }
    .hero-content { align-self: flex-end; }
    .hero h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
    .hero-subtitle { font-size: 1rem; line-height: 1.55; }
    .hero-buttons { display: grid; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-stat { min-width: 0; margin-right: 12px; padding-right: 10px; }
    .hero-scroll { display: none; }
    .story-media { min-height: 74vw; }
    .story-copy { padding: 72px 24px 84px; }
    .story-copy h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
    .story-copy .story-lead { font-size: 1.38rem; }
    .story-origin::before { width: 80px; height: 80px; top: calc(74vw - 40px); }
    .shape-alphabet b { width: 40px; height: 40px; }
    .rule-steps { flex-wrap: wrap; }
    .rule-steps i { flex: 0 0 16px; }
    .section { padding: 90px 20px; }
    .section h2 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
    .section-plate { margin: 38px -4px 48px; border-radius: 26px 26px 9px 26px; }
    .section-plate figcaption { position: static; max-width: none; border: 0; border-radius: 0; background: var(--mint-petrol); }
    .card:nth-child(2), .card:nth-child(3) { transform: none; }
    .bounty-board-full .bounty-item,
    .bounty-board-full .bounty-item.featured { border-radius: 26px; }
    .vision-block { border-radius: 36px 36px 100px 36px; padding: 58px 24px 110px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal.reveal-pending { opacity: 1; transform: none; }
}
