/* ═══════════════════════════════════════════════════════════════
   BRY3D — shared site styles
   Design tokens, fonts, nav, footer, buttons, legal-page layout.
   Page-specific styles live inline in each page.
   ═══════════════════════════════════════════════════════════════ */

/* ── Self-hosted fonts (no third-party requests) ── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url('fonts/playfair-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url('fonts/playfair-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Tokens ── */
:root {
    --bg: #FAFAF7;
    --surface: #F0EDE8;
    --border: #E2DDD5;
    --text: #1C1917;
    --text-muted: #78716C;
    --accent: #B45309;
    --accent-hover: #92400E;
    --accent-light: rgba(180, 83, 9, 0.08);
    --dark-block: #1C1917;
    --radius: 10px;
}

/* ── Reset & base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

button { font-family: inherit; cursor: pointer; }

.icon {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 1rem;
    background: var(--text);
    color: var(--bg);
    padding: 0.6rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2000;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Buttons ── */
.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-secondary:hover {
    border-color: var(--text-muted);
    background: var(--surface);
}

/* ── Floating pill navbar ── */
.site-nav {
    position: fixed;
    top: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 0.85rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
}
.logo img { height: 22px; width: auto; }

.nav-links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    cursor: pointer;
}
.nav-links a:hover { color: var(--text); }

.nav-login {
    color: var(--text) !important;
    font-weight: 600 !important;
    padding-left: 1.25rem;
    border-left: 1px solid var(--border);
    margin-left: 0.5rem;
}

/* ── Collapsible menu (markup generated by assets/nav.js) ── */
/* The wrapper must not create a box on desktop, or .nav-links (a block-level
   flex row) pushes the login button onto a second line. */
.nav-menu { display: contents; }
.nav-burger { display: none; }

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: inherit;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown.is-open > .nav-dropdown-toggle { color: var(--text); }

.nav-dropdown-caret {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.nav-dropdown.is-open > .nav-dropdown-toggle .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    transform: translate(-50%, -6px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.4rem;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Bridges the gap under the toggle so the pointer can travel into the panel
   without passing over dead space and collapsing the hover state. */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.9rem;
    left: 0;
    right: 0;
    height: 0.9rem;
}

/* nav.js stamps data-nav-enhanced on the nav and drives .is-open itself, so the
   pure-CSS hover and focus rules below only apply when the script is absent —
   otherwise a click that closes the panel would be reopened by the hover it is
   still sitting under. */
.nav-dropdown.is-open > .nav-dropdown-menu,
.site-nav:not([data-nav-enhanced]) .nav-dropdown:hover > .nav-dropdown-menu,
.site-nav:not([data-nav-enhanced]) .nav-dropdown:focus-within > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-links .nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.15s;
}
.nav-links .nav-dropdown-menu a:hover { background: var(--surface); }

.nav-dropdown-menu .nav-dd-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ── Language switcher ── */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.lang-switch a,
.lang-switch span {
    padding: 0.25rem 0.45rem;
    border-radius: 6px;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
    text-transform: uppercase;
}
.lang-switch a:hover { color: var(--text); background: var(--surface); }
.lang-switch [aria-current="true"] {
    color: var(--accent);
    background: var(--accent-light);
}
.lang-switch .sep { padding: 0; color: var(--border); }

/* ── Footer ── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 4rem 6% 2rem;
    background: var(--bg);
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 32ch;
    margin: 0.85rem 0 1.25rem;
    line-height: 1.65;
}
.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-logo img { height: 18px; width: auto; }

.footer-col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    font-size: 0.87rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Legal / document pages ── */
.policy-container {
    flex: 1;
    max-width: 720px;
    width: 100%;
    margin: 130px auto 90px;
    padding: 0 2rem;
}
.policy-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.effective-date {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 3rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.policy-container h2 {
    font-size: 1.35rem;
    margin-top: 2.75rem;
    margin-bottom: 0.85rem;
    color: var(--text);
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.policy-container h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}
.policy-container p {
    margin-bottom: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}
.policy-container ul, .policy-container ol {
    margin-bottom: 1.5rem;
    margin-left: 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}
.policy-container li { margin-bottom: 0.4rem; }
.policy-container strong { color: var(--text); }

.inline-link { color: var(--accent); transition: color 0.2s; }
.inline-link:hover { color: var(--accent-hover); text-decoration: underline; }

.policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
}
.policy-container th {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    padding: 0.6rem 0.75rem;
    border-bottom: 2px solid var(--border);
}
.policy-container td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: top;
    line-height: 1.55;
}
.table-scroll { overflow-x: auto; }

/* Placeholder blocks for company details that must be completed before publishing */
.fill-in {
    background: rgba(220, 38, 38, 0.07);
    border: 1px dashed rgba(220, 38, 38, 0.45);
    border-radius: 4px;
    padding: 0.05rem 0.4rem;
    color: #991B1B;
    font-weight: 600;
    font-size: 0.9em;
    white-space: nowrap;
}

.doc-note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.doc-note strong { color: var(--text); }

/* ── Enterprise legal center ── */
.reading-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 1000;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 80ms linear;
}

.policy-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 148px clamp(1.25rem, 4vw, 3rem) 110px;
}

.legal-hero {
    max-width: 850px;
    margin-bottom: 4rem;
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(180, 83, 9, 0.22);
    border-radius: 999px;
    background: rgba(180, 83, 9, 0.06);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.policy-container .legal-hero h1 {
    max-width: 820px;
    margin: 0 0 1rem;
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.legal-hero .effective-date,
.legal-hero .document-meta {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.legal-hero .document-meta strong { color: var(--text); }

.legal-summary {
    max-width: 760px;
    margin: 0 !important;
    color: var(--text-muted) !important;
    font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
    line-height: 1.7 !important;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(180px, 230px) minmax(0, 760px);
    align-items: start;
    gap: clamp(2.5rem, 7vw, 6.5rem);
}

.document-nav {
    position: sticky;
    top: 110px;
    max-height: calc(100vh - 140px);
    overflow: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
}

.document-nav-title {
    margin-bottom: 0.9rem;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.document-nav ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.document-nav li { margin: 0; }

.document-nav a {
    display: block;
    padding: 0.42rem 0 0.42rem 0.85rem;
    border-left: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
    text-decoration: none;
    transition: border-color 160ms, color 160ms, background 160ms;
}

.document-nav a:hover,
.document-nav a:focus-visible {
    border-left-color: var(--accent);
    background: linear-gradient(90deg, rgba(180, 83, 9, 0.07), transparent);
    color: var(--text);
}

.policy-content { min-width: 0; }

.legal-section {
    margin: 0 0 1rem;
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 1px 0 rgba(28, 25, 23, 0.02);
    scroll-margin-top: 110px;
}

.policy-container .legal-section h2 {
    margin: 0 0 1.2rem;
    padding: 0 0 0.9rem;
    border-bottom: 1px solid var(--border);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: -0.015em;
}

.policy-container .legal-section h3 {
    margin-top: 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.015em;
}

.policy-container .legal-section p,
.policy-container .legal-section li {
    color: #57534e;
    font-size: 0.93rem;
    line-height: 1.72;
}

.policy-container .legal-section p:last-child,
.policy-container .legal-section ul:last-child,
.policy-container .legal-section ol:last-child {
    margin-bottom: 0;
}

.policy-container .legal-section a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.policy-container .legal-section table {
    display: table;
    min-width: 640px;
    margin: 1.25rem 0;
    background: var(--bg);
}

@media (max-width: 900px) {
    .policy-container { padding-top: 120px; }
    .legal-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .document-nav {
        position: relative;
        top: auto;
        max-height: none;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--surface);
    }
    .document-nav ol {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.15rem 1rem;
    }
}

@media (max-width: 560px) {
    .policy-container { padding: 100px 1rem 72px; }
    .legal-hero { margin-bottom: 2.5rem; }
    .document-nav ol { grid-template-columns: 1fr; }
    .legal-section { padding: 1.2rem; border-radius: 10px; }
}

/* ── Scroll-reveal ── */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Nav collapses at 1000px, not 768px: the link row plus the logo and login
   button stop fitting on one row well before that, and a wrapped pill navbar
   looks broken. Measured, not guessed.
   Keep this breakpoint in sync with the matchMedia in assets/nav.js. */
@media (max-width: 1000px) {
    /* No-JS fallback: without nav.js there is no .nav-menu to open. */
    .nav-links { display: none; }

    /* In the collapsed panel the dropdown becomes an inline disclosure: the
       submenu stacks under its toggle instead of floating over the page. */
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        display: none;
        min-width: 0;
        margin-top: 0.85rem;
        padding: 0.25rem;
        background: var(--surface);
        border-radius: 10px;
        box-shadow: none;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown.is-open > .nav-dropdown-menu,
    .site-nav:not([data-nav-enhanced]) .nav-dropdown:focus-within > .nav-dropdown-menu {
        display: flex;
        transform: none;
    }
    .nav-links .nav-dropdown-menu a:hover { background: var(--bg); }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.25rem;
        background: rgba(250, 250, 247, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    .nav-open .nav-menu { display: flex; }
    .nav-menu .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .nav-menu .btn-primary { justify-content: center; }

    .nav-burger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        padding: 0;
        margin-right: -0.5rem;
        background: none;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }
    .nav-burger span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
    }
    .nav-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-open .nav-burger span:nth-child(2) { opacity: 0; }
    .nav-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .nav-login { border-left: none; margin-left: 0; padding-left: 0; }
}

@media (max-width: 768px) {
    .site-nav {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        padding: 0.75rem 1.25rem;
    }
    .policy-container { margin: 110px auto 50px; padding: 0 5%; }
    .policy-container h1 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .site-footer { padding: 3rem 5% 1.5rem; }
    .fill-in { white-space: normal; }
}

/* ── Scroll cue ── */
/* Decorative only: it fades out on scroll, so keeping it non-focusable avoids
   leaving keyboard users on an invisible tab stop. */
/* Fixed, not absolute: on short viewports the 100vh hero outgrows the fold, and
   a hero-anchored cue would sit below it — invisible exactly when it matters. */
.scroll-cue {
    position: fixed;
    bottom: 1.75rem;
    left: 50%;
    z-index: 5;
    color: var(--text-muted);
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.4s ease;
    animation: scroll-cue-bob 2.4s ease-in-out infinite;
}
.scroll-cue.is-hidden { opacity: 0; }

@keyframes scroll-cue-bob {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 7px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    /* The bob lives in a transform keyframe, so cancel the animation outright
       rather than let the global 0.01ms duration strand it mid-translate. */
    .scroll-cue {
        animation: none;
        transform: translateX(-50%);
    }
}
