/* ============================================================
   EINIEX Platform page — extends einiex.css
   Same tokens, same vocabulary. No new patterns, just compositions.
   ============================================================ */

/* ---------- Page intro (no full hero) ---------- */
.intro { position: relative; padding-top: 9.5rem; padding-bottom: 3.25rem; }
.intro__inner { display: flex; flex-direction: column; gap: 1.75rem; max-width: 64rem; }
.intro__eyebrow { margin-bottom: 0.125rem; }
.intro__h {
  font-family: var(--font-display), sans-serif; font-weight: 500;
  font-size: clamp(2.5rem, 6.2vw, 5.25rem); line-height: 0.98; letter-spacing: -0.035em;
  max-width: 16ch;
}
.intro__h em { font-family: var(--font-serif), serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--text); }
/* The shared marker-reveal forces lines to inline-block, whose shrink-to-fit
   miscomputes here (serif <em> + sans run) and clips the trailing word and the
   italic descenders. Block + visible overflow lays the line out correctly; the
   sweep bar still reveals fine. Scoped to the intro so other headings keep the
   inline-block masking. */
.intro .intro__h .highlight-marker-line { display: block !important; overflow: visible !important; margin: 0 !important; padding-bottom: 0 !important; }
/* the shared bar inset assumes the 0.24em descender padding that the intro
   variant no longer has — re-anchor it to the bare line box */
.intro .intro__h .highlight-marker-bar { inset: -0.055em 0rem; }
.intro__sub { font-size: clamp(1rem, 1.9vw, 1.25rem); line-height: 1.5; color: var(--text-2); max-width: 46ch; }

/* ---------- Jump nav strip ---------- */
.jumpnav {
  display: flex; flex-wrap: wrap; margin-top: 0.75rem;
  border: 0.0625rem solid var(--border); border-radius: 0.875rem; overflow: hidden;
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  backdrop-filter: blur(0.75rem); width: max-content; max-width: 100%;
}
.jumpnav__link {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.95rem 1.4rem; border-right: 0.0625rem solid var(--border);
  font-size: 0.9375rem; color: var(--text); position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}
.jumpnav__link:last-child { border-right: 0; }
.jumpnav__link:hover { background: var(--surface); }
.jumpnav__num { font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.1em; color: var(--text-2); transition: color 0.3s ease; }
.jumpnav__link.is-active { background: var(--surface); }
.jumpnav__link.is-active .jumpnav__num { color: var(--text); }
.jumpnav__link::after {
  content: ""; position: absolute; left: 1.4rem; right: 1.4rem; bottom: 0.55rem; height: 0.0625rem;
  background: var(--text); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.625,0.05,0,1);
}
.jumpnav__link.is-active::after { transform: scaleX(1); }
@media (max-width: 720px) {
  .jumpnav { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .jumpnav__link { padding: 0.95rem 1.1rem; min-height: 3.25rem; border-right: 0.0625rem solid var(--border); border-bottom: 0.0625rem solid var(--border); }
  .jumpnav__link:nth-child(2n) { border-right: 0; }
  .jumpnav__link:nth-child(n+3) { border-bottom: 0; }
  .jumpnav__link::after { left: 1.1rem; right: 1.1rem; }
}

/* ============================================================
   FEATURE SECTIONS — alternating two-column
   ============================================================ */
.feature { position: relative; padding-block: var(--rhythm); border-top: 0.0625rem solid var(--border); scroll-margin-top: 6rem; }
/* interactive panel ALWAYS on the right — copy left, demo right — on every breakpoint */
.feature__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: center; }
.feature__copy { display: flex; flex-direction: column; gap: 1.375rem; max-width: 32rem; }
.feature__h {
  font-family: var(--font-display), sans-serif; font-weight: 500;
  font-size: clamp(1.875rem, 3.6vw, 3rem); line-height: 1.02; letter-spacing: -0.03em; max-width: 15ch;
}
.feature__sub {
  margin: -0.5rem 0 0; font-size: clamp(0.875rem, 1.4vw, 0.9375rem); line-height: 1.55; color: var(--text-2);
  max-width: 34ch; padding-left: 0.85rem; border-left: 0.0625rem solid var(--border);
}
.feature__body { font-size: clamp(0.9375rem, 1.5vw, 1.0625rem); line-height: 1.6; color: var(--text-2); max-width: 44ch; }
.feature__body b { color: var(--text); font-weight: 500; }
.feature__note { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-mono), monospace; font-size: 0.71875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.feature__note .check { width: 1rem; height: 1rem; color: var(--text); }
.feature__notes { display: flex; flex-direction: column; gap: 0.7rem; }
.feature__notes .feature__note { color: var(--text-2); }

@media (max-width: 1000px) {
  /* keep the two-column layout (interactive stays on the right), just tighter */
  .feature__grid { gap: 2rem; }
  .feature__copy { max-width: 100%; }
}
@media (max-width: 600px) {
  /* phones: the demo panels need more width than a side column allows, so the
     panel drops full-width below the copy (still reads top-to-bottom cleanly) */
  .feature__grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature__copy { max-width: 38rem; }
}

/* ============================================================
   MOCK PANELS — product window chrome (matches .glass family)
   ============================================================ */
.panel {
  position: relative; border-radius: 1.125rem; overflow: hidden;
  border: 0.0625rem solid var(--border); background: var(--surface);
  box-shadow: 0 2.25rem 5rem -2.75rem rgba(0,0,0,0.55);
}
[data-theme-status="dark"] .panel { background: var(--surface); }
.panel__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 1.15rem; border-bottom: 0.0625rem solid var(--border);
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
}
.panel__title { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-mono), monospace; font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); }
.panel__dots { display: flex; gap: 0.375rem; }
.panel__dots i { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--border); display: inline-block; }
.panel__live { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.panel__live i { width: 0.4375rem; height: 0.4375rem; border-radius: 50%; background: var(--text); display: inline-block; }
.panel__body { padding: 1.15rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* ---------- Bounty subsection (inside On-platform deals) ---------- */
.feature__grid--sub { margin-top: 4.25rem; padding-top: 3.5rem; border-top: 0.0625rem solid var(--border); }
.feature__h--sm { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.deal__covered.deal__covered--bounty { background: var(--bg); color: var(--text); border-color: var(--text); }

/* live pulse dot */
@media (prefers-reduced-motion: no-preference) {
  .pulse-dot { position: relative; }
  .pulse-dot::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--text) 55%, transparent);
    animation: pulse-ring 2.4s cubic-bezier(0.4,0,0.2,1) infinite;
  }
}
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--text) 50%, transparent); } 70%,100% { box-shadow: 0 0 0 0.55rem transparent; } }

/* generic status chip */
.schip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2); padding: 0.35rem 0.6rem; border: 0.0625rem solid var(--border); border-radius: 0.4375rem;
  background: var(--bg);
}
.schip i { width: 0.4375rem; height: 0.4375rem; border-radius: 50%; background: var(--text-2); display: inline-block; flex: 0 0 auto; }
.schip--solid { color: var(--bg); background: var(--text); border-color: var(--text); }
.schip--solid i { background: var(--bg); }

/* ---------- Search header (Discovery) ---------- */
.psearch {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 0.95rem;
  border: 0.0625rem solid var(--border); border-radius: 0.75rem; background: var(--bg);
}
.psearch svg { width: 1.05rem; height: 1.05rem; color: var(--text-2); flex: 0 0 auto; }
.psearch__q { font-size: 0.9375rem; color: var(--text); line-height: 1; min-height: 1em; }
.psearch__caret { display: inline-block; width: 0.0625rem; height: 1.05em; background: var(--text); margin-left: 0.05rem; vertical-align: -0.18em; animation: caret-blink 1s steps(1) infinite; }
.psearch__count { margin-left: auto; font-family: var(--font-mono), monospace; font-size: 0.6875rem; letter-spacing: 0.08em; color: var(--text-2); white-space: nowrap; }

/* ---------- Profile result cards (Discovery) ---------- */
.results { display: flex; flex-direction: column; gap: 0.625rem; }
.pcard {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.95rem; align-items: center;
  padding: 0.9rem 1rem; border: 0.0625rem solid var(--border); border-radius: 0.875rem; background: var(--bg);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.pcard:hover { border-color: var(--text); }
.pcard__ava { width: 2.65rem; height: 2.65rem; border-radius: 50%; background-size: cover; background-position: center; flex: 0 0 auto; position: relative; }
.pcard__ava--private { background: var(--surface-2); display: grid; place-items: center; border: 0.0625rem solid var(--border); }
.pcard__ava--private svg { width: 1.35rem; height: 1.35rem; color: var(--text-2); }
.pcard__main { min-width: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.pcard__name { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9375rem; font-weight: 500; letter-spacing: -0.01em; }
.pcard__name svg { width: 0.85rem; height: 0.85rem; color: var(--text); flex: 0 0 auto; }
.pcard__meta { font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.pcard__stats { display: flex; gap: 0.9rem; margin-top: 0.15rem; }
.pcard__stat { display: flex; flex-direction: column; gap: 0.1rem; }
.pcard__stat b { font-size: 0.875rem; font-weight: 500; line-height: 1; font-variant-numeric: tabular-nums; }
.pcard__stat span { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.pcard__reach { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; text-align: right; flex: 0 0 auto; }
.pcard__reach span { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.pcard__reach b { font-size: 0.8125rem; font-weight: 500; }
.panel__note { margin: 0.25rem 0 0; font-size: 0.78125rem; line-height: 1.5; color: var(--text-2); }
.pcard__bars { display: inline-flex; align-items: flex-end; gap: 0.15rem; height: 0.85rem; }
.pcard__bars i { width: 0.2rem; background: var(--text); border-radius: 0.0625rem; display: inline-block; opacity: 0.3; }
.pcard__bars i.on { opacity: 1; }

/* ---------- Connection request (Connections) ---------- */
.conn { display: flex; flex-direction: column; gap: 0.9rem; }
.conn__flow { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.5rem; }
.conn__party { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; padding: 0.6rem; }
.conn__ava { width: 3.1rem; height: 3.1rem; border-radius: 50%; background-size: cover; background-position: center; }
.conn__role { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.conn__pname { font-size: 0.9375rem; font-weight: 500; letter-spacing: -0.01em; }
.conn__link { position: relative; height: 2.4rem; display: grid; place-items: center; }
.conn__line { position: relative; width: 4.5rem; max-width: 16vw; height: 0.0625rem; background: var(--border); overflow: hidden; }
.conn__line::before { content: ""; position: absolute; inset: 0; background: var(--text); transform: scaleX(var(--draw, 0)); transform-origin: left; }
.conn__spark { position: absolute; top: 50%; left: 0; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--text); transform: translate(-50%,-50%) scale(var(--spark,0)); transition: transform 0.4s ease; }
.conn__reason { padding: 0.85rem 0.95rem; border: 0.0625rem solid var(--border); border-radius: 0.75rem; background: var(--bg); }
.conn__reason-label { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); margin-bottom: 0.4rem; }
.conn__reason-text { font-size: 0.9375rem; line-height: 1.45; color: var(--text); }
.conn__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.conn__logged { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); opacity: 0; }
.conn__logged.show { opacity: 1; transform: none; }
.conn__logged .check { width: 0.95rem; height: 0.95rem; color: var(--text); }

/* ---------- Deal card (On-platform deals) ---------- */
.deal { display: flex; flex-direction: column; gap: 1rem; }
.deal__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.deal__title { font-size: 1.0625rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1.25; max-width: 18ch; }
.deal__type { margin-top: 0.5rem; }
.deal__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.9rem; border-top: 0.0625rem solid var(--border); }
.deal__members { display: flex; align-items: center; }
.deal__members .deal__ava { width: 2.1rem; height: 2.1rem; border-radius: 50%; background-size: cover; background-position: center; border: 0.125rem solid var(--surface); margin-left: -0.55rem; }
.deal__members .deal__ava:first-child { margin-left: 0; }
.deal__members span { margin-left: 0.65rem; font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.deal__covered {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem;
  border: 0.0625rem solid var(--text); border-radius: 0.5rem; background: var(--text); color: var(--bg);
  font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.deal__covered svg { width: 0.95rem; height: 0.95rem; }
.deal__value { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.9rem 0.95rem; border: 0.0625rem solid var(--border); border-radius: 0.75rem; background: var(--bg); }
.deal__value-row { display: flex; align-items: baseline; justify-content: space-between; }
.deal__value-label { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.deal__value-amt { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.deal__track { position: relative; height: 0.3rem; border-radius: 0.3rem; background: var(--surface-2); overflow: hidden; }
.deal__track i { position: absolute; inset: 0; background: var(--text); transform: scaleX(var(--fill,0)); transform-origin: left; }
.deal__split { display: flex; justify-content: space-between; font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }

/* escrow / protection line inside the deal card — subtle middleman cue */
.deal__escrow {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.65rem 0.8rem; border: 0.0625rem solid var(--border); border-radius: 0.7rem; background: var(--bg);
}
.deal__escrow-id { display: inline-flex; align-items: center; gap: 0.55rem; min-width: 0; }
.deal__escrow-ic { width: 1.55rem; height: 1.55rem; border-radius: 0.45rem; border: 0.0625rem solid var(--border); display: grid; place-items: center; color: var(--text); flex: 0 0 auto; }
.deal__escrow-ic svg { width: 0.85rem; height: 0.85rem; }
.deal__escrow-txt { display: flex; flex-direction: column; gap: 0.12rem; min-width: 0; }
.deal__escrow-txt b { font-size: 0.8125rem; font-weight: 500; letter-spacing: -0.01em; }
.deal__escrow-txt span { font-family: var(--font-mono), monospace; font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.deal__escrow-tier { flex: 0 0 auto; font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); border: 0.0625rem solid var(--text); border-radius: 100px; padding: 0.22rem 0.6rem; }

/* tiny opt-in protection badge on a discovery profile */
.pcard__tag {
  display: inline-flex; align-items: center; gap: 0.24rem; flex: 0 0 auto;
  font-family: var(--font-mono), monospace; font-size: 0.5rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2);
  border: 0.0625rem solid var(--border); border-radius: 100px; padding: 0.1rem 0.42rem 0.1rem 0.32rem;
}
.pcard__tag svg { width: 0.62rem; height: 0.62rem; flex: 0 0 auto; color: var(--text); }

/* ---------- Boost selector (Boosts) ---------- */
.boost { display: flex; flex-direction: column; gap: 0.85rem; }
.boost__row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 1rem; border: 0.0625rem solid var(--border); border-radius: 0.85rem; background: var(--bg);
  transition: border-color 0.3s ease;
}
.boost__row.is-on, .boost--on .boost__row:first-child { border-color: var(--text); }
.boost__label { display: flex; flex-direction: column; gap: 0.25rem; }
.boost__label b { font-size: 0.9375rem; font-weight: 500; letter-spacing: -0.01em; }
.boost__label span { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
/* decorative demo switch — looks live, but it's part of the mock: no cursor,
   no clicks; einiex-platform.js drives its .on state during the panel demo */
.toggle { width: 2.75rem; height: 1.55rem; border-radius: 1rem; border: 0.0625rem solid var(--border); background: var(--surface-2); position: relative; flex: 0 0 auto; cursor: default; pointer-events: none; transition: background 0.35s ease, border-color 0.35s ease; }
.toggle::after { content: ""; position: absolute; top: 0.18rem; left: 0.18rem; width: 1.08rem; height: 1.08rem; border-radius: 50%; background: var(--text-2); transition: transform 0.35s cubic-bezier(0.5,0,0,1), background 0.35s ease; }
.toggle.on { background: var(--text); border-color: var(--text); }
.toggle.on::after { background: var(--bg); transform: translateX(1.2rem); }
.boost__reach { display: flex; flex-direction: column; gap: 0.7rem; padding: 1rem; border: 0.0625rem solid var(--border); border-radius: 0.85rem; background: var(--bg); }
.boost__reach-top { display: flex; align-items: baseline; justify-content: space-between; }
.boost__reach-label { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.boost__reach-num { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.boost__reach-num small { font-size: 0.8125rem; color: var(--text-2); font-weight: 400; }
.boost__ripple { position: relative; height: 3.25rem; display: grid; place-items: center; overflow: hidden; }
.boost__ripple i { position: absolute; width: 0.55rem; height: 0.55rem; border-radius: 50%; border: 0.0625rem solid var(--text); opacity: 0; }
.boost__ripple .core { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--text); opacity: 1; position: relative; z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .boost--on .boost__ripple i { animation: ripple 2.6s ease-out infinite; }
  .boost--on .boost__ripple i:nth-child(3) { animation-delay: 0.65s; }
  .boost--on .boost__ripple i:nth-child(4) { animation-delay: 1.3s; }
  .boost--on .boost__ripple i:nth-child(5) { animation-delay: 1.95s; }
}
@keyframes ripple { 0% { width: 0.55rem; height: 0.55rem; opacity: 0.7; } 100% { width: 8rem; height: 8rem; opacity: 0; } }
.boost__cost { display: flex; align-items: baseline; justify-content: space-between; padding-top: 0.6rem; border-top: 0.0625rem solid var(--border); }
.boost__cost-label { font-family: var(--font-mono), monospace; font-size: 0.625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.boost__cost-amt { font-size: 1rem; font-weight: 500; letter-spacing: -0.01em; }
.boost__cost-amt small { font-family: var(--font-mono), monospace; font-size: 0.6875rem; color: var(--text-2); font-weight: 400; letter-spacing: 0.04em; }

/* entrance for mock rows — GSAP drives the reveal (CSS transitions proved
   unreliable for these nodes in-preview). Base = hidden; .in = end state. */
.lift-in { opacity: 0; }
.lift-in.in { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .lift-in { opacity: 1 !important; transform: none !important; } }

/* ---------- Deal reviews on profile cards (Discovery) ----------
   The pcard is a 3-col grid (auto 1fr auto); .prev spans the full width
   as a quiet footer row beneath the profile. */
.pcard { row-gap: 0; }
.prev {
  grid-column: 1 / -1;
  margin-top: 0.85rem; padding-top: 0.8rem;
  border-top: 0.0625rem solid var(--border);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.prev__head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.prev__rating { display: inline-flex; align-items: center; gap: 0.5rem; }

/* fractional star meter — two stacked layers, fill clipped to --score */
.prev__stars { position: relative; display: inline-block; width: 4.3rem; height: 0.82rem; flex: 0 0 auto; }
.prev__stars svg { display: block; width: 4.3rem; height: 0.82rem; }
.prev__stars-base { color: var(--text-2); opacity: 0.45; }
.prev__stars-fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; width: var(--score, 0%); color: var(--text); }
.prev__score { font-size: 0.8125rem; font-weight: 500; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; line-height: 1; }

.prev__quote {
  margin: 0; font-size: 0.75rem; line-height: 1.35; color: var(--text-2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.prev__none { font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); opacity: 0.7; }

/* static "Dispute" marker — visual only, not interactive */
.prev__dispute {
  flex: 0 0 auto; user-select: none;
  font-family: var(--font-mono), monospace; font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2); background: transparent; border: 0.0625rem solid var(--border); border-radius: 100px;
  padding: 0.32rem 0.7rem;
}
