/* ============================================================================
   declutter — "The Classifieds"
   An editorial print-shop look for a resale tool: warm bone paper + grain,
   espresso ink, a pine-green primary and a chartreuse highlighter as signature.
   Fraunces (display) · Hanken Grotesk (text) · Spline Sans Mono (ledger meta).
   ========================================================================== */

:root {
    --paper:      #ece6d8;
    --paper-2:    #f4efe4;   /* cards / raised surfaces */
    --paper-3:    #e3dccb;   /* insets / wells */
    --ink:        #211d15;
    --ink-2:      #5d543f;   /* muted text */
    --ink-3:      #8a8068;   /* faint meta */
    --line:       #cec6b2;   /* hairline */
    --line-2:     #b9af96;

    --pine:       #1c5a44;
    --pine-deep:  #123d2e;
    --lime:       #cdf24a;   /* the signature highlighter */
    --lime-deep:  #9bbf1f;

    --vinted:     #0a7c82;
    --marktplaats:#cf5527;
    --warn:       #b3760c;
    --bad:        #b1392a;

    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans:  'Hanken Grotesk', system-ui, sans-serif;
    --mono:  'Spline Sans Mono', ui-monospace, monospace;

    --maxw: 1080px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-image:
        radial-gradient(120% 80% at 100% -20%, rgba(28, 90, 68, .10), transparent 55%),
        radial-gradient(90% 70% at -10% 120%, rgba(207, 85, 39, .07), transparent 50%);
    background-attachment: fixed;
}

::selection { background: var(--lime); color: var(--ink); }

a { color: var(--pine); text-underline-offset: 3px; }
code { font-family: var(--mono); font-size: .85em; }

:focus-visible { outline: 2.5px solid var(--lime-deep); outline-offset: 2px; border-radius: 2px; }

/* paper grain */
.grain {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    opacity: .35; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ── reveal-on-load ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s var(--ease) forwards; animation-delay: var(--d, 0ms); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ── Masthead ────────────────────────────────────────────────────────────── */
.masthead { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 22px 32px 0; }
.masthead-row { display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; cursor: pointer; }
.brand:hover .brand-name { color: var(--pine); }
.brand:hover .mark { transform: rotate(135deg); }
.mark { transition: transform .35s var(--ease); }
.mark {
    position: relative; width: 19px; height: 19px; flex: none;
    background: var(--ink); transform: rotate(45deg);
}
.mark::after { content: ''; position: absolute; inset: 5px; background: var(--lime); }
.brand-name {
    font-family: var(--serif); font-weight: 600; font-size: 25px;
    letter-spacing: -.02em; line-height: 1;
}
.masthead-meta {
    margin: 0 auto 0 8px; display: flex; gap: 10px; align-items: center;
    font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ink-3);
}
.dot-sep { color: var(--line-2); }
.session-toggle {
    margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 12px; letter-spacing: .03em; text-transform: uppercase;
    color: var(--ink-2); cursor: pointer; user-select: none;
    border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 13px;
    transition: border-color .2s, color .2s, background .2s;
}
.session-toggle:hover { border-color: var(--ink); color: var(--ink); }
.session-toggle input { accent-color: var(--pine); width: 13px; height: 13px; }
.masthead-meta + .session-toggle { margin-left: 0; }
.masthead-rule { height: 0; border-top: 1.5px solid var(--ink); margin-top: 16px; position: relative; }
.masthead-rule::after { content: ''; position: absolute; left: 0; top: 3px; width: 64px; border-top: 1.5px solid var(--ink); }

/* ── Hero / upload ───────────────────────────────────────────────────────── */
.hero { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 56px 32px 30px; }
.hero-inner { max-width: 760px; }
.eyebrow {
    font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--pine); margin: 0 0 18px;
}
.headline {
    font-family: var(--serif); font-weight: 600;
    font-size: clamp(40px, 7.4vw, 84px); line-height: .97; letter-spacing: -.025em;
    margin: 0 0 22px;
}
.mark-text { position: relative; font-style: italic; font-weight: 500; white-space: nowrap; z-index: 0; }
.mark-text::before {
    content: ''; position: absolute; left: -6px; right: -6px; bottom: .1em; top: 58%;
    background: var(--lime); transform: rotate(-1.4deg); z-index: -1; border-radius: 1px;
}
.lede {
    font-size: clamp(17px, 2.1vw, 20px); line-height: 1.6; color: var(--ink-2);
    max-width: 600px; margin: 0 0 30px;
}

/* how-it-works ledger strip */
.steps {
    list-style: none; margin: 0 0 34px; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.steps li {
    display: flex; align-items: baseline; gap: 10px; padding: 14px 16px 14px 0;
    border-left: 1px solid var(--line);
}
.steps li:first-child { border-left: none; padding-left: 0; }
.steps li:not(:first-child) { padding-left: 20px; }
.step-no { font-family: var(--mono); font-size: 12px; color: var(--lime-deep); font-weight: 600; }
.step-t { font-weight: 600; font-size: 14.5px; letter-spacing: -.01em; }

/* dropzone */
.dropzone {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    background: var(--paper-2); border: 1.5px dashed var(--line-2); border-radius: 4px;
    padding: 46px 24px; cursor: pointer; text-align: center;
    transition: border-color .2s, background .2s, transform .2s;
}
.dropzone:hover, .dropzone:focus-visible { border-color: var(--pine); background: var(--paper-3); }
.dropzone.drag { border-color: var(--pine); border-style: solid; background: var(--paper-3); transform: scale(1.005); }
.dz-mark {
    width: 44px; height: 44px; display: grid; place-items: center;
    font-size: 26px; font-weight: 300; line-height: 1; color: var(--paper);
    background: var(--pine); border-radius: 50%; margin-bottom: 4px;
}
.dz-title { font-weight: 600; font-size: 17px; }
.dz-sub { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .02em; }

/* tray */
.tray { margin-top: 18px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper-2); padding: 14px; }
.tray-head {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
    font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-2); text-transform: uppercase;
}
.thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.thumb {
    position: relative; width: 70px; height: 70px; border-radius: 3px;
    background-size: cover; background-position: center;
    border: 1px solid var(--line-2); box-shadow: 0 1px 0 rgba(33,29,21,.12);
}
.thumb button {
    position: absolute; top: -7px; right: -7px; width: 20px; height: 20px; border-radius: 50%;
    border: 1.5px solid var(--paper); background: var(--ink); color: var(--paper);
    font-size: 12px; line-height: 1; cursor: pointer; display: grid; place-items: center; padding: 0;
}
.thumb button:hover { background: var(--bad); }
.link-btn {
    background: none; border: none; color: var(--pine); cursor: pointer;
    font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em;
    padding: 0; text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--pine-deep); }

/* ── CTA buttons ─────────────────────────────────────────────────────────── */
.cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 15px 26px; border: 1.5px solid var(--ink); border-radius: 4px;
    background: var(--pine); color: var(--paper);
    font-family: var(--sans); font-weight: 700; font-size: 16px; letter-spacing: -.01em;
    cursor: pointer; transition: transform .15s var(--ease), background .15s, box-shadow .15s, color .15s, border-color .15s;
    box-shadow: 3px 3px 0 var(--ink);
}
.cta:hover:not(:disabled) { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); background: var(--pine-deep); }
.cta:active:not(:disabled) { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.cta:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }
.cta-arrow { transition: transform .2s var(--ease); }
.cta:hover:not(:disabled) .cta-arrow { transform: translateX(4px); }
.cta.ghost { background: transparent; color: var(--ink); box-shadow: none; border-color: var(--line-2); font-weight: 600; }
.cta.ghost:hover { background: var(--paper-2); border-color: var(--ink); transform: none; box-shadow: none; }
.cta.small { padding: 9px 15px; font-size: 13.5px; box-shadow: 2px 2px 0 var(--ink); gap: 8px; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 24px; }

/* capability checks */
.checks { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.check {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--ink-2);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); flex: none; }
.dot.ready { background: var(--pine); box-shadow: 0 0 0 3px rgba(28,90,68,.18); }
.dot.pending { background: var(--warn); animation: pulse 1.4s infinite; }
.dot.warn { background: var(--bad); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* ── main wrap ───────────────────────────────────────────────────────────── */
.wrap { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 32px 70px; }

.section-label {
    font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--lime-deep); margin: 0 0 14px; display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ''; flex: 1; border-top: 1px solid var(--line); }

.card {
    background: var(--paper-2); border: 1.5px solid var(--ink); border-radius: 4px;
    padding: 26px; margin-top: 28px; box-shadow: 5px 5px 0 rgba(33,29,21,.10);
}

/* ── working phase (analyze + post) ──────────────────────────────────────── */
.work-head { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.spinner {
    width: 30px; height: 30px; flex: none; border-radius: 50%;
    border: 2.5px solid var(--line-2); border-top-color: var(--pine); border-right-color: var(--pine);
    animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.work-head h2 { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: -.02em; margin: 0; }
.work-sub { color: var(--ink-2); margin: 4px 0 0; font-size: 14.5px; }

.work-stats { display: flex; gap: 0; margin: 6px 0 20px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.stat { flex: 1; padding: 14px 18px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { font-family: var(--serif); font-size: 30px; font-weight: 600; display: block; line-height: 1; }
.stat span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }

/* ledger feed */
.feed { list-style: none; margin: 0; padding: 0; }
.feed li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 14.5px; line-height: 1.45; padding: 11px 4px 11px 14px;
    border-bottom: 1px solid var(--line); border-left: 2px solid transparent;
    animation: slidein .35s var(--ease);
}
.feed li:last-child { border-bottom: none; }
.feed li.done { border-left-color: var(--lime-deep); background: linear-gradient(90deg, rgba(205,242,74,.12), transparent 60%); }
.feed li.err { border-left-color: var(--bad); background: linear-gradient(90deg, rgba(177,57,42,.08), transparent 60%); color: var(--bad); }
.feed .ic { flex: none; font-size: 15px; line-height: 1.4; }
.feed .msg b { font-weight: 700; }
@keyframes slidein { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

/* ── review / edit ───────────────────────────────────────────────────────── */
.review { position: relative; z-index: 2; margin-top: 30px; }
.review-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4vw, 38px); letter-spacing: -.025em; margin: 0 0 8px; }
.review-intro { color: var(--ink-2); font-size: 15.5px; margin: 0 0 22px; max-width: 620px; }

.platforms {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px;
    padding: 12px 16px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper-2);
}
.platforms-label { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2); margin-right: 4px; }
.plat-toggle { cursor: pointer; }
.plat-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.plat-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
    border: 1.5px solid var(--line-2); border-radius: 999px; background: var(--paper);
    font-size: 14px; font-weight: 600; color: var(--ink-3); transition: all .16s var(--ease);
}
.plat-toggle:hover .plat-pill { border-color: var(--ink-2); }
.plat-toggle input:checked + .plat-pill { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.plat-toggle input:focus-visible + .plat-pill { outline: 2.5px solid var(--lime-deep); outline-offset: 2px; }
.plat-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.plat-dot.vinted { background: var(--vinted); }
.plat-dot.marktplaats { background: var(--marktplaats); }

.products { counter-reset: lot; display: flex; flex-direction: column; gap: 26px; }

.product {
    position: relative;
    counter-increment: lot;
    display: grid; grid-template-columns: 168px 1fr; gap: 22px;
    background: var(--paper-2); border: 1.5px solid var(--ink); border-radius: 4px;
    padding: 22px; box-shadow: 4px 4px 0 rgba(33,29,21,.10);
    transition: opacity .2s, box-shadow .2s, transform .2s var(--ease);
}
.product:hover { box-shadow: 6px 6px 0 rgba(33,29,21,.13); }
.product::before {
    content: "Lot " counter(lot, decimal-leading-zero);
    position: absolute; top: -12px; left: 18px;
    background: var(--ink); color: var(--paper);
    font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .1em;
    padding: 5px 10px; border-radius: 2px;
}
.product[data-excluded="true"] { opacity: .42; }
.product[data-excluded="true"]::before { background: var(--ink-3); }

/* sits on the top-right border as a tab, mirroring the "Lot NN" tag at left */
.product-include {
    position: absolute; top: -12px; right: 16px; z-index: 3;
    display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
    background: var(--paper-2); border: 1.5px solid var(--ink); border-radius: 2px;
    padding: 4px 9px;
    font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-2);
}
.product-include input { accent-color: var(--pine); width: 13px; height: 13px; margin: 0; flex: none; }
.product[data-excluded="true"] .product-include { color: var(--ink-3); border-color: var(--ink-3); }

.product-photos { display: flex; flex-wrap: wrap; gap: 6px; align-content: flex-start; }
.product-photos .pp {
    width: 48px; height: 48px; border-radius: 3px; background-size: cover; background-position: center;
    border: 1px solid var(--line-2);
}
.product-photos .pp.lead { width: 100%; height: 130px; border-radius: 3px; box-shadow: 0 1px 0 rgba(33,29,21,.15); }

.product-fields { display: flex; flex-direction: column; gap: 11px; min-width: 0; }
.product-fields input, .product-fields select, .product-fields textarea {
    font-family: var(--sans); font-size: 14.5px; color: var(--ink);
    background: var(--paper); border: 1px solid var(--line-2); border-radius: 3px;
    padding: 10px 12px; width: 100%; transition: border-color .15s, background .15s, box-shadow .15s;
}
.product-fields input::placeholder, .product-fields textarea::placeholder { color: var(--ink-3); }
.product-fields input:focus, .product-fields select:focus, .product-fields textarea:focus {
    outline: none; border-color: var(--pine); background: var(--paper-2); box-shadow: 0 0 0 3px rgba(28,90,68,.12);
}
.p-title { font-family: var(--serif) !important; font-size: 20px !important; font-weight: 600; letter-spacing: -.01em; }
.product-fields textarea { resize: vertical; line-height: 1.55; min-height: 88px; }

.field-row { display: flex; gap: 10px; }
.field { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.field > span { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.p-price { font-family: var(--mono) !important; font-weight: 600; }

.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--line); }
.p-platforms { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pp-label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); }
.plat-toggle.small .plat-pill { padding: 5px 11px; font-size: 12.5px; }
.plat-toggle.small .plat-dot { width: 8px; height: 8px; }

.review-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 26px; flex-wrap: wrap; }

/* ── live session panel ──────────────────────────────────────────────────── */
.session-panel {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 60;
    width: 50vw; max-width: 100vw;
    background: var(--pine-deep); color: var(--paper);
    display: flex; flex-direction: column;
    box-shadow: -14px 0 50px rgba(18,29,21,.35);
    transform: translateX(100%); transition: transform .32s var(--ease);
    border-left: 2px solid var(--ink);
}
.session-panel[data-open="true"] { transform: none; }
.session-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.12);
    font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
}
.session-bar-title { display: inline-flex; align-items: center; gap: 9px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(205,242,74,.7); animation: live 1.6s infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(205,242,74,.6); } 70% { box-shadow: 0 0 0 7px rgba(205,242,74,0); } 100% { box-shadow: 0 0 0 0 rgba(205,242,74,0); } }
.session-bar button { background: none; border: none; color: var(--paper); font-size: 16px; cursor: pointer; opacity: .8; }
.session-bar button:hover { opacity: 1; }

.session-tabs { display: flex; gap: 4px; padding: 9px 9px 0; background: var(--pine-deep); }
.session-tab {
    display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
    background: rgba(255,255,255,.08); color: rgba(244,239,228,.82);
    font-family: var(--mono); font-size: 12px; letter-spacing: .02em; padding: 9px 15px; border-radius: 6px 6px 0 0;
    transition: background .15s, color .15s;
}
.session-tab:hover { background: rgba(255,255,255,.14); }
.session-tab[data-active="true"] { background: var(--paper); color: var(--ink); }
.session-tab[data-attention="true"] { box-shadow: inset 0 -3px 0 var(--lime); }
.session-tab[data-attention="true"]::after { content: 'log in'; color: var(--lime); }
.session-tab[data-active="true"][data-attention="true"]::after { color: var(--lime-deep); }

.session-stage { position: relative; flex: 1; background: var(--paper); }
.session-view { position: absolute; inset: 0; display: none; flex-direction: column; }
.session-view[data-active="true"] { display: flex; }
.session-frame { flex: 1; width: 100%; border: none; background: #fff; }

.login-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: var(--lime); color: var(--ink); border-bottom: 1.5px solid var(--ink);
    padding: 11px 14px; font-size: 13.5px; font-weight: 600;
}
.login-bar .cta.small { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 2px 2px 0 rgba(33,29,21,.4); }

/* ── footer / colophon ───────────────────────────────────────────────────── */
.foot {
    position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
    padding: 26px 32px 44px; border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--ink-3);
}
.foot code { background: var(--paper-2); border: 1px solid var(--line); padding: 1px 6px; border-radius: 3px; color: var(--ink-2); }
.foot-mark { width: 11px; height: 11px; background: var(--ink); transform: rotate(45deg); }
.foot-mark::after { content: none; }

/* ── phase visibility (driven by body[data-phase]) ──────────────────────── */
body[data-phase="upload"] #upload { display: block; }
body[data-phase="analyzing"] #upload,
body[data-phase="review"] #upload,
body[data-phase="posting"] #upload { display: none; }

/* ── responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
    .masthead, .hero, .wrap, .foot { padding-left: 20px; padding-right: 20px; }
    .masthead-meta { display: none; }
    .steps { grid-template-columns: 1fr; }
    .steps li, .steps li:not(:first-child) { border-left: none; border-top: 1px solid var(--line); padding-left: 0; }
    .steps li:first-child { border-top: none; }
}
@media (max-width: 620px) {
    .product { grid-template-columns: 1fr; }
    .product-photos .pp.lead { height: 180px; }
    .field-row { flex-direction: column; }
    .session-panel { width: 100vw; }
    .review-actions, .hero-actions { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .feed li, .spinner, .live-dot, .dot.pending { animation: none; }
    .reveal { opacity: 1; transform: none; }
    * { transition-duration: .01ms !important; }
}
