/* Hero frames: the four video panels, reused as live hero visuals on hub pages.
   One source for the video capture and the site. Sized by container query, so the
   same markup works at 600px in the video and 900px on a hub page. */

.stmf {
  --navy: #0E0E1A; --panel: #16172A; --gold: #FFD700;
  --white: #FFFFFF; --dim: #A8ACBE; --pos: #6FBF95; --neg: #E0736B;
  width: 100%; aspect-ratio: 16 / 9;
  background: var(--navy); border-radius: 14px; overflow: hidden;
  position: relative; container-type: inline-size;
  font-family: 'Archivo', 'Inter', system-ui, sans-serif; color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
/* These frames drop into pages that already own generic class names (.nm, .row,
   .split, .teams, .pos). Without this reset the host page restyles them - team
   names rendered near-black on navy on /nfl-hub. Every specific rule below is
   (0,2,0) so it still beats this. Descendants only, and TEXT properties only:
   including .stmf itself, or resetting background, wipes the frame's own panel. */
.stmf.stmf * {
  color: #FFFFFF;
  font-family: 'Archivo', 'Inter', system-ui, sans-serif;
  font-style: normal; text-transform: none; text-decoration: none;
  letter-spacing: normal; margin: 0;
}

.stmf.stmf .pad { position: absolute; inset: 0; padding: 5.2cqw 5.6cqw; display: flex; flex-direction: column; }
.stmf.stmf .kicker {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 2.05cqw; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6cqw;
}
.stmf.stmf .foot {
  margin-top: auto; display: flex; align-items: center; gap: .9cqw;
  font-size: 2.5cqw; color: var(--dim); font-weight: 500;
}
.stmf.stmf .foot b { color: var(--white); font-weight: 800; font-size: 3.1cqw; }

/* --- entrances: staggered in, never staggered out --- */
@keyframes stmfIn { from { opacity: 0; transform: translateY(2.2cqw); } to { opacity: 1; transform: none; } }
.stmf.stmf .anim { opacity: 0; }
.stmf.stmf.play .anim { animation: stmfIn .5s cubic-bezier(.2,.7,.2,1) forwards; }

/* --- A. cap board --- */
.stmf.stmf .board { display: grid; grid-template-columns: repeat(8, 1fr); gap: .85cqw; }
.stmf.stmf .chip {
  background: var(--panel); border: 1px solid rgba(255,255,255,.09);
  border-radius: .7cqw; padding: 1cqw .4cqw .9cqw; text-align: center;
  transition: border-color .2s, background .2s, transform .2s;
}
.stmf.stmf .chip img { width: 3.1cqw; height: 3.1cqw; object-fit: contain; display: block; margin: 0 auto .45cqw; }
.stmf.stmf .chip .ab  { display: block; font-size: 2.1cqw; font-weight: 800; text-align: center; }
.stmf.stmf .chip .cap { display: block; font-family: ui-monospace, Menlo, monospace; font-size: 1.6cqw; color: var(--pos); margin-top: .2cqw; text-align: center; }
.stmf.stmf .chip .cap.low { color: var(--neg); }
.stmf.stmf .chip.hot { border-color: var(--gold); box-shadow: 0 0 0 .28cqw rgba(255,215,0,.30); background: #1D1F35; }
.stmf.stmf .chip:hover { border-color: var(--gold); transform: translateY(-.25cqw); cursor: pointer; }

/* --- B. verdict --- */
.stmf.stmf .teams { display: flex; align-items: center; justify-content: center; gap: 3.4cqw; margin-bottom: 2.2cqw; }
.stmf.stmf .team { display: flex; flex-direction: column; align-items: center; }
.stmf.stmf .crest { display: flex; align-items: center; gap: 1cqw; margin-bottom: .7cqw; }
.stmf.stmf .crest img { width: 4.6cqw; height: 4.6cqw; object-fit: contain; }
.stmf.stmf .crest .nm { font-size: 3.4cqw; font-weight: 900; }
.stmf.stmf .who { display: flex; align-items: center; gap: 1cqw; }
.stmf.stmf .who img {
  width: 3.6cqw; height: 3.6cqw; border-radius: 50%; object-fit: cover;
  background: #23253C; border: .14cqw solid rgba(255,255,255,.22);
}
.stmf.stmf .pl { font-size: 2.3cqw; color: var(--gold); font-weight: 700; }
.stmf.stmf .swap { font-size: 3cqw; color: var(--dim); }
.stmf.stmf .track { height: 1.5cqw; border-radius: 999px; background: rgba(255,255,255,.11); overflow: hidden; }
.stmf.stmf .track > i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg,#3B82F6,#6FBF95);
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}
.stmf.stmf.play .track > i { width: 50%; }
.stmf.stmf .verdict { display: flex; align-items: baseline; gap: 1.4cqw; margin-top: 2.1cqw; }
.stmf.stmf .verdict .pct { font-size: 6.4cqw; font-weight: 900; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.stmf.stmf .verdict .txt { font-size: 2.5cqw; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

/* --- C. rows --- */
.stmf.stmf .rows { display: flex; flex-direction: column; gap: 1.15cqw; }
.stmf.stmf .row {
  display: grid; grid-template-columns: 2.6cqw 5.2cqw 1fr max-content max-content;
  gap: 1.8cqw; align-items: center;
  background: var(--panel); border-radius: .8cqw;
  padding: 1.05cqw 1.8cqw; border: 1px solid rgba(255,255,255,.07);
  transition: border-color .2s, transform .2s;
}
.stmf.stmf .row:hover { border-color: var(--gold); transform: translateX(.3cqw); cursor: pointer; }
.stmf.stmf .row .rk { font-family: ui-monospace, Menlo, monospace; font-size: 2.2cqw; color: var(--dim); }
.stmf.stmf .row .hs {
  width: 5.2cqw; height: 5.2cqw; border-radius: 50%; object-fit: cover; object-position: top center;
  background: #23253C; border: .14cqw solid rgba(255,255,255,.16);
}
.stmf.stmf .row .pn { display: flex; align-items: center; gap: 1.2cqw; }
.stmf.stmf .row .nm { font-size: 3.1cqw; font-weight: 800; }
.stmf.stmf .row .tm { width: 2.6cqw; height: 2.6cqw; object-fit: contain; }
.stmf.stmf .row .pos { font-size: 2.3cqw; font-weight: 800; color: var(--gold); }
.stmf.stmf .row .adp { font-family: ui-monospace, Menlo, monospace; font-size: 2.6cqw; font-weight: 600; font-variant-numeric: tabular-nums; }

/* --- D. big number --- */
.stmf.stmf .bignum { font-size: 17cqw; font-weight: 900; line-height: .88; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.stmf.stmf .bigsub { font-size: 3.1cqw; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-top: .6cqw; }
.stmf.stmf .bigmeta { font-family: ui-monospace, Menlo, monospace; font-size: 2.2cqw; color: var(--dim); margin-top: 1.3cqw; }
.stmf.stmf .fixtures { display: flex; align-items: center; gap: 1.1cqw; margin-top: 2.2cqw; flex-wrap: wrap; }
.stmf.stmf .fixture {
  display: flex; align-items: center; gap: .55cqw;
  background: var(--panel); border: 1px solid rgba(255,255,255,.08);
  border-radius: .6cqw; padding: .7cqw 1cqw;
}
.stmf.stmf .fixture img { width: 2.5cqw; height: 2.5cqw; object-fit: contain; }
.stmf.stmf .fixture span { font-family: ui-monospace, Menlo, monospace; font-size: 1.6cqw; color: var(--dim); }

@media (prefers-reduced-motion: reduce) {
  .stmf.stmf .anim { opacity: 1 !important; animation: none !important; }
  .stmf.stmf .track > i { transition: none; width: 50%; }
}

/* --- E. market: who is still available --- */
.stmf.stmf .frows { display: flex; flex-direction: column; gap: 1.15cqw; }
.stmf.stmf .frow {
  display: grid; grid-template-columns: 3.4cqw 1fr max-content max-content max-content;
  gap: 1.8cqw; align-items: center;
  background: var(--panel); border-radius: .8cqw;
  padding: 1.25cqw 1.8cqw; border: 1px solid rgba(255,255,255,.07);
  transition: border-color .2s, transform .2s;
}
.stmf.stmf .frow:hover { border-color: var(--gold); transform: translateX(.3cqw); }
.stmf.stmf .frow .tm  { width: 3.4cqw; height: 3.4cqw; object-fit: contain; }
.stmf.stmf .frow .nm  { font-size: 3cqw; font-weight: 800; }
.stmf.stmf .frow .pos { font-size: 2.1cqw; font-weight: 800; color: var(--gold); }
.stmf.stmf .frow .age { font-family: ui-monospace, Menlo, monospace; font-size: 1.9cqw; color: var(--dim); }
.stmf.stmf .frow .apy { font-family: ui-monospace, Menlo, monospace; font-size: 2.5cqw; font-weight: 600; }
.stmf.stmf .frow .apy small { font-size: 1.5cqw; color: var(--dim); }

/* --- F. draft board --- */
.stmf.stmf .brows { display: flex; flex-direction: column; gap: 1.15cqw; }
.stmf.stmf .brow {
  display: grid; grid-template-columns: 3cqw 1fr max-content max-content;
  gap: 1.8cqw; align-items: baseline;
  background: var(--panel); border-radius: .8cqw;
  padding: 1.35cqw 1.8cqw; border: 1px solid rgba(255,255,255,.07);
  transition: border-color .2s, transform .2s;
}
.stmf.stmf .brow:hover { border-color: var(--gold); transform: translateX(.3cqw); }
.stmf.stmf .brow .rk  { font-family: ui-monospace, Menlo, monospace; font-size: 2.4cqw; color: var(--gold); font-weight: 600; }
.stmf.stmf .brow .nm  { font-size: 3cqw; font-weight: 800; }
.stmf.stmf .brow .pos { font-size: 2.1cqw; font-weight: 800; color: var(--gold); }
.stmf.stmf .brow .sch { font-family: ui-monospace, Menlo, monospace; font-size: 1.9cqw; color: var(--dim); }

/* --- G. scouting: model against the room --- */
.stmf.stmf .split { margin-top: 1cqw; }
.stmf.stmf .sp-name { font-size: 4.2cqw; font-weight: 900; letter-spacing: -.02em; margin-bottom: 2.4cqw; }
.stmf.stmf .sp-pos { font-size: 2.4cqw; color: var(--gold); font-weight: 800; margin-left: .8cqw; }
.stmf.stmf .sp-cols { display: flex; align-items: center; gap: 3.4cqw; }
.stmf.stmf .sp-col { display: flex; flex-direction: column; }
.stmf.stmf .sp-lab {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.7cqw; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dim); margin-bottom: .5cqw;
}
.stmf.stmf .sp-rank { font-size: 8cqw; font-weight: 900; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stmf.stmf .sp-col.ours .sp-rank { color: var(--gold); }
.stmf.stmf .sp-rank.dim { color: #6E7288; }
.stmf.stmf .sp-gap { text-align: center; }
.stmf.stmf .sp-delta { font-size: 3.4cqw; font-weight: 900; color: var(--pos); line-height: 1; }
.stmf.stmf .sp-dlab {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.5cqw;
  text-transform: uppercase; letter-spacing: .12em; color: var(--dim); margin-top: .3cqw;
}

/* --- H. contract offers: extend, sign, cut --- */
.stmf.stmf .ocols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.6cqw; }
.stmf.stmf .olab {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.6cqw; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1cqw; color: var(--pos);
}
.stmf.stmf .ocol.buy .olab { color: #7FA8E8; }
.stmf.stmf .ocol.go  .olab { color: var(--neg); }
.stmf.stmf .orow {
  display: grid; grid-template-columns: 3.1cqw minmax(0,1fr) max-content;
  grid-template-areas: "face nm pos" "face money money";
  gap: .35cqw .8cqw; align-items: baseline;
  background: var(--panel); border: 1px solid rgba(255,255,255,.07);
  border-radius: .7cqw; padding: 1.1cqw 1.2cqw; margin-bottom: .8cqw;
}
.stmf.stmf .orow .face { grid-area: face; width: 3.1cqw; height: 3.1cqw; border-radius: 50%; object-fit: cover; object-position: top center; background: #23253C; border: .12cqw solid rgba(255,255,255,.18); align-self: center; }
.stmf.stmf .orow .face.crest { border-radius: 0; border: 0; object-fit: contain; background: none; }
.stmf.stmf .orow .nm  { grid-area: nm; font-size: 1.9cqw; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stmf.stmf .orow .pos { grid-area: pos; font-size: 1.35cqw; font-weight: 800; color: var(--gold); }
.stmf.stmf .orow .from, .stmf .orow .to { grid-area: money; font-family: ui-monospace, Menlo, monospace; }
.stmf.stmf .orow .from { font-size: 1.6cqw; color: var(--dim); text-decoration: line-through; justify-self: start; }
.stmf.stmf .orow .to   { font-size: 2cqw; font-weight: 700; color: var(--pos); justify-self: end; }
.stmf.stmf .orow .to.sign { color: #7FA8E8; }
.stmf.stmf .orow .to.cut  { color: var(--neg); }
.stmf.stmf .orow .to small { font-size: 1.3cqw; color: var(--dim); }

/* --- I. draft sim: needs, then who fills them --- */
.stmf.stmf .needbar {
  display: flex; align-items: center; gap: .7cqw; margin-bottom: 1.4cqw; flex-wrap: wrap;
}
.stmf.stmf .nlab {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.5cqw; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dim); margin-right: .3cqw;
}
.stmf.stmf .need {
  font-size: 1.7cqw; font-weight: 800; color: var(--neg);
  border: .12cqw solid rgba(224,115,107,.55); border-radius: .5cqw; padding: .3cqw .8cqw;
}
.stmf.stmf .onclock {
  margin-left: auto; font-family: ui-monospace, Menlo, monospace; font-size: 1.5cqw;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}
.stmf.stmf .dcands { display: flex; flex-direction: column; gap: 1cqw; }
.stmf.stmf .dcand {
  display: grid; grid-template-columns: 4.6cqw 1fr max-content max-content max-content max-content;
  gap: 1.4cqw; align-items: center;
  background: var(--panel); border: 1px solid rgba(255,255,255,.07);
  border-radius: .8cqw; padding: 1cqw 1.4cqw;
  transition: border-color .25s, background .25s, transform .25s;
}
.stmf.stmf .dcand .hs {
  width: 4.6cqw; height: 4.6cqw; border-radius: 50%; object-fit: cover; object-position: top center;
  background: #23253C; border: .14cqw solid rgba(255,255,255,.16);
}
.stmf.stmf .dcand .nm  { font-size: 2.6cqw; font-weight: 800; }
.stmf.stmf .dcand .pos { font-size: 1.8cqw; font-weight: 800; color: var(--dim); }
.stmf.stmf .dcand .pos.fits { color: var(--pos); }
.stmf.stmf .dcand .sch { font-family: ui-monospace, Menlo, monospace; font-size: 1.6cqw; color: var(--dim); }
.stmf.stmf .dcand .bd  { font-family: ui-monospace, Menlo, monospace; font-size: 1.7cqw; color: var(--gold); }
.stmf.stmf .dcand .take {
  font-size: 1.6cqw; font-weight: 800; color: #0E0E1A; background: var(--gold);
  border-radius: 999px; padding: .45cqw 1.2cqw; opacity: 0; transition: opacity .18s;
}
.stmf.stmf .dcand.pick {
  border-color: var(--gold); background: #1D1F35; transform: translateX(.4cqw);
  box-shadow: 0 0 0 .18cqw rgba(255,215,0,.22);
}
.stmf.stmf .dcand.pick .take { opacity: 1; }

/* --- J. trade loop --- */
.stmf.stmf .tslides { position: relative; }
.stmf.stmf .tslide { display: none; }
.stmf.stmf .tslide.on { display: block; animation: stmfIn .45s cubic-bezier(.2,.7,.2,1) both; }
.stmf.stmf .tslide .track > i { width: var(--to, 50%); transition: width .9s cubic-bezier(.2,.7,.2,1); }
.stmf.stmf .tslide .verdict { display: flex; align-items: baseline; gap: 1.4cqw; margin-top: 2cqw; }
.stmf.stmf .tslide .verdict .pct { font-size: 6.2cqw; font-weight: 900; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.stmf.stmf .tslide .verdict .txt { font-size: 2.4cqw; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.stmf.stmf .tnote { font-size: 2.1cqw; color: var(--dim); margin-top: 1.1cqw; }
.stmf.stmf .tnote b { color: var(--white); font-weight: 800; }
.stmf.stmf .tdots { display: inline-flex; gap: .6cqw; margin-right: 1.2cqw; }
.stmf.stmf .tdot { width: .9cqw; height: .9cqw; border-radius: 50%; background: rgba(255,255,255,.22); transition: background .3s; }
.stmf.stmf .tdot.on { background: var(--gold); }

/* --- K. scouting: split, then the whole class --- */
.stmf.stmf .twostage { position: relative; flex: 1; min-height: 0; }
.stmf.stmf .fstage {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity .4s ease; display: flex; flex-direction: column; justify-content: center;
}
.stmf.stmf .fstage.on { opacity: 1; pointer-events: auto; }
.stmf.stmf .fstage.s2 { justify-content: stretch; }
.stmf.stmf .fplot { flex: 1; display: grid; grid-template-columns: 3cqw 1fr; grid-template-rows: 1fr 2.6cqw; gap: .6cqw; min-height: 0; }
.stmf.stmf .canvasbox { position: relative; min-height: 0; border-radius: .7cqw; background: var(--panel); border: 1px solid rgba(255,255,255,.07); }
.stmf.stmf .canvasbox canvas { display: block; width: 100%; height: 100%; }
.stmf.stmf .axis-y {
  writing-mode: vertical-rl; transform: rotate(180deg); text-align: center;
  font-family: ui-monospace, Menlo, monospace; font-size: 1.5cqw; color: var(--dim);
  letter-spacing: .1em; text-transform: uppercase;
}
.stmf.stmf .axis-x {
  grid-column: 2; text-align: right;
  font-family: ui-monospace, Menlo, monospace; font-size: 1.5cqw; color: var(--dim);
  letter-spacing: .1em; text-transform: uppercase;
}

/* --- L. team hq: the depth chart on the field --- */
.stmf.stmf .hqstrip { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8cqw; margin-bottom: 1cqw; }
.stmf.stmf .hqroom {
  display: block; background: var(--panel); border: 1px solid rgba(255,255,255,.08);
  border-radius: .55cqw; padding: .7cqw .8cqw;
}
.stmf.stmf .rmlab {
  display: block; font-family: ui-monospace, Menlo, monospace; font-style: normal;
  font-size: 1.3cqw; letter-spacing: .11em; text-transform: uppercase; color: var(--dim);
}
.stmf.stmf .rmrk { display: block; font-size: 2cqw; font-weight: 900; margin: .15cqw 0 .45cqw; }
.stmf.stmf .rmbar { display: block; height: .45cqw; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.stmf.stmf .rmbar > i { display: block; height: 100%; background: var(--dim); border-radius: 999px; }
.stmf.stmf .hqroom.good .rmrk { color: var(--pos); }
.stmf.stmf .hqroom.good .rmbar > i { background: var(--pos); }
.stmf.stmf .hqroom.good { border-color: rgba(111,191,149,.5); }
.stmf.stmf .hqroom.bad .rmrk { color: var(--neg); }
.stmf.stmf .hqroom.bad .rmbar > i { background: var(--neg); }
.stmf.stmf .hqroom.bad { border-color: rgba(224,115,107,.5); }
.stmf.stmf .field {
  flex: 1; min-height: 0; position: relative; border-radius: .8cqw; overflow: hidden;
  display: grid; grid-template-columns: repeat(10, 1fr); grid-template-rows: repeat(3, 1fr);
  gap: .2cqw; padding: .9cqw .8cqw;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 9.5%),
    linear-gradient(180deg, #17402A, #102E1E);
  border: 1px solid rgba(255,255,255,.09);
}
.stmf.stmf .dcp {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; animation: stmfIn .45s cubic-bezier(.2,.7,.2,1) forwards; animation-play-state: paused;
}
.stmf.stmf.play .dcp { animation-play-state: running; }
.stmf.stmf .dcp img {
  width: 3.5cqw; height: 3.5cqw; border-radius: 50%; object-fit: cover; object-position: top center;
  background: #23253C; border: .16cqw solid rgba(255,255,255,.85);
}
.stmf.stmf .dcslot {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.05cqw; letter-spacing: .1em;
  color: #CFE6D8; background: rgba(0,0,0,.5); border-radius: .3cqw;
  padding: .1cqw .5cqw; margin-bottom: .3cqw;
}
.stmf.stmf .dcnm {
  font-size: 1.2cqw; font-weight: 800; letter-spacing: .02em; margin-top: .35cqw;
  background: rgba(0,0,0,.62); border-radius: .3cqw; padding: .12cqw .5cqw; white-space: nowrap;
}

/* ============================================================================
   Page-level: how a live frame, the hero film and the upsell band sit inside a
   hub page (.bw). The rules above style the frames themselves; these place them.
   ========================================================================= */
.bw .liveframe { width: 100%; display: block; }

/* hero film: occupies exactly the slot the static capture used */
.bw .herofilm .hf-link { display: block; }
.bw .herofilm .hf-still { width: 100%; height: auto; display: block; border-radius: 12px; }

/* the close: in the page grid, matching the dark cards the frames use */
.bw .stmbanner-wrap { padding: 26px 0 64px; }
.bw .stmbanner {
  display: flex; align-items: center; gap: 22px;
  width: 100%; box-sizing: border-box;
  background: #0E0E1A; border: 1px solid rgba(255,255,255,.10); border-radius: 14px;
  padding: 20px 26px; text-decoration: none; color: #fff;
  transition: border-color .18s, transform .18s;
}
.bw .stmbanner:hover { border-color: rgba(255,215,0,.65); transform: translateY(-2px); }
.bw .stmb-mark { width: 38px; height: 38px; border-radius: 9px; flex: none; }
.bw .stmb-copy { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bw .stmb-eye {
  font: 600 10px/1 ui-monospace, Menlo, monospace; letter-spacing: .17em;
  text-transform: uppercase; color: #FFD700;
}
.bw .stmb-h {
  font-family: 'Archivo', system-ui, sans-serif; font-weight: 800; font-size: 18px;
  letter-spacing: -.01em; color: #fff;
}
.bw .stmb-amt {
  margin-left: auto; font-family: 'Archivo', system-ui, sans-serif; font-weight: 900;
  font-size: 28px; color: #FFD700; letter-spacing: -.02em; white-space: nowrap;
}
.bw .stmb-amt span { font-size: 13px; color: #A8ACBE; font-weight: 700; margin-left: 3px; }
.bw .stmb-cta {
  flex: none; background: #FFD700; color: #0E0E1A; border-radius: 999px;
  padding: 11px 22px; font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 800; font-size: 15px; white-space: nowrap;
}
@media (max-width: 780px) {
  .bw .stmbanner { flex-wrap: wrap; gap: 12px; padding: 18px 20px; }
  .bw .stmb-amt { margin-left: 0; }
}

/* ==================================================================
   College frames. Doubled selectors like everything above, and every
   class is .c- prefixed: .row / .nm / .split / .stage are names the
   hub's own stylesheet already uses, and equal specificity is decided
   by source order, which we do not control (lessons.md, 2026-08-19).
   ================================================================== */
.stmf.stmf .c-board {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: .85cqw;
  flex: 1; align-content: center;
}
.stmf.stmf .c-chip {
  background: var(--panel); border: 1px solid rgba(255,255,255,.09);
  border-radius: .7cqw; padding: .8cqw .3cqw; text-align: center;
}
.stmf.stmf .c-chip.hot { border-color: var(--gold); box-shadow: 0 0 0 .22cqw rgba(255,215,0,.28); }
.stmf.stmf .c-chip img {
  width: 4.3cqw; height: 4.3cqw; object-fit: contain; display: block;
  margin: 0 auto .4cqw; padding: .45cqw; border-radius: .5cqw;
  background: rgba(255,255,255,.93);
}
.stmf.stmf .c-cap {
  display: block; font-family: ui-monospace, Menlo, monospace;
  font-size: 1.7cqw; color: var(--pos); text-align: center;
}

.stmf.stmf .c-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6cqw; margin-bottom: 1.5cqw; }
.stmf.stmf .c-half {
  background: var(--panel); border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.1cqw; padding: 1.5cqw 1.9cqw;
}
.stmf.stmf .c-half.hot { background: rgba(255,215,0,.10); border-color: var(--gold); }
.stmf.stmf .c-half.hot .c-big { color: var(--gold); }
.stmf.stmf .c-half.out .c-big { color: var(--neg); }
.stmf.stmf .c-half.inn .c-big { color: var(--pos); }
.stmf.stmf .c-big {
  display: block; font-size: 6.2cqw; font-weight: 900; line-height: 1;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--white);
}
.stmf.stmf .c-lab {
  display: block; font-size: 1.9cqw; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dim); margin-top: .8cqw;
}

.stmf.stmf .c-row {
  display: flex; align-items: center; gap: 1.3cqw;
  padding: 1.45cqw 1.1cqw; border-bottom: 1px solid rgba(255,255,255,.07);
}
.stmf.stmf .c-hs {
  width: 4.4cqw; height: 4.4cqw; border-radius: 50%; object-fit: cover;
  object-position: 50% 12%; background: var(--panel); flex: none;
}
/* the initials fallback has to be a flex box itself or the letters sit at the
   top-left of the circle: text-align is inert on a flex item */
.stmf.stmf .c-ini {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9cqw; font-weight: 800; color: var(--dim);
  border: 1px solid rgba(255,255,255,.14);
}
.stmf.stmf .c-nm { font-size: 2.5cqw; font-weight: 700; flex: 1; min-width: 0; }
.stmf.stmf .c-pos {
  font-size: 1.8cqw; font-weight: 800; color: var(--gold);
  letter-spacing: .06em; flex: none;
}
.stmf.stmf .c-from { font-size: 1.8cqw; color: var(--dim); flex: none; }
.stmf.stmf .c-amt {
  font-family: ui-monospace, Menlo, monospace; font-size: 2.2cqw;
  font-weight: 600; color: var(--white); flex: none; min-width: 7cqw; text-align: right;
}

.stmf.stmf .c-stars { flex: none; display: flex; gap: .2cqw; }
.stmf.stmf .c-st { font-style: normal; font-size: 2cqw; color: rgba(255,255,255,.18); }
.stmf.stmf .c-st.on { color: var(--gold); }

.stmf.stmf .c-bracket {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1cqw;
  flex: 1; align-content: center;
}
.stmf.stmf .c-seed {
  display: flex; align-items: center; gap: .7cqw;
  background: var(--panel); border: 1px solid rgba(255,255,255,.09);
  border-radius: .7cqw; padding: 1.15cqw .9cqw; min-width: 0;
}
.stmf.stmf .c-seed.bye { border-color: rgba(255,215,0,.34); }
.stmf.stmf .c-seed.hot { background: rgba(255,215,0,.12); border-color: var(--gold); }
.stmf.stmf .c-seed img { width: 2.6cqw; height: 2.6cqw; object-fit: contain; flex: none; }
.stmf.stmf .c-sn {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.8cqw;
  font-weight: 700; color: var(--dim); flex: none; min-width: 1.8cqw;
}
.stmf.stmf .c-sch {
  font-size: 1.9cqw; font-weight: 700; flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.stmf.stmf .c-bye {
  font-size: 1.4cqw; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); flex: none;
}

/* ==================================================================
   Fantasy frames. Doubled selectors, .y- prefixed, same reasons as
   the college block above.
   ================================================================== */
.stmf.stmf .y-list { display: flex; flex-direction: column; }
.stmf.stmf .y-row {
  display: flex; align-items: center; gap: 1.2cqw;
  padding: 1.15cqw 1.1cqw; border-bottom: 1px solid rgba(255,255,255,.07);
}
/* the value frame carries five rows AND two section labels, so it runs tighter
   than the others or it collides with the foot */
.stmf.stmf[data-frame="fanvalue"] .y-row { padding: .78cqw 1.1cqw; }
.stmf.stmf[data-frame="fanvalue"] .y-lab { margin: .7cqw 0 .2cqw; }
.stmf.stmf .y-rk {
  font-family: ui-monospace, Menlo, monospace; font-size: 2cqw;
  font-weight: 700; color: var(--dim); flex: none; min-width: 2.6cqw;
}
.stmf.stmf .y-hs {
  width: 4.2cqw; height: 4.2cqw; border-radius: 50%; object-fit: cover;
  object-position: 50% 12%; background: var(--panel); flex: none;
}
.stmf.stmf .y-ini {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8cqw; font-weight: 800; color: var(--dim);
  border: 1px solid rgba(255,255,255,.14);
}
.stmf.stmf .y-nm { font-size: 2.4cqw; font-weight: 700; flex: 1; min-width: 0; }
.stmf.stmf .y-pos {
  font-size: 1.8cqw; font-weight: 800; color: var(--gold);
  letter-spacing: .05em; flex: none;
}
.stmf.stmf .y-adp {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.7cqw;
  color: var(--dim); flex: none;
}
.stmf.stmf .y-pts {
  font-family: ui-monospace, Menlo, monospace; font-size: 2.2cqw;
  font-weight: 600; flex: none; min-width: 5cqw; text-align: right;
}
.stmf.stmf .y-lab {
  font-size: 1.7cqw; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dim); margin: 1.1cqw 0 .3cqw;
}
.stmf.stmf .y-gap {
  font-family: ui-monospace, Menlo, monospace; font-size: 2.3cqw;
  font-weight: 700; flex: none; min-width: 5cqw; text-align: right;
}
.stmf.stmf .y-row.steal .y-gap { color: var(--pos); }
.stmf.stmf .y-row.reach .y-gap { color: var(--neg); }

.stmf.stmf .y-swap {
  display: grid; grid-template-columns: 1fr 6cqw 1fr; align-items: center;
  gap: 1.4cqw; margin-top: auto;
}
.stmf.stmf .y-side {
  display: flex; align-items: center; gap: 1.4cqw;
  background: var(--panel); border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.1cqw; padding: 1.5cqw 1.7cqw; min-width: 0;
}
.stmf.stmf .y-big {
  width: 6cqw; height: 6cqw; border-radius: 50%; object-fit: cover;
  object-position: 50% 12%; background: #23233c; flex: none;
}
.stmf.stmf .y-meta { font-size: 1.8cqw; color: var(--dim); margin-top: .5cqw; }
.stmf.stmf .y-val {
  font-family: ui-monospace, Menlo, monospace; font-size: 2.6cqw;
  font-weight: 700; color: var(--gold); margin-top: .6cqw;
}
.stmf.stmf .y-arrow { font-size: 3.4cqw; color: var(--gold); text-align: center; }
.stmf.stmf .y-track {
  height: 1.4cqw; border-radius: 999px; background: rgba(255,255,255,.10);
  overflow: hidden; margin: 1.6cqw 0 auto;
}
.stmf.stmf .y-track i {
  display: block; height: 100%;
  background: linear-gradient(90deg, #4D8EFF, var(--pos));
}

.stmf.stmf .y-hero { display: flex; flex-direction: column; margin-top: 1cqw; }
.stmf.stmf .y-big2 {
  font-size: 9cqw; font-weight: 900; line-height: 1; letter-spacing: -.03em;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.stmf.stmf .y-sub {
  font-size: 1.9cqw; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--dim); margin-top: .9cqw;
}
.stmf.stmf .y-bars {
  display: flex; align-items: flex-end; gap: .9cqw;
  flex: 1; margin-top: 1.6cqw; min-height: 0;
}
.stmf.stmf .y-bar {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; height: 100%;
}
.stmf.stmf .y-bar i {
  display: block; width: 100%; border-radius: .35cqw .35cqw 0 0;
  background: var(--pos);
}
.stmf.stmf .y-bar i.dn { background: rgba(255,107,107,.45); }
.stmf.stmf .y-bar span {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.4cqw;
  color: var(--dim); margin-top: .5cqw;
}

/* seasons graded on a board built a different way are shown, but greyed */
.stmf.stmf .y-bar i.old { background: rgba(255,255,255,.13); }
/* the usage bar inside a row */
.stmf.stmf .y-track2 {
  flex: 0 0 26%; height: 1.1cqw; border-radius: 999px;
  background: rgba(255,255,255,.10); overflow: hidden; display: block;
}
.stmf.stmf .y-track2 i { display: block; height: 100%; background: var(--gold); }

/* --- your-league frame --- */
/* --- fanbuysell + fanclock (fantasy-pass, 2026-08-27) --- */
.stmf.stmf .y-fadek { color: var(--neg); margin-top: 1.6cqw; }
.stmf.stmf[data-frame="fanbuysell"] .y-row { padding: .55cqw 1.1cqw; }
.stmf.stmf .y-clockbar {
  display: flex; align-items: center; gap: 1.2cqw;
  border: 1px solid rgba(255,215,0,.45); border-radius: 1cqw;
  background: #1A1B30; padding: 1.1cqw 1.5cqw; margin-bottom: 1.2cqw;
  font-size: 2.6cqw; font-weight: 800;
}
.stmf.stmf .y-clockbar i {
  width: 1.2cqw; height: 1.2cqw; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 1.4cqw rgba(255,215,0,.6); flex: none;
}
.stmf.stmf .y-clockbar b {
  margin-left: auto; font-family: ui-monospace, Menlo, monospace;
  font-size: 2.4cqw; color: var(--gold); font-weight: 700;
}
.stmf.stmf .y-last {
  border-top: 1px solid rgba(255,255,255,.10); margin-top: 1cqw;
  padding: 1.1cqw 1.1cqw 0; font-size: 1.95cqw; color: var(--dim);
}
.stmf.stmf .y-last b { color: var(--white); font-size: 1.95cqw; font-weight: 700; }

.stmf.stmf[data-frame="fanleague"] .y-row { padding: .42cqw 1.1cqw; }
.stmf.stmf[data-frame="fanleague"] .y-hs { width: 3.4cqw; height: 3.4cqw; }
.stmf.stmf[data-frame="fanleague"] .y-nm { font-size: 2.1cqw; }
.stmf.stmf .y-import {
  display: flex; align-items: center; gap: 1cqw; margin-bottom: .8cqw;
  background: var(--panel); border: 1px solid rgba(255,255,255,.10);
  border-radius: .9cqw; padding: 1.1cqw 1.4cqw;
}
.stmf.stmf .y-at { font-size: 2.4cqw; font-weight: 800; color: var(--gold); }
.stmf.stmf .y-hand { font-size: 2.1cqw; color: var(--dim); flex: 1; }
.stmf.stmf .y-go {
  font-size: 1.9cqw; font-weight: 700; color: var(--navy);
  background: var(--gold); border-radius: 999px; padding: .55cqw 1.5cqw;
}
.stmf.stmf .y-slot {
  font-size: 1.6cqw; font-weight: 800; letter-spacing: .08em;
  color: var(--dim); flex: none; min-width: 4.6cqw;
}
.stmf.stmf .y-us {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.8cqw;
  font-weight: 600; color: var(--gold); flex: none;
}
.stmf.stmf .y-gap.up { color: var(--pos); }
.stmf.stmf .y-gap.dn { color: var(--neg); }

/* --- in-season frame --- */
.stmf.stmf .y-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4cqw;
  flex: 1; align-content: center;
}
.stmf.stmf .y-card {
  background: var(--panel); border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.1cqw; padding: 2cqw 1.8cqw;
}
.stmf.stmf .y-ct {
  font-size: 1.7cqw; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dim);
}
.stmf.stmf .y-cn {
  font-size: 3.4cqw; font-weight: 900; color: var(--gold);
  margin-top: 1cqw; letter-spacing: -.02em;
}
.stmf.stmf .y-cs { font-size: 1.8cqw; color: var(--dim); margin-top: .8cqw; }

/* ==================================================================
   Betting frames. Doubled selectors, .b- prefixed, same reasons as the
   college and fantasy blocks. Five frames, all JS-driven: the runners live
   in frames.js next to their builders.
   ================================================================== */
.stmf.stmf .b-list { display: flex; flex-direction: column; flex: 1; justify-content: center; gap: .8cqw; }
.stmf.stmf .b-alab { font-size: 1.9cqw; line-height: 1.45; color: var(--dim); }
.stmf.stmf .b-chips { display: flex; flex-wrap: wrap; gap: .9cqw; margin-top: 1cqw; }
.stmf.stmf .b-chip {
  font-size: 1.9cqw; font-weight: 600; padding: .8cqw 1.5cqw; border-radius: 999px;
  background: var(--panel); border: 1px solid rgba(255,255,255,.10); color: var(--dim);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.stmf.stmf .b-chip.on {
  background: rgba(255,215,0,.13); border-color: var(--gold); color: var(--white);
}

/* --- betbest: the price race --- */
.stmf.stmf .b-row {
  display: flex; align-items: center; gap: 1.4cqw;
  padding: 1.15cqw 1.4cqw; border-radius: .8cqw;
  background: rgba(255,255,255,.03); border: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
/* Entrance is a transition, not an animation: the runner re-sorts these rows
   and moving a node restarts a CSS animation from its delay, which left
   three of four rows sitting at opacity 0. */
.stmf.stmf .b-row.in { opacity: 0; transform: translateY(2cqw); transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1); }
.stmf.stmf .b-row.in.on { opacity: 1; transform: none; }
.stmf.stmf .b-gm { font-size: 2.5cqw; font-weight: 800; flex: 1; letter-spacing: -.01em; }
.stmf.stmf .b-px {
  font-family: ui-monospace, Menlo, monospace; font-size: 2.6cqw; font-weight: 600;
  flex: none; min-width: 7cqw; text-align: right; font-variant-numeric: tabular-nums;
}
.stmf.stmf .b-flag {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.6cqw;
  letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
  flex: none; min-width: 13cqw; text-align: right; display: block;
}
.stmf.stmf .b-row.best { background: rgba(255,215,0,.08); border-color: var(--gold); }
.stmf.stmf .b-row.best .b-px, .stmf.stmf .b-row.best .b-flag { color: var(--gold); }
.stmf.stmf .b-row.worst .b-px { color: var(--neg); }
.stmf.stmf .b-row.pop { animation: bPop .55s ease; }
@keyframes bPop { 0% { transform: scale(1); } 35% { transform: scale(1.03); } 100% { transform: scale(1); } }

/* --- betgap: one game, two numbers, the distance between them --- */
.stmf.stmf .b-match { display: flex; align-items: center; gap: 1.4cqw; margin-bottom: 2.2cqw; }
.stmf.stmf .b-lg { width: 6cqw; height: 6cqw; object-fit: contain; display: block; }
.stmf.stmf .b-at { font-size: 2cqw; color: var(--dim); font-weight: 600; }
.stmf.stmf .b-wk {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.7cqw;
  letter-spacing: .14em; color: var(--dim); margin-left: auto;
}
.stmf.stmf .b-scale { position: relative; height: 17cqw; margin: 0 1cqw; }
.stmf.stmf .b-axis { position: absolute; top: 8.6cqw; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.14); }
.stmf.stmf .b-zero { position: absolute; top: 6.8cqw; left: 50%; width: 1px; height: 3.6cqw; background: rgba(255,255,255,.22); }
.stmf.stmf .b-tick { position: absolute; width: .4cqw; transition: left .8s cubic-bezier(.3,.9,.25,1); }
.stmf.stmf .b-tick.mkt { top: 5.6cqw; height: 3cqw; background: var(--dim); }
.stmf.stmf .b-tick.ours { top: 8.6cqw; height: 3cqw; background: var(--gold); }
.stmf.stmf .b-tlab {
  position: absolute; transform: translateX(-50%); white-space: nowrap;
  font-family: ui-monospace, Menlo, monospace; font-size: 2cqw; font-weight: 600;
  transition: left .8s cubic-bezier(.3,.9,.25,1);
}
.stmf.stmf .b-tlab.mkt { top: 2cqw; color: var(--dim); }
.stmf.stmf .b-tlab.ours { top: 12.2cqw; color: var(--gold); }
.stmf.stmf .b-fill {
  position: absolute; top: 8.1cqw; height: 1.1cqw; border-radius: .5cqw;
  background: rgba(255,215,0,.3); transition: all .8s cubic-bezier(.3,.9,.25,1);
}
.stmf.stmf .b-end {
  position: absolute; top: 15.6cqw; font-family: ui-monospace, Menlo, monospace;
  font-size: 1.5cqw; letter-spacing: .13em; color: rgba(255,255,255,.35);
}
.stmf.stmf .b-end.l { left: 0; }
.stmf.stmf .b-end.r { right: 0; }
.stmf.stmf .b-read { font-size: 2.4cqw; color: var(--dim); font-weight: 600; margin-top: 2.4cqw; }
.stmf.stmf .b-read b {
  font-family: ui-monospace, Menlo, monospace; font-size: 4.4cqw;
  color: var(--gold); font-weight: 700; margin-right: .8cqw;
}
.stmf.stmf .b-glitch { animation: bGlitch .3s steps(2) 2; }
@keyframes bGlitch { 0% { opacity: 1; } 50% { opacity: .5; transform: translateX(-.3cqw); } 100% { opacity: 1; } }

/* --- betangle: one marker per occurrence, oldest first --- */
.stmf.stmf .b-strip { display: flex; flex-wrap: wrap; gap: .55cqw; margin: .8cqw 0 2.6cqw; }
.stmf.stmf .b-tick2 {
  width: 1.25cqw; height: 4.4cqw; border-radius: .2cqw;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  transition: background .2s ease, border-color .2s ease;
}
.stmf.stmf .b-tick2.hit { background: var(--pos); border-color: var(--pos); }
.stmf.stmf .b-tick2.miss { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.10); }
.stmf.stmf .b-run { display: flex; align-items: baseline; gap: 1.6cqw; }
.stmf.stmf .b-rate {
  font-family: ui-monospace, Menlo, monospace; font-size: 7.4cqw; font-weight: 700;
  line-height: 1; color: var(--pos); font-variant-numeric: tabular-nums;
}

/* --- betangles: the funnel. The field is 120 cells standing in for the
   sample; they go dark as each condition lands. --- */
.stmf.stmf .b-field {
  display: grid; grid-template-columns: repeat(24, 1fr); gap: .5cqw;
  margin: 1.8cqw 0 1.8cqw;
}
.stmf.stmf .b-cell {
  height: 1.9cqw; border-radius: .2cqw; background: rgba(255,255,255,.05);
  transition: background .45s ease, opacity .45s ease; opacity: .5;
}
.stmf.stmf .b-cell.on { background: var(--gold); opacity: 1; }
.stmf.stmf .b-funnel { display: flex; align-items: baseline; gap: 1.4cqw; margin-top: 0; }
.stmf.stmf .b-fnum {
  font-family: ui-monospace, Menlo, monospace; font-size: 8cqw; font-weight: 700;
  line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.stmf.stmf .b-verdict2 {
  display: flex; align-items: baseline; gap: 1cqw; margin-left: auto;
  opacity: 0; transform: translateY(1cqw); transition: all .5s ease;
}
.stmf.stmf .b-verdict2.on { opacity: 1; transform: none; }
.stmf.stmf .b-fits {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.2cqw;
  margin-top: 1.8cqw; opacity: 0; transform: translateY(1cqw);
  transition: all .5s ease;
}
.stmf.stmf .b-fits.on { opacity: 1; transform: none; }
.stmf.stmf .b-fitlab {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.6cqw;
  letter-spacing: .13em; text-transform: uppercase; color: var(--dim);
}
.stmf.stmf .b-fit {
  display: flex; align-items: center; gap: .7cqw;
  background: rgba(255,215,0,.10); border: 1px solid rgba(255,215,0,.30);
  border-radius: .6cqw; padding: .6cqw 1.1cqw;
}
.stmf.stmf .b-fit img { width: 3cqw; height: 3cqw; object-fit: contain; display: block; }
.stmf.stmf .b-fit i { font-style: normal; font-size: 1.6cqw; color: var(--dim); }
.stmf.stmf .b-fit b {
  font-family: ui-monospace, Menlo, monospace; font-size: 2cqw;
  color: var(--gold); font-weight: 600; margin-left: .4cqw;
}
.stmf.stmf .b-none { font-size: 1.9cqw; color: rgba(255,255,255,.4); }
.stmf.stmf .b-hit2 {
  font-family: ui-monospace, Menlo, monospace; font-size: 5cqw; font-weight: 700;
  color: var(--pos); line-height: 1;
}

/* --- bettrack: saved angles against the next slate --- */
.stmf.stmf .b-saved { display: flex; flex-direction: column; gap: 1.1cqw; flex: 1; justify-content: center; }
.stmf.stmf .b-srow {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: .9cqw; padding: 1.2cqw 1.5cqw; transition: border-color .3s ease;
}
.stmf.stmf .b-srow.live { border-color: rgba(255,215,0,.55); }
.stmf.stmf .b-stop { display: flex; align-items: center; gap: 1.1cqw; }
.stmf.stmf .b-star { font-size: 2.2cqw; color: var(--gold); flex: none; }
.stmf.stmf .b-nm { font-size: 2.3cqw; font-weight: 700; flex: 1; min-width: 0; }
.stmf.stmf .b-scount {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.8cqw;
  color: var(--dim); flex: none;
}
.stmf.stmf .b-srow.live .b-scount { color: var(--gold); }
.stmf.stmf .b-hits2 { display: flex; flex-wrap: wrap; gap: .8cqw; margin: .9cqw 0 0 3.3cqw; min-height: 3cqw; }
.stmf.stmf .b-gm2 {
  font-family: ui-monospace, Menlo, monospace; font-size: 1.7cqw;
  padding: .5cqw 1cqw; border-radius: .4cqw; color: var(--gold);
  background: rgba(255,215,0,.12); border: 1px solid rgba(255,215,0,.28);
  opacity: 0; transform: translateY(.5cqw); transition: all .35s ease;
}
.stmf.stmf .b-gm2.on { opacity: 1; transform: none; }
.stmf.stmf .b-quiet { font-size: 1.7cqw; color: rgba(255,255,255,.35); }
