/* ============================================================
   OTIS PRODUCT PAGE
   Reuses .otis / .cf-* components from product.css.
   ============================================================ */

/* ---------- stat band under the hero ---------- */
.kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center}
.kpi b{display:block;font-family:var(--ff-display);font-size:clamp(30px,3.4vw,42px);font-weight:500;line-height:1;color:var(--blue)}
.kpi span{display:block;font-size:13px;color:var(--grey);margin-top:10px;line-height:1.45}

/* ---------- the twelve axes ---------- */
.axcols{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.axcard{border-radius:var(--r-lg);padding:30px;color:#fff}
.axcard.edge{background:linear-gradient(360deg,var(--blue-ink),var(--blue))}
.axcard.disc{background:linear-gradient(346deg,var(--navy) 40%,#000111 102%)}
.axcard .lbl{font-size:11px;font-weight:700;letter-spacing:.11em;opacity:.75;margin-bottom:10px}
.axcard h3{font-size:24px;margin-bottom:8px}
.axcard .q{font-size:14px;color:rgba(255,255,255,.75);margin-bottom:22px}
.axlist{list-style:none;margin:0;padding:0;display:grid;gap:0}
.axlist li{
  display:flex;justify-content:space-between;gap:16px;align-items:flex-start;
  padding:13px 0;border-top:1px solid rgba(255,255,255,.14);
}
.axlist li:first-child{border-top:0}
.axlist b{font-weight:600;font-size:15px;display:block;margin-bottom:3px}
.axlist span{font-size:12.5px;color:rgba(255,255,255,.66);line-height:1.45;display:block}

/* ---------- what it reads per trade ---------- */
.reads{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.read{border:1px solid var(--steel);border-radius:var(--r-lg);padding:26px;background:#fff}
.read .n{
  font-size:11px;font-weight:700;letter-spacing:.09em;color:var(--blue);
  margin-bottom:12px;display:block;
}
.read h3{font-size:19px;margin-bottom:8px}
.read p{font-size:14px;color:var(--grey);line-height:1.55}

/* ---------- context flow strip ---------- */
.flows{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}
.flow{
  font-family:"Montserrat",system-ui,sans-serif;font-size:12px;font-weight:600;
  padding:9px 14px;border-radius:999px;border:1px solid;
}
.flow.ok{background:rgba(0,196,120,.12);border-color:rgba(0,196,120,.45);color:#0B6B44}
.flow.bad{background:rgba(244,82,82,.10);border-color:rgba(244,82,82,.45);color:#9A2020}
.flow.neu{background:#EDEFF3;border-color:#DCE0E8;color:#5B6270}

/* ---------- trust list ---------- */
.trust{display:grid;grid-template-columns:repeat(2,1fr);gap:14px 34px;margin-top:8px}
.trust li{display:flex;gap:12px;font-size:15px;line-height:1.5;list-style:none}
.trust li i{
  font-style:normal;flex-shrink:0;width:20px;height:20px;border-radius:999px;
  background:var(--tint);color:var(--blue);display:grid;place-items:center;
  font-size:11px;font-weight:700;margin-top:2px;
}

@media (max-width:900px){
  .kpis{grid-template-columns:repeat(2,1fr);gap:26px}
  .axcols,.reads,.trust{grid-template-columns:1fr}
}

/* ============================================================
   EXPANDING ACCORDION
   Modelled on zoom.com's customer-stories row: one panel open,
   the rest collapsed to vertical spines. Click or keyboard to swap.
   ============================================================ */
.acc{display:flex;gap:12px;height:430px}
.acc-panel{
  position:relative;border:0;padding:0;margin:0;cursor:pointer;text-align:left;
  border-radius:var(--r-lg);overflow:hidden;color:#fff;font-family:var(--ff-body);
  flex:0 0 78px;transition:flex-basis .42s cubic-bezier(.4,0,.2,1);
  background:linear-gradient(346deg,var(--navy) 40%,#000111 102%);
}
.acc-panel.is-open{flex:1 1 auto}
.acc-spine:focus-visible{outline:3px solid var(--blue);outline-offset:-3px;border-radius:var(--r-lg)}
.acc-panel.p2{background:linear-gradient(360deg,var(--blue-ink),var(--blue))}
.acc-panel.p3{background:linear-gradient(200deg,#1E3C78,#00031D)}
.acc-panel.p4{background:linear-gradient(200deg,#0E4A3C,#04231D)}
.acc-panel.p5{background:linear-gradient(200deg,#4A2D7A,#150A2B)}

/* collapsed spine */
.acc-spine{
  border:0;background:transparent;color:inherit;font:inherit;cursor:pointer;width:100%;
  position:absolute;inset:0;display:flex;flex-direction:column;
  align-items:center;justify-content:space-between;padding:22px 0;
  opacity:1;transition:opacity .22s ease;
}
.acc-panel.is-open .acc-spine{opacity:0;pointer-events:none}
.acc-spine .v{
  writing-mode:vertical-rl;transform:rotate(180deg);
  font-family:var(--ff-display);font-size:19px;font-weight:500;letter-spacing:.01em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-height:300px;
}
.acc-spine .plus{
  width:30px;height:30px;border-radius:999px;background:rgba(255,255,255,.16);
  display:grid;place-items:center;font-size:17px;line-height:1;flex-shrink:0;
}

/* expanded body */
.acc-body{
  position:absolute;inset:0;padding:30px 32px;display:grid;
  grid-template-columns:1fr 300px;gap:30px;align-items:center;
  opacity:0;transition:opacity .3s ease .12s;pointer-events:none;
}
.acc-panel.is-open .acc-body{opacity:1;pointer-events:auto}
/* These three are <span>s, so without display:block they ran inline and the
   eyebrow sat on the same line as the heading; their margin-bottom was dead
   too. Founder call 2026-09-22: the mini title belongs on its own line. */
.acc-q{display:block;font-family:var(--ff-display);font-size:clamp(22px,2.5vw,31px);font-weight:500;line-height:1.2;margin-bottom:16px}
.acc-a{display:block;font-size:15px;line-height:1.65;color:rgba(255,255,255,.8);margin-bottom:14px;max-width:52ch}
.acc-tag{display:block;font-size:11px;font-weight:700;letter-spacing:.11em;color:rgba(255,255,255,.6);margin-bottom:14px}
.acc-link{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:#fff}
.acc-link .arw{width:30px;height:30px;border-radius:999px;background:#fff;color:var(--navy);display:grid;place-items:center}

/* the little product proof inside each panel */
.acc-art{
  background:#08101C;border:1px solid #00c5bb33;border-radius:var(--r-md);
  padding:16px;font-family:"Montserrat",system-ui,sans-serif;
}
.acc-art .k{font-size:8.5px;font-weight:700;letter-spacing:.12em;color:#00c5bb;margin-bottom:12px}
.acc-art .row{display:flex;justify-content:space-between;align-items:center;font-size:11px;color:#a3a3a3;padding:5px 0}
.acc-art .row b{font-weight:700;font-size:12.5px}
.acc-art .big{font-size:30px;font-weight:700;line-height:1}
.acc-art .lbl{font-size:8px;letter-spacing:.14em;color:#8B949E;margin-top:4px}
.acc-art .bar{height:5px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden;margin:6px 0 10px}
.acc-art .bar i{display:block;height:100%;border-radius:999px}

@media (max-width:1000px){
  .acc-body{grid-template-columns:1fr;gap:18px;align-content:center;padding:24px}
  .acc-art{display:none}
}
@media (max-width:760px){
  /* becomes an ordinary vertical accordion */
  .acc{flex-direction:column;height:auto;gap:10px}
  .acc-panel{flex:0 0 auto;min-height:68px;transition:min-height .3s ease}
  .acc-panel.is-open{min-height:300px}
  .acc-spine{flex-direction:row;align-items:center;justify-content:space-between;padding:0 20px}
  .acc-spine .v{writing-mode:horizontal-tb;transform:none;font-size:17px;max-height:none;white-space:normal}
  .acc-body{position:relative;inset:auto;padding:22px 20px}
}
@media (prefers-reduced-motion:reduce){
  .acc-panel,.acc-spine,.acc-body{transition:none}
}

/* ============================================================
   CONTEXT FLOW AT ENTRY  +  TRADE GRADES
   Faithful rebuild of the real components in
   OTIS/cloud/trader_dashboard.html (renderContextFlow, TRADE GRADES grid).
   ============================================================ */
.autopsy{
  background:#08101C;border:1px solid #00c5bb33;border-radius:var(--r-lg);
  padding:22px;font-family:"Montserrat",system-ui,sans-serif;color:#fff;
}
.autopsy + .autopsy{margin-top:16px}

/* --- header row --- */
.ctx-head{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-size:11px;color:#a3a3a3;margin-bottom:10px;
}
.ctx-head strong{color:#fff;font-weight:700}
.ctx-head .legend{margin-left:auto;font-size:10px;display:flex;gap:10px}
.ctx-head .legend i{font-style:normal;margin-right:4px}

/* --- the strip --- */
.ctxflow{display:flex;align-items:stretch;gap:0}
.ctxflow-node{
  flex:1;min-width:0;display:flex;flex-direction:column;align-items:center;
  padding:10px 6px;border-radius:6px;text-align:center;border:1px solid;
}
.ctxflow-node .lab{
  font-size:9px;color:#a3a3a3;text-transform:uppercase;letter-spacing:.6px;
  font-weight:700;margin-bottom:3px;
}
.ctxflow-node .val{
  font-size:13px;font-weight:700;line-height:1.1;width:100%;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.ctxflow-node .sub{font-size:9px;color:#8B949E;margin-top:2px}
.ctxflow-arrow{
  display:flex;align-items:center;font-size:18px;font-weight:700;
  padding:0 4px;flex:0 0 auto;line-height:1;
}
/* alignment states, straight from _ALIGN_COLORS */
.al-aligned{background:rgba(0,196,120,.18);border-color:#00c478}
.al-aligned .val,.arw-aligned{color:#00c478}
.al-opposed{background:rgba(244,82,82,.18);border-color:#f45252}
.al-opposed .val,.arw-opposed{color:#f45252}
.al-neutral{background:rgba(245,158,11,.15);border-color:#f59e0b}
.al-neutral .val,.arw-neutral{color:#f59e0b}

.ctx-verdict{margin-top:10px;font-size:12px;font-weight:600;line-height:1.45;color:#f59e0b}
.ctx-legend{margin-top:8px;font-size:10.5px;color:#8B949E;line-height:1.6}
.ctx-legend b{color:#a3a3a3;font-weight:600}
.ctx-legend .prem{color:#f45252}
.ctx-legend .equi{color:#f59e0b}
.ctx-legend .disc{color:#00c478}

/* --- trade grades --- */
.tg-title{font-size:10px;font-weight:700;letter-spacing:.12em;color:#00c5bb;margin-bottom:14px}
.tg-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.tg{
  background:rgba(255,255,255,.07);border-radius:12px;
  padding:14px 16px 14px 18px;border-left:4px solid #008fc4;
}
.tg .lab{font-size:11px;color:#a3a3a3;text-transform:uppercase;letter-spacing:.5px;line-height:1.4}
.tg .badge{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:26px;height:26px;padding:0 8px;border-radius:4px;
  font-size:14px;font-weight:700;margin-top:8px;
}
.tg .q{font-size:11px;color:#a3a3a3;margin-top:8px;line-height:1.45}
.tg .why{font-size:11.5px;color:#cfd3da;margin-top:10px;line-height:1.55}
.g-apl,.g-a{background:#00c478;color:#04140c}
.g-b{background:#008fc4;color:#fff}
.g-c{background:#f59e0b;color:#1a1f28}
.g-d{background:#f59e0b;color:#1a1f28}
.g-f{background:#f45252;color:#fff}

@media (max-width:1100px){
  .tg-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  /* the engine wraps the strip rather than scrolling it */
  .ctxflow{flex-wrap:wrap;gap:6px}
  .ctxflow-node{flex:1 1 40%;min-width:112px}
  .ctxflow-arrow{display:none}
  .tg-grid{grid-template-columns:1fr}
  .ctx-head .legend{margin-left:0;width:100%}
}

/* the link inside an open panel */
.acc-link{text-decoration:none}
.acc-link:hover .arw{background:var(--tint)}
.acc-panel .acc-body a.acc-link:focus-visible{outline:3px solid #fff;outline-offset:3px;border-radius:6px}

/* ---------- trade explorer table ---------- */
.tx{width:100%;border-collapse:collapse;font-family:"Montserrat",system-ui,sans-serif;font-size:12px}
.tx th{
  text-align:left;font-size:8.5px;font-weight:700;letter-spacing:.11em;color:#8B949E;
  padding:0 10px 10px 0;border-bottom:1px solid #00c5bb33;white-space:nowrap;
}
.tx td{padding:10px 10px 10px 0;border-bottom:1px solid rgba(255,255,255,.06);color:#cfd3da;white-space:nowrap}
.tx tr.bad td{color:#a3a3a3}
.tx td.up{color:#00c478;font-weight:700;text-align:right}
.tx td.dn{color:#f45252;font-weight:700;text-align:right}
.tx .g{
  display:inline-grid;place-items:center;min-width:22px;height:20px;padding:0 5px;
  border-radius:4px;font-size:11px;font-weight:700;
}
/* light-surface caption: #8B949E is 3.08 on white, below AA. The dark
   product surfaces keep #8B949E because there it is the safe value. */
.tx-note{font-size:11.5px;color:#6B7280;line-height:1.6;margin:14px 0 0}

/* ---------- action plan day card ----------
   Rebuilt from OTIS/cloud/trader_dashboard.html:
   _apDayHeader :14154 | _apDayChain :14108 | _apScoreChip :14140
   _apVerdictFresh :14248 | _apDayCurricRow :14302
   _apDayMorning :14346 | _apDayEvening :14380 | _apEnsureCss :13061
   Second palette (:938): gold #00c5bb, green #00c478, red #f45252,
   accent #008fc4, panel-alt rgba(255,255,255,.07), dim #a3a3a3.
   ------------------------------------------------------------ */
.apd-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;align-items:start}
.apd-head{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap}
.apd-day{font-size:10.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#00c5bb}
.apd-right{display:flex;align-items:center;gap:9px;flex-wrap:wrap}
.apd-chip{display:inline-block;font-size:11px;padding:4px 10px;border-radius:999px;background:rgba(255,255,255,.07);color:#a3a3a3}
.apd-focus{font-size:11px;color:#a3a3a3;font-family:ui-monospace,SFMono-Regular,Menlo,monospace}
.apd-chain{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:9px}
.apd-dots{display:flex;gap:4px;flex-wrap:wrap;flex:1;min-width:0}
.apd-dots i{width:9px;height:9px;border-radius:50%;box-sizing:border-box;display:block;background:transparent;border:1.5px solid rgba(255,255,255,.14)}
.apd-dots i.held{background:#00c478;border-color:#00c478}
.apd-dots i.broke{background:#f45252;border-color:#f45252}
.apd-dots i.froze{background:#00c5bb;border-color:#00c5bb}
.apd-dots i.past{background:transparent;border-color:#a3a3a3}
.apd-dots i.today{box-shadow:0 0 0 1.5px #08101C,0 0 0 3px #008fc4}
.apd-best{font-size:10.5px;color:#a3a3a3;white-space:nowrap}
.apd-panel{margin-top:12px;padding:14px 15px;border-radius:12px;background:rgba(0,196,120,.07);border:1px solid rgba(0,196,120,.3)}
.apd-ey{font-size:10px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#00c478}
.apd-hero{font-size:17px;font-weight:700;color:#00c478;line-height:1.35;margin-top:5px}
.apd-note{font-size:12px;color:#a3a3a3;margin-top:5px;line-height:1.5}
.apd-intent{font-size:14px;font-weight:700;line-height:1.5;margin-top:13px;color:#fff}
.apd-d{margin-top:8px}
.apd-d summary{font-size:11px;color:#008fc4;cursor:pointer;list-style:none}
.apd-d summary::-webkit-details-marker{display:none}
.apd-d summary::marker{content:""}
.apd-d p{font-size:12px;line-height:1.55;margin:7px 0 0;color:#cfd3da}
.apd-d p b{color:#fff;font-weight:600}
.apd-row{display:flex;align-items:center;gap:11px;margin-top:12px;padding-top:11px;border-top:1px solid #00c5bb33}
.apd-ic{flex:none;width:27px;height:27px;border-radius:50%;border:1.5px solid #008fc4;display:grid;place-items:center;color:#008fc4;font-size:12px;line-height:1}
.apd-ic.gold{border-color:#00c5bb;color:#00c5bb}
.apd-rl{flex:1;min-width:0;font-size:13px;font-weight:600;color:#fff;line-height:1.4}
.apd-rl i{font-style:normal;font-size:11px;font-weight:400;color:#a3a3a3}
.apd-rl .k{display:block;font-size:10px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:#00c5bb;margin-bottom:3px}
.apd-foot{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap;margin-top:13px;padding-top:11px;border-top:1px solid #00c5bb33;font-size:11.5px;color:#a3a3a3}
.apd-btn2{display:inline-block;background:rgba(255,255,255,.07);color:#fff;font-weight:600;font-size:11px;padding:6px 12px;border-radius:999px;border:1px solid #00c5bb33;white-space:nowrap}
.apd-q{font-size:18px;font-weight:700;line-height:1.4;margin-top:12px;color:#fff}
.apd-count{font-size:11px;color:#a3a3a3;margin-top:7px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace}
.apd-count b{color:#00c5bb;font-weight:700}
.apd-mark{display:flex;align-items:center;gap:12px;padding:12px 14px;margin-top:8px;border-radius:11px;background:rgba(255,255,255,.07);border:1px solid #00c5bb33}
.apd-mark.primary{border-color:#00c478}
.apd-mark span{flex:none;width:22px;text-align:center;font-size:15px;color:#a3a3a3}
.apd-mark b{font-size:13px;font-weight:600;color:#fff}

/* ---------- money left on table ----------
   Rebuilt from the Performance-tab MLT card :15797 (tiles, sweet-spot
   badge, canonical narrative) and the honesty guard inside
   _cardMoneyExitedOut :8559 (canonical 15m anchor, thin-sample refusal).
   ------------------------------------------------------------ */
.mlt-h{font-size:10px;font-weight:700;letter-spacing:.12em;color:#00c5bb;margin-bottom:6px;text-transform:uppercase}
.mlt-h span{display:block;font-size:10.5px;font-weight:400;letter-spacing:.02em;color:#8B949E;text-transform:none;margin-top:4px}
.mlt-exp{font-size:11.5px;color:#a3a3a3;line-height:1.65;margin:0 0 16px}
.mlt-exp .up{color:#00c478;font-weight:600}
.mlt-exp .dn{color:#f45252;font-weight:600}
.mlt-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.mlt-stat{background:rgba(255,255,255,.07);padding:14px 16px 14px 18px;border-radius:12px;border-left:4px solid #008fc4}
.mlt-l{font-size:11px;color:#a3a3a3;text-transform:uppercase;letter-spacing:.5px;line-height:1.4}
.mlt-badge{display:inline-block;background:#00c5bb;color:#08101C;padding:1px 6px;border-radius:2px;font-size:9px;font-weight:700;margin-left:6px;letter-spacing:.04em;white-space:nowrap}
.mlt-v{font-size:20px;font-weight:600;margin-top:8px;line-height:1.2;color:#cfd3da;font-family:ui-monospace,SFMono-Regular,Menlo,monospace}
.mlt-s{font-size:10.5px;color:#8B949E;margin-top:5px;line-height:1.5}
.mlt-canon{font-size:13px;color:#cfd3da;padding:13px 15px;background:rgba(255,255,255,.07);border-radius:8px;line-height:1.65;margin-top:16px}
.mlt-canon b{color:#fff;font-weight:600}
.mlt-canon .g{color:#00c478;font-weight:700}
.mlt-gate{margin-top:16px;padding:13px 15px;border-radius:8px;background:rgba(0,197,187,.06);border:1px solid #00c5bb33;font-size:12.5px;color:#a3a3a3;line-height:1.65}
.mlt-gate b{color:#fff;font-weight:600}

@media (max-width:1100px){ .mlt-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:900px){ .apd-grid{grid-template-columns:1fr} }
@media (max-width:640px){ .mlt-grid{grid-template-columns:1fr} }
@media (max-width:760px){
  .tx{font-size:11px}
  .tx th:nth-child(3),.tx td:nth-child(3){display:none}
}

/* ---------- market modules, rebuilt from the product ---------- */
.market-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:start}
.mk{border:1px solid var(--steel);border-radius:var(--r-lg);padding:26px;background:#fff}
.mk .n{font-size:11px;font-weight:700;letter-spacing:.09em;color:var(--blue);margin-bottom:12px;display:block}
.mk h3{font-size:19px;margin-bottom:8px}
.mk p{font-size:14px;color:var(--grey);line-height:1.55;margin:0 0 14px}
.mk-note{font-size:12.5px !important;color:#6B7280 !important;margin:14px 0 0 !important}

/* the regime tile, per _regimeTile() */
.rt{
  background:#1c222a;border-radius:4px;border-left:3px solid;padding:10px;
  display:flex;flex-direction:column;gap:6px;font-family:"Montserrat",system-ui,sans-serif;
}
.rt-top{display:flex;justify-content:space-between;align-items:center;gap:6px}
.rt-top strong{font-size:14px;color:#fff}
.rt-micro{font-weight:400;color:#8b949e;font-size:12px}
.rt-conf{font-size:9px;color:#3fb950;border:1px solid #3fb950;padding:1px 4px;border-radius:2px;letter-spacing:.5px}
.rt-regime{display:flex;justify-content:space-between;align-items:baseline;font-size:15px;font-weight:600}
.rt-vol{font-size:10px;color:#8b949e;font-weight:400}
.rt-dist{display:flex;height:4px;border-radius:2px;overflow:hidden;gap:1px}
.rt-dist i{display:block}
.rt-book{display:flex;justify-content:space-between;gap:6px;padding-top:6px;border-top:1px solid #30363d;font-size:11px;font-weight:600}
.rt-book .dim{color:#8b949e;font-weight:400}
.rt-oracle{display:flex;align-items:center;justify-content:space-between;gap:6px;margin-top:2px;padding:5px 8px;border-radius:4px;border:1px solid;font-size:13px;font-weight:700}
.rt-ok{font-size:9px;letter-spacing:.7px;color:#8b949e;font-weight:700}
.rt-oracle .dim{font-size:10px;color:#8b949e;font-weight:400}

/* oracle signal quality */
.sq{background:#1c222a;border-radius:6px;padding:14px;font-family:"Montserrat",system-ui,sans-serif}
.sq-h{font-size:10px;font-weight:700;letter-spacing:.1em;color:#fff;margin-bottom:12px}
.sq-h span{display:block;font-size:9.5px;font-weight:400;letter-spacing:0;color:#8b949e;margin-top:4px;text-transform:none}
.sq-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:12px}
.sq-c{background:rgba(255,255,255,.05);border-left:3px solid #008fc4;border-radius:4px;padding:8px 10px}
.sq-l{font-size:8.5px;letter-spacing:.06em;color:#8b949e;text-transform:uppercase}
.sq-v{font-size:12px;color:#fff;font-weight:600;margin-top:3px}
.sq-t{width:100%;border-collapse:collapse;font-size:10.5px}
.sq-t th{text-align:left;color:#8b949e;font-weight:600;padding:6px 0;border-bottom:1px solid #30363d;font-size:9px;letter-spacing:.05em;text-transform:uppercase}
.sq-t td{padding:6px 0;color:#cfd3da;border-bottom:1px solid rgba(255,255,255,.05)}
.sq-t .num{text-align:right}

/* character stats */
.ch-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.ch{background:#1c222a;border-left:4px solid #008fc4;border-radius:4px;padding:10px 12px;font-family:"Montserrat",system-ui,sans-serif}
.ch-l{font-size:9px;color:#8b949e;text-transform:uppercase;letter-spacing:.05em;line-height:1.4}
.ch-v{font-size:17px;color:#fff;font-weight:600;margin-top:5px}
.ch-ib{margin-top:10px;font-size:9.5px;color:#8b949e;text-transform:uppercase;letter-spacing:.05em;font-family:"Montserrat",system-ui,sans-serif}

.tx .num{text-align:right}
@media (max-width:1000px){ .market-grid{grid-template-columns:1fr} }

/* ---------- recent days, intraday regime sequence ---------- */
.rs-wrap{margin-top:20px}
.rs-h{font-size:10px;font-weight:700;letter-spacing:.12em;color:#00c5bb;margin-bottom:10px}
.rs-h span{font-weight:400;letter-spacing:.02em;color:#8B949E;margin-left:10px;text-transform:none;font-size:10.5px}
.rs-sub{font-size:12px;color:#a3a3a3;line-height:1.6;margin:0 0 14px;max-width:86ch}
.rs-scroll{overflow-x:auto;scrollbar-width:thin}
/* the product's table is width:100%, which lets the date column absorb ~1100px.
   auto + a 1% date cell keeps the date hard against the first session. */
.rs{border-collapse:separate;border-spacing:2px;font-family:"Montserrat",system-ui,sans-serif;font-size:11px;width:min-content;table-layout:fixed}
.rs th{width:52px;font-weight:400;color:#8B949E;font-size:9.5px;padding:0 0 4px;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rs th.rs-date{width:88px;text-align:left;padding-right:12px}
.rs td{width:52px;height:18px;text-align:center;color:#fff;font-weight:600;font-size:10px;border-radius:2px}
.rs td.rs-date{
  width:88px;white-space:nowrap;text-align:left;color:#cfd3da;font-weight:500;
  font-size:11px;padding-right:12px;background:none;
}
.rs td.rs-empty{background:rgba(255,255,255,.07)}
.rs-foot{font-size:10.5px;color:#8B949E;line-height:1.6;margin:12px 0 0;max-width:88ch}
@media (max-width:760px){ .rs td{width:40px} .rs td.rs-date{font-size:10px} }

/* ---------- regime row: tile at 1/3, sequence at 2/3 ---------- */
.regime-row{display:grid;grid-template-columns:1fr 2fr;gap:20px;align-items:start;margin-bottom:20px}
.regime-row .rs-wrap{margin-top:0}
.market-grid.two{grid-template-columns:1fr 1fr}
.metric-list{list-style:none;margin:0 0 14px;padding:0;display:grid;gap:9px}
.metric-list li{
  position:relative;padding-left:18px;font-size:13.5px;line-height:1.5;color:var(--grey);
}
.metric-list li::before{
  content:"";position:absolute;left:0;top:8px;width:6px;height:6px;border-radius:2px;background:var(--blue);
}
@media (max-width:1000px){
  .regime-row{grid-template-columns:1fr}
  .market-grid.two{grid-template-columns:1fr}
}


/* ================= LIVE SESSIONS PAGE (live-sessions.html) =================
   All classes prefixed ls- so they cannot collide with the shared sheets.
   Checked with the bare-class audit in HANDOFF.md before shipping.        */

.ls-ladder{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:38px}
.ls-step{border:1px solid var(--steel);border-radius:var(--r-lg);padding:22px 20px;background:#fff}
.ls-step.is-lit{border-color:var(--blue);box-shadow:0 0 0 1px var(--blue) inset}
.ls-n{display:block;font-family:"Montserrat",system-ui,sans-serif;font-size:11px;font-weight:700;letter-spacing:.14em;color:var(--blue);margin-bottom:12px}
.ls-step h3{font-size:17px;margin-bottom:8px;line-height:1.25}
.ls-step p{font-size:13.5px;color:var(--grey);line-height:1.55}
.ls-step a{color:var(--blue);text-decoration:underline;text-underline-offset:2px}

.ls-rooms{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:36px}
.ls-room{border-radius:var(--r-lg);padding:30px;background:#fff;border:1px solid var(--steel)}
.ls-room-navy{background:var(--navy);border-color:var(--navy);color:#fff}
.ls-room-navy p{color:rgba(255,255,255,.76)}
.ls-room-navy .ls-day{color:#9FC0FF}
.ls-day{display:block;font-family:"Montserrat",system-ui,sans-serif;font-size:11px;font-weight:700;letter-spacing:.12em;color:var(--blue);margin-bottom:12px}
.ls-room h3{font-size:22px;margin-bottom:10px}
.ls-room p{font-size:14.5px;color:var(--grey);line-height:1.6}

.ls-cal{margin-top:24px}
.ls-cal-h{font-family:"Montserrat",system-ui,sans-serif;font-size:10px;font-weight:700;letter-spacing:.12em;color:#00c5bb;margin-bottom:14px}
.ls-cal-row{display:flex;justify-content:space-between;gap:14px;align-items:baseline;padding:9px 0;border-bottom:1px solid rgba(0,197,187,.2);font-size:13.5px;color:#a3a3a3}
.ls-cal-row b{color:#fff;font-weight:600;white-space:nowrap}
.ls-cal-row.is-grad{border-bottom:none}
.ls-cal-row.is-grad span,.ls-cal-row.is-grad b{color:#f59e0b}
.ls-cal-note{margin-top:14px;padding:12px 14px;background:rgba(240,180,41,.07);border-radius:10px;font-size:12.5px;color:#a3a3a3;line-height:1.65}
.ls-cal-note b{color:#fff}

.ls-split{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center}
.ls-mt{border-left:4px solid #f59e0b}
.ls-mt-top{display:flex;gap:13px;align-items:flex-start}
.ls-mt-ic{flex:none;font-size:20px;line-height:1}
.ls-mt-body{flex:1;min-width:0}
.ls-mt-ey{display:block;font-family:"Montserrat",system-ui,sans-serif;font-size:10px;font-weight:700;letter-spacing:.1em;color:#f59e0b}
.ls-mt-t{display:block;font-size:15px;font-weight:600;color:#fff;margin-top:5px}
.ls-mt-s{display:block;font-size:13px;color:#a3a3a3;line-height:1.6;margin-top:7px}
.ls-mt-ph{margin-top:16px;padding:22px;border-radius:10px;background:rgba(255,255,255,.05);text-align:center;font-size:12px;color:#8B949E;letter-spacing:.04em}

.ls-bio{display:grid;grid-template-columns:1.25fr 1fr;gap:44px;margin-top:36px;align-items:start}
.ls-bio-main p{font-size:15px;color:var(--grey);line-height:1.65;margin-top:14px}
.ls-bio-role{font-weight:600;color:var(--navy) !important;margin-top:8px !important}
.ls-bio-facts{list-style:none;padding:26px 28px;margin:0;background:#fff;border:1px solid var(--steel);border-radius:var(--r-lg)}
.ls-bio-facts li{font-size:14px;color:var(--grey);line-height:1.5;padding:9px 0 9px 20px;position:relative;border-bottom:1px solid var(--line)}
.ls-bio-facts li:last-child{border-bottom:none}
.ls-bio-facts li::before{content:"";position:absolute;left:0;top:16px;width:6px;height:6px;border-radius:50%;background:var(--blue)}

@media (max-width:1000px){
  .ls-ladder{grid-template-columns:repeat(2,1fr)}
  .ls-split,.ls-bio{grid-template-columns:1fr;gap:28px}
}
@media (max-width:720px){
  .ls-ladder,.ls-rooms{grid-template-columns:1fr}
}


/* ========== DEDICATED FEATURE PAGES (generated by _build/build.py) ==========
   Structure follows zoom.com's own feature pages, read live 2026-09-22.     */

.hero-ey{font-family:var(--ff-body);font-size:13px;font-weight:600;letter-spacing:.1em;color:#9FC0FF;margin-bottom:18px}

.cap-list{list-style:none;padding:0;margin:26px 0 0;display:grid;grid-template-columns:repeat(2,1fr);gap:0 40px;max-width:980px}
.cap-list li{position:relative;padding:15px 0 15px 32px;font-size:15.5px;line-height:1.55;color:var(--navy);border-bottom:1px solid var(--line)}
.cap-list li::before{content:"";position:absolute;left:0;top:20px;width:15px;height:8px;border-left:2px solid var(--blue);border-bottom:2px solid var(--blue);transform:rotate(-45deg)}

.reads-4{grid-template-columns:repeat(4,1fr)}
.reads-4 .read{padding:24px}
.reads-4 .read h3{font-size:17px}

.how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.how-step{display:flex;gap:16px;align-items:flex-start}
.how-step h3{font-size:18px;margin-bottom:8px;line-height:1.3}
.how-step p{font-size:14.5px;color:var(--grey);line-height:1.6}

.rel-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.rel-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--steel);border-radius:var(--r-lg);padding:22px 20px;min-height:186px}
.rel-card:hover{border-color:var(--blue)}
.rel-k{font-family:var(--ff-body);font-size:10.5px;font-weight:700;letter-spacing:.12em;color:var(--blue);margin-bottom:auto}
.rel-t{font-family:var(--ff-display);font-size:19px;font-weight:500;color:var(--navy);line-height:1.22;margin-top:16px}
.rel-card:hover .rel-t{color:var(--blue)}
.rel-s{font-size:12.5px;color:var(--grey);margin-top:9px}

@media (max-width:1100px){
  .reads-4{grid-template-columns:repeat(2,1fr)}
  .rel-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:820px){
  .cap-list{grid-template-columns:1fr}
  .how-grid{grid-template-columns:1fr;gap:22px}
  .reads-4,.rel-grid{grid-template-columns:1fr}
}

/* ===== FEATURE PAGE v2, 2026-09-22 ================================
   Founder note: "not enough graphical examples... a lot of text and not
   really things being broken down in a cool way like the Zoom site does."
   Measured before changing anything: zoom.com's screen-sharing page runs
   about one visual per 40 words. grade.html ran one per 1,247.
   Zoom drops a screenshot into every block. We cannot, because screenshots
   of OTIS are ruled out, so every visual here is built markup. Three fixes:
   an icon on every benefit card and step, a two-column definition block so
   the page opens on something to look at, and the product component moved
   up the page instead of sitting behind three text blocks.             */

/* --- icons ------------------------------------------------------- */
.ic{display:inline-flex}
.ic svg{width:22px;height:22px;display:block}
.ic-wrap{
  display:flex;align-items:center;justify-content:center;
  width:46px;height:46px;border-radius:13px;
  background:var(--tint);color:var(--blue);margin-bottom:18px;
}
.read .ic-wrap{margin-bottom:16px}

/* --- the definition block: text left, something to look at right --- */
.wi-split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.wi-split.is-solo{grid-template-columns:1fr}
.wi-split.is-solo .lede{max-width:74ch}

/* --- how-it-works steps now carry an icon and a number ------------- */
.how-n{
  flex:none;width:46px;height:46px;border-radius:13px;background:var(--tint);
  color:var(--blue);display:flex;align-items:center;justify-content:center;position:relative;
}
.how-n b{
  position:absolute;top:-6px;right:-6px;width:21px;height:21px;border-radius:50%;
  background:var(--blue);color:#fff;font-family:var(--ff-body);font-size:11px;
  font-weight:700;display:flex;align-items:center;justify-content:center;
}

/* --- The Split card (grade.html) ---------------------------------- */
.scard{padding:30px 32px}
.scard-k{font-family:"Montserrat",system-ui,sans-serif;font-size:10px;font-weight:700;letter-spacing:.14em;color:#00c5bb;margin-bottom:22px}
.scard-row{display:grid;grid-template-columns:1fr auto 1fr;gap:22px;align-items:center}
.scard-half{display:flex;flex-direction:column;text-align:center}
.scard-sep{width:1px;align-self:stretch;background:rgba(0,197,187,.25)}
.scard-lbl{font-family:"Montserrat",system-ui,sans-serif;font-size:11px;font-weight:700;letter-spacing:.13em;color:#a3a3a3}
.scard-val{font-family:"Montserrat",system-ui,sans-serif;font-size:56px;font-weight:700;line-height:1.05;margin-top:8px}
.scard-val.up{color:#00c478}
.scard-val.dn{color:#f45252}
.scard-cap{font-size:11.5px;color:#8B949E;line-height:1.5;margin-top:9px}
.scard-gap{margin-top:24px;padding:13px 15px;background:rgba(240,180,41,.08);border-radius:10px;font-size:13px;color:#a3a3a3;line-height:1.6}
.scard-gap b{color:#f59e0b}
.scard-leak{margin-top:12px;padding:13px 15px;background:rgba(255,255,255,.05);border-radius:10px;font-size:13px;color:#a3a3a3}
.scard-leak b{color:#fff}
.scard-note{margin-top:14px;font-size:11.5px;color:#8B949E;line-height:1.6}

@media (max-width:1000px){
  .wi-split{grid-template-columns:1fr;gap:34px}
}
@media (max-width:560px){
  .scard-val{font-size:44px}
  .scard{padding:24px 20px}
}

/* Real OTIS captures. Full-bleed inside the shell, dark surround so the
   product's own #08101C background does not sit on white with a hard edge. */
.shot{margin:0 0 22px;padding:14px;background:#08101C;border:1px solid rgba(0,197,187,.22);border-radius:22px;overflow:hidden}
.shot-tight{margin:0;padding:10px;border-radius:20px}
.shot img{display:block;width:100%;height:auto;border-radius:14px}
.shot-tight img{border-radius:12px}
.shot-tight figcaption{margin-top:11px;font-size:12.5px}
.shot figcaption{margin-top:14px;padding:0 4px;font-size:13px;line-height:1.65;color:#a3a3a3}
.shot figcaption b{color:#fff}

/* Related cards. The thumbnail is the page's own concept illustration, not a
   crop of the product: at this size dark UI chrome is unreadable and reads as
   filler. Founder note 2026-09-22, "the more stuff you are adding the more
   this site is starting to look AI slop type". */
.rel-card{padding:0;overflow:hidden;min-height:0}
.rel-thumb{display:block;background:var(--tint);border-bottom:1px solid var(--steel);padding:10px}
.rel-thumb .ill{width:100%;max-width:none;height:auto}
/* Photographic thumbs (the archetype bands) crop to ONE ratio regardless of
   what the source file is. Those bands run from 2.74:1 to 7.69:1 because
   they were cropped out of a composite, so left to themselves every card is
   a different height. object-fit does the work; the padding comes off so the
   art goes edge to edge like a thumbnail rather than floating in a tint box. */
.rel-thumb.is-art{padding:0;background:#08101C}
.rel-thumb.is-art img{display:block;width:100%;height:158px;object-fit:cover;object-position:center}
.rel-card .rel-k{padding:16px 18px 0;margin-bottom:0}
.rel-card .rel-t{padding:0 18px;margin-top:8px;font-size:17px}
.rel-card .rel-s{padding:0 18px 18px;margin-top:7px}
.ic-sm{width:38px;height:38px;border-radius:11px;margin-bottom:12px}
.ic-sm svg{width:19px;height:19px}
.ls-step .ls-n{margin-bottom:8px}
.read .ic-wrap + .n{display:block;margin-bottom:10px}

/* Concept illustration beside the capability list. Zoom's equivalent slot is
   their 445x333 image next to a bulleted list; ours is inline SVG so it
   retints with the palette and costs no request. */
.cap-split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.cap-art{display:flex;justify-content:center}
.ill{width:100%;max-width:520px;height:auto;display:block}
.cap-list-1{grid-template-columns:1fr;gap:0;max-width:none}
@media (max-width:1000px){ .cap-split{grid-template-columns:1fr;gap:34px} .cap-art{order:-1} }

/* The engine's own problem sentence, quoted on an archetype page. It is the
   line OTIS writes on a real report, so it is set as a quote and attributed
   rather than dressed up as marketing copy. */
.scard-quote{margin-top:26px;padding:26px 30px;background:#08101C;border-radius:20px;border-left:4px solid #00c5bb;font-family:var(--ff-display);font-size:clamp(19px,2vw,24px);line-height:1.4;color:#fff}
.scard-quote span{display:block;margin-top:14px;font-family:var(--ff-body);font-size:13px;line-height:1.6;color:#a3a3a3}
.rel-grid-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:820px){ .rel-grid-3{grid-template-columns:1fr} }

/* Grid items default to min-width:auto, so a child wider than the column
   (the Recent Days table is ~416px at min-content) refuses to shrink and
   pushes the whole column past the viewport. Its own overflow-x:auto never
   gets the chance to scroll. This put 103px of sideways scroll on
   features.html and market-read.html at 375px. min-width:0 lets the column
   shrink and hands the scrolling back to the wrapper that was built for it. */
.regime-row > *,
.market-grid > *,
.wi-split > *,
.cap-split > *,
.apd-grid > *{min-width:0}
.rs-scroll{max-width:100%}
