/* ═══════════════════════════════════════════════════
   bStocks — Allocation Snapshot
   A terminal readout, not a brochure. Monospace carries
   the page; green means live, red means risk.
   ═══════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────── */
:root {
    --void: #07090b;
    --panel: #0d1114;
    --raise: #12181c;
    --line: #1c2429;
    --line-strong: #2b3740;

    --text: #e6efe9;
    --dim: #8b9a94;
    --faint: #5d6b66;

    --green: #00e07a;
    --green-dim: #00b862;
    --green-soft: rgba(0, 224, 122, 0.1);
    --red: #ff4d5e;
    --red-soft: rgba(255, 77, 94, 0.09);

    --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --font-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;

    /* Tight radii — panels, not pills. */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;

    --t: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --max-w: 1160px;
    --nav-h: 58px;
    --tape-h: 30px;
    --head-h: 88px; /* nav + tape */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--head-h) + 24px);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    background: var(--void);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Monospace carries every heading — the risk this design takes. */
h1, h2, h3 {
    font-family: var(--font-mono);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

/* ── Focus ──────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    background: var(--green);
    color: var(--void);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    transform: translateY(-200%);
    transition: transform var(--t);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ── Layout ─────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.section { padding: 96px 0; }
.section.alt {
    background: var(--panel);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section h2 {
    font-size: clamp(25px, 3.4vw, 38px);
    margin: 16px 0 48px;
    max-width: 20ch;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--faint);
}
/* A live-session tick, sized to the cap height of the label beside it. */
.eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 1px;
}

/* ── Nav ────────────────────────────────────────── */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(7, 9, 11, 0.86);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--line);
    animation: navDrop 0.55s var(--ease-out-expo) backwards;
}
@keyframes navDrop { from { transform: translateY(-100%); } }

.nav-inner {
    max-width: var(--max-w);
    height: var(--nav-h);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-brand {
    font-family: var(--font-mono);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}
.nav-brand em, .foot-brand em, .mark em { font-style: normal; color: var(--green); }

.nav-links { display: flex; gap: 2px; }
.nav-link {
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--dim);
    transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--text); background: var(--raise); }

.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-social {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    color: var(--dim);
    transition: color var(--t), background var(--t);
}
.nav-social:hover { color: var(--green); background: var(--green-soft); }

.nav-toggle {
    display: none;
    width: 34px;
    height: 34px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
}
.nav-toggle span {
    width: 17px;
    height: 1.5px;
    background: var(--text);
    transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Tape (signature) ───────────────────────────────
   Two identical sets scroll as one track; at -50% the
   second set sits exactly where the first began, so the
   loop has no seam. Words only — a price printed here
   would be wrong within the hour. */
.tape {
    height: var(--tape-h);
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: var(--void);
    display: flex;
    align-items: center;
}
.tape-track {
    display: flex;
    flex-shrink: 0;
    animation: tape 42s linear infinite;
}
.tape:hover .tape-track { animation-play-state: paused; }
@keyframes tape { to { transform: translateX(-50%); } }

.tape-set { display: flex; flex-shrink: 0; }
.tape-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--faint);
}
.tape-item::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--green-dim);
    border-radius: 1px;
    flex-shrink: 0;
}

/* ── Mobile menu ────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: var(--head-h);
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(7, 9, 11, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 12px 28px 16px;
    display: none;
    flex-direction: column;
    gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    padding: 13px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 500;
    color: var(--dim);
}
.mobile-link:hover { color: var(--text); background: var(--raise); }
.mobile-socials {
    display: flex;
    gap: 20px;
    padding: 14px 12px 2px;
    margin-top: 6px;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--dim);
}
.mobile-socials a:hover { color: var(--green); }

@media (max-width: 860px) {
    .nav-links, .nav-social { display: none; }
    .nav-toggle { display: flex; }
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: background var(--t), border-color var(--t), color var(--t), box-shadow var(--t);
}
.btn-primary {
    background: var(--green);
    color: var(--void);
}
.btn-primary:hover { background: #24f593; box-shadow: 0 0 0 1px var(--green), 0 6px 24px rgba(0, 224, 122, 0.22); }
.btn-primary:active { background: var(--green-dim); box-shadow: none; }

.btn-ghost {
    color: var(--text);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.arrow-down, .arrow-out { display: inline-block; transition: transform var(--t); }
.btn:hover .arrow-down { transform: translateY(3px); }
.contract-links a:hover .arrow-out { transform: translate(2px, -2px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--head-h) + 64px) 0 64px;
}
/* Auto side margins on a flex item cancel stretch, which would shrink the
   wrap to its content and float the hero off the page's grid. */
.hero > .wrap { width: 100%; }

/* Wordmark. Mono at display size with tight tracking; the caret
   blinks the way a prompt waiting for input does. */
.mark {
    display: flex;
    align-items: baseline;
    font-family: var(--font-mono);
    font-size: clamp(46px, 11vw, 124px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 34px;
    opacity: 0;
    animation: fadeUp 0.75s var(--ease-out-expo) 0.08s forwards;
}
.caret {
    width: 0.44em;
    height: 0.78em;
    margin-left: 0.1em;
    background: var(--green);
    flex-shrink: 0;
    animation: blink 1.15s steps(1, end) 1.1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero h1 {
    font-size: clamp(26px, 3.9vw, 44px);
    margin: 18px 0 20px;
}
.hero .lede {
    color: var(--dim);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 46ch;
}
.ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.hero .ctas { margin-bottom: 84px; }

.hero-anim {
    opacity: 0;
    animation: fadeUp 0.7s var(--ease-out-expo) var(--d, 0s) forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Session rail (signature) ───────────────────────
   The three phases read as one trading session, so the
   rail is a timeline and the order is information. */
/* No column gap: it would offset each track from an exact third and the
   dashed line below could no longer be positioned in percentages. The legs
   carry their own trailing space instead. */
.session {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
/* Runs from the centre of the first marker to the centre of the
   third: 30px padding + 5px half-marker puts it on their axis. */
.session::before {
    content: '';
    position: absolute;
    left: 5px;
    right: calc(33.333% - 5px);
    top: 35px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 4px, transparent 4px 8px);
    transform-origin: left center;
    animation: drawX 0.9s var(--ease-out-expo) 0.72s backwards;
}
@keyframes drawX { from { transform: scaleX(0); } }
@keyframes drawY { from { transform: scaleY(0); } }

.leg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 24px;
    opacity: 0;
    animation: fadeUp 0.55s var(--ease-out-expo) forwards;
}
.leg:nth-child(1) { animation-delay: 0.86s; }
.leg:nth-child(2) { animation-delay: 0.96s; }
.leg:nth-child(3) { animation-delay: 1.06s; }

.leg-mark {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background: var(--void);
    border: 1px solid var(--line-strong);
    box-shadow: 0 0 0 5px var(--void);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.section.alt .leg-mark { background: var(--panel); box-shadow: 0 0 0 5px var(--panel); }

.leg.now .leg-mark {
    background: var(--green);
    border-color: var(--green);
}
/* The pulse is a scaled pseudo-element, so nothing but transform
   and opacity is ever animated. */
.leg.now .leg-mark::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1px;
    background: var(--green);
    animation: pulse 2.4s var(--ease-out-expo) infinite;
}
@keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    70%, 100% { opacity: 0; transform: scale(3.2); }
}

.leg-name {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--faint);
}
.leg.now .leg-name { color: var(--text); }

.leg-state {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
    margin-top: 7px;
}
.leg.now .leg-state { color: var(--green); }

/* ── Cards ──────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* A panel with a title bar, the way a terminal window states
   which feed it is showing. */
.card {
    display: flex;
    flex-direction: column;
    background: var(--void);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card.now { border-color: var(--green-dim); }

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--raise);
}
.card.now .card-head { border-bottom-color: rgba(0, 224, 122, 0.28); }

.card-session {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim);
}
.card.now .card-session { color: var(--green); }

.card-tag {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
    padding: 3px 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}
.card.now .card-tag { background: var(--green); color: var(--void); }

.card-body { padding: 22px 18px 24px; }
.card-body h3 { font-size: 17px; margin-bottom: 10px; }
.card-body p { color: var(--dim); font-size: 14px; line-height: 1.65; }

/* ── Prose + rules ──────────────────────────────── */
/* Asymmetric on purpose: the argument gets more room than the list. */
.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
    margin-top: 18px;
}
.prose h2 { font-size: clamp(23px, 3vw, 32px); margin: 0 0 20px; max-width: none; }
.prose p { color: var(--dim); font-size: 15px; line-height: 1.72; margin-bottom: 15px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a {
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--green-dim);
    transition: color var(--t);
}
.prose a:hover { color: var(--green); }

.stack { display: flex; flex-direction: column; }

.rule-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}
.rule-item:last-child { border-bottom: 1px solid var(--line); }
.rule-key {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
    padding-top: 4px;
}
.rule-key.req { color: var(--green); }
.rule-item h3 { font-size: 15px; margin-bottom: 7px; }
.rule-item p { color: var(--dim); font-size: 14px; line-height: 1.65; }

/* ── FAQ ────────────────────────────────────────── */
.faq-list { max-width: 780px; }

.faq-item {
    border-top: 1px solid var(--line);
    transition: border-color var(--t);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item[open] { border-top-color: var(--green-dim); }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 4px;
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    cursor: pointer;
    list-style: none;
    transition: color var(--t);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--green); }

/* A terminal prints a character; it does not draw a chevron. */
.faq-sign {
    flex-shrink: 0;
    width: 14px;
    font-family: var(--font-mono);
    font-size: 15px;
    text-align: center;
    color: var(--faint);
    transition: color var(--t);
}
.faq-sign::before { content: '+'; }
.faq-item[open] .faq-sign { color: var(--green); }
.faq-item[open] .faq-sign::before { content: '−'; }

.faq-a { padding: 0 4px 24px; color: var(--dim); font-size: 14.5px; line-height: 1.72; max-width: 62ch; }
.faq-a a { color: var(--text); border-bottom: 1px solid var(--green-dim); }
.faq-a a:hover { color: var(--green); }

@supports (interpolate-size: allow-keywords) {
    :root { interpolate-size: allow-keywords; }
    .faq-item::details-content {
        height: 0;
        overflow: hidden;
        transition: height var(--t), content-visibility var(--t) allow-discrete;
    }
    .faq-item[open]::details-content { height: auto; }
}

/* ── CTA ────────────────────────────────────────── */
.cta-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-top: 2px solid var(--green);
    border-radius: var(--radius-lg);
    padding: 52px;
}
.cta-box h2 { font-size: clamp(25px, 3.2vw, 34px); margin: 0 0 12px; max-width: none; }
.cta-lead { color: var(--dim); font-size: 15px; max-width: 46ch; }

/* ── Contract ───────────────────────────────────── */
.contract {
    margin-top: 40px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--void);
}
/* The button sits beside the address it copies, not at the far edge of a
   1160px panel where the two stop reading as one control. */
.contract-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.contract-label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
}
.contract-copy {
    padding: 5px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--dim);
    transition: color var(--t), border-color var(--t);
}
.contract-copy:hover { color: var(--green); border-color: var(--green-dim); }
.contract-copy.done { color: var(--green); border-color: var(--green); }

.contract-addr {
    flex: 0 1 auto;
    min-width: 0;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.5;
    color: var(--text);
    word-break: break-all;
}
.contract-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--dim);
}
.contract-links a { transition: color var(--t); }
.contract-links a:hover { color: var(--green); }

/* Red appears here and nowhere else: it marks risk, not decoration. */
.cta-note {
    margin-top: 16px;
    padding: 14px 18px;
    border-left: 2px solid var(--red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--red-soft);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.75;
    color: var(--dim);
}

/* ── Footer ─────────────────────────────────────── */
footer {
    border-top: 1px solid var(--line);
    padding: 32px 0;
    color: var(--faint);
    font-family: var(--font-mono);
    font-size: 12px;
}
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-brand { font-size: 15px; font-weight: 600; letter-spacing: -0.03em; color: var(--text); }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { transition: color var(--t); }
.foot-links a:hover { color: var(--green); }
.foot-copy { width: 100%; font-size: 11px; margin-top: 4px; }

/* ── Reveal ─────────────────────────────────────── */
.reveal { opacity: 0; animation: fadeUp 0.55s var(--ease-out-expo) forwards; }

::selection { background: var(--green); color: var(--void); }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dim); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 860px) {
    .grid-3 { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .section { padding: 76px 0; }
    .cta-box { padding: 40px 32px; }
}

@media (max-width: 620px) {
    .wrap { padding: 0 20px; }
    .hero { padding-top: calc(var(--head-h) + 44px); }
    .hero .ctas { margin-bottom: 60px; }
    .ctas { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }

    /* The rail turns vertical rather than compressing three labels
       into a third of a phone screen. */
    .session { grid-template-columns: 1fr; gap: 24px; padding-top: 26px; }
    .session::before {
        left: 5px;
        right: auto;
        top: 34px;
        bottom: 16px;
        width: 1px;
        height: auto;
        background: repeating-linear-gradient(180deg, var(--line-strong) 0 4px, transparent 4px 8px);
        transform-origin: center top;
        animation-name: drawY;
    }
    .leg { flex-direction: row; align-items: center; gap: 14px; padding-right: 0; flex-wrap: wrap; }
    .leg-mark { margin-bottom: 0; }
    .leg-state { margin-top: 0; margin-left: auto; }

    .rule-item { grid-template-columns: 1fr; gap: 8px; }
    .rule-key { padding-top: 0; }

    .section { padding: 64px 0; }
    .section h2 { margin-bottom: 32px; }
    .cta-box { padding: 32px 22px; }
    .contract { padding: 16px; }
    .contract-addr { font-size: 12px; }
    .foot-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Print ──────────────────────────────────────── */
@media print {
    .nav, .mobile-menu, .skip-link { display: none; }
    .hero { min-height: 0; padding-top: 24px; }
    .reveal, .hero-anim, .leg, .mark { opacity: 1; animation: none; }
    .caret, .session::before { animation: none; }
}

/* ── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    /* Pin every animated element to its finished state, so nothing
       depends on an animation running in order to become visible. */
    .reveal, .hero-anim, .leg, .mark { opacity: 1; animation: none; }
    .nav { animation: none; }
    .caret { opacity: 1; animation: none; }
    .tape-track { animation: none; }
    .session::before { transform: none; animation: none; }
    .leg.now .leg-mark::after { display: none; }
    .card:hover { transform: none; }
    .btn:hover .arrow-down,
    .contract-links a:hover .arrow-out { transform: none; }
}
