/* Kato — layout modelled on trymyta.app, rendered strictly in black, white and neutral grey.
   Their structure: light page, a centred hero, a 4-up stat row ruled on top, 3-up grids, list rows
   with a share bar, a close CTA and a white rounded footer card. Their blue accent becomes black;
   every tint here is neutral. */

:root {
    --ink: #000;
    --paper: #fff;
    --page: #f6f6f6; /* neutral stand-in for their blue-grey page */
    --mute: #5f5f5f;
    --faint: rgba(0, 0, 0, 0.38);
    --line: rgba(0, 0, 0, 0.1);
    --track: rgba(0, 0, 0, 0.09);

    --head: "Sora", "Figtree", Helvetica, Arial, sans-serif;
    --ui: "Figtree", Helvetica, Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

    --shell: 1152px;
    --gutter: clamp(18px, 4vw, 40px);
    --r: 16px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: var(--ui);
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
}

.hidden {
    display: none !important;
}

.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.mono {
    font-family: var(--mono);
}

/* Content sits above the hero's backdrop. */
.nav,
main,
footer {
    position: relative;
    z-index: 1;
}

/* ---------------------------------------------------------------- nav */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 246, 246, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.nav.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    height: 68px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
}

.brand-mark {
    width: 22px;
    height: 22px;
    background: currentColor;
    -webkit-mask: url(./mark.svg) center / contain no-repeat;
    mask: url(./mark.svg) center / contain no-repeat;
    flex: none;
}

.brand-word {
    font-family: var(--head);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.brand-word b {
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 26px;
    justify-self: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.55);
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.chain-chip {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
}

@media (max-width: 820px) {
    .nav-links,
    .chain-chip {
        display: none;
    }
    .nav-inner {
        grid-template-columns: 1fr auto;
    }
}

/* ---------------------------------------------------------------- buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.16s ease,
        color 0.16s ease,
        border-color 0.16s ease,
        transform 0.16s ease;
}

.btn.solid {
    background: var(--ink);
    color: var(--paper);
}

.btn.solid:hover:not(:disabled) {
    transform: translateY(-1px);
    background: #1c1c1c;
}

.btn.plain {
    background: transparent;
    color: var(--mute);
    padding: 0 8px;
    font-weight: 500;
}

.btn.plain:hover:not(:disabled) {
    color: var(--ink);
}

.btn.ghost {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn.ghost:hover:not(:disabled) {
    border-color: rgba(0, 0, 0, 0.3);
}

.btn.sm {
    height: 34px;
    padding: 0 15px;
    font-size: 12.5px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn.xs {
    height: 30px;
    padding: 0 13px;
    font-size: 12px;
    border-radius: 8px;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ---------------------------------------------------------------- hero */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(56px, 11vh, 118px) 0 clamp(34px, 6vh, 62px);
}

/* Dithered halftone frame. It bleeds full-bleed and up behind the sticky nav; `multiply` makes the
   image's white disappear into the page so only the dots survive, and the mask fades the bottom
   edge out rather than cutting it. */
.hero::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 100vw;
    transform: translate(-50%, var(--py, 0px)) scale(var(--pz, 1));
    top: -96px;
    bottom: -40px;
    background: url(./hero-bg.png) center top / cover no-repeat;
    mix-blend-mode: multiply;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin: 0;
    font-family: var(--head);
    font-weight: 600;
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    max-width: 16ch;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.hero-foot {
    margin-top: 34px;
    font-size: 13px;
    color: var(--mute);
}

.hero-foot .mono {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
}

/* ---------------------------------------------------------------- stats */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 26px 0 40px;
}

.stats > div {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.stat-v {
    font-family: var(--head);
    font-size: clamp(20px, 2.2vw, 27px);
    font-weight: 600;
    letter-spacing: -0.035em;
    font-variant-numeric: tabular-nums;
}

.stat-k {
    margin-top: 4px;
    font-size: 13px;
    color: var(--mute);
}

@media (max-width: 720px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ---------------------------------------------------------------- lockable instruments */

.assets {
    padding-bottom: clamp(30px, 5vh, 48px);
}

.assets-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.assets-k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
}

/* The one-line rule that decides everything. */
.assets-rule {
    font-size: 14px;
    color: var(--mute);
}

.assets-rule b {
    color: var(--ink);
    font-weight: 600;
}

.assets-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.assets-no {
    margin-top: 16px;
    max-width: 74ch;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--faint);
}

.assets-no b {
    color: var(--mute);
    font-weight: 600;
}

.asset {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px 17px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition:
        border-color 0.18s ease,
        transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.18s ease;
}

.asset:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.asset-badge {
    width: 40px;
    height: 40px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--ink);
    color: var(--paper);
}

.asset-badge svg {
    width: 21px;
    height: 21px;
    display: block;
}

.asset:hover .asset-badge {
    transform: rotate(-4deg);
    transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.muted-asset .asset-badge {
    background: transparent;
    color: var(--faint);
    border: 1px dashed rgba(0, 0, 0, 0.25);
}

/* Bar length encodes the term, so the grid reads as a maturity ladder rather than a logo wall. */
.asset-term {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: var(--t, 0%);
    background: var(--ink);
    opacity: 0.16;
    transition:
        opacity 0.18s ease,
        width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.asset:hover .asset-term {
    opacity: 0.5;
}

.asset-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.asset-copy b {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.asset-copy .mono {
    font-size: 10.5px;
    letter-spacing: 0.03em;
    color: var(--faint);
}

/* The open slot reads as an invitation, not a product. */
.muted-asset {
    background: transparent;
    border-style: dashed;
}

@media (max-width: 1000px) {
    .assets-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .assets-row {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------- sections */

.sec {
    padding: clamp(36px, 6vh, 58px) 0;
    border-top: 1px solid var(--line);
}

.sec-title {
    margin: 0;
    font-family: var(--head);
    font-size: clamp(20px, 2.1vw, 24px);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.sec-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.view-all {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-top: 30px;
}

.step-n {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 10px;
}

.grid3 h3 {
    margin: 0 0 8px;
    font-family: var(--head);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.grid3 p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--mute);
    max-width: 42ch;
}

@media (max-width: 860px) {
    .grid3 {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------- list rows */

.rows {
    margin-top: 26px;
}

.row {
    padding: 18px 0 14px;
    border-top: 1px solid var(--line);
}

.row:last-child {
    border-bottom: 1px solid var(--line);
}

.row-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.row-name {
    font-family: var(--head);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.row-val {
    font-size: 15px;
    font-variant-numeric: tabular-nums;
}

.row-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--track);
    margin: 12px 0 10px;
    overflow: hidden;
}

.row-bar i {
    display: block;
    height: 100%;
    background: var(--ink);
}

.row-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.row-meta .m {
    font-size: 12.5px;
    color: var(--mute);
}

.row-meta .mono {
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--faint);
}

.row-meta .right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.row-rate {
    font-size: 13px;
    font-weight: 700;
}

.empty {
    padding: 42px 0;
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--faint);
}

/* position rows reuse .row, plus an inline form */
.pos-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

input[type="text"] {
    height: 30px;
    width: 130px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 12px;
}

input::placeholder {
    color: var(--faint);
}

input:focus {
    outline: none;
    border-color: var(--ink);
}

/* ---------------------------------------------------------------- escrow panel */

.escrow {
    margin-top: 26px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.esc-fields {
    display: grid;
    grid-template-columns: 1.6fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.field-k {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
}

.field-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.escrow select,
.escrow input[type="text"] {
    width: 100%;
    height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--ui);
    font-size: 14px;
    appearance: none;
}

.escrow input[type="text"] {
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
}

.escrow select:focus,
.escrow input:focus {
    outline: none;
    border-color: var(--ink);
}

.esc-preview {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--mute);
}

.esc-custom {
    margin-top: 14px;
}

.esc-custom summary {
    cursor: pointer;
    list-style: none;
    font-size: 13px;
    color: var(--faint);
}

.esc-custom summary::-webkit-details-marker {
    display: none;
}

.esc-custom summary::before {
    content: "+ ";
    font-family: var(--mono);
}

.esc-custom[open] summary::before {
    content: "\2212 ";
}

.esc-note {
    margin: 10px 0 10px;
    max-width: 60ch;
    font-size: 13px;
    line-height: 1.55;
    color: var(--mute);
}

.esc-note code {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink);
}

.pending-note {
    margin-top: 18px;
    max-width: 72ch;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--mute);
}

@media (max-width: 780px) {
    .esc-fields {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------- close */

.close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: clamp(44px, 7vh, 70px) 0;
    border-top: 1px solid var(--line);
}

.close-title {
    margin: 0;
    font-family: var(--head);
    font-size: clamp(20px, 2.2vw, 25px);
    font-weight: 600;
    letter-spacing: -0.03em;
}

/* ---------------------------------------------------------------- footer

   No panel — the footer sits straight on the page. Mark + socials over a rule, a contact block
   beside four link columns, and an oversized faded wordmark bleeding off the bottom. */

footer {
    padding-bottom: 30px;
}

.foot-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 54px) 0 0;
    border-top: 1px solid var(--line);
}

/* row 1 -------------------------------------------------------------- */

.foot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: clamp(20px, 2.4vw, 30px);
    border-bottom: 1px solid var(--line);
}

.foot-card .brand-word {
    font-size: clamp(24px, 2.6vw, 32px);
}

.foot-card .brand-mark {
    width: clamp(24px, 2.6vw, 30px);
    height: clamp(24px, 2.6vw, 30px);
}

.foot-social {
    display: flex;
    gap: 18px;
}

.foot-social a {
    display: inline-flex;
    color: rgba(0, 0, 0, 0.55);
    transition: color 0.15s ease;
}

.foot-social a:hover {
    color: var(--ink);
}

.foot-social svg {
    width: 19px;
    height: 19px;
    display: block;
}

/* row 2 -------------------------------------------------------------- */

.foot-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
    gap: clamp(28px, 4vw, 60px);
    padding: clamp(26px, 3.2vw, 40px) 0 clamp(74px, 14vw, 190px);
}

.fr-title {
    font-family: var(--head);
    font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.reach-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 400px;
    padding: 14px 20px 14px 14px;
    border-radius: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    transition:
        border-color 0.16s ease,
        transform 0.16s ease;
}

.reach-card:hover {
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.reach-icon {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 50%;
    background: var(--ink);
    position: relative;
}

.reach-icon::after {
    content: "";
    position: absolute;
    inset: 11px;
    background: var(--paper);
    -webkit-mask: url(./mark.svg) center / contain no-repeat;
    mask: url(./mark.svg) center / contain no-repeat;
}

.reach-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}

.reach-copy b {
    font-size: 15.5px;
    font-weight: 600;
}

.reach-copy span {
    font-size: 13.5px;
    color: var(--mute);
}

.foot-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.fh {
    font-family: var(--head);
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 16px;
}

.foot-cols a {
    display: block;
    font-size: 14.5px;
    line-height: 2.05;
    color: var(--mute);
    transition: color 0.15s ease;
}

.foot-cols a:hover {
    color: var(--ink);
}

/* watermark ---------------------------------------------------------- */

.foot-watermark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.18em;
    /* Centred, and sized so the whole word — period included — sits inside the container. */
    text-align: center;
    font-family: var(--head);
    font-weight: 700;
    font-size: clamp(90px, 23vw, 330px);
    line-height: 0.78;
    letter-spacing: -0.05em;
    color: rgba(0, 0, 0, 0.055);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* row 3 -------------------------------------------------------------- */

.foot-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 6px;
    font-size: 13.5px;
    color: var(--mute);
}

.foot-legal {
    display: flex;
    gap: clamp(14px, 2vw, 30px);
    flex-wrap: wrap;
    align-items: center;
}

.foot-legal a:hover {
    color: var(--ink);
}

.foot-legal #foot-chain {
    color: var(--faint);
}

@media (max-width: 900px) {
    .foot-main {
        grid-template-columns: 1fr;
    }
    .foot-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------------------------------------------------------------- toast */

#toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(14px);
    max-width: min(540px, calc(100vw - 28px));
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--paper);
    font-size: 13.5px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
    z-index: 100;
    text-align: center;
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#toast.err {
    background: var(--paper);
    color: var(--ink);
    box-shadow: inset 0 0 0 1.5px var(--ink);
}

/* ---------------------------------------------------------------- motion primitives */

.rv {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.rv.in {
    opacity: 1;
    transform: none;
}

/* Zoom reveal: scales up into place rather than only sliding. */
.rv.zoom {
    transform: scale(0.9) translateY(16px);
    transform-origin: center bottom;
}

.rv.zoom.in {
    transform: none;
}

/* Icon badges pop with a slight overshoot once their card lands. */
@keyframes badge-pop {
    0% {
        transform: scale(0.4) rotate(-16deg);
        opacity: 0;
    }
    62% {
        transform: scale(1.12) rotate(3deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.asset.in .asset-badge {
    animation: badge-pop 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--d, 0ms) + 120ms);
}

/* Numbers swell as they count, then settle. */
@keyframes stat-zoom {
    from {
        transform: scale(0.82);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.stats > div.in .stat-v {
    animation: stat-zoom 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--d, 0ms);
    transform-origin: left center;
}

/* Cards zoom under the cursor. */
.asset:hover {
    transform: translateY(-3px) scale(1.025);
}

.row:hover .row-name {
    transform: scale(1.015);
}

.row-name {
    display: inline-block;
    transform-origin: left center;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn.solid,
.btn.ghost {
    transform-origin: center;
}

.btn.solid:active,
.btn.ghost:active {
    transform: scale(0.97);
}

/* Headline words slide up from behind their own baseline. */
.hero-title .w {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.06em;
    margin-bottom: -0.06em;
}

.hero-title .w > span {
    display: inline-block;
    transform: translateY(115%);
    transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-title.in .w > span {
    transform: none;
}

/* Term bars grow from zero as their card arrives. */
.asset .asset-term {
    width: 0;
}

.asset.in .asset-term {
    width: var(--t, 0%);
}

/* The book's share bars do the same. */
.row-bar i {
    transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .rv,
    .hero-title .w > span {
        opacity: 1 !important;
        transform: none !important;
    }
    .asset .asset-term {
        width: var(--t, 0%);
    }
    .asset.in .asset-badge,
    .stats > div.in .stat-v {
        animation: none;
    }
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
