:root {
  color: #121210;
  background: #faf9f7;
  font-family: -apple-system, BlinkMacSystemFont, SF Pro Display, Helvetica Neue,
    Arial, sans-serif;
  font-synthesis: none;
  --paper: #faf9f7;
  --surface: transparent;
  --soft: #efeeeb;
  --soft-deep: #e8e7e3;
  --soft-hover: #f3f2ef;
  --line: #dedcd7;
  --line-soft: #e8e6e2;
  --text: #121210;
  --muted: #6f6e69;
  --quiet: #92908a;
  --green: #58a83f;
}
* {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
button:focus-visible,
input:focus-visible {
  outline: 2px solid #77756f;
  outline-offset: 2px;
}
.app-shell {
  min-height: 100vh;
  background-color: var(--paper);
  background-image: url(/assets/verona-paper.png);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: cover;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 65px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #faf9f7f0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.brand {
  width: 194px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.brand .verona-mark {
  width: 31px;
  height: 31px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.brand span {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0.19em;
}
.primary-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav > button {
  position: relative;
  height: 100%;
  padding: 0 17px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}
.primary-nav > button:hover,
.primary-nav > button.is-active {
  color: var(--text);
}
.primary-nav > button.is-active {
  font-weight: 650;
}
.primary-nav > button.is-active:after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}
.network-pill {
  height: 35px;
  margin-left: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4f4e49;
  font-size: 13px;
}
.network-pill svg {
  width: 16px;
  height: 16px;
}
.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.button,
.icon-button,
.control-button {
  border: 1px solid var(--line);
  cursor: pointer;
}
.button {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 620;
}
.button svg {
  width: 18px;
  height: 18px;
}
.button--soft {
  background: var(--soft);
  border-color: var(--soft-deep);
}
.button--soft:hover {
  background: var(--soft-deep);
}
.button--dark {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}
.button--dark:hover {
  background: #292925;
}
.button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.icon-button {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
}
.icon-button:hover {
  background: var(--soft);
}
.icon-button svg {
  width: 20px;
  height: 20px;
}
.page {
  width: calc(100% - 96px);
  max-width: 1340px;
  margin: 0 auto;
}
.title-row {
  min-height: 87px;
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.title-row h1 {
  margin: 0;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.market-note {
  padding-top: 7px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 12px;
}
.demo-pill {
  height: 27px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #34332f;
}
.demo-pill svg {
  width: 14px;
  height: 14px;
}
.highlights {
  height: 239px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
}
.highlight-group {
  min-width: 0;
  padding: 22px 29px 18px;
}
.highlight-group + .highlight-group {
  border-left: 1px solid var(--line-soft);
}
.highlight-heading {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.highlight-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 680;
}
.highlight-heading svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}
.highlight-heading button {
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.highlight-heading button svg {
  width: 13px;
  height: 13px;
}
.highlight-list {
  display: grid;
  gap: 7px;
}
.highlight-row {
  width: 100%;
  height: 49px;
  padding: 5px 2px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 14px;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}
.highlight-row:hover {
  background: #efeeebb8;
}
.highlight-row > span:not(.highlight-value) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.highlight-row strong {
  font-size: 13px;
  line-height: 1.2;
}
.highlight-row small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.highlight-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.highlight-row > svg {
  width: 14px;
  height: 14px;
}
.company-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.company-logo--highlight {
  width: 38px;
  height: 38px;
}
.company-logo--lg {
  width: 48px;
  height: 48px;
}
.company-logo--hero {
  width: 76px;
  height: 76px;
}
.market-controls {
  min-height: 70px;
  margin-top: 27px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.category-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-tabs button,
.control-button {
  height: 35px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}
.category-tabs button:hover {
  background: var(--soft-hover);
}
.category-tabs button.is-active {
  border-color: var(--soft-deep);
  background: var(--soft);
  font-weight: 650;
}
.control-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-field {
  width: 290px;
  height: 39px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.search-field svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.search-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}
.search-field input::placeholder {
  color: #9a9892;
}
.control-button {
  min-width: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.control-button svg {
  width: 17px;
  height: 17px;
}
.control-button.is-active {
  background: var(--soft);
}
.filter-wrap {
  position: relative;
}
.filter-popover {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  box-shadow: 0 18px 48px #1212101f;
}
.filter-popover strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
}
.filter-popover label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.filter-popover button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}
.view-toggle {
  width: 110px;
  height: 39px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
}
.view-toggle button {
  width: 51px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.view-toggle button.is-active {
  background: var(--soft-deep);
}
.view-toggle svg {
  width: 18px;
  height: 18px;
}
.market-table {
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.market-grid {
  display: grid;
  grid-template-columns: minmax(238px, 2.1fr) minmax(103px, 0.9fr) minmax(
      94px,
      0.82fr
    ) minmax(94px, 0.86fr) minmax(92px, 0.84fr) minmax(92px, 0.82fr) minmax(
      103px,
      0.9fr
    ) 22px;
  align-items: center;
  gap: 8px;
}
.table-header {
  min-height: 42px;
  padding: 0 25px;
  color: #454440;
  font-size: 11px;
}
.table-header button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.table-header svg {
  width: 12px;
  height: 12px;
}
.market-row {
  width: 100%;
  min-height: 57px;
  padding: 0 25px;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: #373631;
  font-size: 12px;
}
.market-row:hover {
  background: #efeeeba3;
}
.asset-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.asset-cell > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.asset-cell strong {
  color: var(--text);
  font-size: 13px;
}
.asset-cell small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.market-row em {
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--soft);
  color: #5d5b56;
  font-style: normal;
  font-size: 10px;
}
.market-row > svg {
  width: 16px;
  height: 16px;
}
.empty-state {
  min-height: 250px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}
.empty-state strong {
  color: var(--text);
}
.empty-state button {
  margin-top: 7px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}
.market-cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.market-card {
  min-height: 180px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.market-card:hover {
  background: #efeeeb8a;
}
.market-card-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
}
.market-card-top > span {
  display: flex;
  flex-direction: column;
}
.market-card-top strong {
  font-size: 15px;
}
.market-card-top small {
  margin-top: 3px;
  color: var(--muted);
}
.market-card dl {
  margin: 22px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 8px;
}
.market-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.market-card dt {
  color: var(--muted);
  font-size: 11px;
}
.market-card dd {
  margin: 0;
  font-size: 12px;
  font-weight: 620;
}
footer {
  min-height: 86px;
  padding: 40px 0 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}
.market-detail-page {
  padding-top: 30px;
}
.breadcrumb {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.breadcrumb span {
  margin: 0 8px;
  color: #b0aea8;
}
.detail-layout {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 356px;
  gap: 52px;
  align-items: start;
}
.detail-main {
  min-width: 0;
}
.asset-hero {
  position: relative;
  min-height: 145px;
}
.asset-title-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
.asset-title-block > div {
  display: flex;
  flex-direction: column;
}
.asset-title-block > div > span {
  font-size: 16px;
  font-weight: 560;
}
.asset-title-block h1 {
  margin: 5px 0 0;
  font-size: 37px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.asset-price {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.asset-price > strong {
  font-size: 27px;
  letter-spacing: -0.03em;
}
.asset-price > span {
  font-size: 14px;
}
.asset-price small {
  margin-left: 3px;
  color: var(--muted);
  font-size: 12px;
}
.positive {
  color: #5a9d3d;
}
.negative {
  color: #b24c43;
}
.market-identity-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 470px;
  min-height: 64px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.9fr 1.4fr;
  gap: 2px;
}
.market-identity-bar > div,
.market-identity-bar > button {
  min-width: 0;
  padding: 7px 9px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.market-identity-bar > button {
  cursor: pointer;
}
.market-identity-bar > button:hover {
  background: var(--soft-deep);
}
.market-identity-bar > div + div,
.market-identity-bar > div + button {
  border-left: 1px solid #d9d7d2;
  border-radius: 0;
}
.market-identity-bar i,
.trade-live i,
.status-cell i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}
.market-identity-bar svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.market-identity-bar > div > span:last-child,
.market-identity-bar > button > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.market-identity-bar small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
}
.market-identity-bar strong {
  margin-top: 2px;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chain-id {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: var(--soft-deep);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
}
.chart-section {
  margin-top: 7px;
}
.range-tabs {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.range-tabs button {
  min-width: 42px;
  height: 29px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}
.range-tabs button.is-active {
  background: var(--soft-deep);
  font-weight: 650;
}
.chart-frame {
  position: relative;
  height: 265px;
  padding: 8px 62px 27px 0;
}
.chart-frame svg {
  width: 100%;
  height: 222px;
  overflow: visible;
}
.chart-frame line {
  stroke: #e3e1dc;
  stroke-width: 1;
  stroke-dasharray: 3 5;
}
.chart-frame polyline {
  fill: none;
  stroke: #171715;
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.chart-y-axis {
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 39px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
.chart-x-axis {
  position: absolute;
  left: 0;
  right: 62px;
  bottom: 4px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
.chart-price-label {
  position: absolute;
  top: 111px;
  right: 0;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--soft-deep);
  font-size: 10px;
  font-weight: 650;
}
.exposure-composer {
  margin-top: 17px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.composer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.composer-heading > span:first-child {
  display: flex;
  flex-direction: column;
}
.composer-heading strong {
  font-size: 14px;
}
.composer-heading small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.composer-total {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: #54534e;
  font-size: 11px;
  font-weight: 620;
  white-space: nowrap;
}
.composer-track {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}
.exposure-part {
  min-width: 0;
  height: 67px;
  padding: 11px 13px;
  border-radius: 15px;
  background: var(--soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.exposure-part--dividends {
  background: var(--soft-deep);
}
.exposure-part > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.exposure-part strong {
  font-size: 12px;
}
.exposure-part small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.exposure-symbol {
  width: 32px;
  height: 32px;
  border: 1px solid #bbb9b3;
  border-radius: 50%;
  background: #faf9f7a8;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 13px;
  font-weight: 700;
}
.exposure-composer > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.market-metrics {
  margin-top: 13px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.market-metrics > div {
  min-width: 0;
  min-height: 83px;
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
}
.market-metrics > div:nth-child(2n) {
  background: #ecebe7;
}
.market-metrics span {
  color: var(--muted);
  font-size: 10px;
}
.market-metrics strong {
  margin-top: 7px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.market-metrics small {
  margin-top: auto;
  padding-top: 6px;
  color: var(--quiet);
  font-size: 9px;
}
.maturity-panel {
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.section-heading {
  min-height: 57px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-heading > span:first-child {
  display: flex;
  flex-direction: column;
}
.section-heading strong {
  font-size: 13px;
}
.section-heading small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.section-heading > span:last-child {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 10px;
}
.maturity-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.65fr) repeat(4, minmax(76px, 0.8fr)) minmax(
      76px,
      0.75fr
    ) 18px;
  align-items: center;
  gap: 8px;
}
.maturity-header {
  min-height: 32px;
  padding: 0 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 9px;
}
.maturity-row {
  width: 100%;
  min-height: 51px;
  padding: 0 18px;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 10px;
}
.maturity-row:hover,
.maturity-row.is-active {
  background: var(--soft);
}
.maturity-row.is-active {
  box-shadow: inset 3px 0 #9b9992;
}
.maturity-date {
  display: flex;
  align-items: center;
  gap: 9px;
}
.maturity-date > svg {
  width: 17px;
  height: 17px;
}
.maturity-date > span {
  display: flex;
  flex-direction: column;
}
.maturity-date strong {
  font-size: 10px;
}
.maturity-date small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}
.status-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4f7f3b;
}
.maturity-row > svg {
  width: 15px;
  height: 15px;
}
.corporate-notice {
  min-height: 57px;
  margin-top: 13px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.corporate-notice > svg {
  width: 19px;
  height: 19px;
}
.corporate-notice > span {
  display: flex;
  flex-direction: column;
}
.corporate-notice strong {
  font-size: 11px;
}
.corporate-notice small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}
.corporate-notice button {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
  cursor: pointer;
}
.trade-panel {
  position: sticky;
  top: 91px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.trade-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trade-heading > span:first-child {
  display: flex;
  flex-direction: column;
}
.trade-heading strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.trade-heading small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.trade-live {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
}
.soft-segmented {
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  display: flex;
}
.soft-segmented button {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.soft-segmented button.is-active {
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 1px 3px #12121014;
  font-weight: 650;
}
.trade-side {
  margin-top: 17px;
}
.trade-side button {
  width: 50%;
  height: 35px;
  font-size: 12px;
}
.trade-section-label {
  margin: 17px 0 8px;
  color: var(--muted);
  font-size: 10px;
}
.instrument-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.instrument-options button {
  min-width: 0;
  min-height: 78px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: transparent;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
}
.instrument-options button.is-active {
  border-color: #d2d0ca;
  background: var(--soft);
}
.instrument-options .exposure-symbol {
  width: 29px;
  height: 29px;
  font-size: 11px;
}
.instrument-options button > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.instrument-options strong {
  font-size: 10px;
}
.instrument-options small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.instrument-options button > svg {
  display: none;
}
.instrument-options button.is-active > svg {
  position: absolute;
  display: block;
}
.order-field {
  margin-top: 9px;
  padding: 12px 13px;
  border-radius: 15px;
  background: var(--soft);
}
.order-field > span,
.amount-field > div:first-child > span {
  color: var(--muted);
  font-size: 9px;
}
.maturity-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px 10px;
}
.maturity-field > span {
  grid-column: 1 / -1;
}
.maturity-field strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}
.maturity-field strong svg {
  width: 16px;
  height: 16px;
}
.maturity-field small {
  color: var(--muted);
  font-size: 9px;
}
.amount-field > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.amount-field > div:first-child small {
  color: var(--muted);
  font-size: 9px;
}
.amount-input {
  margin-top: 7px;
  display: flex;
  align-items: center;
}
.amount-input input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 23px;
}
.amount-input > span {
  font-size: 11px;
  font-weight: 650;
}
.order-summary {
  margin-top: 10px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  display: grid;
  gap: 8px;
}
.order-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
}
.order-summary strong {
  color: #45443f;
  font-size: 9px;
}
.trade-primary {
  width: 100%;
  height: 46px;
  margin-top: 12px;
  border-radius: 14px;
}
.trade-secondary-actions {
  margin-top: 9px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.trade-secondary-actions button {
  min-width: 0;
  min-height: 64px;
  padding: 9px;
  border: 0;
  border-radius: 15px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  text-align: left;
  cursor: pointer;
}
.trade-secondary-actions button:hover {
  background: var(--soft-deep);
}
.trade-secondary-actions button > svg:first-child {
  width: 18px;
  height: 18px;
}
.trade-secondary-actions button > svg:last-child {
  display: none;
}
.trade-secondary-actions button span {
  display: flex;
  flex-direction: column;
}
.trade-secondary-actions strong {
  font-size: 9px;
}
.trade-secondary-actions small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}
.trade-disclosure {
  margin: 13px 2px 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}
.secondary-page {
  padding-top: 45px;
}
.secondary-title {
  min-height: 105px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.secondary-title > div {
  display: flex;
  flex-direction: column;
}
.secondary-title > div > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.secondary-title h1 {
  margin: 7px 0 0;
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.045em;
}
.secondary-title p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.value-rule {
  padding: 13px 16px;
  border-radius: 16px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.value-rule strong {
  font-size: 14px;
}
.value-rule small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.portfolio-overview {
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  overflow: hidden;
}
.portfolio-overview > div {
  min-height: 129px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portfolio-overview > div + div {
  border-left: 1px solid var(--line-soft);
}
.portfolio-overview span {
  color: var(--muted);
  font-size: 10px;
}
.portfolio-overview strong {
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.portfolio-overview small {
  margin-top: 6px;
  color: var(--quiet);
  font-size: 9px;
}
.portfolio-value {
  background: var(--soft);
}
.portfolio-value strong {
  font-size: 31px;
}
.portfolio-content {
  min-height: 450px;
  margin-top: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.large-empty-state {
  min-height: 365px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.empty-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--soft);
  display: grid;
  place-items: center;
}
.empty-icon svg {
  width: 25px;
  height: 25px;
}
.large-empty-state > strong {
  margin-top: 17px;
  font-size: 18px;
}
.large-empty-state p {
  width: min(100%, 470px);
  margin: 8px 0 19px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.position-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.55fr) minmax(160px, 1fr) minmax(
      145px,
      1fr
    ) minmax(100px, 0.7fr) minmax(110px, 0.8fr);
  align-items: center;
  gap: 12px;
}
.position-header {
  min-height: 35px;
  padding: 0 21px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 10px;
}
.position-row {
  min-height: 60px;
  padding: 0 21px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
}
.position-row em {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--soft);
  font-style: normal;
}
.operation-tabs {
  width: 500px;
  margin-bottom: 17px;
}
.operation-tabs button {
  width: 25%;
  height: 39px;
  font-size: 12px;
}
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.8fr);
  gap: 17px;
  align-items: start;
}
.split-builder,
.split-preview {
  border: 1px solid var(--line);
  border-radius: 23px;
}
.split-builder {
  padding: 23px;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.flow-step:not(:first-child) {
  margin-top: 24px;
}
.flow-step > span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 10px;
  font-weight: 700;
}
.flow-step > div {
  display: flex;
  flex-direction: column;
}
.flow-step strong {
  font-size: 13px;
}
.flow-step small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.token-selector {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.token-selector button {
  min-width: 0;
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: transparent;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
}
.token-selector button:hover,
.token-selector button.is-active {
  background: var(--soft);
}
.token-selector button > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.token-selector strong {
  font-size: 11px;
}
.token-selector small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.token-selector button > svg {
  display: none;
}
.maturity-options {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.maturity-options button {
  min-width: 0;
  min-height: 61px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: transparent;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  text-align: left;
  cursor: pointer;
}
.maturity-options button:hover,
.maturity-options button.is-active {
  background: var(--soft);
}
.maturity-options button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.maturity-options button > svg:first-child {
  width: 17px;
  height: 17px;
}
.maturity-options button > svg:last-child {
  display: none;
}
.maturity-options button span {
  display: flex;
  flex-direction: column;
}
.maturity-options strong {
  font-size: 9px;
}
.maturity-options small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}
.split-amount-field {
  margin-top: 13px;
  padding: 15px;
  border-radius: 17px;
  background: var(--soft);
}
.split-amount-field > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.split-amount-field > div:first-child span {
  font-size: 10px;
}
.split-amount-field > div:first-child small {
  color: var(--muted);
  font-size: 9px;
}
.split-amount-field > div:last-child {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 9px;
}
.split-amount-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 25px;
}
.split-amount-field > div:last-child > span {
  font-size: 11px;
  font-weight: 650;
}
.split-amount-field button {
  padding: 6px 8px;
  border: 1px solid #d3d1cc;
  border-radius: 9px;
  background: var(--paper);
  font-size: 9px;
  cursor: pointer;
}
.split-primary {
  width: 100%;
  height: 47px;
  margin-top: 12px;
  border-radius: 15px;
}
.split-preview {
  position: sticky;
  top: 91px;
  padding: 24px;
}
.preview-kicker {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.preview-token {
  min-height: 71px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 17px;
  background: var(--soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-token > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.preview-token strong {
  font-size: 13px;
}
.preview-token small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.token-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft-deep);
  display: grid;
  place-items: center;
}
.split-connector {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr 26px 1fr;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}
.split-connector span {
  height: 1px;
  background: var(--line);
}
.split-connector svg {
  width: 18px;
  height: 18px;
}
.split-output {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.split-output > div {
  min-width: 0;
  min-height: 75px;
  padding: 11px;
  border-radius: 17px;
  background: var(--soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.split-output > div > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.split-output strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.split-output small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}
.split-preview dl {
  margin: 18px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 9px;
}
.split-preview dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.split-preview dt,
.split-preview dd {
  font-size: 9px;
}
.split-preview dt {
  color: var(--muted);
}
.split-preview dd {
  margin: 0;
  font-weight: 620;
}
.split-preview > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.operation-empty {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.operation-empty > span {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: var(--soft);
  display: grid;
  place-items: center;
}
.operation-empty svg {
  width: 25px;
  height: 25px;
}
.operation-empty strong {
  margin-top: 16px;
  font-size: 17px;
}
.operation-empty p {
  width: min(100%, 470px);
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.learn-tabs {
  width: 600px;
  margin-bottom: 17px;
}
.learn-tabs button {
  flex: 1;
  height: 39px;
  padding: 0 15px;
  font-size: 12px;
}
.learn-hero {
  min-height: 260px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.learn-hero > span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.learn-hero h2 {
  width: min(100%, 780px);
  margin: 17px 0 0;
  font-size: 39px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.learn-hero p {
  width: min(100%, 750px);
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.learn-equation {
  margin-top: 17px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 11px;
}
.learn-equation > svg {
  width: 19px;
  height: 19px;
  color: var(--quiet);
}
.learn-equation > div {
  position: relative;
  min-height: 155px;
  padding: 22px;
  border-radius: 18px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
}
.learn-equation > div > svg {
  width: 25px;
  height: 25px;
}
.learn-number {
  position: absolute;
  top: 14px;
  right: 15px;
  color: #aaa8a2;
  font-size: 10px;
}
.learn-equation strong {
  margin-top: 19px;
  font-size: 13px;
}
.learn-equation p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.value-example {
  margin-top: 17px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
}
.value-example > div {
  min-height: 107px;
  padding: 17px;
  border-radius: 16px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
}
.value-example > span {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}
.value-example div > span {
  color: var(--muted);
  font-size: 9px;
}
.value-example strong {
  margin-top: 10px;
  font-size: 20px;
}
.value-example small {
  margin-top: auto;
  color: var(--quiet);
  font-size: 8px;
}
.learn-detail-grid {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.learn-detail-grid article {
  min-height: 125px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 13px;
}
.learn-detail-grid article > svg {
  width: 25px;
  height: 25px;
}
.learn-detail-grid article span {
  display: flex;
  flex-direction: column;
}
.learn-detail-grid article strong {
  font-size: 13px;
}
.learn-detail-grid article p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
.learn-cta {
  min-height: 92px;
  margin-top: 17px;
  padding: 18px 21px;
  border-radius: 20px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.learn-cta > div:first-child {
  display: flex;
  flex-direction: column;
}
.learn-cta strong {
  font-size: 14px;
}
.learn-cta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.learn-cta > div:last-child {
  display: flex;
  gap: 8px;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 24px;
  background: #1616143b;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
}
.modal {
  width: min(100%, 440px);
  max-height: calc(100vh - 48px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow-y: auto;
  background-color: var(--paper);
  background-image: url(/assets/verona-paper.png);
  background-size: cover;
  box-shadow: 0 28px 90px #11110f33;
}
.modal--wide {
  width: min(100%, 620px);
}
.modal-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-heading h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.03em;
}
.modal-heading button {
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal-heading svg {
  width: 18px;
  height: 18px;
}
.modal-copy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.modal-list {
  margin-top: 17px;
  display: grid;
  gap: 8px;
}
.modal-list button {
  width: 100%;
  min-height: 63px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: transparent;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  text-align: left;
  cursor: pointer;
}
.modal-list button:hover {
  background: var(--soft);
}
.modal-list button > svg {
  width: 20px;
  height: 20px;
}
.modal-list button > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.modal-list strong {
  font-size: 12px;
}
.modal-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.modal-footnote {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
  line-height: 1.5;
}
.modal-field {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 16px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.modal-field > span {
  color: var(--muted);
  font-size: 10px;
}
.modal-field > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 25px;
}
.modal-field strong {
  font-size: 11px;
}
.funding-method {
  min-height: 60px;
  margin-top: 10px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 19px;
  align-items: center;
  gap: 10px;
}
.funding-method svg {
  width: 20px;
  height: 20px;
}
.funding-method span {
  display: flex;
  flex-direction: column;
}
.funding-method strong {
  font-size: 11px;
}
.funding-method small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.modal-action {
  width: 100%;
  height: 46px;
  margin-top: 16px;
  border-radius: 14px;
}
.modal-balance {
  min-height: 112px;
  padding: 20px;
  border-radius: 18px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
}
.modal-balance span {
  color: var(--muted);
  font-size: 10px;
}
.modal-balance strong {
  margin-top: 6px;
  font-size: 29px;
  letter-spacing: -0.04em;
}
.modal-balance small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}
.status-panel {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.status-panel .liquid-logo-loader {
  margin-bottom: 16px;
}
.status-panel strong {
  font-size: 14px;
}
.status-panel small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}
.review-asset {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-asset > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.review-asset strong {
  font-size: 13px;
}
.review-asset small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-list {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 10px;
}
.review-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 10px;
}
.review-list strong {
  color: #3e3d39;
  font-size: 10px;
}
.split-review-output {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.split-review-output > div {
  min-height: 70px;
  padding: 11px;
  border-radius: 16px;
  background: var(--soft);
  display: flex;
  align-items: center;
  gap: 9px;
}
.split-review-output > div > span:last-child {
  display: flex;
  flex-direction: column;
}
.split-review-output strong {
  font-size: 11px;
}
.split-review-output small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.text-action {
  width: 100%;
  margin-top: 11px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  cursor: pointer;
}
.activity-list {
  display: grid;
}
.activity-row {
  min-height: 64px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.activity-row > span:first-child {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--soft);
  display: grid;
  place-items: center;
}
.activity-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.activity-row strong {
  font-size: 11px;
}
.activity-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.product-empty-state {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-empty-state > svg {
  width: 30px;
  height: 30px;
}
.product-empty-state strong {
  margin-top: 14px;
  font-size: 15px;
}
.product-empty-state span {
  width: min(100%, 360px);
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 130;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #d7d5d0;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 16px 42px #12121024;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
}
.toast svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}
@media (max-width: 1180px) {
  .page {
    width: calc(100% - 48px);
  }
  .brand {
    width: 166px;
  }
  .primary-nav > button {
    padding-inline: 11px;
  }
  .primary-nav > button.is-active:after {
    left: 11px;
    right: 11px;
  }
  .network-pill {
    display: none;
  }
  .category-tabs {
    max-width: 54vw;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .search-field {
    width: 225px;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
  }
  .market-identity-bar {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
  .asset-hero {
    min-height: 205px;
  }
}
@media (max-width: 900px) {
  .topbar {
    padding-inline: 18px;
  }
  .brand {
    width: auto;
    margin-right: 18px;
  }
  .brand span {
    display: none;
  }
  .primary-nav > button {
    padding-inline: 9px;
    font-size: 12px;
  }
  .topbar-actions .button--soft {
    display: none;
  }
  .page {
    width: calc(100% - 32px);
  }
  .highlights {
    height: auto;
    grid-template-columns: 1fr;
  }
  .highlight-group + .highlight-group {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
  .market-controls {
    align-items: flex-start;
    flex-direction: column;
  }
  .category-tabs {
    max-width: 100%;
    width: 100%;
  }
  .control-actions,
  .search-field {
    width: 100%;
  }
  .market-grid {
    grid-template-columns: minmax(210px, 2fr) 100px 95px 95px 22px;
  }
  .market-grid > :nth-child(4),
  .market-grid > :nth-child(6),
  .market-grid > :nth-child(7) {
    display: none;
  }
  .market-cards {
    grid-template-columns: 1fr 1fr;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .trade-panel,
  .split-preview {
    position: static;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
  .portfolio-overview {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-overview > div + div {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
  .portfolio-overview > div:nth-child(2n) {
    border-left: 1px solid var(--line-soft);
  }
  .learn-equation {
    grid-template-columns: 1fr 1fr;
  }
  .learn-equation > svg {
    display: none;
  }
  .value-example {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .value-example > span {
    display: none;
  }
}
@media (max-width: 640px) {
  .topbar {
    height: auto;
    min-height: 61px;
    flex-wrap: wrap;
  }
  .primary-nav {
    order: 3;
    width: 100%;
    height: 44px;
    justify-content: space-between;
  }
  .primary-nav > button {
    flex: 1;
  }
  .topbar-actions {
    margin-left: auto;
  }
  .topbar-actions .icon-button {
    display: none;
  }
  .page {
    width: calc(100% - 24px);
  }
  .title-row,
  .secondary-title {
    min-height: 105px;
    padding-top: 26px;
  }
  .market-note,
  .highlights {
    display: none;
  }
  .market-controls {
    margin-top: 0;
  }
  .category-tabs {
    gap: 7px;
  }
  .control-actions .filter-wrap {
    display: none;
  }
  .view-toggle {
    flex: none;
  }
  .market-grid {
    grid-template-columns: minmax(190px, 1fr) 95px 22px;
  }
  .market-grid > :nth-child(2),
  .market-grid > :nth-child(3),
  .market-grid > :nth-child(4),
  .market-grid > :nth-child(6),
  .market-grid > :nth-child(7) {
    display: none;
  }
  .table-header,
  .market-row {
    padding-inline: 15px;
  }
  .market-cards {
    grid-template-columns: 1fr;
  }
  .detail-layout {
    margin-top: 18px;
  }
  .market-identity-bar {
    grid-template-columns: 1fr 1fr;
  }
  .market-identity-bar > div + div,
  .market-identity-bar > div + button {
    border-left: 0;
  }
  .chart-frame {
    height: 230px;
    padding-right: 0;
  }
  .chart-y-axis,
  .chart-price-label {
    display: none;
  }
  .chart-x-axis {
    right: 0;
  }
  .composer-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .composer-track {
    flex-direction: column;
  }
  .market-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .maturity-grid {
    grid-template-columns: minmax(170px, 1.4fr) 80px 18px;
  }
  .maturity-grid > :nth-child(3),
  .maturity-grid > :nth-child(4),
  .maturity-grid > :nth-child(5),
  .maturity-grid > :nth-child(6) {
    display: none;
  }
  .corporate-notice {
    grid-template-columns: 24px 1fr;
  }
  .corporate-notice button {
    display: none;
  }
  .portfolio-overview {
    grid-template-columns: 1fr;
  }
  .portfolio-overview > div:nth-child(2n) {
    border-left: 0;
  }
  .operation-tabs,
  .learn-tabs {
    width: 100%;
    overflow-x: auto;
  }
  .token-selector,
  .maturity-options {
    grid-template-columns: 1fr 1fr;
  }
  .split-builder,
  .split-preview {
    padding: 16px;
  }
  .learn-hero {
    padding: 25px;
  }
  .learn-hero h2 {
    font-size: 29px;
  }
  .learn-equation,
  .learn-detail-grid {
    grid-template-columns: 1fr;
  }
  .learn-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .modal-backdrop {
    padding: 10px;
  }
}
.market-detail-page {
  padding-top: 32px;
}
.detail-layout {
  margin-top: 26px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
}
.asset-hero {
  min-height: 132px;
}
.asset-title-block {
  align-items: flex-start;
  gap: 22px;
}
.asset-title-copy {
  min-width: 0;
  width: 100%;
}
.asset-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.asset-title-block .asset-name-row h1 {
  margin: 1px 0 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.asset-verified {
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}
.asset-verified svg {
  width: 16px;
  height: 16px;
  color: #6fa858;
}
.asset-pair {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}
.asset-price {
  margin-top: 7px;
  gap: 15px;
}
.asset-price > strong {
  font-size: 30px;
  font-weight: 520;
}
.chart-section {
  margin-top: 0;
  padding: 14px 16px 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.chart-toolbar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.chart-toolbar > span {
  display: flex;
  flex-direction: column;
}
.chart-toolbar strong {
  font-size: 11px;
}
.chart-toolbar small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}
.range-tabs {
  height: 34px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 2px;
}
.range-tabs button {
  min-width: 40px;
  height: 26px;
  padding: 0 10px;
  font-size: 10px;
}
.range-tabs button.is-active {
  background: var(--soft-deep);
  box-shadow: none;
}
.chart-frame {
  height: 312px;
  padding: 18px 64px 29px 0;
}
.chart-frame svg {
  height: 252px;
}
.chart-price-label {
  display: none;
}
.market-summary {
  margin-top: 18px;
  min-height: 100px;
  padding: 0 3px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.market-summary > div {
  min-width: 0;
  padding: 18px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.market-summary > div + div {
  border-left: 1px solid var(--line-soft);
}
.market-summary span {
  color: var(--muted);
  font-size: 9px;
}
.market-summary strong {
  margin-top: 7px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 540;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.market-summary small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--quiet);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.maturity-ladder {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.maturity-ladder .section-heading {
  min-height: auto;
  padding: 0 0 13px;
}
.maturity-ladder .section-heading strong {
  font-size: 13px;
}
.maturity-ladder .section-heading > span:last-child {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}
.maturity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.maturity-cards button {
  min-width: 0;
  min-height: 78px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: transparent;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 9px;
  text-align: left;
  cursor: pointer;
}
.maturity-cards button:hover,
.maturity-cards button.is-active {
  background: var(--soft);
}
.maturity-cards button.is-active {
  border-color: #d2d0ca;
}
.maturity-cards button > svg {
  width: 18px;
  height: 18px;
}
.maturity-cards button > svg:last-child {
  width: 14px;
  height: 14px;
  color: var(--muted);
}
.maturity-cards button span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.maturity-cards strong {
  font-size: 10px;
}
.maturity-cards small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}
.corporate-note {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}
.corporate-note svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.trade-panel {
  top: 85px;
  padding: 20px;
  border-radius: 22px;
}
.trade-heading strong {
  font-size: 17px;
}
.trade-heading small {
  font-size: 9px;
}
.trade-side {
  margin-top: 16px;
}
.soft-segmented {
  background: transparent;
}
.soft-segmented button.is-active {
  background: var(--soft-deep);
  box-shadow: none;
}
.trade-section-label,
.trade-field-label,
.amount-heading {
  color: var(--muted);
  font-size: 9px;
}
.instrument-options {
  gap: 8px;
}
.instrument-options button {
  position: relative;
  min-height: 104px;
  padding: 13px;
  grid-template-columns: minmax(0, 1fr) 14px;
  align-items: start;
  gap: 9px;
}
.instrument-options button.is-active {
  background: var(--soft);
}
.instrument-options button > span:first-child {
  display: flex;
  flex-direction: column;
}
.instrument-options strong {
  font-size: 13px;
}
.instrument-options small {
  margin-top: 5px;
  font-size: 8px;
}
.instrument-options em {
  margin-top: 11px;
  color: #55534e;
  font-size: 9px;
  font-style: normal;
  line-height: 1.35;
}
.instrument-options button > i {
  width: 12px;
  height: 12px;
  border: 1px solid #aaa8a2;
  border-radius: 50%;
}
.instrument-options button.is-active > i {
  border: 4px solid #78766f;
}
.trade-field-label {
  margin-top: 16px;
  display: block;
}
.maturity-select {
  position: relative;
  height: 48px;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
}
.maturity-select > svg {
  position: absolute;
  left: 13px;
  width: 17px;
  height: 17px;
  pointer-events: none;
}
.maturity-select select {
  width: 100%;
  height: 100%;
  padding: 0 13px 0 40px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.amount-heading {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.amount-heading small {
  font-size: 9px;
}
.trade-amount-card {
  min-height: 64px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trade-currency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 650;
}
.trade-currency i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #78b83f;
  display: grid;
  place-items: center;
  color: #17270f;
  font-size: 10px;
  font-style: normal;
}
.amount-input {
  min-width: 0;
  margin-top: 0;
  flex: 1;
}
.amount-input input {
  text-align: right;
  font-size: 21px;
}
.trade-estimate {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 11px;
}
.trade-estimate > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
}
.trade-estimate strong {
  color: #45443f;
  font-size: 9px;
  font-weight: 560;
}
.trade-estimate .estimate-main {
  min-height: 52px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr auto;
}
.estimate-main strong {
  font-size: 14px;
}
.estimate-main small {
  grid-column: 1 / -1;
  margin-top: -4px;
  color: var(--quiet);
  font-size: 8px;
}
.trade-primary {
  height: 47px;
  margin-top: 17px;
}
.trade-disclosure {
  margin-top: 13px;
  text-align: center;
}
@media (max-width: 1180px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
  }
  .asset-hero {
    min-height: 132px;
  }
  .asset-title-block .asset-name-row h1 {
    font-size: 29px;
  }
  .market-summary {
    grid-template-columns: repeat(3, 1fr);
  }
  .market-summary > div:nth-child(4) {
    border-left: 0;
  }
  .market-summary > div:nth-child(n + 4) {
    border-top: 1px solid var(--line-soft);
  }
}
@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .trade-panel {
    position: static;
  }
}
@media (max-width: 640px) {
  .market-detail-page {
    padding-top: 22px;
  }
  .asset-hero {
    min-height: auto;
  }
  .asset-title-block {
    gap: 14px;
  }
  .asset-name-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .asset-title-block .asset-name-row h1 {
    font-size: 26px;
  }
  .asset-verified {
    height: 29px;
    font-size: 9px;
  }
  .asset-price > strong {
    font-size: 25px;
  }
  .chart-section {
    margin-top: 22px;
    padding: 12px;
  }
  .chart-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .range-tabs {
    width: 100%;
  }
  .range-tabs button {
    min-width: 0;
    flex: 1;
  }
  .chart-frame {
    height: 234px;
    padding: 12px 0 29px;
  }
  .chart-frame svg {
    height: 186px;
  }
  .market-summary {
    grid-template-columns: 1fr 1fr;
  }
  .market-summary > div:nth-child(3),
  .market-summary > div:nth-child(5) {
    border-left: 0;
  }
  .market-summary > div:nth-child(n + 3) {
    border-top: 1px solid var(--line-soft);
  }
  .market-summary > div:nth-child(4) {
    border-left: 1px solid var(--line-soft);
  }
  .maturity-cards,
  .instrument-options {
    grid-template-columns: 1fr;
  }
}
.trade-panel {
  padding: 24px;
  border-radius: 24px;
}
.trade-heading strong {
  font-size: 20px;
}
.trade-heading small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.01em;
}
.trade-side {
  height: 50px;
  margin-top: 20px;
}
.trade-side button {
  height: 40px;
  font-size: 12px;
}
.trade-section-label {
  margin: 24px 0 9px;
  font-size: 10px;
}
.return-segmented {
  height: 50px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.return-segmented button {
  min-width: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #54534e;
  cursor: pointer;
  font-size: 11px;
}
.return-segmented button.is-active {
  background: var(--soft-deep);
  color: var(--text);
  font-weight: 680;
}
.trade-outcome-copy {
  min-height: 178px;
  padding-top: 25px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.trade-outcome-copy strong {
  max-width: 295px;
  font-size: 21px;
  font-weight: 480;
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.trade-outcome-copy small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
}
.trade-outcome-copy button {
  margin-top: 18px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px dotted #77756f;
  background: transparent;
  color: #4f4e49;
  cursor: pointer;
  font-size: 10px;
}
.trade-field-label {
  margin-top: 0;
  font-size: 10px;
}
.maturity-select {
  width: 100%;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: transparent;
  color: #55534e;
  gap: 11px;
  text-align: left;
}
.maturity-select > svg {
  position: static;
  flex: none;
}
.maturity-select > svg:last-child {
  margin-left: auto;
  width: 15px;
  height: 15px;
}
.maturity-select span {
  min-width: 0;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.maturity-select--disabled:disabled {
  opacity: 1;
  cursor: not-allowed;
}
.amount-heading {
  margin-top: 18px;
  font-size: 10px;
}
.trade-amount-card {
  min-height: 65px;
}
.trade-currency img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: contain;
}
.amount-input input:disabled {
  color: var(--quiet);
  -webkit-text-fill-color: var(--quiet);
  opacity: 1;
}
.trade-estimate {
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px dashed #c7c5c0;
  border-bottom: 1px dashed #c7c5c0;
  gap: 13px;
}
.trade-estimate > div {
  font-size: 9px;
}
.trade-estimate strong {
  font-size: 10px;
}
.trade-primary {
  height: 48px;
  margin-top: 17px;
  border-radius: 14px;
}
.trade-primary:disabled {
  background: #171715;
  color: #77756f;
  opacity: 1;
}
@media (max-width: 640px) {
  .trade-panel {
    padding: 20px;
  }
  .trade-outcome-copy {
    min-height: 156px;
  }
  .trade-outcome-copy strong {
    font-size: 19px;
  }
}
.topbar {
  height: auto;
  min-height: 134px;
  padding: 0;
  display: block;
}
.topbar-main,
.topbar-sub {
  width: 100%;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  display: flex;
  align-items: center;
}
.topbar-main {
  min-height: 80px;
}
.topbar-sub {
  min-height: 54px;
  border-top: 1px solid var(--line-soft);
}
.brand {
  width: auto;
  gap: 19px;
}
.brand .verona-mark {
  width: 36px;
  height: 36px;
}
.brand span {
  font-size: 19px;
  letter-spacing: 0.22em;
}
.topbar-actions {
  gap: 12px;
}
.topbar-actions .network-pill,
.topbar-actions .button,
.topbar-actions .icon-button {
  height: 42px;
}
.topbar-actions .network-pill {
  margin: 0;
  padding: 0 17px;
  display: inline-flex;
  font-size: 13px;
}
.topbar-actions .button {
  padding: 0 17px;
  font-size: 13px;
}
.button--outline {
  background: transparent;
}
.topbar-actions .icon-button {
  width: 42px;
}
.primary-nav {
  gap: 38px;
}
.primary-nav > button {
  min-height: 54px;
  height: 54px;
  padding: 0;
  font-size: 14px;
}
.primary-nav > button.is-active:after {
  left: 0;
  right: 0;
  height: 3px;
}
.stock-token-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--quiet);
  font-size: 13px;
  text-decoration: none;
}
.stock-token-link:hover {
  color: var(--text);
}
.stock-token-link svg {
  width: 17px;
  height: 17px;
}
.market-detail-page {
  padding-top: 38px;
}
.market-identity {
  width: 100%;
}
.market-breadcrumb {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 12px;
}
.market-breadcrumb button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.market-breadcrumb button:hover {
  color: var(--text);
}
.market-breadcrumb > span:nth-child(2n) {
  color: #aaa8a2;
}
.market-identity-main {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) auto auto;
  align-items: center;
  gap: 34px;
}
.market-identity-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}
.market-identity-title .company-logo--hero {
  width: 60px;
  height: 60px;
  flex: none;
}
.market-identity-title h1 {
  margin: 0;
  overflow: hidden;
  font-size: 30px;
  font-weight: 690;
  letter-spacing: -0.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.market-identity-title h1 span {
  color: var(--muted);
  font-weight: 430;
}
.market-quote {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}
.market-quote strong {
  color: #53524d;
  font-weight: 630;
}
.market-quote i,
.market-provenance i {
  color: #999791;
  font-style: normal;
}
.market-quote b {
  width: 1px;
  height: 27px;
  margin: 0 4px;
  background: var(--line);
}
.market-identity-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.market-identity-actions button,
.market-identity-actions a {
  height: 44px;
  padding: 0 17px;
  border: 1px solid #c7c5c0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #54534e;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.market-identity-actions button:hover,
.market-identity-actions a:hover {
  background: var(--soft-hover);
}
.market-identity-actions svg {
  width: 17px;
  height: 17px;
}
.market-identity-actions a > span {
  font-size: 13px;
}
.market-provenance {
  min-height: 66px;
  padding: 0 1px;
  border-top: 1px solid #cfcdc8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--quiet);
  font-size: 11px;
}
.market-provenance > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.market-provenance svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.market-provenance button {
  width: 23px;
  height: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: inherit;
  cursor: pointer;
}
.detail-layout {
  margin-top: 28px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
}
.market-summary {
  min-height: 142px;
  padding: 0;
  border-color: #cfcdc8;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  scrollbar-width: none;
}
.market-summary::-webkit-scrollbar,
.maturity-cards::-webkit-scrollbar {
  display: none;
}
.market-summary > div {
  min-width: 0;
  padding: 26px 14px;
  flex: 1 0 0;
  justify-content: flex-start;
}
.market-summary > div.is-featured {
  background: #e8e7e3b8;
}
.market-summary > div:first-child {
  border-radius: 23px 0 0 23px;
}
.market-summary > div:last-child {
  border-radius: 0 23px 23px 0;
}
.market-summary > div + div {
  border-left-color: #d8d6d1;
}
.market-summary span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  white-space: normal;
}
.market-summary span svg {
  width: 14px;
  height: 14px;
  flex: none;
}
.market-summary strong {
  margin-top: 18px;
  font-size: clamp(17px, 1.55vw, 25px);
  font-weight: 560;
  letter-spacing: -0.04em;
}
.market-summary small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}
.maturity-ladder {
  margin-top: 18px;
  padding: 16px 0 0;
  border: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 150px minmax(270px, 1fr) auto auto;
  align-items: center;
  column-gap: 12px;
}
.maturity-heading span {
  display: flex;
  flex-direction: column;
}
.maturity-heading strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.maturity-heading small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}
.maturity-cards {
  height: 58px;
  padding: 4px;
  border: 1px solid #cfcdc8;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.maturity-cards button {
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  white-space: nowrap;
}
.maturity-cards button + button {
  border-left: 1px solid #d4d2cd;
  border-radius: 0;
}
.maturity-cards button:hover,
.maturity-cards button.is-active {
  background: #e8e7e3d6;
}
.maturity-cards button.is-active {
  border-color: transparent;
  border-radius: 12px;
}
.maturity-cards strong,
.maturity-cards small {
  margin: 0;
  font-size: 12px;
  font-weight: 520;
}
.maturity-cards small {
  color: var(--muted);
}
.maturity-return {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.maturity-return strong {
  font-size: 16px;
  font-weight: 650;
}
.maturity-return span,
.maturity-details-button {
  color: var(--muted);
  font-size: 11px;
}
.maturity-details-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}
.maturity-details-button:focus-visible {
  outline: 0;
  color: var(--text);
}
.maturity-details-button span {
  margin-left: 3px;
}
.maturity-note {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.maturity-details {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 13px 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 10px;
}
.trade-panel {
  top: 154px;
}
.modal-action[href] {
  text-decoration: none;
}
@media (max-width: 1100px) {
  .market-identity-main {
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 24px;
  }
  .market-identity-actions {
    grid-column: 1 / -1;
    padding-bottom: 22px;
  }
  .maturity-ladder {
    grid-template-columns: 145px minmax(400px, 1fr);
    row-gap: 14px;
  }
  .maturity-return,
  .maturity-details-button {
    grid-row: 2;
  }
  .maturity-return {
    grid-column: 2;
  }
  .maturity-details-button {
    grid-column: 2;
    justify-self: end;
  }
  .maturity-note {
    margin-top: 12px;
  }
}
@media (max-width: 900px) {
  .topbar-main,
  .topbar-sub {
    padding-left: 24px;
    padding-right: 24px;
  }
  .topbar-actions .network-pill {
    display: none;
  }
  .market-identity-main {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
  .market-identity-actions {
    grid-column: auto;
    padding: 0;
  }
  .market-provenance {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .market-provenance > span {
    flex-wrap: wrap;
    white-space: normal;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .maturity-ladder {
    grid-template-columns: 130px minmax(400px, 1fr);
    overflow-x: auto;
  }
  .trade-panel {
    position: static;
  }
}
@media (max-width: 640px) {
  .topbar {
    min-height: 120px;
  }
  .topbar-main {
    min-height: 68px;
  }
  .topbar-sub {
    min-height: 51px;
    overflow-x: auto;
  }
  .brand {
    gap: 10px;
  }
  .brand .verona-mark {
    width: 29px;
    height: 29px;
  }
  .brand span {
    font-size: 14px;
  }
  .topbar-actions {
    gap: 7px;
  }
  .topbar-actions .button {
    height: 36px;
    min-height: 36px;
    padding: 0 11px;
    font-size: 11px;
  }
  .topbar-actions .button--outline {
    width: 36px;
    padding: 0;
    font-size: 0;
  }
  .topbar-actions .icon-button {
    display: none;
  }
  .primary-nav {
    gap: 26px;
  }
  .primary-nav > button {
    min-height: 51px;
    height: 51px;
    font-size: 12px;
  }
  .stock-token-link {
    display: none;
  }
  .market-detail-page {
    width: calc(100% - 32px);
    padding-top: 24px;
  }
  .market-breadcrumb {
    gap: 9px;
    font-size: 10px;
  }
  .market-identity-title {
    gap: 14px;
  }
  .market-identity-title .company-logo--hero {
    width: 49px;
    height: 49px;
  }
  .market-identity-title h1 {
    font-size: 25px;
  }
  .market-quote {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .market-quote b {
    display: none;
  }
  .market-identity-actions {
    gap: 8px;
  }
  .market-identity-actions button,
  .market-identity-actions a {
    height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }
  .market-identity-actions a > span {
    display: none;
  }
  .market-provenance {
    font-size: 9px;
  }
  .detail-layout {
    margin-top: 20px;
    gap: 24px;
  }
  .market-summary {
    border-radius: 18px;
  }
  .market-summary > div {
    min-width: 150px;
  }
  .market-summary {
    overflow-x: auto;
  }
  .market-summary > div:nth-child(n) {
    border-top: 0;
  }
  .maturity-ladder {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .maturity-cards {
    width: 100%;
    height: auto;
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(145px, 1fr));
  }
  .maturity-return,
  .maturity-details-button {
    grid-row: auto;
    grid-column: 1;
  }
  .maturity-details-button {
    justify-self: start;
  }
  .maturity-note {
    margin-top: 8px;
    line-height: 1.55;
  }
  .maturity-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
.topbar {
  min-height: 88px;
}
.topbar-main {
  min-height: 88px;
  padding-right: 36px;
  padding-left: 36px;
}
.topbar-main .brand {
  flex: none;
}
.topbar-main .primary-nav {
  height: 88px;
  margin-left: 46px;
  gap: 32px;
}
.topbar-main .primary-nav > button {
  height: 88px;
  min-height: 88px;
}
.topbar-main .primary-nav > button.is-active:after {
  bottom: -1px;
}
.market-detail-page {
  width: calc(100% - 72px);
  max-width: 1370px;
  padding-top: 38px;
}
.market-identity-main {
  min-height: 102px;
  grid-template-columns: auto auto minmax(260px, 1fr);
  gap: 44px;
}
.market-identity-title {
  gap: 18px;
}
.market-identity-title .company-logo--hero {
  width: 56px;
  height: 56px;
}
.market-identity-title h1 {
  font-size: 28px;
}
.market-quote {
  gap: 16px;
  font-size: 13px;
}
.market-quote b {
  display: none;
}
.market-identity-actions {
  justify-self: end;
  align-items: flex-end;
  flex-direction: column;
  gap: 15px;
}
.market-identity-actions > span {
  display: flex;
  align-items: center;
  gap: 24px;
}
.market-identity-actions button,
.market-identity-actions a {
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 11px;
}
.market-identity-actions button:hover,
.market-identity-actions a:hover {
  background: transparent;
  color: var(--text);
}
.market-identity-actions svg {
  width: 14px;
  height: 14px;
}
.market-identity-actions .market-more-button {
  width: 22px;
  height: 22px;
  justify-content: center;
}
.market-identity-actions .market-more-button svg {
  width: 20px;
  height: 20px;
}
.market-identity-actions small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--quiet);
  font-size: 10px;
  white-space: nowrap;
}
.market-identity-actions small svg {
  width: 13px;
  height: 13px;
}
.detail-layout {
  margin-top: 4px;
  grid-template-columns: minmax(0, 1fr) 326px;
  gap: 34px;
}
.market-chart-stack {
  border: 1px solid var(--line);
  border-radius: 21px;
  overflow: hidden;
}
.market-chart-stack .chart-section {
  padding: 20px 22px 8px;
  border: 0;
  border-radius: 0;
}
.market-chart-stack .chart-frame {
  height: 348px;
  padding-top: 22px;
}
.market-chart-stack .chart-frame svg {
  height: 286px;
}
.market-chart-stack .market-summary {
  min-height: 138px;
  margin-top: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}
.market-chart-stack .market-summary > div:first-child,
.market-chart-stack .market-summary > div:last-child {
  border-radius: 0;
}
.market-chart-stack .market-summary > div {
  padding: 25px 17px;
}
.market-chart-stack .market-summary strong {
  margin-top: 17px;
  font-size: clamp(20px, 1.65vw, 25px);
}
.maturity-ladder {
  margin-top: 34px;
  grid-template-columns: 145px minmax(440px, 1fr) auto auto;
  column-gap: 18px;
}
.maturity-note {
  margin-top: 28px;
}
.trade-panel {
  top: 108px;
}
@media (max-width: 1180px) {
  .topbar-main .primary-nav {
    margin-left: 30px;
    gap: 22px;
  }
  .market-detail-page {
    width: calc(100% - 48px);
  }
  .market-identity-main {
    grid-template-columns: auto 1fr;
    gap: 20px 32px;
    padding: 20px 0;
  }
  .market-identity-actions {
    grid-column: 1 / -1;
    padding: 0;
    align-items: flex-start;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
  }
  .maturity-ladder {
    grid-template-columns: 130px minmax(390px, 1fr);
  }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .market-identity-main {
    grid-template-columns: auto auto minmax(245px, 1fr);
    gap: 24px;
    padding: 0;
  }
  .market-quote {
    gap: 10px;
    font-size: 12px;
  }
  .market-identity-actions {
    grid-column: auto;
    padding: 0;
    align-items: flex-end;
  }
  .market-identity-actions > span {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .topbar-main {
    padding-right: 24px;
    padding-left: 24px;
  }
  .topbar-main .primary-nav {
    margin-left: 24px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .trade-panel {
    position: static;
  }
}
@media (max-width: 640px) {
  .topbar {
    min-height: 120px;
  }
  .topbar-main {
    min-height: 120px;
    padding: 0 16px;
    flex-wrap: wrap;
  }
  .topbar-main .primary-nav {
    order: 3;
    width: 100%;
    height: 51px;
    margin: 0;
    justify-content: space-between;
  }
  .topbar-main .primary-nav > button {
    height: 51px;
    min-height: 51px;
    flex: 1;
  }
  .market-detail-page {
    width: calc(100% - 32px);
  }
  .market-identity-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .market-identity-actions {
    grid-column: auto;
  }
  .market-identity-actions > span {
    gap: 18px;
  }
  .market-identity-actions small {
    white-space: normal;
  }
  .market-chart-stack .chart-section {
    padding: 14px 12px 6px;
  }
  .market-chart-stack .chart-frame {
    height: 240px;
    padding-top: 12px;
  }
  .market-chart-stack .chart-frame svg {
    height: 188px;
  }
  .market-chart-stack .market-summary {
    overflow-x: auto;
  }
  .market-chart-stack .market-summary > div {
    min-width: 150px;
  }
  .maturity-ladder {
    margin-top: 26px;
    grid-template-columns: 1fr;
  }
}
.mobile-market-tabs,
.mobile-market-list {
  display: none;
}
.market-filter-tabs,
.quick-tabs {
  min-width: 0;
  display: flex;
  align-items: center;
}
.market-filter-tabs {
  flex: 1;
  gap: 13px;
  overflow: hidden;
}
.quick-tabs {
  padding-right: 13px;
  border-right: 1px solid var(--line-soft);
  gap: 7px;
  flex: none;
}
.quick-tabs button {
  height: 35px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
}
.quick-tabs button:hover,
.quick-tabs button.is-active {
  background: var(--soft);
  color: var(--text);
}
.quick-tabs svg {
  width: 15px;
  height: 15px;
}
.quick-tabs button.is-active svg,
.market-favorite-button.is-active svg,
.mobile-market-card-heading button.is-active svg {
  fill: currentColor;
}
.market-filter-tabs .category-tabs {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.market-filter-tabs .category-tabs::-webkit-scrollbar {
  display: none;
}
.market-controls .control-actions {
  flex: none;
}
.market-controls .search-field {
  width: 255px;
}
.control-button > span {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--soft-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}
.filter-popover {
  width: 370px;
  padding: 19px;
}
.filter-popover > strong {
  margin-bottom: 17px;
  font-size: 14px;
}
.filter-group {
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
}
.filter-group > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 10px;
}
.filter-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.filter-popover .filter-group button {
  min-height: 31px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  text-decoration: none;
}
.filter-popover .filter-group button:hover,
.filter-popover .filter-group button.is-active {
  background: var(--soft);
  color: var(--text);
}
.filter-checkbox {
  min-height: 42px;
  border-top: 1px solid var(--line-soft);
}
.filter-actions {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-popover .filter-actions button {
  height: 34px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 10px;
  text-decoration: none;
}
.filter-popover .filter-actions button:last-child {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}
.market-result-bar {
  min-height: 48px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}
.market-result-bar > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.market-result-bar strong {
  color: var(--text);
  font-weight: 630;
}
.market-result-bar button {
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  text-decoration: underline;
}
.market-result-bar > span button {
  margin-left: 8px;
}
.market-result-bar svg {
  width: 14px;
  height: 14px;
}
.market-table {
  margin-top: 0;
}
.market-group + .market-group .market-row {
  border-top: 1px solid var(--line-soft);
}
.market-row {
  border-top: 1px solid var(--line-soft);
}
.market-group:first-of-type .market-row {
  border-top: 1px solid var(--line-soft);
}
.market-asset-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.market-favorite-button,
.market-expand-button,
.market-open-button,
.market-count-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.market-favorite-button,
.market-expand-button {
  width: 24px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--quiet);
}
.market-favorite-button:hover,
.market-favorite-button.is-active,
.market-expand-button:hover {
  color: var(--text);
}
.market-favorite-button svg,
.market-expand-button svg {
  width: 16px;
  height: 16px;
}
.market-open-button {
  min-width: 0;
  text-align: left;
}
.market-count-button {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--soft);
  color: #5d5b56;
  font-size: 10px;
}
.maturity-market-table {
  margin: 0 15px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
}
.maturity-market-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.7fr) repeat(6, minmax(86px, 1fr)) 20px;
  align-items: center;
  gap: 8px;
}
.maturity-market-header {
  min-height: 38px;
  padding: 0 16px;
  color: var(--quiet);
  font-size: 9px;
}
.maturity-market-row {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
  color: #45443f;
  cursor: pointer;
  text-align: left;
  font-size: 10px;
}
.maturity-market-row:hover {
  background: #efeeeb8a;
}
.maturity-market-row > span:first-child {
  display: flex;
  flex-direction: column;
}
.maturity-market-row strong {
  color: var(--text);
  font-size: 10px;
}
.maturity-market-row small {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 9px;
}
.maturity-market-row > svg {
  width: 15px;
  height: 15px;
}
.inactive-market-toggle {
  margin: 22px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
}
.inactive-market-toggle span {
  color: var(--text);
  text-decoration: underline;
}
@media (max-width: 1180px) {
  .market-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .market-controls .control-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .market-filter-tabs .category-tabs {
    max-width: none;
    width: auto;
  }
}
@media (max-width: 640px) {
  .markets-page .title-row {
    min-height: 76px;
    padding-top: 23px;
  }
  .mobile-market-tabs {
    height: 44px;
    display: flex;
    align-items: flex-end;
    gap: 24px;
  }
  .mobile-market-tabs button {
    height: 44px;
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
  }
  .mobile-market-tabs button.is-active {
    border-bottom-color: var(--text);
    color: var(--text);
    font-weight: 650;
  }
  .highlights.is-mobile-visible {
    margin-top: 18px;
    display: grid;
  }
  .highlights.is-mobile-visible .highlight-group {
    padding: 17px;
  }
  .market-discovery-content.is-mobile-hidden {
    display: none;
  }
  .market-controls {
    margin-top: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    gap: 14px;
  }
  .market-filter-tabs {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
    overflow: visible;
  }
  .quick-tabs {
    padding: 0;
    border: 0;
  }
  .market-filter-tabs .category-tabs {
    width: 100%;
  }
  .market-controls .control-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
  }
  .market-controls .search-field {
    width: 100%;
  }
  .control-actions .filter-wrap {
    display: block;
  }
  .control-actions .view-toggle {
    display: none;
  }
  .filter-popover {
    position: fixed;
    z-index: 120;
    top: 50%;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    transform: translateY(-50%);
  }
  .market-result-bar {
    min-height: 44px;
    padding: 0;
  }
  .market-result-bar > button {
    display: none;
  }
  .market-table,
  .market-cards {
    display: none;
  }
  .mobile-market-list {
    display: grid;
    gap: 13px;
  }
  .mobile-market-card {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: transparent;
  }
  .mobile-market-card-heading {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
  }
  .mobile-market-card-heading > span {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .mobile-market-card-heading strong {
    font-size: 13px;
  }
  .mobile-market-card-heading small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
  }
  .mobile-market-card-heading button {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    color: var(--quiet);
  }
  .mobile-market-card-heading button.is-active {
    color: var(--text);
  }
  .mobile-market-card-heading svg {
    width: 17px;
    height: 17px;
  }
  .mobile-market-card-body {
    width: 100%;
    margin-top: 17px;
    padding: 0;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 18px;
    cursor: pointer;
    text-align: left;
  }
  .mobile-market-card-body > span {
    display: flex;
    flex-direction: column;
  }
  .mobile-market-card-body small {
    color: var(--muted);
    font-size: 9px;
  }
  .mobile-market-card-body strong {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 560;
  }
  .mobile-market-card-body .mobile-market-return {
    min-height: 51px;
    padding: 11px;
    border-radius: 12px;
    background: var(--soft);
    justify-content: center;
  }
  .inactive-market-toggle {
    margin-top: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
.topbar {
  height: 52px;
  min-height: 52px;
}
.topbar-main {
  height: 52px;
  min-height: 52px;
  padding-left: 24px;
  padding-right: 14px;
}
.topbar-main .brand {
  gap: 11px;
}
.topbar-main .brand .verona-mark {
  width: 21px;
  height: 21px;
}
.topbar-main .brand span {
  font-size: 12px;
  letter-spacing: 0.2em;
}
.topbar-main .primary-nav {
  height: 52px;
  margin-left: 28px;
  gap: 2px;
}
.topbar-main .primary-nav > button {
  height: 52px;
  min-height: 52px;
  padding: 0 12px;
  font-size: 13px;
}
.topbar-main .primary-nav > button.is-active:after {
  left: 12px;
  right: 12px;
}
.topbar-actions {
  gap: 8px;
}
.topbar-search {
  width: 258px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--soft-deep);
  border-radius: 999px;
  background: var(--soft);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.topbar-search:focus-within {
  border-color: #cfcdc7;
  background: var(--soft-hover);
}
.topbar-search svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--muted);
}
.topbar-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12.5px;
}
.topbar-search input::placeholder {
  color: #97958f;
}
.topbar-actions .button {
  height: 32px;
  min-height: 32px;
  padding: 0 13px;
  font-size: 12.5px;
}
.topbar-actions .button svg {
  width: 15px;
  height: 15px;
}
.subnav {
  position: sticky;
  top: 52px;
  z-index: 45;
  height: 38px;
  border-bottom: 1px solid var(--line);
  background: #faf9f7f0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.subnav-inner {
  height: 38px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar {
  display: none;
}
.subnav-group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 3px;
}
.subnav-group button {
  height: 24px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}
.subnav-group button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.subnav-group button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.subnav-group button.is-active svg {
  fill: currentColor;
}
.subnav-group svg {
  width: 13px;
  height: 13px;
}
.subnav-divider {
  width: 1px;
  height: 15px;
  flex: none;
  background: var(--line);
}
.market-result-bar {
  min-height: 52px;
  margin-top: 20px;
}
.market-result-actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.market-result-actions > button {
  font-size: 11px;
}
.market-result-bar .control-actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.market-result-bar .control-button {
  height: 32px;
  min-width: 88px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  text-decoration: none;
}
.market-result-bar .control-button.is-active {
  border-color: var(--soft-deep);
  background: var(--soft);
  font-weight: 650;
}
.market-result-bar .view-toggle {
  width: 92px;
  height: 32px;
}
.market-result-bar .view-toggle button {
  width: 42px;
  height: 24px;
  text-decoration: none;
}
@media (max-width: 1180px) {
  .topbar-search {
    width: 208px;
  }
}
@media (max-width: 900px) {
  .topbar-main {
    padding-left: 16px;
    padding-right: 10px;
  }
  .topbar-main .primary-nav {
    margin-left: 18px;
  }
  .topbar-search {
    width: 176px;
  }
  .subnav-inner {
    padding: 0 16px;
  }
}
@media (max-width: 640px) {
  .topbar,
  .topbar-main {
    height: auto;
    min-height: 92px;
  }
  .topbar-main {
    padding: 0 12px;
    flex-wrap: wrap;
  }
  .topbar-main .brand {
    margin-right: 0;
  }
  .topbar-main .primary-nav {
    order: 3;
    width: 100%;
    height: 40px;
    margin: 0;
    justify-content: space-between;
  }
  .topbar-main .primary-nav > button {
    flex: 1;
    height: 40px;
    min-height: 40px;
    padding: 0;
    font-size: 12px;
  }
  .topbar-main .primary-nav > button.is-active:after {
    left: 8px;
    right: 8px;
  }
  .topbar-actions {
    flex: 1;
    min-width: 0;
    gap: 6px;
  }
  .topbar-search {
    width: auto;
    flex: 1;
    min-width: 0;
    margin-left: 10px;
  }
  .topbar-actions .button--outline {
    width: 32px;
    padding: 0;
    flex: none;
  }
  .topbar-actions .button--outline span {
    display: none;
  }
  .topbar-actions .button--dark {
    flex: none;
    padding: 0 11px;
  }
  .subnav {
    top: 92px;
    height: 36px;
  }
  .subnav-inner {
    height: 36px;
    padding: 0 12px;
  }
  .market-result-bar {
    margin-top: 14px;
  }
  .market-result-actions > button {
    display: none;
  }
}
.topbar-main .primary-nav {
  height: 52px;
  align-items: center;
  gap: 3px;
}
.topbar-main .primary-nav > button {
  height: 30px;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  transition: background 0.14s ease, color 0.14s ease;
}
.topbar-main .primary-nav > button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.topbar-main .primary-nav > button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.topbar-main .primary-nav > button.is-active:after {
  display: none;
}
.topbar,
.subnav {
  border-bottom: 1px solid transparent;
  background: #faf9f700;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background 0.24s ease, border-color 0.24s ease,
    backdrop-filter 0.24s ease;
}
.topbar.is-scrolled,
.subnav.is-scrolled {
  background: #faf9f7e0;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.topbar.is-scrolled {
  border-bottom-color: var(--line);
}
.topbar.is-scrolled:has(+ .subnav) {
  border-bottom-color: transparent;
}
.subnav.is-scrolled {
  border-bottom-color: var(--line);
}
.subnav-inner {
  overflow: visible;
}
.subnav-categories {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-categories::-webkit-scrollbar {
  display: none;
}
.subnav-filters {
  position: relative;
  flex: none;
  margin-left: auto;
  padding-left: 12px;
  display: flex;
  align-items: center;
}
.subnav-filters .control-button {
  height: 24px;
  min-width: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.subnav-filters .control-button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.subnav-filters .control-button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.subnav-filters .control-button svg {
  width: 14px;
  height: 14px;
}
.subnav-filters .control-button > span {
  min-width: 15px;
  height: 15px;
  background: var(--soft-deep);
  font-size: 9px;
}
.highlights {
  height: auto;
  margin-top: 4px;
  border: 0;
  border-radius: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  background: transparent;
}
.highlight-group {
  padding: 18px 20px 15px;
  border-radius: 18px;
  background: var(--soft);
}
.highlight-group + .highlight-group {
  border-left: 0;
  border-top: 0;
}
.highlight-heading {
  margin-bottom: 6px;
}
.highlight-heading button {
  padding: 0 2px;
  border-radius: 6px;
  font-size: 11.5px;
}
.highlight-heading button:hover {
  color: var(--text);
}
.highlight-row {
  height: 46px;
  padding: 5px 8px;
  margin: 0 -8px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  transition: background 0.14s ease;
}
.highlight-row:hover {
  background: #fff9;
}
.market-table {
  margin-top: 2px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.table-header {
  min-height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.market-row {
  min-height: 64px;
  padding: 0 14px;
  border-top: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  color: var(--text);
  font-size: 13px;
  transition: background 0.14s ease;
}
.market-group:first-of-type .market-row {
  border-top: 0;
}
.market-group + .market-group .market-row {
  border-top: 0;
}
.market-row:hover {
  background: var(--soft-hover);
}
.market-grid > :nth-child(n + 3):nth-child(-n + 7) {
  justify-self: end;
  text-align: right;
}
.market-row > span:nth-child(n + 3):nth-child(-n + 7) {
  font-variant-numeric: tabular-nums;
}
.market-count-button {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 10.5px;
}
.market-count-button:hover {
  background: var(--soft-deep);
  color: var(--text);
}
.market-expand-button {
  color: var(--quiet);
}
.maturity-market-table {
  margin: 2px 14px 16px;
  border: 0;
  border-radius: 16px;
  background: var(--soft);
  overflow: hidden;
}
.maturity-market-header {
  min-height: 34px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(18, 18, 16, 0.06);
  color: var(--quiet);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.maturity-market-row {
  min-height: 54px;
  padding: 0 18px;
  border-top: 1px solid rgba(18, 18, 16, 0.05);
  color: var(--text);
  font-size: 12.5px;
  transition: background 0.14s ease;
}
.maturity-market-row:first-of-type {
  border-top: 0;
}
.maturity-market-row:hover {
  background: var(--soft-hover);
}
.maturity-market-grid > :nth-child(n + 2):nth-child(-n + 7) {
  justify-self: end;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.maturity-market-row > svg {
  justify-self: end;
  color: var(--quiet);
  opacity: 0;
  transition: opacity 0.14s ease;
}
.maturity-market-row:hover > svg {
  opacity: 1;
}
.market-result-bar .view-toggle {
  width: auto;
  height: 32px;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.market-result-bar .view-toggle button {
  width: 34px;
  height: 26px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}
.market-result-bar .view-toggle svg {
  width: 15px;
  height: 15px;
  display: block;
}
.cash-amount {
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--soft);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.cash-amount-prefix {
  color: var(--muted);
  font-size: 24px;
  font-weight: 600;
}
.cash-amount input {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 38px;
  font-weight: 640;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.cash-amount input::placeholder {
  color: #bfbdb6;
}
.cash-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.cash-presets button {
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  transition: background 0.14s ease, border-color 0.14s ease;
}
.cash-presets button:hover {
  background: var(--soft-hover);
}
.cash-presets button.is-active {
  border-color: var(--soft-deep);
  background: var(--soft);
  font-weight: 650;
}
.funding-method {
  margin-top: 14px;
  border: 0;
  background: var(--soft);
}
.cash-note {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}
.button--dark:disabled {
  border-color: var(--soft-deep);
  background: var(--soft-deep);
  color: #a3a19a;
  cursor: not-allowed;
}
@media (max-width: 900px) {
  .highlights {
    grid-template-columns: 1fr;
  }
}
.table-header button,
.table-header span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}
.table-header button:hover {
  color: var(--text);
}
.table-header svg {
  width: 11px;
  height: 11px;
  color: var(--quiet);
}
.detail-layout {
  grid-template-columns: minmax(0, 1fr) 404px;
  gap: 30px;
}
.trade-panel {
  top: 68px;
}
@media (max-width: 1180px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 356px;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}
.subnav-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
}
.subnav-scroll {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-scroll::-webkit-scrollbar {
  display: none;
}
.subnav-categories {
  overflow: visible;
}
.subnav-filters {
  padding-left: 12px;
  background: linear-gradient(
    to right,
    rgba(250, 249, 247, 0),
    var(--paper) 14px
  );
}
.subnav.is-scrolled .subnav-filters {
  background: none;
}
.market-detail-page {
  padding-top: 22px;
}
.market-identity-main {
  min-height: 86px;
}
.detail-layout {
  margin-top: 0;
  gap: 26px;
}
.market-chart-stack .chart-section {
  padding: 14px 18px 6px;
}
.chart-frame {
  height: 268px;
}
.chart-frame svg {
  height: 100%;
}
.maturity-ladder {
  margin-top: 14px;
}
.trade-panel {
  padding: 18px;
}
.trade-heading {
  min-height: 0;
}
.trade-panel .soft-segmented {
  height: 42px;
  margin-top: 14px;
}
.trade-section-label {
  margin-top: 16px;
  margin-bottom: 7px;
}
.trade-outcome-copy {
  padding-top: 16px;
}
.trade-outcome-copy strong {
  font-size: 17px;
  line-height: 1.32;
}
.trade-outcome-copy small {
  margin-top: 6px;
}
.trade-outcome-copy button {
  margin-top: 8px;
}
.maturity-select {
  height: 42px;
  margin-top: 6px;
}
.amount-heading {
  margin-top: 13px;
}
.trade-amount-card {
  height: 56px;
  margin-top: 6px;
}
.trade-estimate {
  margin-top: 14px;
  padding: 12px 0;
}
.trade-primary {
  height: 44px;
  margin-top: 13px;
}
.market-detail-page ~ footer,
.app-shell > footer {
  padding-top: 14px;
  padding-bottom: 16px;
  line-height: 1.45;
}
.market-chart-stack .chart-frame {
  height: 264px;
  padding-top: 16px;
  padding-bottom: 22px;
}
.market-chart-stack .chart-frame svg {
  height: 212px;
}
.market-chart-stack .market-summary {
  min-height: 118px;
}
.trade-panel {
  padding: 16px;
}
.trade-panel .trade-heading {
  min-height: 0;
}
.trade-panel .soft-segmented {
  margin-top: 11px;
}
.trade-panel .trade-section-label {
  margin-top: 13px;
  margin-bottom: 6px;
}
.trade-panel .trade-outcome-copy {
  min-height: 0;
  padding-top: 14px;
}
.trade-panel .trade-outcome-copy strong {
  max-width: none;
  font-size: 17px;
  line-height: 1.34;
}
.trade-panel .trade-outcome-copy small {
  margin-top: 8px;
}
.trade-panel .trade-outcome-copy button {
  margin-top: 9px;
}
.trade-panel .maturity-select {
  margin-top: 5px;
}
.trade-panel .amount-heading {
  margin-top: 11px;
}
.trade-panel .trade-amount-card {
  height: 52px;
  margin-top: 5px;
}
.trade-panel .trade-estimate {
  min-height: 0;
  margin-top: 11px;
  padding: 10px 0;
}
.trade-panel .trade-primary {
  margin-top: 11px;
}
.market-detail-page footer {
  padding: 18px 0 16px;
  line-height: 1.45;
}
.market-chart-stack .chart-frame {
  height: 244px;
  padding-top: 14px;
  padding-bottom: 20px;
}
.market-chart-stack .chart-frame svg {
  height: 196px;
}
.market-chart-stack .market-summary {
  min-height: 108px;
}
.maturity-ladder {
  min-height: 0;
  margin-top: 12px;
}
.trade-panel {
  padding: 14px;
}
.trade-panel .trade-heading {
  min-height: 0;
  margin-bottom: 0;
}
.trade-panel .soft-segmented {
  height: 38px;
  margin-top: 9px;
}
.trade-panel .trade-section-label {
  margin-top: 11px;
  margin-bottom: 5px;
}
.trade-panel .trade-outcome-copy {
  padding-top: 11px;
}
.trade-panel .trade-outcome-copy strong {
  font-size: 15.5px;
  line-height: 1.32;
}
.trade-panel .trade-outcome-copy small {
  margin-top: 7px;
}
.trade-panel .trade-outcome-copy button {
  margin-top: 8px;
}
.trade-panel .maturity-select {
  height: 38px;
  margin-top: 5px;
}
.trade-panel .amount-heading {
  margin-top: 9px;
}
.trade-panel .trade-amount-card {
  height: 48px;
  margin-top: 5px;
}
.trade-panel .trade-estimate {
  margin-top: 9px;
  padding: 8px 0;
  gap: 6px;
}
.trade-panel .trade-estimate > * {
  min-height: 0;
}
.trade-panel .trade-primary {
  height: 42px;
  margin-top: 9px;
}
.market-detail-page footer {
  max-width: none;
  padding: 14px 0;
}
.market-detail-page {
  padding-top: 16px;
}
.market-detail-page .market-identity-main {
  min-height: 74px;
}
.market-detail-page footer {
  max-width: 980px;
  margin-inline: auto;
  padding: 12px 0 14px;
  display: block;
  text-align: center;
}
.market-detail-page footer {
  min-height: 0;
}
.company-logo--swap {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.market-detail-page .market-breadcrumb {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--quiet);
  font-size: 11px;
}
.market-detail-page .market-breadcrumb button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
}
.market-detail-page .market-breadcrumb button:hover {
  color: var(--text);
}
.market-identity-bar {
  position: static;
  width: 100%;
  min-height: 0;
  margin: 0 0 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.market-identity-bar .market-identity-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.market-identity-bar .market-identity-title > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.market-identity-bar h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.market-identity-bar h1 span {
  color: var(--muted);
  font-weight: 400;
}
.market-identity-bar .market-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.market-identity-bar .market-quote strong {
  color: var(--quiet);
  font-weight: 500;
}
.market-identity-bar .market-quote i {
  color: var(--line);
  font-style: normal;
}
.market-identity-side {
  flex: none;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
}
.market-maturity-chip {
  height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.14s ease;
}
.market-maturity-chip:hover {
  background: var(--soft-hover);
}
.market-maturity-chip svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}
.market-maturity-chip span {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
}
.market-maturity-chip strong {
  font-size: 13px;
  font-weight: 600;
}
.market-maturity-chip small {
  color: var(--muted);
  font-size: 10.5px;
}
.market-exposure-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--quiet);
  font-size: 10.5px;
}
.market-exposure-note svg {
  width: 13px;
  height: 13px;
}
.detail-tabs {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.detail-tabs button {
  height: 30px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12.5px;
  transition: background 0.14s ease, color 0.14s ease;
}
.detail-tabs button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.detail-tabs button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.detail-headline {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}
.detail-headline > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail-headline span {
  color: var(--muted);
  font-size: 10.5px;
}
.detail-headline strong {
  font-size: 21px;
  font-weight: 620;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.detail-headline p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
}
.market-info-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.market-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.market-info-grid > div {
  min-height: 78px;
  padding: 14px 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.market-info-grid > div:nth-child(4n) {
  border-right: 0;
}
.market-info-grid > span,
.market-info-grid > div > span {
  color: var(--muted);
  font-size: 10.5px;
}
.market-info-grid strong {
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.market-info-grid small {
  color: var(--quiet);
  font-size: 10px;
}
.market-info-provenance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--soft);
}
.market-info-provenance > div {
  min-height: 54px;
  padding: 11px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.market-info-provenance span {
  color: var(--muted);
  font-size: 10.5px;
}
.market-info-provenance strong {
  font-size: 12px;
  font-weight: 600;
}
.market-info-provenance a,
.market-info-provenance button {
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.market-info-provenance a:hover,
.market-info-provenance button:hover {
  text-decoration: underline;
}
.market-info-provenance svg {
  width: 12px;
  height: 12px;
  color: var(--muted);
}
.market-info-note {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.market-activity-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
}
.activity-empty {
  min-height: 232px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  text-align: center;
}
.activity-empty svg {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
  color: var(--quiet);
}
.activity-empty strong {
  font-size: 14px;
  font-weight: 620;
}
.activity-empty span {
  max-width: 340px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}
.trade-panel .trade-instrument {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.trade-panel .trade-instrument button {
  min-height: 50px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: transparent;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  text-align: left;
  transition: background 0.14s ease, border-color 0.14s ease;
}
.trade-panel .trade-instrument button:hover {
  background: var(--soft-hover);
}
.trade-panel .trade-instrument button.is-active {
  border-color: var(--soft-deep);
  background: var(--soft);
}
.trade-panel .trade-instrument strong {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
}
.trade-panel .trade-instrument button.is-active strong {
  font-weight: 660;
}
.trade-panel .trade-instrument small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.trade-panel .soft-segmented.trade-side {
  margin-top: 0;
  margin-bottom: 10px;
}
.swap-field {
  padding: 10px 13px 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
}
.swap-field-head {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.swap-field-head span {
  color: var(--muted);
  font-size: 10.5px;
}
.swap-field-head small {
  color: var(--quiet);
  font-size: 10px;
}
.swap-field-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.swap-token {
  flex: none;
  height: 30px;
  padding: 0 10px 0 6px;
  border-radius: 999px;
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}
.swap-token img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.swap-field-body input {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.swap-field-body input::placeholder {
  color: #bfbdb6;
}
.swap-field-body input:disabled {
  cursor: not-allowed;
}
.swap-arrow {
  height: 22px;
  display: grid;
  place-items: center;
}
.swap-arrow svg {
  width: 26px;
  height: 26px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--muted);
  transform: rotate(90deg);
}
.trade-outcome-line {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}
.trade-panel .trade-estimate {
  margin-top: 11px;
  padding: 11px 0 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trade-panel .trade-estimate > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.trade-panel .trade-estimate span {
  color: var(--muted);
  font-size: 11px;
}
.trade-panel .trade-estimate strong {
  font-size: 11.5px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.trade-panel .trade-primary {
  width: 100%;
  height: 44px;
  margin-top: 13px;
  border-radius: 13px;
}
.trade-learn {
  width: 100%;
  margin-top: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.trade-learn:hover {
  color: var(--text);
}
@media (max-width: 900px) {
  .market-identity-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .market-identity-side {
    align-items: flex-start;
  }
  .detail-headline {
    grid-template-columns: auto auto;
    gap: 20px;
  }
  .detail-headline p {
    grid-column: 1 / -1;
  }
  .market-info-grid,
  .market-info-provenance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-info-grid > div:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 640px) {
  .market-info-grid,
  .market-info-provenance {
    grid-template-columns: 1fr;
  }
  .market-info-grid > div {
    border-right: 0;
  }
}
.market-identity-bar {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.detail-tabs,
.detail-headline {
  margin-bottom: 8px;
}
.market-chart-stack .market-summary {
  min-height: 0;
}
.market-chart-stack .market-summary > * {
  padding-top: 11px;
  padding-bottom: 11px;
}
.market-detail-page .maturity-ladder {
  min-height: 0;
  margin-top: 10px;
  padding: 10px 0 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 20px;
}
.market-detail-page .maturity-heading {
  flex: none;
  min-height: 0;
  margin: 0;
  padding: 0;
}
.market-detail-page .maturity-heading > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.market-detail-page .maturity-heading strong {
  font-size: 12.5px;
}
.market-detail-page .maturity-heading small {
  color: var(--muted);
  font-size: 10.5px;
}
.market-detail-page .maturity-cards {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.market-detail-page .maturity-return {
  flex: none;
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.market-chart-stack .market-summary > div {
  padding-top: 12px;
  padding-bottom: 12px;
}
.market-chart-stack .chart-frame {
  height: 218px;
}
.market-chart-stack .chart-frame svg {
  height: 172px;
}
.trade-panel .soft-segmented.trade-side {
  height: auto;
  min-height: 0;
  padding: 3px;
  align-items: stretch;
}
.trade-panel .soft-segmented.trade-side button {
  height: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  line-height: 1;
}
.swap-arrow {
  height: 26px;
  min-height: 26px;
  margin: 4px 0;
}
.market-identity-bar .market-quote {
  height: auto;
  min-height: 0;
  line-height: 1.35;
  flex-wrap: wrap;
}
.market-identity-bar .market-quote > span {
  height: auto;
  min-height: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.market-identity-bar .market-quote i,
.market-identity-bar .market-quote b {
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  border: 0;
  background: none;
  display: inline;
  line-height: 1;
}
.market-identity-bar .market-identity-title > span {
  height: auto;
  min-height: 0;
}
.market-identity-bar h1 {
  line-height: 1.15;
}
.detail-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: transparent;
  overflow: hidden;
}
.detail-panel .detail-tabs {
  height: 44px;
  margin: 0;
  padding: 0 8px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 2px;
}
.detail-panel .detail-tabs button {
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
}
.detail-panel .market-chart-stack,
.detail-panel .market-info-panel,
.detail-panel .market-activity-panel {
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.detail-panel .detail-headline {
  margin: 0;
  padding: 13px 18px 12px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.detail-headline-metrics {
  flex: none;
  display: flex;
  align-items: flex-start;
  gap: 34px;
}
.detail-headline-metrics > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.detail-headline-metrics span {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.2;
}
.detail-headline-metrics strong {
  font-size: 22px;
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.detail-panel .detail-headline p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
  text-align: right;
}
.detail-panel .chart-section {
  padding: 10px 18px 4px;
}
.detail-panel .market-info-note {
  border-top: 1px solid var(--line-soft);
}
.market-identity-bar {
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.market-identity-bar .market-quote {
  gap: 10px;
  font-size: 12px;
}
.market-identity-bar .market-quote strong {
  margin-right: 1px;
  color: var(--quiet);
  font-weight: 500;
}
.market-detail-page .maturity-ladder {
  margin-top: 12px;
  padding: 0;
  border-top: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.market-detail-page .maturity-heading {
  flex: none;
}
.market-detail-page .maturity-cards {
  flex: none;
  display: inline-flex;
}
.market-detail-page .maturity-return {
  margin-left: auto;
  flex: none;
}
.detail-panel .detail-headline-metrics {
  flex-direction: row;
  align-items: flex-start;
}
.detail-panel .detail-headline-metrics > div {
  flex-direction: column;
}
.detail-panel .detail-headline {
  padding: 11px 18px 9px;
}
.detail-panel .chart-section {
  padding-top: 8px;
}
.market-detail-page .maturity-ladder {
  margin-top: 9px;
}
.market-detail-page {
  width: 100%;
  max-width: none;
  height: calc(100vh - 52px);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.market-detail-page .market-breadcrumb {
  flex: none;
  height: 28px;
  margin: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line-soft);
}
.market-detail-page .market-identity-bar {
  flex: none;
  min-height: 0;
  margin: 0;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
}
.market-detail-page .detail-layout {
  flex: 1;
  min-height: 0;
  margin: 0;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) 404px;
  align-items: stretch;
}
.market-detail-page .detail-main {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.market-detail-page .detail-panel {
  flex: 1;
  min-height: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.market-detail-page .market-chart-stack {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.market-detail-page .chart-section {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 18px 6px;
}
.market-detail-page .chart-frame {
  flex: 1;
  min-height: 0;
  height: auto;
  padding: 10px 62px 22px 0;
}
.market-detail-page .chart-frame svg {
  width: 100%;
  height: 100%;
}
.market-detail-page .chart-frame svg polyline,
.market-detail-page .chart-frame svg line {
  vector-effect: non-scaling-stroke;
}
.market-detail-page .market-summary {
  flex: none;
  border-top: 1px solid var(--line);
}
.market-detail-page .maturity-ladder {
  flex: none;
  margin: 0;
  padding: 0 18px;
  height: 52px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.market-detail-page .trade-panel {
  position: static;
  top: auto;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}
.market-detail-page footer {
  flex: none;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0 18px;
  height: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.market-detail-page .market-info-panel,
.market-detail-page .market-activity-panel {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .market-detail-page {
    height: auto;
    overflow: visible;
  }
  .market-detail-page .detail-layout {
    grid-template-columns: 1fr;
  }
  .market-detail-page .detail-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .market-detail-page .chart-frame {
    height: 240px;
    flex: none;
  }
  .market-detail-page .trade-panel {
    height: auto;
    overflow: visible;
    padding: 14px 16px 20px;
  }
}
.market-identity-bar {
  gap: 28px;
}
.market-identity-stats {
  flex: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 6px;
  padding-left: 28px;
  border-left: 1px solid var(--line-soft);
}
.market-identity-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.market-identity-stats span {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.2;
  white-space: nowrap;
}
.market-identity-stats strong {
  font-size: 18px;
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.market-detail-page .chart-section {
  padding: 12px 18px 6px;
}
.market-detail-page .chart-frame {
  min-height: 300px;
}
.market-detail-page .detail-main {
  overflow-y: auto;
  scrollbar-width: thin;
}
.trade-panel .trade-field-label {
  margin-top: 12px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10.5px;
}
.trade-maturity-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}
.trade-maturity-cards button {
  min-height: 42px;
  padding: 6px 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  cursor: pointer;
  transition: background 0.14s ease, border-color 0.14s ease;
}
.trade-maturity-cards button:hover {
  background: var(--soft-hover);
}
.trade-maturity-cards button.is-active {
  border-color: var(--soft-deep);
  background: var(--soft);
}
.trade-maturity-cards strong {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}
.trade-maturity-cards button.is-active strong {
  font-weight: 660;
}
.trade-maturity-cards small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
}
.trade-maturity-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
@media (max-width: 1180px) {
  .market-identity-stats {
    gap: 20px;
    padding-left: 20px;
  }
  .market-identity-stats strong {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .market-identity-stats {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .market-detail-page .detail-main {
    overflow-y: visible;
  }
  .market-detail-page .chart-frame {
    min-height: 0;
  }
}
.market-detail-page .chart-section {
  flex: 1 0 auto;
  min-height: 358px;
  overflow: hidden;
}
.market-detail-page .market-summary {
  background: var(--paper);
}
@media (max-width: 900px) {
  .market-detail-page .chart-section {
    flex: none;
    min-height: 0;
    overflow: visible;
  }
}
.page.trade-view {
  width: 100%;
  max-width: none;
  height: calc(100vh - 52px);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tv-head {
  flex: none;
  height: 66px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 26px;
}
.tv-back {
  flex: none;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12.5px;
}
.tv-back:hover {
  color: var(--text);
}
.tv-back svg {
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}
.tv-asset {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tv-asset > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.tv-asset h1 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.tv-asset h1 em {
  margin-left: 5px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}
.tv-asset small {
  color: var(--quiet);
  font-size: 11px;
}
.tv-price {
  flex: none;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 1px;
}
.tv-price strong {
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.tv-price small {
  color: var(--quiet);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.tv-body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
}
.tv-chart {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 24px 28px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.tv-lede {
  flex: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.tv-lede strong {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tv-lede span {
  color: var(--muted);
  font-size: 12.5px;
}
.trade-view .chart-section {
  flex: 1;
  min-height: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
}
.trade-view .chart-toolbar {
  position: absolute;
  top: 22px;
  right: 28px;
  min-height: 0;
  margin: 0;
  padding: 0;
}
.trade-view .chart-toolbar > span {
  display: none;
}
.trade-view .chart-frame {
  flex: 1;
  min-height: 210px;
  height: auto;
  padding: 6px 56px 20px 0;
}
.trade-view .chart-frame svg {
  width: 100%;
  height: 100%;
}
.tv-ticket {
  min-height: 0;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
}
.tv-label {
  margin: 16px 0 7px;
  color: var(--muted);
  font-size: 11px;
}
.tv-seg {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.tv-seg button {
  height: 32px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
}
.tv-seg button:hover {
  color: var(--text);
}
.tv-seg button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.tv-choice {
  display: flex;
  gap: 6px;
}
.tv-choice button {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}
.tv-choice button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.tv-choice button.is-active {
  border-color: var(--soft-deep);
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.tv-amount {
  height: 52px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tv-amount > span {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
}
.tv-amount img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.tv-amount input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tv-amount input::placeholder {
  color: #c2c0b9;
}
.tv-outcome {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}
.tv-cta {
  width: 100%;
  height: 44px;
  margin-top: auto;
  border-radius: 12px;
}
.tv-ticket .tv-cta {
  margin-top: 18px;
}
.tv-learn {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tv-learn:hover {
  color: var(--text);
}
.tv-foot {
  flex: none;
  height: 46px;
  padding: 0 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.tv-foot-stats {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 11.5px;
}
.tv-foot-stats strong {
  margin-left: 4px;
  color: var(--text);
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.tv-details-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  cursor: pointer;
  font-size: 11.5px;
}
.tv-details-toggle:hover {
  color: var(--text);
}
.tv-details-toggle svg {
  width: 14px;
  height: 14px;
}
.tv-details {
  flex: none;
  max-height: 44vh;
  padding: 0 28px 18px;
  border-top: 1px solid var(--line-soft);
  overflow-y: auto;
}
.tv-details-grid {
  padding: 16px 0 4px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
}
.tv-details-grid > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tv-details-grid span {
  color: var(--muted);
  font-size: 10.5px;
}
.tv-details-grid strong {
  font-size: 14px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.tv-details-foot {
  padding-top: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.tv-details-foot p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.tv-details-foot > span {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.tv-details-foot button,
.tv-details-foot a {
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  cursor: pointer;
  font-size: 11.5px;
  text-decoration: none;
}
.tv-details-foot button:hover,
.tv-details-foot a:hover {
  text-decoration: underline;
}
.tv-details-foot svg {
  width: 12px;
  height: 12px;
  color: var(--muted);
}
.tv-disclaimer {
  flex: none;
  height: 26px;
  margin: 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--quiet);
  font-size: 10px;
}
@media (max-width: 1100px) {
  .tv-body {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
  .tv-details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .page.trade-view {
    height: auto;
    overflow: visible;
  }
  .tv-head {
    height: auto;
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .tv-body {
    grid-template-columns: 1fr;
  }
  .tv-chart {
    padding: 18px 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trade-view .chart-toolbar {
    position: static;
    margin-bottom: 8px;
    justify-content: flex-end;
  }
  .trade-view .chart-frame {
    height: 230px;
    flex: none;
    padding-right: 46px;
  }
  .tv-ticket {
    padding: 18px 16px 22px;
    overflow: visible;
  }
  .tv-foot {
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .tv-foot-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .tv-details {
    max-height: none;
    padding: 0 16px 16px;
  }
  .tv-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tv-details-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
.trade-view .company-logo--hero {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
}
.trade-view .trade-panel {
  position: static;
  top: auto;
  height: 100%;
  min-height: 0;
  padding: 22px 24px;
  border: 0;
  border-radius: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}
.trade-view .trade-panel .trade-instrument {
  margin-bottom: 0;
}
.tv-lede strong {
  line-height: 1.12;
}
@media (max-width: 900px) {
  .trade-view .trade-panel {
    height: auto;
    overflow: visible;
    padding: 18px 16px 22px;
  }
}
.trade-view .trade-panel .trade-instrument {
  margin: 0 0 16px;
}
.trade-view .trade-panel .trade-field-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
}
.trade-view .trade-panel .trade-maturity-cards {
  margin: 0 0 16px;
  gap: 6px;
}
.trade-view .trade-panel .soft-segmented.trade-side {
  margin: 0 0 12px;
}
.trade-view .trade-panel .trade-outcome-line {
  margin: 14px 0 0;
}
.trade-view .trade-panel .trade-estimate {
  margin-top: 14px;
  padding-top: 13px;
}
.trade-view .trade-panel .trade-primary {
  margin-top: 16px;
}
.trade-view .trade-panel .trade-learn {
  margin-top: 10px;
}
.trade-view .trade-maturity-cards button {
  min-height: 48px;
  padding: 7px 4px;
  border-radius: 12px;
  gap: 3px;
}
.trade-view .trade-maturity-cards strong {
  font-size: 13px;
  font-weight: 620;
  letter-spacing: -0.01em;
}
.trade-view .trade-maturity-cards small {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.trade-view .trade-maturity-cards button.is-active small {
  color: var(--text);
}
.trade-view .trade-panel {
  padding: 18px 20px 20px;
}
.trade-view .trade-panel .trade-instrument button {
  min-height: 44px;
  padding: 7px 11px;
}
.trade-view .trade-maturity-cards button {
  min-height: 44px;
  padding: 6px 4px;
}
.trade-view .trade-panel .swap-field {
  padding: 8px 12px 9px;
}
.trade-view .trade-panel .swap-field-head {
  margin-bottom: 4px;
}
.trade-view .trade-panel .swap-field-body input {
  font-size: 18px;
}
.trade-view .trade-panel .swap-token {
  height: 28px;
}
.trade-view .trade-panel .trade-estimate {
  margin-top: 12px;
  padding-top: 11px;
  gap: 5px;
}
.trade-view .trade-panel .trade-outcome-line {
  margin-top: 12px;
  font-size: 12.5px;
}
.trade-view .trade-panel .trade-primary {
  margin-top: 14px;
  height: 42px;
}
.trade-view .trade-panel .trade-learn {
  margin-top: 9px;
  padding-bottom: 2px;
}
.page.trade-view {
  display: flex;
  flex-direction: column;
}
.trade-view .tv-body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
}
.trade-view .tv-chart {
  min-width: 0;
  min-height: 0;
  padding: 0 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
}
.trade-view .tv-head {
  flex: none;
  height: auto;
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.trade-view .tv-asset {
  flex: none;
  gap: 13px;
}
.trade-view .tv-asset h1 {
  font-size: 21px;
}
.trade-view .tv-price {
  align-items: flex-end;
}
.trade-view .tv-price strong {
  font-size: 22px;
}
.trade-view .tv-lede {
  flex: none;
  padding: 20px 0 4px;
  margin: 0;
}
.trade-view .tv-lede strong {
  font-size: 36px;
  line-height: 1.12;
}
.trade-view .chart-section {
  flex: 1 0 auto;
  min-height: 288px;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
}
.trade-view .chart-frame {
  order: 1;
  flex: 1;
  min-height: 240px;
  height: auto;
  padding: 10px 58px 22px 0;
}
.trade-view .chart-toolbar {
  order: 2;
  position: static;
  min-height: 0;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
}
.trade-view .chart-area {
  fill: url(#tvFill);
  stroke: none;
}
.trade-view .chart-frame svg polyline {
  stroke: var(--text);
  stroke-width: 1.6;
  fill: none;
}
.trade-view .chart-frame svg line {
  stroke: var(--line-soft);
  stroke-dasharray: 2 5;
}
.trade-view .chart-frame svg polyline,
.trade-view .chart-frame svg line {
  vector-effect: non-scaling-stroke;
}
.trade-view .tv-foot {
  flex: none;
  height: 48px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.tv-select {
  position: relative;
  margin-bottom: 16px;
}
.tv-select-btn {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  transition: background 0.14s ease, border-color 0.14s ease;
}
.tv-select-btn:hover {
  background: var(--soft-hover);
}
.tv-select-btn.is-open {
  border-color: var(--soft-deep);
  background: var(--soft);
}
.tv-select-btn > span {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}
.tv-select-btn strong {
  font-size: 13px;
  font-weight: 620;
  line-height: 1.15;
}
.tv-select-btn small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}
.tv-select-btn svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--muted);
  transition: transform 0.16s ease;
}
.tv-select-btn.is-open svg {
  transform: rotate(180deg);
}
.tv-select-scrim {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tv-select-menu {
  position: absolute;
  z-index: 61;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 18px 44px #12121024;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tv-select-menu button {
  width: 100%;
  min-height: 44px;
  padding: 7px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}
.tv-select-menu button:hover {
  background: var(--soft-hover);
}
.tv-select-menu button.is-active {
  background: var(--soft);
}
.tv-select-menu span {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
}
.tv-select-menu strong {
  font-size: 12.5px;
  font-weight: 600;
}
.tv-select-menu small {
  color: var(--muted);
  font-size: 10.5px;
}
.tv-select-menu em {
  flex: none;
  color: var(--text);
  font-style: normal;
  font-size: 12.5px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.trade-view .tv-details {
  flex: none;
  max-height: none;
  padding: 18px 0 24px;
  border-top: 0;
  overflow: visible;
}
.tv-details-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 34px;
}
.tv-details-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}
.tv-details-list > div {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.tv-details-list dt {
  color: var(--muted);
  font-size: 11.5px;
}
.tv-details-list dd {
  margin: 0;
  font-size: 12.5px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.tv-details-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tv-details-meta > div {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.tv-details-meta dt {
  color: var(--muted);
  font-size: 11.5px;
}
.tv-details-meta dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.tv-details-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tv-details-links button,
.tv-details-links a {
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  cursor: pointer;
  font-size: 11.5px;
  text-decoration: none;
}
.tv-details-links button:hover,
.tv-details-links a:hover {
  text-decoration: underline;
}
.tv-details-links svg {
  width: 12px;
  height: 12px;
  color: var(--muted);
}
.tv-details-side p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.trade-view .tv-head {
  padding: 11px 0;
  gap: 18px;
}
.trade-view .tv-asset {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trade-view .company-logo--hero {
  width: 26px;
  height: 26px;
}
.trade-view .tv-asset h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
.trade-view .tv-asset h1 em {
  margin-left: 4px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}
.trade-view .tv-asset small {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--quiet);
  font-size: 11px;
  white-space: nowrap;
}
.trade-view .tv-price {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: baseline;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
}
.trade-view .tv-price strong {
  font-size: 18px;
  line-height: 1.2;
}
.trade-view .tv-price small {
  color: var(--quiet);
  font-size: 11px;
  white-space: nowrap;
}
.tv-head-actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tv-head-actions button,
.tv-head-actions a {
  height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 11.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease;
}
.tv-head-actions button:hover,
.tv-head-actions a:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.tv-head-actions svg {
  width: 13px;
  height: 13px;
  flex: none;
}
.tv-head-actions a svg:last-child {
  width: 11px;
  height: 11px;
  margin-left: -2px;
  color: var(--quiet);
}
.trade-view .trade-panel .soft-segmented.trade-side {
  margin: 0 0 18px;
  padding: 3px;
}
.trade-view .trade-panel .soft-segmented.trade-side button {
  height: 38px;
  min-height: 38px;
  font-size: 13.5px;
}
.trade-view .trade-panel .soft-segmented.trade-what {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.trade-view .trade-panel .soft-segmented.trade-what button {
  height: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trade-view .trade-panel .soft-segmented.trade-what button:hover {
  color: var(--text);
}
.trade-view .trade-panel .soft-segmented.trade-what button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
  box-shadow: none;
}
.trade-choice-copy {
  margin: 10px 2px 18px;
}
.trade-choice-copy small {
  color: var(--quiet);
  font-size: 10.5px;
  letter-spacing: 0.02em;
}
.trade-choice-copy p {
  margin: 3px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}
.trade-maturity-row {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.trade-maturity-row > span {
  flex: none;
  color: var(--muted);
  font-size: 12px;
}
.trade-maturity-row .tv-select {
  flex: 1;
  min-width: 0;
  max-width: 210px;
  margin: 0;
}
.trade-maturity-row .tv-select-btn {
  height: 38px;
  padding: 0 11px;
  border-radius: 10px;
}
.trade-maturity-row .tv-select-btn strong {
  font-size: 12.5px;
}
.trade-view .trade-panel .swap-field--lg {
  padding: 12px 14px 13px;
  border-radius: 14px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-head {
  margin-bottom: 8px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-head span {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}
.trade-view .trade-panel .swap-field--lg .swap-token {
  height: 34px;
  padding: 0 12px 0 7px;
  font-size: 13.5px;
}
.trade-view .trade-panel .swap-field--lg .swap-token img,
.trade-view .trade-panel .swap-field--lg .company-logo--swap {
  width: 22px;
  height: 22px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-body input {
  font-size: 26px;
}
.trade-view .trade-panel .trade-estimate {
  margin-top: 16px;
  padding-top: 12px;
  gap: 6px;
}
.trade-view .tradingview-chart-frame {
  padding: 0;
  overflow: hidden;
}
.trade-view .tradingview-chart {
  width: 100%;
  height: 100%;
  min-height: 240px;
}
.tv-market-switcher {
  position: relative;
  min-width: 0;
}
.tv-market-button {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.tv-market-button > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tv-market-button strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.tv-market-button small {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--quiet);
  font-size: 11px;
  white-space: nowrap;
}
.tv-market-button > svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--muted);
}
.tv-market-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  width: 330px;
  max-height: 420px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 18px 45px #1e1c1824;
  overflow-y: auto;
}
.tv-market-menu button {
  width: 100%;
  min-height: 48px;
  padding: 7px 9px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.tv-market-menu button:hover,
.tv-market-menu button.is-active {
  background: var(--soft);
}
.tv-market-menu button > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tv-market-menu button strong,
.tv-market-menu button small,
.tv-market-menu button b {
  white-space: nowrap;
}
.tv-market-menu button strong,
.tv-market-menu button b {
  font-size: 12px;
  font-weight: 620;
}
.tv-market-menu button small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10.5px;
  text-overflow: ellipsis;
}
.trade-view .chart-section {
  position: relative;
}
.trade-view .chart-toolbar {
  order: 0;
  position: relative;
  z-index: 20;
  min-height: 42px;
  margin: 0;
  padding: 4px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  overflow: visible;
}
.trade-view .chart-toolbar .range-tabs {
  flex: none;
  padding: 0;
  border: 0;
  background: transparent;
}
.trade-view .chart-toolbar .range-tabs button {
  min-width: 35px;
  height: 32px;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 11px;
}
.chart-toolbar-divider {
  width: 1px;
  height: 22px;
  margin: 0 4px;
  background: var(--line);
}
.chart-tool-menu {
  position: relative;
  flex: none;
}
.chart-tool-button {
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  white-space: nowrap;
}
.chart-tool-button:hover,
.chart-tool-button.is-active {
  background: var(--soft);
  color: var(--text);
}
.chart-tool-button svg {
  width: 14px;
  height: 14px;
  flex: none;
}
.chart-tool-button svg:last-child:not(:first-child) {
  width: 11px;
  height: 11px;
}
.chart-reset-button {
  margin-left: auto;
}
.chart-tool-popover {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  min-width: 150px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 16px 38px #1e1c1824;
}
.chart-tool-popover--wide {
  min-width: 210px;
}
.chart-tool-popover--markets {
  width: 240px;
  max-height: 320px;
  overflow-y: auto;
}
.chart-tool-popover button {
  width: 100%;
  min-height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  text-align: left;
}
.chart-tool-popover button:hover,
.chart-tool-popover button.is-active {
  background: var(--soft);
}
.trade-view .tradingview-chart-frame {
  order: 1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
}
.trade-view .tradingview-chart {
  grid-column: 2;
}
.chart-tool-rail {
  grid-column: 1;
  grid-row: 1;
  z-index: 5;
  padding: 7px 4px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.chart-tool-rail button {
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--muted);
  cursor: pointer;
}
.chart-tool-rail button:hover,
.chart-tool-rail button.is-active {
  background: var(--soft);
  color: var(--text);
}
.chart-tool-rail svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 980px) {
  .trade-view .chart-toolbar {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .trade-view .chart-toolbar::-webkit-scrollbar {
    display: none;
  }
  .chart-reset-button {
    margin-left: 0;
  }
  .tv-market-button small {
    display: none;
  }
}
.trade-view .trade-panel .tv-seg {
  height: auto;
  min-height: 0;
  margin: 0;
}
.trade-view .trade-panel .tv-seg--primary button {
  height: 38px;
  font-size: 13.5px;
}
.trade-view .trade-panel .trade-estimate div:first-child strong {
  font-variant-numeric: tabular-nums;
}
.trade-view .tv-chart {
  padding: 0;
  overflow: hidden;
}
.trade-view .tv-head {
  height: 72px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 1px #1e1c1806;
  position: relative;
  z-index: 30;
}
.tv-head-quote {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-variant-numeric: tabular-nums;
}
.tv-head-quote strong {
  font-size: 18px;
  font-weight: 620;
}
.tv-head-quote span {
  font-size: 11px;
  font-weight: 600;
}
.tv-head-quote .positive {
  color: #5a9d3d;
}
.tv-head-quote .negative {
  color: #b24c43;
}
.trade-view .market-price-chart-section {
  flex: 1 1 0;
  min-height: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.market-chart-toolbar {
  flex: 0 0 44px;
  min-width: 0;
  padding: 0 16px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
}
.market-chart-symbol {
  margin-right: 10px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.market-chart-ranges,
.market-chart-style {
  display: flex;
  align-items: center;
  gap: 2px;
}
.market-chart-ranges button,
.market-chart-style button,
.market-chart-indicator {
  height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}
.market-chart-ranges button:hover,
.market-chart-ranges button.is-active,
.market-chart-style button:hover,
.market-chart-style button.is-active,
.market-chart-indicator:hover {
  background: var(--soft);
  color: var(--text);
}
.market-chart-divider {
  width: 1px;
  height: 20px;
  margin: 0 4px;
  background: var(--line);
}
.market-chart-indicator {
  margin-left: 2px;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.market-price-chart {
  flex: 1;
  min-height: 0;
  width: 100%;
}
.trade-view .tv-foot {
  padding: 0 24px;
}
@media (max-width: 980px) {
  .trade-view .market-price-chart-section {
    flex: 0 0 460px;
    min-height: 460px;
  }
  .market-chart-toolbar {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .market-chart-toolbar::-webkit-scrollbar {
    display: none;
  }
}
.hashvatar {
  display: block;
  flex: none;
  border-radius: 50%;
}
.topbar-actions .wallet-pill {
  padding: 0 13px 0 8px;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.topbar-actions .wallet-pill:hover {
  background: var(--soft-hover);
}
.topbar-search kbd {
  flex: none;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border: 1px solid var(--line);
  border-radius: 5px;
  display: inline-grid;
  place-items: center;
  color: var(--quiet);
  font-family: inherit;
  font-size: 10px;
  line-height: 1;
  background: var(--paper);
}
.topbar-search > span {
  flex: 1;
  min-width: 0;
  color: #97958f;
  font-size: 12.5px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
button.topbar-search {
  cursor: pointer;
}
.wallet-provider-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  object-fit: contain;
}
.wallet-empty {
  padding: 26px 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.wallet-empty svg {
  width: 20px;
  height: 20px;
  color: var(--quiet);
}
.wallet-empty strong {
  font-size: 13px;
}
.wallet-empty small {
  max-width: 280px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.deposit-overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #0f121842;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.deposit-overlay.is-open {
  opacity: 1;
}
.deposit-overlay.is-closing {
  opacity: 0;
  transition-duration: 0.15s;
}
.deposit-modal {
  box-sizing: border-box;
  width: min(426px, calc(100vw - 24px));
  max-height: min(760px, calc(100dvh - 24px));
  padding: 26px 28px 28px;
  overflow: auto;
  border: 1px solid rgba(20, 20, 22, 0.08);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 24px 68px #0f12182e;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.deposit-modal.is-open {
  opacity: 1;
  transform: scale(1);
}
.deposit-modal.is-closing {
  opacity: 0;
  transform: scale(0.985);
  transition-duration: 0.15s;
}
.deposit-header {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deposit-header strong {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
}
.deposit-header button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--muted);
  cursor: pointer;
}
.deposit-header button svg {
  width: 17px;
  height: 17px;
}
.deposit-qr {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}
.deposit-qr-canvas,
.deposit-qr-canvas > svg,
.deposit-qr-canvas > canvas {
  width: 220px !important;
  height: 220px !important;
}
.deposit-qr-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #1212100b 25%, #12121016, #1212100b 75%);
  background-size: 200% 100%;
  animation: deposit-shimmer 1.35s linear infinite;
}
.deposit-caption {
  margin: 10px 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}
.deposit-address-block > small {
  display: block;
  margin: 0 0 7px 2px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 550;
}
.deposit-address {
  min-height: 48px;
  padding: 6px 6px 6px 12px;
  border-radius: 13px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.deposit-address code {
  min-width: 0;
  overflow: hidden;
  color: #45443f;
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.005em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.deposit-address button {
  width: 28px;
  height: 28px;
  flex: none;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--muted);
  cursor: pointer;
}
.deposit-address button:hover {
  color: var(--text);
}
.deposit-address svg {
  width: 16px;
  height: 16px;
}
.deposit-check {
  width: 100%;
  height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  background: #121210;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #faf9f7;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 620;
}
.deposit-check:disabled {
  background: var(--soft-deep);
  color: #a3a19a;
  cursor: not-allowed;
}
.deposit-notice {
  margin: 12px 0 0;
  font-size: 11.5px;
  line-height: 1.45;
  text-align: center;
}
.deposit-notice.is-success {
  color: var(--green);
}
.deposit-notice.is-error {
  color: #8a5a3a;
}
.deposit-network {
  margin: 13px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--quiet);
  font-size: 10px;
}
.deposit-network img {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
@keyframes deposit-shimmer {
  to {
    background-position: -200% 0;
  }
}
.market-search-overlay {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #1414146b;
  animation: market-search-fade 0.18s ease both;
}
.market-search-modal {
  display: flex;
  width: min(648px, calc(100vw - 36px));
  max-height: calc(100dvh - 48px);
  flex-direction: column;
  overflow: hidden;
  padding: 26px 22px 22px;
  border: 1px solid rgba(20, 20, 20, 0.05);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: 0 18px 56px #1414141f;
  transform-origin: center;
  animation: market-search-rise 0.2s ease both;
}
.market-search-field {
  display: grid;
  height: 56px;
  grid-template-columns: 22px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 17px;
  border-radius: 999px;
  background: var(--soft);
}
.market-search-field > svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}
.market-search-field input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
}
.market-search-field input::placeholder {
  color: #97958f;
}
.market-search-field button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.market-search-field button:hover {
  background: #1212100f;
  color: var(--text);
}
.market-search-field button svg {
  width: 17px;
  height: 17px;
}
.market-search-filter {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 7px 2px;
}
.market-search-filter > label {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 500;
}
.market-search-filter-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.market-search-filter-control select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 32px;
  min-width: 112px;
  padding: 0 31px 0 13px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background: var(--soft);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
}
.market-search-filter-control svg {
  position: absolute;
  right: 11px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  color: var(--muted);
}
.market-search-results {
  display: flex;
  min-height: 0;
  max-height: min(540px, calc(100dvh - 210px));
  flex: 1 1 auto;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(18, 18, 16, 0.16) transparent;
  scrollbar-width: thin;
}
.market-search-results:has(.market-search-skeleton) {
  min-height: min(390px, calc(100dvh - 210px));
}
.market-search-skeleton {
  display: grid;
  min-height: 68px;
  grid-template-columns: 46px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 15px;
}
.market-search-skeleton-thumb,
.market-search-skeleton-copy i,
.market-search-skeleton-value {
  background: linear-gradient(90deg, #1212100b 25%, #12121016, #1212100b 75%);
  background-size: 200% 100%;
  animation: deposit-shimmer 1.35s linear infinite;
}
.market-search-skeleton-thumb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.market-search-skeleton-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}
.market-search-skeleton-copy i {
  display: block;
  width: min(290px, 82%);
  height: 12px;
  border-radius: 5px;
}
.market-search-skeleton-copy i:last-child {
  width: 84px;
  height: 9px;
  opacity: 0.72;
}
.market-search-skeleton-value {
  justify-self: end;
  width: 34px;
  height: 14px;
  border-radius: 5px;
}
.market-search-result {
  display: grid;
  min-height: 68px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  transition: background-color 0.12s ease;
}
.market-search-result:hover,
.market-search-result.is-featured {
  background: var(--soft);
}
.market-search-result.is-featured:hover {
  background: var(--soft-deep);
}
.market-search-thumb {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
}
.market-search-thumb img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.market-search-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}
.market-search-copy strong {
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.market-search-copy small {
  color: var(--muted);
  font-size: 11px;
}
.market-search-probability {
  font-size: 14px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.market-search-empty {
  padding: 72px 0;
  color: var(--quiet);
  font-size: 12.5px;
  text-align: center;
}
@keyframes market-search-fade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes market-search-rise {
  0% {
    opacity: 0;
    transform: scale(0.97) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.trade-view .tv-head {
  min-height: 0;
  padding: 8px 0;
  gap: 26px;
  justify-content: flex-start;
}
.tv-market-switcher {
  position: relative;
  flex: none;
}
.tv-market-button {
  height: 36px;
  padding: 0 10px 0 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.14s ease;
}
.tv-market-button:hover,
.tv-market-button[aria-expanded="true"] {
  background: var(--soft);
}
.tv-market-button .company-logo--hero {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.tv-market-button > span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tv-market-button strong {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.tv-market-button strong em {
  margin-left: 4px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}
.tv-market-button > svg {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--muted);
  transition: transform 0.16s ease;
}
.tv-market-button[aria-expanded="true"] > svg {
  transform: rotate(180deg);
}
.tv-market-menu {
  position: absolute;
  z-index: 70;
  top: calc(100% + 8px);
  left: 0;
  width: 288px;
  max-height: 372px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 20px 48px #12121024;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  scrollbar-width: thin;
  animation: market-search-rise 0.16s ease both;
}
.tv-market-menu button {
  display: grid;
  min-height: 46px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 6px 9px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.12s ease;
}
.tv-market-menu button:hover {
  background: var(--soft-hover);
}
.tv-market-menu button.is-active {
  background: var(--soft);
}
.tv-market-menu .company-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.tv-market-menu span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}
.tv-market-menu strong {
  font-size: 12.5px;
  font-weight: 620;
}
.tv-market-menu small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tv-market-menu b {
  font-size: 12px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.tv-head-stats {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.tv-head-stats > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.tv-head-stats span {
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}
.tv-head-stats strong {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.tv-head-stats em {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}
.tv-head-stats .positive {
  color: var(--green);
}
.tv-head-stats .negative {
  color: #b3574d;
}
.market-price-chart-section {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: 8px 0 0;
  border: 0;
  display: flex;
  flex-direction: column;
}
.market-price-chart {
  flex: 1;
  min-height: 220px;
}
.chart-range-pill {
  flex: none;
  align-self: flex-start;
  margin: 10px 0 14px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 2px;
}
.chart-range-pill button {
  min-width: 40px;
  height: 26px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 11.5px;
  transition: background 0.13s ease, color 0.13s ease;
}
.chart-range-pill button:hover {
  color: var(--text);
}
.chart-range-pill button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.tv-about {
  flex: none;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line-soft);
}
.tv-about-head {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.tv-about-head strong {
  font-size: 13px;
  font-weight: 650;
}
.tv-about-head a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}
.tv-about-head a:hover {
  color: var(--text);
  text-decoration: underline;
}
.tv-about-head svg {
  width: 11px;
  height: 11px;
}
.tv-about p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.tv-about p.is-open {
  display: block;
  -webkit-line-clamp: none;
}
.tv-about button {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.market-price-cell {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.market-price-cell em {
  font-size: 10.5px;
  font-style: normal;
  font-weight: 600;
}
.market-price-cell .positive {
  color: var(--green);
}
.market-price-cell .negative {
  color: #b3574d;
}
.market-chart-toolbar {
  display: none;
}
.trade-view .tv-chart {
  padding: 0 24px;
}
.trade-view .tv-head {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.tv-about {
  padding-bottom: 16px;
}
.markets-page {
  padding-top: 26px;
}
.discovery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.discovery-strip > button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background: var(--soft);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.14s ease;
}
.discovery-strip > button:hover {
  background: var(--soft-deep);
}
.discovery-label {
  flex: 1;
  min-width: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.3;
}
.discovery-asset {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.discovery-asset .company-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.discovery-asset strong {
  font-size: 13px;
  font-weight: 650;
}
.discovery-asset small {
  display: none;
}
.discovery-value {
  flex: none;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.market-table--lean .market-grid {
  grid-template-columns: minmax(220px, 1.8fr) minmax(150px, 1fr) 112px minmax(
      100px,
      0.7fr
    ) minmax(100px, 0.7fr) 24px;
  gap: 12px;
}
.market-table--lean .table-header {
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.market-table--lean .table-header button,
.market-table--lean .table-header span {
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}
.market-table--lean .market-row {
  min-height: 66px;
  font-size: 13px;
}
.market-table--lean .market-grid > :nth-child(n + 2):nth-child(-n + 5) {
  justify-self: end;
  text-align: right;
}
.market-table--lean .market-grid > .sparkline {
  justify-self: center;
}
.market-table--lean .asset-cell small {
  color: var(--muted);
  font-size: 11px;
}
.sparkline {
  width: 96px;
  height: 30px;
  display: block;
}
.sparkline polyline {
  fill: none;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.sparkline.is-up polyline {
  stroke: var(--green);
}
.sparkline.is-down polyline {
  stroke: #b3574d;
}
.market-price-cell {
  font-variant-numeric: tabular-nums;
}
.discovery-strip > button {
  min-height: 64px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  gap: 11px;
}
.discovery-strip > button:hover {
  background: var(--soft-hover);
}
.discovery-strip .company-logo {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
}
.discovery-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.discovery-copy > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.discovery-copy strong {
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.discovery-copy .discovery-value {
  font-size: 14px;
  font-weight: 620;
  font-style: normal;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.discovery-copy small {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.markets-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 4px;
}
.markets-head h2 {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.015em;
}
.markets-clear {
  flex: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11.5px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.markets-clear:hover {
  color: var(--text);
}
.markets-sort {
  position: relative;
  flex: none;
}
.markets-sort > button {
  height: 30px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  transition: background 0.13s ease, color 0.13s ease;
}
.markets-sort > button:hover,
.markets-sort > button.is-open {
  background: var(--soft);
  color: var(--text);
}
.markets-sort svg {
  width: 13px;
  height: 13px;
}
.markets-sort-menu {
  position: absolute;
  z-index: 61;
  top: calc(100% + 6px);
  right: 0;
  width: 168px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  box-shadow: 0 16px 40px #12121021;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: market-search-rise 0.15s ease both;
}
.markets-sort-menu button {
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  text-align: left;
}
.markets-sort-menu button:hover {
  background: var(--soft-hover);
}
.markets-sort-menu button.is-active {
  background: var(--soft);
  font-weight: 650;
}
.market-table--lean {
  border-top: 1px solid var(--line-soft);
}
.market-table--lean .market-grid {
  grid-template-columns: minmax(240px, 1.7fr) minmax(96px, 110px) minmax(
      130px,
      1fr
    ) auto 24px;
  gap: 18px;
}
.market-table--lean .market-row {
  min-height: 74px;
}
.market-table--lean .market-grid > :nth-child(n + 2):nth-child(-n + 5) {
  justify-self: unset;
  text-align: unset;
}
.market-table--lean .market-grid > .sparkline {
  justify-self: end;
}
.market-table--lean .asset-cell .company-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.market-table--lean .asset-cell strong {
  font-size: 14px;
  font-weight: 620;
  letter-spacing: -0.015em;
}
.market-table--lean .asset-cell small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11.5px;
}
.market-table--lean .market-price-cell {
  justify-self: end;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 2px;
}
.market-table--lean .market-price-cell strong {
  font-size: 14px;
  font-weight: 620;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.market-table--lean .market-price-cell em {
  font-size: 11px;
  font-style: normal;
  font-weight: 550;
}
.market-return-pill {
  justify-self: end;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--soft);
  display: inline-flex;
  align-items: baseline;
  align-self: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 30px;
  font-variant-numeric: tabular-nums;
}
.market-return-pill small {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
}
.market-favorite-button {
  opacity: 0;
  transition: opacity 0.13s ease;
}
.market-row:hover .market-favorite-button,
.market-favorite-button.is-active {
  opacity: 1;
}
.market-table--lean {
  border-top: 0;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.market-table--lean .market-group {
  border: 0;
}
.market-table--lean .market-row {
  min-height: 74px;
  padding: 10px 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  transition: background-color 0.13s ease;
}
.market-table--lean .market-group + .market-group .market-row,
.market-table--lean .market-group:first-of-type .market-row {
  border-top: 0;
  border-bottom: 0;
}
.market-table--lean .market-row:hover {
  background: var(--soft-hover);
}
.market-table--lean .market-row em {
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 11px;
}
.market-table--lean .maturity-market-table {
  margin: 2px 6px 10px;
}
.discovery-strip {
  margin-bottom: 10px;
}
.discovery-strip > button {
  border-radius: 16px;
}
.markets-head {
  margin: 20px 10px 2px 16px;
}
.company-logo--sm {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.discovery-strip {
  margin-bottom: 14px;
  gap: 10px;
}
.discovery-strip > button {
  min-height: 0;
  padding: 14px 16px 13px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}
.discovery-strip .discovery-label {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}
.discovery-strip .discovery-value {
  margin: 1px 0 4px;
  font-size: 21px;
  font-weight: 640;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.discovery-strip .discovery-asset {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
}
.discovery-strip .discovery-asset strong {
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0;
}
.discovery-strip .discovery-asset small {
  color: var(--quiet);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.discovery-strip .discovery-asset small {
  flex: 1;
  min-width: 0;
}
.discovery-strip .discovery-asset {
  width: 100%;
}
.discovery-strip .discovery-asset small {
  display: block;
}
.maturity-list {
  margin: 0 6px 8px;
  padding: 5px;
  border-radius: 16px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.maturity-row {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(150px, 1.1fr) minmax(120px, 1fr) minmax(
      150px,
      1fr
    ) auto 16px;
  align-items: center;
  gap: 18px;
  padding: 8px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background-color 0.12s ease;
}
.maturity-row:hover {
  background: #ffffffa6;
}
.maturity-when {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.maturity-when strong {
  font-size: 13px;
  font-weight: 620;
  letter-spacing: -0.01em;
}
.maturity-when small {
  color: var(--muted);
  font-size: 11px;
}
.maturity-split,
.maturity-liquidity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.maturity-split small,
.maturity-liquidity small {
  color: var(--muted);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.maturity-row .market-return-pill {
  background: var(--paper);
}
.maturity-row > svg {
  width: 15px;
  height: 15px;
  justify-self: end;
  color: var(--quiet);
  opacity: 0;
  transition: opacity 0.12s ease;
}
.maturity-row:hover > svg {
  opacity: 1;
}
.company-logo {
  background: #fff;
  box-shadow: inset 0 0 0 1px #1212100f;
  object-fit: contain;
}
.trade-view .tv-head {
  padding: 12px 0;
  gap: 22px;
}
.tv-market-button {
  height: 52px;
  padding: 0 12px 0 8px;
  border-radius: 14px;
  gap: 11px;
}
.tv-market-button .company-logo--hero {
  width: 32px;
  height: 32px;
}
.tv-market-button > span {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}
.tv-market-button strong {
  font-size: 15.5px;
  letter-spacing: -0.015em;
}
.tv-market-button small {
  display: block;
  color: var(--quiet);
  font-size: 10.5px;
}
.tv-market-button > svg {
  width: 15px;
  height: 15px;
}
.tv-market-menu {
  width: 336px;
  max-height: 420px;
  top: calc(100% + 6px);
}
.tv-market-menu button {
  min-height: 52px;
  grid-template-columns: 32px minmax(0, 1fr) auto;
}
.tv-market-menu .company-logo {
  width: 32px;
  height: 32px;
}
.tv-market-menu b {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 1px;
  font-variant-numeric: tabular-nums;
}
.tv-market-menu b em {
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}
.tv-market-menu .positive {
  color: var(--green);
}
.tv-market-menu .negative {
  color: #b3574d;
}
.tv-tabs {
  flex: none;
  margin: 10px 0 2px;
  display: flex;
  gap: 3px;
}
.tv-tabs button {
  height: 30px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  transition: background 0.13s ease, color 0.13s ease;
}
.tv-tabs button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.tv-tabs button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.split-compare {
  flex: 1;
  min-height: 0;
  padding: 14px 2px 8px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.split-compare-lede {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 13.5px;
}
.split-compare-bar {
  display: flex;
  height: 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  overflow: hidden;
}
.split-compare-bar span:first-child {
  background: #121210;
}
.split-compare-bar span:last-child {
  background: var(--soft-deep);
}
.split-compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 18px;
}
.split-compare-cols > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.split-compare-tag {
  color: var(--muted);
  font-size: 11px;
}
.split-compare-cols strong {
  font-size: 22px;
  font-weight: 640;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.split-compare-cols p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.split-compare-table {
  border-top: 1px solid var(--line-soft);
}
.split-compare-table > div {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) repeat(4, minmax(90px, 1fr));
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}
.split-compare-table span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.split-compare-table strong {
  font-size: 13px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.split-compare-table small {
  color: var(--quiet);
  font-size: 10.5px;
}
.order-book {
  flex: 1;
  min-height: 0;
  padding: 14px 2px 8px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
}
.order-book-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.order-book-seg {
  width: 320px;
}
.order-book-head > small {
  color: var(--quiet);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.order-book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.order-book-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 10px 6px;
  color: var(--quiet);
  font-size: 10.5px;
}
.order-book-side:first-child .order-book-labels {
  text-align: left;
}
.order-book-side:first-child .order-book-labels span:last-child,
.order-book-side:first-child .order-book-row strong {
  text-align: right;
}
.order-book-side:last-child .order-book-labels span:not(:first-child),
.order-book-side:last-child .order-book-row span {
  text-align: right;
}
.order-book-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.order-book-row > i {
  position: absolute;
  top: 2px;
  bottom: 2px;
  border-radius: 7px;
}
.order-book-row.is-bid > i {
  right: 0;
  background: #58a83f1a;
}
.order-book-row.is-ask > i {
  left: 0;
  background: #b3574d17;
}
.order-book-row > span {
  z-index: 1;
  color: var(--muted);
}
.order-book-row > strong {
  z-index: 1;
  font-weight: 620;
}
.trade-view .tv-head {
  flex-wrap: nowrap;
}
.tv-head-stats {
  flex: none;
  justify-content: flex-start;
  gap: 24px;
  margin-left: 4px;
  padding-left: 22px;
  border-left: 1px solid var(--line-soft);
}
.tv-head-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.tv-head-right .chart-range-pill {
  margin: 0;
  align-self: center;
}
.tv-head-right .tv-tabs {
  margin: 0;
}
.order-book-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(170px, 0.7fr);
  gap: 24px;
}
.order-book-ladder {
  min-width: 0;
}
.order-book-labels {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 0 12px 6px;
  color: var(--quiet);
  font-size: 10.5px;
}
.order-book-labels span:not(:first-child) {
  text-align: right;
}
.order-book-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.order-book-row > i {
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 0;
  border-radius: 6px;
}
.order-book-row.is-ask > i {
  background: #b3574d14;
}
.order-book-row.is-bid > i {
  background: #58a83f17;
}
.order-book-row > span {
  z-index: 1;
  color: var(--muted);
  text-align: right;
}
.order-book-row > strong {
  z-index: 1;
  font-weight: 600;
}
.order-book-row.is-ask > strong {
  color: #a44b41;
}
.order-book-row.is-bid > strong {
  color: #3c7d2c;
}
.order-book-row.is-real > strong {
  font-weight: 700;
}
.order-book-row.is-real:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
  opacity: 0.55;
}
.order-book-spread {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0;
  padding: 7px 12px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.order-book-spread strong {
  font-size: 13px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.order-book-spread small {
  color: var(--muted);
  font-size: 11px;
}
.order-book-tape {
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid var(--line-soft);
}
.order-book-tape-head {
  padding-bottom: 6px;
  color: var(--quiet);
  font-size: 10.5px;
}
.order-book-tick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 26px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.order-book-tick span {
  color: var(--quiet);
  font-size: 11px;
}
.order-book-tick .positive {
  color: #3c7d2c;
  font-weight: 600;
}
.order-book-tick .negative {
  color: #a44b41;
  font-weight: 600;
}
.tv-market-switcher,
.tv-head-stats,
.tv-head-right {
  flex: none;
}
.tv-head-right {
  margin-left: auto;
}
.tv-head-stats {
  gap: 18px;
  padding-left: 18px;
}
.tv-head-stats strong {
  font-size: 13px;
}
.tv-head-right .chart-range-pill button {
  min-width: 34px;
  padding: 0 8px;
}
.tv-tabs button {
  padding: 0 11px;
}
@media (max-width: 1240px) {
  .tv-head-stats > div:nth-child(3),
  .tv-head-stats > div:nth-child(6) {
    display: none;
  }
}
@media (max-width: 1500px) {
  .tv-head-stats > div:nth-child(4),
  .tv-head-stats > div:nth-child(5) {
    display: none;
  }
}
@media (max-width: 1240px) {
  .trade-view .tv-head {
    flex-wrap: wrap;
    row-gap: 2px;
    padding-bottom: 8px;
  }
  .tv-head-stats > div:nth-child(3) {
    display: none;
  }
  .tv-head-stats > div:nth-child(6) {
    display: flex;
  }
  .tv-head-right {
    flex: 1 1 100%;
    margin-left: 0;
    justify-content: space-between;
    order: 4;
    padding-top: 6px;
    border-top: 1px solid var(--line-soft);
  }
}
@media (max-width: 1100px) {
  .trade-view .tv-body {
    grid-template-columns: minmax(0, 1fr) 336px;
  }
  .tv-head-stats {
    gap: 14px;
    padding-left: 14px;
  }
}
@media (max-width: 980px) {
  .tv-head-stats > div:nth-child(6) {
    display: none;
  }
}
@media (max-width: 900px) {
  .page.trade-view {
    height: auto;
    overflow: visible;
  }
  .trade-view .tv-body {
    grid-template-columns: 1fr;
  }
  .trade-view .tv-chart {
    padding: 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow: visible;
  }
  .trade-view .chart-section,
  .trade-view .market-price-chart-section {
    flex: none;
    min-height: 0;
  }
  .trade-view .market-price-chart {
    height: 300px;
    min-height: 0;
    flex: none;
  }
  .trade-view .trade-panel {
    height: auto;
    padding: 18px 16px 24px;
    overflow: visible;
  }
  .split-compare,
  .order-book {
    flex: none;
    overflow: visible;
  }
}
@media (max-width: 1240px) {
  .order-book-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .order-book-tape {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0 18px;
  }
  .order-book-tape-head {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
  .split-compare-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.split-compare-table {
  overflow-x: auto;
}
.split-compare-table > div {
  min-width: 560px;
}
.discovery-strip {
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}
@media (max-width: 1080px) {
  .market-table--lean .market-grid {
    grid-template-columns: minmax(200px, 1.7fr) minmax(120px, 1fr) auto 24px;
    gap: 14px;
  }
  .market-table--lean .market-grid > .sparkline {
    display: none;
  }
}
@media (max-width: 760px) {
  .market-table--lean .market-grid {
    grid-template-columns: minmax(150px, 1.6fr) minmax(110px, 1fr) 24px;
  }
  .market-return-pill {
    display: none;
  }
  .maturity-row {
    grid-template-columns: minmax(110px, 1fr) auto 16px;
  }
  .maturity-split,
  .maturity-liquidity {
    display: none;
  }
  .markets-page {
    padding-top: 18px;
  }
}
@media (max-width: 1080px) {
  .maturity-row {
    grid-template-columns: minmax(120px, 1fr) minmax(110px, 1fr) auto 16px;
    gap: 12px;
  }
  .maturity-liquidity {
    display: none;
  }
}
@media (max-width: 1420px) {
  .trade-view .tv-head {
    flex-wrap: wrap;
    row-gap: 2px;
    padding-bottom: 8px;
  }
  .tv-head-stats > div:nth-child(3),
  .tv-head-stats > div:nth-child(4),
  .tv-head-stats > div:nth-child(5),
  .tv-head-stats > div:nth-child(6) {
    display: flex;
  }
  .tv-head-right {
    flex: 1 1 100%;
    margin-left: 0;
    justify-content: space-between;
    order: 4;
    padding-top: 6px;
    border-top: 1px solid var(--line-soft);
  }
}
@media (max-width: 1000px) {
  .tv-head-stats > div:nth-child(4),
  .tv-head-stats > div:nth-child(5) {
    display: none;
  }
}
@media (max-width: 860px) {
  .tv-head-stats > div:nth-child(3),
  .tv-head-stats > div:nth-child(6) {
    display: none;
  }
}
.verona-mark,
.liquid-logo-loader,
.liquid-logo-loader > svg {
  display: block;
  flex: none;
}
.liquid-logo-loader {
  color: currentColor;
}
.liquid-logo-loader > svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.liquid-logo-loader__outline {
  opacity: 0.14;
}
.app-loading-screen {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background-color: var(--paper);
  background-image: url(/assets/verona-paper.png);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: cover;
  color: var(--text);
  opacity: 1;
  transition: opacity 0.24s ease;
}
.market-price-chart-loading {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--text);
  opacity: 1;
  transition: opacity 0.24s ease;
}
.app-loading-screen.is-exiting,
.market-price-chart-loading.is-exiting {
  opacity: 0;
  pointer-events: none;
}
.liquid-logo-loader__fill {
  will-change: transform;
}
.liquid-logo-loader--indeterminate .liquid-logo-loader__fill {
  animation: liquid-logo-rise 2.2s cubic-bezier(0.45, 0, 0.55, 1) both;
}
.liquid-logo-loader--determinate .liquid-logo-loader__fill {
  transform: translateY(var(--liquid-logo-offset));
  transition: transform var(--liquid-logo-duration) linear;
}
.liquid-logo-loader__wave {
  animation: liquid-logo-wave 1.05s linear infinite;
  will-change: transform;
}
@keyframes liquid-logo-rise {
  0%,
  5% {
    transform: translateY(132px);
  }
  to {
    transform: translateY(-38px);
  }
}
@keyframes liquid-logo-wave {
  to {
    transform: translate(60px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .liquid-logo-loader--indeterminate .liquid-logo-loader__fill {
    animation: none;
    transform: translateY(-38px);
  }
  .liquid-logo-loader--determinate .liquid-logo-loader__fill {
    transition: none;
  }
  .liquid-logo-loader__wave {
    animation: none;
  }
}
.topbar,
.subnav {
  border-bottom: 1px solid var(--line);
  background: #faf9f7f0;
}
.topbar:has(+ .subnav) {
  border-bottom-color: var(--line-soft);
}
.trade-view .tv-head {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}
.tv-market-button {
  min-width: 258px;
  height: 40px;
  padding: 0 12px 0 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  justify-content: flex-start;
}
.tv-market-button:hover,
.tv-market-button[aria-expanded="true"] {
  border-color: var(--soft-deep);
  background: var(--soft);
}
.tv-market-button .company-logo--hero {
  width: 24px;
  height: 24px;
}
.tv-market-button > span {
  flex: 1;
  min-width: 0;
  align-items: baseline;
  flex-direction: row;
  gap: 8px;
}
.tv-market-button small {
  display: block;
  overflow: hidden;
  font-size: 10.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tv-head-stats {
  border-left: 0;
  padding-left: 4px;
  gap: 22px;
}
.tv-head-stats span {
  font-size: 9.5px;
}
.tv-stage-head {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 4px;
}
.tv-stage-head .tv-lede {
  flex: 1;
  min-width: 0;
  padding: 0;
  margin: 0;
}
.tv-stage-head .tv-lede strong {
  font-size: 24px;
}
.tv-stage-head .tv-lede span {
  font-size: 12px;
}
.tv-stage-head .chart-range-pill,
.tv-stage-head .tv-tabs {
  margin: 0;
}
.trade-view .trade-panel .tv-seg--primary {
  margin-bottom: 18px;
}
.trade-view .trade-panel .trade-field-label {
  margin: 0 0 7px;
}
.trade-view .trade-panel .trade-choice-copy {
  margin: 12px 2px 18px;
}
.trade-view .trade-panel .trade-maturity-row {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.trade-view .trade-panel .trade-outcome-line {
  margin-top: 14px;
}
.trade-view .trade-panel .trade-estimate {
  margin-top: 18px;
  padding-top: 14px;
  gap: 7px;
}
.trade-view .trade-panel .trade-primary {
  margin-top: 18px;
}
.trade-maturity-row .tv-select {
  max-width: none;
  flex: none;
}
.trade-maturity-row .tv-select-btn {
  height: 34px;
  padding: 0 4px 0 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
}
.trade-maturity-row .tv-select-btn:hover,
.trade-maturity-row .tv-select-btn.is-open {
  background: var(--soft);
}
.trade-maturity-row .tv-select-btn > span {
  align-items: baseline;
  flex-direction: row;
  gap: 7px;
}
.trade-maturity-row .tv-select-btn strong {
  font-size: 13px;
}
.trade-maturity-row .tv-select-btn em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}
.trade-maturity-row .tv-select-menu {
  right: 0;
  left: auto;
  width: 264px;
}
@media (max-width: 1240px) {
  .tv-stage-head {
    flex-wrap: wrap;
  }
  .tv-stage-head .tv-lede {
    flex: 1 1 100%;
    margin-bottom: 6px;
  }
}
.trade-view > .tv-head {
  flex: none;
  height: 44px;
  padding: 0 14px 0 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: nowrap;
  align-items: center;
}
.tv-market-button {
  min-width: 0;
  height: 32px;
  padding: 0 8px 0 5px;
  border: 0;
  border-radius: 9px;
  background: transparent;
}
.tv-market-button:hover,
.tv-market-button[aria-expanded="true"] {
  border: 0;
  background: var(--soft);
}
.tv-market-button .company-logo--hero {
  width: 22px;
  height: 22px;
}
.tv-market-button strong {
  font-size: 13.5px;
}
.tv-market-button small {
  display: none;
}
.tv-head-stats {
  padding-left: 18px;
  border-left: 1px solid var(--line-soft);
  gap: 20px;
}
.tv-head-stats > div {
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
}
.tv-head-stats span {
  font-size: 11px;
}
.tv-head-stats strong {
  font-size: 12.5px;
}
@media (max-width: 1420px) {
  .trade-view > .tv-head {
    flex-wrap: nowrap;
    padding-bottom: 0;
  }
}
@media (max-width: 1240px) {
  .tv-head-stats > div:nth-child(4),
  .tv-head-stats > div:nth-child(5),
  .tv-head-stats > div:nth-child(6) {
    display: none;
  }
}
@media (max-width: 900px) {
  .tv-head-stats > div:nth-child(3) {
    display: none;
  }
  .trade-view > .tv-head {
    padding: 0 16px;
  }
}
.tv-oracle-tag {
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.tv-head-tools {
  flex: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tv-head-explorer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11.5px;
  text-decoration: none;
}
.tv-head-explorer:hover {
  color: var(--text);
}
.tv-head-explorer svg {
  width: 12px;
  height: 12px;
}
.tv-head-divider {
  width: 1px;
  height: 16px;
  background: var(--line);
}
.tv-head-tools .tv-tabs button {
  height: 28px;
  font-size: 12px;
}
.market-price-chart-section {
  position: relative;
  padding-top: 14px;
}
.chart-overlay-ranges {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 2px;
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #faf9f7e0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.chart-overlay-ranges button {
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  transition: background 0.13s ease, color 0.13s ease;
}
.chart-overlay-ranges button:hover {
  color: var(--text);
}
.chart-overlay-ranges button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.chart-maturity-tip {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.16s ease;
}
.chart-maturity-tip > div {
  position: absolute;
  bottom: 14px;
  right: -6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: max-content;
  max-width: 230px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  box-shadow: 0 10px 28px #1212101f;
}
.chart-maturity-tip strong {
  font-size: 12px;
  font-weight: 650;
}
.chart-maturity-tip small {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.35;
}
@media (max-width: 1420px) {
  .trade-view > .tv-head {
    height: auto;
    min-height: 44px;
    flex-wrap: wrap;
    padding-top: 5px;
    padding-bottom: 5px;
    row-gap: 4px;
  }
  .tv-head-tools {
    flex: 1 1 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 1240px) {
  .tv-head-stats > div:nth-child(7) {
    display: none;
  }
}
.chart-maturity-tip {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.chart-maturity-stem {
  position: absolute;
  bottom: 6px;
  left: -0.5px;
  width: 1px;
  height: 30px;
  background: linear-gradient(to top, #12121073, #12121014);
}
.chart-maturity-card {
  position: absolute;
  bottom: 38px;
  left: var(--card-shift, 0px);
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 220px;
  padding: 9px 12px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf9f7f5;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px #12121024;
  transform: translate(-50%);
}
.chart-maturity-card strong {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 650;
}
.chart-maturity-card strong em {
  color: var(--muted);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 500;
}
.chart-maturity-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
@media (min-width: 1421px) {
  .tv-head-stats > div {
    display: flex;
  }
}
@media (max-width: 1560px) {
  .tv-head-stats > div:nth-child(4),
  .tv-head-stats > div:nth-child(5) {
    display: none;
  }
}
@media (max-width: 1360px) {
  .trade-view > .tv-head {
    height: auto;
    min-height: 44px;
    flex-wrap: wrap;
    padding-top: 5px;
    padding-bottom: 5px;
    row-gap: 3px;
  }
  .tv-head-tools {
    flex: 1 1 100%;
    justify-content: flex-end;
    padding-top: 4px;
    border-top: 1px solid var(--line-soft);
  }
  .tv-head-stats > div:nth-child(3) {
    display: none;
  }
  .tv-head-stats > div:nth-child(6),
  .tv-head-stats > div:nth-child(7) {
    display: flex;
  }
}
@media (max-width: 1100px) {
  .tv-head-stats > div:nth-child(6) {
    display: none;
  }
  .tv-head-stats {
    gap: 14px;
    padding-left: 14px;
  }
}
@media (max-width: 940px) {
  .tv-head-stats > div:nth-child(7) {
    display: none;
  }
  .tv-head-explorer span {
    display: none;
  }
}
.chart-maturity-tip {
  position: absolute;
  z-index: 6;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
}
.chart-maturity-tip.is-visible {
  opacity: 1;
}
.chart-maturity-guide {
  position: absolute;
  top: 10px;
  bottom: 26px;
  left: var(--tip-x, -100px);
  width: 0;
  border-left: 1px dashed rgba(18, 18, 16, 0.32);
}
.chart-maturity-dot {
  position: absolute;
  top: var(--tip-y, -100px);
  left: var(--tip-x, -100px);
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #121210;
  box-shadow: 0 0 0 1px #12121040;
  transform: translate(-50%, -50%);
}
.chart-maturity-card {
  position: absolute;
  top: var(--tip-y, -100px);
  left: calc(var(--tip-x, -100px) + var(--card-shift, 0px));
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 216px;
  padding: 9px 12px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf9f7f7;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px #12121024;
  transform: translate(-50%, calc(-100% - 16px));
}
.trade-view .tv-body {
  grid-template-columns: minmax(0, 1fr) auto 372px;
}
.tv-content {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: column;
}
.tv-tabs--overlay {
  position: absolute;
  z-index: 7;
  top: 22px;
  right: 2px;
  margin: 0;
  padding: 3px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #faf9f7e6;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.tv-tabs--overlay button {
  height: 24px;
  padding: 0 10px;
  font-size: 11.5px;
}
.market-price-chart-section {
  flex: none;
}
.market-price-chart {
  flex: none;
  height: clamp(320px, 52vh, 560px);
  min-height: 0;
}
.tv-content .split-compare,
.tv-content .order-book {
  flex: none;
  min-height: clamp(340px, 54vh, 580px);
  padding-top: 60px;
  overflow: visible;
}
.market-price-chart:before,
.market-price-chart:after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
}
.market-price-chart:before {
  top: 0;
  bottom: 26px;
  left: 0;
  width: 34px;
  background: linear-gradient(to right, var(--paper), rgba(250, 249, 247, 0));
}
.market-price-chart:after {
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  background: linear-gradient(to bottom, var(--paper), rgba(250, 249, 247, 0));
}
.market-price-chart {
  position: relative;
}
.mini-book {
  width: 172px;
  min-height: 0;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
  transition: width 0.22s ease;
}
.mini-book.is-expanded {
  width: 264px;
}
.mini-book-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.mini-book-head strong {
  font-size: 12.5px;
  font-weight: 650;
}
.mini-book-head span {
  color: var(--muted);
  font-size: 10.5px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mini-book-seg {
  margin-bottom: 10px;
  padding: 2px;
}
.mini-book-seg button {
  height: 24px;
  font-size: 11px;
}
.mini-book-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mini-book-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  min-height: 24px;
  padding: 0 6px;
  border-radius: 6px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.mini-book.is-expanded .mini-book-row {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr) minmax(0, 1fr);
}
.mini-book-row > i {
  position: absolute;
  top: 1.5px;
  bottom: 1.5px;
  right: 0;
  border-radius: 5px;
}
.mini-book-row.is-ask > i {
  background: #b3574d14;
}
.mini-book-row.is-bid > i {
  background: #58a83f17;
}
.mini-book-row strong {
  z-index: 1;
  font-weight: 600;
}
.mini-book-row.is-ask strong {
  color: #a44b41;
}
.mini-book-row.is-bid strong {
  color: #3c7d2c;
}
.mini-book-row span {
  z-index: 1;
  color: var(--muted);
  text-align: right;
}
.mini-book-spread {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 3px 0;
  padding: 4px 6px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 10.5px;
  font-variant-numeric: tabular-nums;
}
.mini-book-spread small {
  color: var(--quiet);
  font-size: 10px;
}
.mini-book-note {
  margin-top: auto;
  padding-top: 10px;
  color: var(--quiet);
  font-size: 9.5px;
  line-height: 1.4;
}
.trade-view .trade-panel {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.trade-scroll {
  flex: 1;
  min-height: 0;
  padding: 18px 20px 6px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.trade-foot {
  flex: none;
  padding: 14px 20px 16px;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
}
.trade-foot .trade-primary {
  margin-top: 0;
}
.tv-about-chips {
  display: inline-flex;
  gap: 6px;
}
.tv-about-chips em {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}
.tv-about-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.tv-about-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 550;
  text-decoration: none;
}
.tv-about-links a:hover {
  text-decoration: underline;
}
.tv-about-links svg {
  width: 11px;
  height: 11px;
  color: var(--muted);
}
.tv-about-links small {
  margin-left: auto;
  color: var(--quiet);
  font-size: 10.5px;
}
@media (max-width: 1280px) {
  .mini-book {
    display: none;
  }
  .trade-view .tv-body {
    grid-template-columns: minmax(0, 1fr) 356px;
  }
}
@media (max-width: 900px) {
  .trade-view .tv-body {
    grid-template-columns: 1fr;
  }
  .trade-view .trade-panel,
  .trade-scroll {
    overflow: visible;
  }
  .market-price-chart {
    height: 320px;
  }
  .tv-tabs--overlay {
    top: 14px;
  }
}
.trade-view .market-price-chart-section,
.trade-view .chart-section.market-price-chart-section {
  flex: none;
  height: auto;
  min-height: 0;
  overflow: visible;
}
.trade-view .market-price-chart-section {
  position: relative;
}
.chart-maturity-tip {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}
.chart-maturity-card {
  width: 176px;
  padding: 7px 10px 8px;
  gap: 2px;
  border-radius: 10px;
}
.chart-maturity-card strong {
  font-size: 11.5px;
}
.chart-maturity-card strong em,
.chart-maturity-card small {
  font-size: 10px;
}
.chart-maturity-tip.is-below .chart-maturity-card {
  transform: translate(-50%, 18px);
}
.tv-market-switcher {
  flex: 1;
  max-width: 380px;
  min-width: 220px;
}
.tv-market-button {
  width: 100%;
  justify-content: space-between;
}
.tv-market-button > span {
  flex: 1;
}
.tv-market-menu {
  width: min(480px, calc(100vw - 48px));
  max-height: 440px;
  padding: 10px;
  animation: menu-pop 0.12s ease both;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@keyframes menu-pop {
  0% {
    opacity: 0;
    transform: scale(0.99);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.tv-market-menu-search {
  display: grid;
  height: 38px;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--soft);
}
.tv-market-menu-search svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}
.tv-market-menu-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 12.5px;
}
.tv-market-menu-filters {
  display: flex;
  gap: 3px;
  margin: 8px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tv-market-menu-filters::-webkit-scrollbar {
  display: none;
}
.tv-market-menu-filters button {
  flex: none;
  height: 24px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  white-space: nowrap;
}
.tv-market-menu-filters button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.tv-market-menu-filters button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.tv-market-menu-list {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.tv-market-menu-list button {
  display: grid;
  min-height: 38px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.tv-market-menu-list button:hover {
  background: var(--soft-hover);
}
.tv-market-menu-list button.is-active {
  background: var(--soft);
}
.tv-market-menu-list .company-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.tv-market-menu-list span {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 7px;
}
.tv-market-menu-list strong {
  font-size: 12.5px;
  font-weight: 620;
}
.tv-market-menu-list small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tv-market-menu-list b {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 12px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.tv-market-menu-list b em {
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}
.tv-market-menu-empty {
  padding: 32px 0;
  color: var(--quiet);
  font-size: 12px;
  text-align: center;
}
.tv-head-explorer {
  height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 550;
  transition: background 0.13s ease, border-color 0.13s ease;
}
.tv-head-explorer:hover {
  border-color: var(--soft-deep);
  background: var(--soft);
  color: var(--text);
}
.tv-about {
  margin-top: 14px;
}
.order-book-layout {
  grid-template-columns: minmax(0, 1fr);
}
.order-book-ladder {
  max-width: 560px;
}
.order-book-head {
  justify-content: flex-start;
}
.chart-maturity-tip > div,
.chart-maturity-card {
  right: auto;
  bottom: auto;
  height: auto;
  min-height: 0;
  max-width: none;
}
.chart-maturity-tip {
  display: block;
}
.tv-market-menu-filters {
  min-height: 30px;
  align-items: center;
}
.tv-market-menu-filters button {
  height: 26px;
  padding: 0 11px;
  background: var(--soft-hover);
  color: #55534e;
  font-size: 11px;
  font-weight: 550;
  line-height: 26px;
}
.tv-market-menu-filters button:hover {
  background: var(--soft);
  color: var(--text);
}
.tv-market-menu-filters button.is-active {
  background: var(--soft-deep);
  color: var(--text);
  font-weight: 650;
}
.mini-book {
  height: fit-content;
  min-height: 100%;
}
.tv-market-button-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-left: auto;
  padding-right: 6px;
}
.tv-market-button-price strong {
  font-size: 13.5px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.tv-market-button-price em {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}
.tv-market-button-price .positive {
  color: var(--green);
}
.tv-market-button-price .negative {
  color: #b3574d;
}
.tv-market-button > span:first-of-type {
  flex: none;
}
.tv-market-menu-search {
  height: 44px;
  border-radius: 12px;
}
.tv-market-menu-search input {
  height: 100%;
  padding: 0;
  font-size: 13.5px;
  line-height: 44px;
}
.chart-maturity-card,
.chart-maturity-tip > div {
  width: 176px !important;
  max-height: 76px;
  overflow: hidden;
}
.order-book-ladder {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}
.order-book {
  padding-top: 64px;
}
.order-book-row {
  min-height: 32px;
  font-size: 12.5px;
}
.order-book-head {
  justify-content: center;
}
.tv-about {
  margin-top: 34px;
  padding-top: 20px;
}
.tv-resources {
  margin: 6px 0 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.tv-resources > strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 650;
}
.tv-resources-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.tv-resources-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 550;
  text-decoration: none;
}
.tv-resources-links a:hover {
  text-decoration: underline;
}
.tv-resources-links svg {
  width: 11px;
  height: 11px;
  color: var(--muted);
}
.tv-market-menu-search,
.tv-market-menu-filters {
  flex: none;
}
.tv-market-menu-filters button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 26px;
  grid-template-columns: none;
  text-align: center;
}
.chart-overlay-ranges--glass,
.tv-tabs--glass {
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.chart-maturity-card--glass {
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.chart-maturity-card--glass strong,
.chart-maturity-card--glass small {
  position: relative;
  z-index: 1;
}
.chart-maturity-card--glass {
  display: block;
  padding: 0;
  max-height: none;
  overflow: visible;
}
.chart-maturity-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 11px 9px;
}
.chart-maturity-card--glass {
  width: 176px;
  height: 62px;
  --glass-radius: 12px;
}
.chart-maturity-card--glass .liquid-glass__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto;
}
.chart-maturity-tip > .chart-maturity-card--glass {
  width: 176px;
  height: 62px;
  max-height: 62px;
}
:root {
  --maturity-accent: #e8893d;
}
.chart-maturity-guide {
  border-left: 1px dashed rgba(232, 137, 61, 0.65);
}
.chart-maturity-dot {
  background: var(--maturity-accent);
  box-shadow: 0 0 0 1px #e8893d66;
}
.chart-maturity-tip > .chart-maturity-card,
.chart-maturity-card {
  width: 176px;
  height: auto;
  max-height: none;
  overflow: visible;
  border: 1px solid rgba(232, 137, 61, 0.45);
  box-shadow: 0 10px 26px #e8893d29;
}
.chart-maturity-card:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: calc(50% - var(--card-shift, 0px));
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(232, 137, 61, 0.45);
  border-bottom: 1px solid rgba(232, 137, 61, 0.45);
  background: var(--paper);
  transform: translate(-50%) rotate(45deg);
}
.chart-maturity-tip.is-below .chart-maturity-card:after {
  top: -6px;
  bottom: auto;
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid rgba(232, 137, 61, 0.45);
  border-left: 1px solid rgba(232, 137, 61, 0.45);
}
.chart-maturity-card strong {
  color: var(--maturity-accent);
}
.chart-maturity-card strong em {
  color: var(--muted);
}
.market-price-chart {
  height: clamp(380px, 62vh, 660px);
}
.tv-about {
  margin-top: 46px;
}
.trade-view .tv-body {
  grid-template-columns: minmax(0, 1fr) 372px;
}
.depth-view {
  flex: none;
  padding-top: 60px;
}
.depth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.depth-seg {
  width: 320px;
}
.depth-stats {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 11.5px;
}
.depth-stats strong {
  margin-left: 4px;
  color: var(--text);
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.depth-chart {
  position: relative;
}
.depth-chart svg {
  display: block;
  width: 100%;
  height: clamp(240px, 44vh, 420px);
}
.depth-bids {
  fill: #58a83f2e;
  stroke: #3c7d2c;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.depth-asks {
  fill: #b3574d24;
  stroke: #a44b41;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.depth-mid {
  stroke: var(--quiet);
  stroke-dasharray: 3 5;
  vector-effect: non-scaling-stroke;
}
.depth-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--quiet);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.depth-axis-mid {
  color: var(--text);
  font-weight: 620;
}
.depth-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 10.5px;
}
.depth-legend .is-bid {
  color: #3c7d2c;
}
.depth-legend .is-ask {
  color: #a44b41;
}
.tv-market-switcher {
  flex: none;
  max-width: none;
  min-width: 0;
}
.tv-market-button {
  width: auto;
  gap: 10px;
}
.tv-market-button-price {
  margin-left: 4px;
}
.tv-market-menu-search {
  grid-template-columns: 18px minmax(0, 1fr) 32px;
}
.tv-market-menu-more {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.tv-market-menu-more:hover,
.tv-market-menu-more.is-active {
  background: var(--soft-deep);
  color: var(--text);
}
.tv-market-menu-more svg {
  width: 16px;
  height: 16px;
}
.tv-market-menu-extra {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 8px 0 0;
  padding: 8px;
  border-radius: 10px;
  background: var(--soft-hover);
}
.tv-market-menu-extra span {
  margin-right: 4px;
  color: var(--quiet);
  font-size: 10.5px;
}
.tv-market-menu-extra button {
  height: 24px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #55534e;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
}
.tv-market-menu-extra button.is-active {
  background: var(--soft-deep);
  color: var(--text);
  font-weight: 650;
}
.trade-foot {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  padding-top: 30px;
  border-top: 0;
  background: linear-gradient(
    to top,
    var(--paper) 58%,
    rgba(250, 249, 247, 0.85) 78%,
    rgba(250, 249, 247, 0)
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(to top, #000 78%, rgba(0, 0, 0, 0));
}
.trade-scroll {
  padding-bottom: 26px;
}
.discovery-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.discovery-group {
  padding: 12px 10px 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.discovery-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 6px 6px;
}
.discovery-group-head span {
  color: var(--muted);
  font-size: 11px;
}
.discovery-group-head button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--quiet);
  cursor: pointer;
  font-size: 10.5px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.discovery-group-head button:hover {
  color: var(--text);
}
.discovery-row {
  display: grid;
  width: 100%;
  min-height: 40px;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.12s ease;
}
.discovery-row:hover {
  background: var(--soft-hover);
}
.discovery-row .company-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.discovery-row span {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 6px;
}
.discovery-row strong {
  font-size: 12px;
  font-weight: 620;
}
.discovery-row small {
  overflow: hidden;
  color: var(--quiet);
  font-size: 10.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.discovery-row b {
  font-size: 12px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.market-table--lean .market-grid {
  grid-template-columns: minmax(210px, 1.5fr) minmax(120px, 0.9fr) 96px minmax(
      110px,
      0.8fr
    ) minmax(100px, 0.75fr) minmax(100px, 0.75fr) auto 24px;
  gap: 14px;
}
.market-metric-cell {
  justify-self: end;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}
.market-metric-cell strong {
  font-size: 13px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.market-metric-cell small {
  color: var(--quiet);
  font-size: 10.5px;
  white-space: nowrap;
}
.market-metric-cell .is-yt,
.maturity-yields .is-yt {
  color: #7c6ab8;
}
.market-new-badge {
  margin-left: 7px;
  padding: 2px 6px;
  border-radius: 6px;
  background: #58a83f24;
  color: #3c7d2c;
  font-size: 9px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.02em;
  vertical-align: 2px;
}
.markets-count {
  flex: none;
  color: var(--quiet);
  font-size: 11.5px;
}
.markets-head h2 {
  flex: none;
}
.markets-head .markets-sort {
  margin-left: auto;
}
.maturity-row {
  grid-template-columns: minmax(130px, 1fr) minmax(110px, 0.9fr) minmax(
      140px,
      1fr
    ) minmax(150px, 1fr) auto 16px;
}
.maturity-yields {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.maturity-yields small {
  color: var(--muted);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.landing-page {
  padding-top: 9vh;
}
.landing-hero {
  max-width: 660px;
}
.landing-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.landing-hero p {
  max-width: 540px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.landing-actions {
  display: flex;
  gap: 10px;
}
.landing-actions .button {
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
}
.landing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8vh;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.landing-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.landing-stats strong {
  font-size: 26px;
  font-weight: 630;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.landing-stats span {
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 1280px) {
  .discovery-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-table--lean .market-grid {
    grid-template-columns: minmax(190px, 1.5fr) minmax(110px, 0.9fr) minmax(
        100px,
        0.75fr
      ) minmax(100px, 0.75fr) auto 24px;
  }
  .market-table--lean .market-grid > .sparkline,
  .market-table--lean .market-grid > .market-metric-cell:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 900px) {
  .market-table--lean .market-grid {
    grid-template-columns: minmax(160px, 1.5fr) minmax(110px, 1fr) auto 24px;
  }
  .market-table--lean .market-metric-cell {
    display: none;
  }
  .landing-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .maturity-row {
    grid-template-columns: minmax(120px, 1fr) minmax(130px, 1fr) auto 16px;
  }
  .maturity-split,
  .maturity-liquidity {
    display: none;
  }
}
@media (max-width: 1280px) {
  .market-table--lean .market-grid > .market-metric-cell {
    display: flex;
  }
  .market-table--lean .market-grid > .market-cell-yt {
    display: none;
  }
}
@media (max-width: 1100px) {
  .market-table--lean .market-grid {
    grid-template-columns: minmax(180px, 1.5fr) minmax(110px, 0.9fr) minmax(
        100px,
        0.8fr
      ) auto 24px;
  }
  .market-table--lean .market-grid > .market-cell-vol {
    display: none;
  }
}
@media (max-width: 900px) {
  .market-table--lean .market-grid > .market-cell-liq {
    display: none;
  }
}
.chart-maturity-card,
.chart-maturity-tip > div:not(.chart-maturity-flag) {
  display: none;
}
.chart-maturity-flag {
  position: absolute;
  top: 8px;
  left: calc(var(--tip-x, -200px) + var(--flag-shift, 0px));
  padding: 5px 11px;
  border: 1px solid rgba(232, 137, 61, 0.4);
  border-radius: 9px;
  background: #fdf3ea;
  color: #8a4d1d;
  font-size: 11px;
  font-weight: 620;
  white-space: nowrap;
  transform: translate(-50%);
  font-variant-numeric: tabular-nums;
}
.chart-maturity-guide {
  top: 34px;
}
.market-table--lean .market-group {
  border-radius: 16px;
  transition: background-color 0.14s ease;
}
.market-table--lean .market-group.is-expanded {
  background: var(--soft);
}
.market-table--lean .market-group.is-expanded .market-row {
  background: transparent;
}
.market-table--lean .market-group.is-expanded .maturity-list {
  margin: 0 10px 10px;
  padding: 0 6px 4px;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid rgba(18, 18, 16, 0.07);
}
.market-table--lean .market-group.is-expanded .maturity-row:hover {
  background: #ffffffbf;
}
.market-open-button {
  cursor: pointer;
}
.topbar-search {
  border-radius: 11px;
}
.topbar-search kbd {
  border-radius: 5px;
}
.sparkline {
  width: 148px;
  height: 42px;
}
.sparkline polyline {
  stroke-width: 1.75;
}
.market-table--lean .market-grid {
  grid-template-columns: minmax(210px, 1.5fr) minmax(120px, 0.9fr) 152px minmax(
      110px,
      0.8fr
    ) minmax(100px, 0.75fr) minmax(100px, 0.75fr) auto 24px;
}
.market-table--lean .market-row {
  min-height: 80px;
}
.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.choice-cards button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 58px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.choice-cards button:hover {
  background: var(--soft-hover);
}
.choice-cards button.is-active {
  border-color: var(--soft-deep);
  background: var(--soft);
}
.choice-cards strong {
  font-size: 13px;
  font-weight: 620;
  line-height: 1.2;
}
.choice-cards button.is-active strong {
  font-weight: 680;
}
.choice-cards span {
  display: block;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.4;
  opacity: 0;
  transition: max-height 0.24s ease, opacity 0.22s ease, margin-top 0.24s ease;
}
.choice-cards button.is-active span {
  max-height: 48px;
  margin-top: 5px;
  opacity: 1;
}
.tv-seg--primary button:first-child.is-active {
  background: #58a83f29;
  color: #2f6b22;
}
.tv-seg--primary button:last-child.is-active {
  background: #b3574d24;
  color: #8f3d34;
}
.trade-view .trade-panel .trade-maturity-row {
  margin-top: 22px;
}
.markets-page .market-table--lean .market-group.is-expanded {
  background: var(--soft);
}
.page.trade-view {
  height: calc(100vh - 52px);
  overflow: hidden;
}
.trade-view .tv-body {
  min-height: 0;
}
.trade-view .tv-chart {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.trade-view .tv-content {
  overflow: visible;
}
.chart-maturity-flag {
  top: var(--flag-top, 8px);
  z-index: 8;
  transition: top 0.18s ease;
}
.choice-viz {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.26s ease, opacity 0.22s ease, margin-top 0.26s ease;
}
.choice-cards button.is-active .choice-viz {
  max-height: 34px;
  margin-top: 8px;
  opacity: 1;
}
.choice-viz--pt {
  height: 30px;
}
.choice-viz--pt .viz-track {
  position: absolute;
  top: 15px;
  right: 12px;
  left: 4px;
  border-top: 1px dashed var(--soft-deep);
}
.choice-viz--pt .viz-dot {
  position: absolute;
  top: 9px;
  left: 4px;
  width: 13px;
  height: 13px;
  border: 2.5px solid #121210;
  border-radius: 50%;
  background: var(--paper);
}
.choice-cards button.is-active .choice-viz--pt .viz-dot {
  animation: viz-travel 2.6s ease-in-out infinite;
}
.choice-viz--pt .viz-flag {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 1.5px;
  height: 19px;
  background: var(--maturity-accent);
}
.choice-viz--pt .viz-flag:after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--maturity-accent);
}
@keyframes viz-travel {
  0%,
  12% {
    transform: translate(0);
  }
  62%,
  88% {
    transform: translate(calc(100cqw - 34px));
  }
  to {
    transform: translate(calc(100cqw - 34px));
  }
}
.choice-viz--pt {
  container-type: inline-size;
}
.choice-viz--yt {
  height: 30px;
}
.choice-viz--yt .viz-coin {
  position: absolute;
  top: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
}
.choice-viz--yt .viz-coin:nth-child(1) {
  left: 22%;
}
.choice-viz--yt .viz-coin:nth-child(2) {
  left: 47%;
}
.choice-viz--yt .viz-coin:nth-child(3) {
  left: 72%;
}
.choice-cards button.is-active .choice-viz--yt .viz-coin {
  animation: viz-drip 1.8s ease-in infinite;
}
.choice-cards button.is-active .choice-viz--yt .viz-coin:nth-child(2) {
  animation-delay: 0.6s;
}
.choice-cards button.is-active .choice-viz--yt .viz-coin:nth-child(3) {
  animation-delay: 1.2s;
}
.choice-viz--yt .viz-tray {
  position: absolute;
  right: 6%;
  bottom: 2px;
  left: 6%;
  height: 7px;
  border: 1.5px solid #121210;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}
@keyframes viz-drip {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
    transform: translateY(14px);
  }
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .choice-viz--pt .viz-dot,
  .choice-viz--yt .viz-coin {
    animation: none !important;
  }
  .choice-cards button.is-active .choice-viz--yt .viz-coin {
    opacity: 1;
    transform: translateY(7px);
  }
}
.choice-viz--pt .viz-dot {
  top: 7px;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--paper);
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 1px 4px #1212102e;
  opacity: 0;
}
.choice-cards button.is-active .choice-viz--pt .viz-dot {
  animation: viz-travel 3.4s ease-in-out infinite;
}
@keyframes viz-travel {
  0% {
    opacity: 0;
    transform: translate(0);
  }
  10% {
    opacity: 1;
    transform: translate(0);
  }
  62% {
    opacity: 1;
    transform: translate(calc(100cqw - 36px));
  }
  86% {
    opacity: 1;
    transform: translate(calc(100cqw - 36px));
  }
  97%,
  to {
    opacity: 0;
    transform: translate(calc(100cqw - 36px));
  }
}
.choice-viz--yt {
  container-type: inline-size;
}
.choice-viz--yt .viz-base {
  position: absolute;
  right: 8%;
  bottom: 3px;
  left: 8%;
  border-bottom: 1.5px solid var(--soft-deep);
}
.choice-viz--yt .viz-usdg {
  position: absolute;
  bottom: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 1px 3px #12121029;
}
.choice-viz--yt .viz-usdg-1 {
  left: 14%;
}
.choice-viz--yt .viz-usdg-2 {
  left: 32%;
}
.choice-viz--yt .viz-usdg-3 {
  left: 50%;
}
.choice-viz--yt .viz-usdg-4 {
  left: 68%;
}
.choice-cards button.is-active .choice-viz--yt .viz-usdg {
  animation: viz-stack 3.4s ease-out infinite;
}
.choice-cards button.is-active .choice-viz--yt .viz-usdg-2 {
  animation-name: viz-stack-2;
}
.choice-cards button.is-active .choice-viz--yt .viz-usdg-3 {
  animation-name: viz-stack-3;
}
.choice-cards button.is-active .choice-viz--yt .viz-usdg-4 {
  animation-name: viz-stack-4;
}
@keyframes viz-stack {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  8%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  96%,
  to {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes viz-stack-2 {
  0%,
  22% {
    opacity: 0;
    transform: translateY(-10px);
  }
  30%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  96%,
  to {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes viz-stack-3 {
  0%,
  42% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  96%,
  to {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes viz-stack-4 {
  0%,
  60% {
    opacity: 0;
    transform: translateY(-10px);
  }
  68%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  96%,
  to {
    opacity: 0;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .choice-viz--yt .viz-usdg {
    animation: none !important;
    opacity: 1;
  }
}
.tv-controls-row {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 2px;
  border-top: 1px solid var(--line-soft);
}
.tv-controls-row .chart-range-pill {
  margin: 0;
}
.tv-controls-row .tv-tabs {
  margin: 0 0 0 auto;
}
.market-price-chart-section {
  padding-top: 12px;
}
.book-view {
  flex: none;
  padding-top: 16px;
}
.book-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.book-seg {
  width: 220px;
}
.book-source {
  color: var(--quiet);
  font-size: 10.5px;
}
.book-precision {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}
.book-precision span {
  margin-right: 4px;
  color: var(--quiet);
  font-size: 10.5px;
}
.book-precision button {
  height: 24px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 10.5px;
  font-variant-numeric: tabular-nums;
}
.book-precision button:hover {
  background: var(--soft-hover);
}
.book-precision button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.book-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.book-side-title {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 650;
}
.book-side-title.is-bid {
  color: #3c7d2c;
}
.book-side-title.is-ask {
  color: #a44b41;
}
.book-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.7fr;
  padding: 0 10px 5px;
  color: var(--quiet);
  font-size: 10px;
}
.book-labels span:not(:first-child) {
  text-align: right;
}
.book-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.7fr;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.book-row > i {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  border-radius: 6px;
}
.book-row.is-bid > i {
  background: #58a83f17;
}
.book-row.is-ask > i {
  background: #b3574d14;
}
.book-row > strong {
  z-index: 1;
  font-weight: 650;
}
.book-row.is-bid > strong {
  color: #3c7d2c;
}
.book-row.is-ask > strong {
  color: #a44b41;
}
.book-row > span {
  z-index: 1;
  color: var(--muted);
  text-align: right;
}
.book-row.is-real > strong:after {
  content: "·";
  margin-left: 4px;
  opacity: 0.6;
}
.book-footline {
  margin-top: 12px;
  color: var(--quiet);
  font-size: 10.5px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.tv-market-activity {
  flex: none;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.tv-activity-tabs {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.tv-activity-tabs button {
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
}
.tv-activity-tabs button:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.tv-activity-tabs button.is-active {
  background: var(--soft);
  color: var(--text);
  font-weight: 650;
}
.tv-activity-labels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr 0.9fr 0.6fr;
  gap: 10px;
  padding: 6px 12px;
  color: var(--quiet);
  font-size: 10.5px;
}
.tv-activity-labels span:not(:first-child):not(:nth-child(2)) {
  text-align: right;
}
.tv-activity-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr 0.9fr 0.6fr;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.tv-activity-row:hover {
  background: var(--soft-hover);
}
.tv-activity-row > span:not(:first-child):not(.tv-activity-action) {
  text-align: right;
}
.tv-activity-row.is-history {
  grid-template-columns: 1.4fr 1fr auto;
}
.tv-activity-user {
  color: var(--muted);
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 11px;
}
.tv-activity-action {
  font-weight: 620;
}
.tv-activity-action.is-buy {
  color: #3c7d2c;
}
.tv-activity-action.is-sell {
  color: #a44b41;
}
.tv-activity-time {
  color: var(--quiet);
  font-size: 11px;
}
.tv-activity-note {
  padding: 10px 12px 2px;
  color: var(--quiet);
  font-size: 10px;
}
.tv-activity-empty {
  padding: 34px 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.tv-market-menu {
  top: calc(100% + 12px);
  border-radius: 11px;
  padding: 12px;
  width: min(440px, calc(100vw - 48px));
}
.tv-market-menu-search {
  height: 40px;
  border-radius: 9px;
  background: var(--soft-hover);
}
.tv-market-menu-search input {
  line-height: 40px;
  font-size: 13px;
}
.tv-market-menu-more {
  border-radius: 7px;
}
.tv-market-menu-filters {
  margin: 10px 0 8px;
}
.tv-market-menu-extra {
  margin: 0 0 8px;
  border-radius: 9px;
}
.tv-market-menu-list button {
  min-height: 40px;
  border-radius: 8px;
}
.tv-market-menu-list .company-logo {
  width: 22px;
  height: 22px;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: #d4d1ca;
}
::-webkit-scrollbar-thumb:hover {
  background: #bfbcb4;
}
.topbar-search {
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: var(--soft-hover);
  padding: 0 12px;
}
.topbar-search:focus-within,
button.topbar-search:hover {
  background: var(--soft);
  border: 0;
}
.topbar-search svg {
  width: 16px;
  height: 16px;
}
.topbar-search > span {
  font-size: 13px;
  color: #97958f;
}
.tv-market-menu-search {
  padding-right: 5px;
}
.tv-market-menu-more {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: var(--quiet);
}
.tv-market-menu-more:hover {
  background: var(--soft);
  color: var(--text);
}
.tv-market-menu-more.is-active {
  background: #e3e1dc;
  color: var(--text);
}
.tv-market-menu-more svg {
  width: 15px;
  height: 15px;
}
.tv-market-menu-extra {
  gap: 4px 6px;
  padding: 9px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  background: var(--paper);
}
.tv-market-menu-extra span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tv-market-menu-extra button {
  background: var(--soft-hover);
}
.market-table--lean .market-group.is-expanded .maturity-list {
  padding-top: 8px;
}
@media (max-width: 1280px) {
  .market-table--lean .market-grid {
    grid-template-columns: minmax(190px, 1.5fr) minmax(110px, 0.9fr) minmax(
        100px,
        0.75fr
      ) minmax(100px, 0.75fr) minmax(90px, 0.7fr) auto 24px;
  }
  .market-table--lean .market-grid > .sparkline {
    display: none;
  }
  .market-table--lean .market-grid > .market-cell-yt {
    display: flex;
  }
}
@media (max-width: 1100px) {
  .market-table--lean .market-grid {
    grid-template-columns: minmax(170px, 1.5fr) minmax(105px, 0.9fr) minmax(
        95px,
        0.75fr
      ) minmax(85px, 0.7fr) auto 24px;
  }
  .market-table--lean .market-grid > .market-cell-vol {
    display: none;
  }
}
@media (max-width: 940px) {
  .market-table--lean .market-grid {
    grid-template-columns: minmax(150px, 1.5fr) minmax(105px, 1fr) auto 24px;
  }
  .market-table--lean .market-grid > .market-cell-liq,
  .market-table--lean .market-grid > .market-cell-yt {
    display: none;
  }
}
.book-side {
  max-height: 340px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #d4d1ca transparent;
}
.book-side .book-side-title,
.book-side .book-labels {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--paper);
}
.modal.modal--wide {
  width: min(100%, 640px);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
}
.specs-grid section h3 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 650;
  color: var(--quiet);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.specs-grid section > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
}
.specs-grid section span {
  color: var(--muted);
  font-size: 11.5px;
}
.specs-grid section strong {
  font-size: 12px;
  font-weight: 620;
  text-align: right;
}
.specs-grid section a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
}
.specs-grid section a:hover {
  text-decoration: underline;
}
.specs-grid svg {
  width: 11px;
  height: 11px;
  color: var(--muted);
}
.split-compare {
  padding-top: 16px;
}
.split-compare-bar {
  display: flex;
  height: 22px;
  margin-bottom: 14px;
  border-radius: 999px;
  overflow: hidden;
}
.split-compare-bar span:first-child {
  display: flex;
  align-items: center;
  padding-left: 12px;
  background: #121210;
  color: var(--paper);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.03em;
}
.split-compare-bar span:last-child {
  background: var(--maturity-accent);
  opacity: 0.65;
}
.split-compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.split-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.split-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.split-card-head img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.split-card-head span {
  color: var(--muted);
  font-size: 11px;
}
.split-card > strong {
  display: block;
  font-size: 24px;
  font-weight: 640;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.split-card-metric {
  display: inline-block;
  margin: 6px 0 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}
.split-card.is-yt .split-card-metric {
  background: #e8893d21;
  color: #8a4d1d;
}
.split-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}
.split-compare-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.split-compare-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.2fr) repeat(4, minmax(80px, 1fr));
  gap: 14px;
  align-items: center;
  min-height: 52px;
  padding: 6px 14px;
  border-radius: 12px;
  transition: background 0.12s ease;
}
.split-compare-row:hover {
  background: var(--soft-hover);
}
.split-compare-row > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.split-compare-row > span:not(.split-row-when) {
  align-items: flex-end;
  text-align: right;
}
.split-compare-row strong {
  font-size: 13px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.split-compare-row small {
  color: var(--quiet);
  font-size: 10.5px;
}
.modal-list button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: background 0.13s ease, border-color 0.13s ease;
}
.modal-list button:hover {
  border-color: var(--soft-deep);
  background: var(--soft-hover);
}
.wallet-provider-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}
.modal-list button > svg:first-child {
  width: 26px;
  height: 26px;
  color: var(--muted);
}
.filter-popover {
  width: 292px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 20px 48px #12121024;
}
.filter-popover strong {
  margin-bottom: 12px;
  font-size: 12.5px;
  font-weight: 650;
}
.filter-popover .filter-group {
  margin-bottom: 12px;
}
.filter-popover .filter-group > span {
  display: block;
  margin-bottom: 6px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.filter-popover .filter-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.filter-popover .filter-group button {
  height: 26px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: var(--soft-hover);
  color: #55534e;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
}
.filter-popover .filter-group button:hover {
  background: var(--soft);
  color: var(--text);
}
.filter-popover .filter-group button.is-active {
  background: #121210;
  color: var(--paper);
  font-weight: 600;
}
.filter-popover label {
  padding: 8px 0 2px;
  font-size: 11.5px;
}
.filter-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.filter-actions button {
  height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11.5px;
}
.filter-actions button:first-child {
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.filter-actions button:last-child {
  background: #121210;
  color: var(--paper);
  font-weight: 600;
}
.secondary-title {
  min-height: 0;
  padding: 30px 0 6px;
}
.secondary-title h1 {
  font-size: 26px;
  letter-spacing: -0.03em;
}
.secondary-title span {
  color: var(--quiet);
  font-size: 11px;
}
.secondary-title p {
  color: var(--muted);
  font-size: 13px;
}
.portfolio-overview {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  border: 0;
}
.portfolio-overview > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: transparent;
}
.portfolio-overview span {
  color: var(--muted);
  font-size: 11px;
}
.portfolio-overview strong {
  font-size: 22px;
  font-weight: 630;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.portfolio-overview .portfolio-value strong {
  font-size: 30px;
}
.portfolio-overview small {
  color: var(--quiet);
  font-size: 10.5px;
}
.secondary-page .soft-segmented {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 3px;
}
.secondary-page .soft-segmented button.is-active {
  background: var(--soft);
  box-shadow: none;
}
.secondary-page section,
.split-panel,
.split-output {
  border-color: var(--line);
  border-radius: 16px;
}
.chart-maturity-flag {
  top: calc(50% - 14px);
  border: 0;
  background: var(--maturity-accent);
  color: #fff7ef;
  font-weight: 650;
  box-shadow: 0 6px 18px #e8893d59;
}
.tv-market-menu-search button,
.tv-market-menu-filters button,
.tv-market-menu-extra button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 0;
  padding: 0 11px;
  grid-template-columns: none;
  text-align: center;
}
.tv-market-menu-more {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 7px;
}
.tv-market-menu-extra {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  margin: 8px 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  background: var(--soft-hover);
  box-shadow: none;
}
.tv-market-menu-extra span {
  margin: 0 4px 0 0;
  font-size: 10px;
}
.tv-market-menu-extra button {
  height: 26px;
  border-radius: 999px;
  background: var(--paper);
  color: #55534e;
  font-size: 11px;
  white-space: nowrap;
}
.tv-market-menu-extra button:hover {
  background: var(--soft);
  color: var(--text);
}
.tv-market-menu-extra button.is-active {
  background: #121210;
  color: var(--paper);
}
.tv-market-menu-extra .is-flag {
  margin-left: auto;
}
.chart-maturity-flag {
  border-radius: 999px;
  background: #e8893d;
  color: #fff7ef;
}
.chart-maturity-tip.is-clamped .chart-maturity-guide {
  opacity: 0.35;
}
.chart-maturity-tip .chart-maturity-guide,
.chart-maturity-tip .chart-maturity-flag {
  transition: opacity 0.16s ease;
}
.chart-maturity-tip > .chart-maturity-flag,
.chart-maturity-tip > div.chart-maturity-flag {
  display: flex;
  width: auto;
  height: auto;
  max-height: none;
  padding: 6px 13px;
  border: 0;
  border-radius: 999px;
  background: #e8893d;
  color: #fff7ef;
  overflow: visible;
  box-shadow: 0 6px 18px #e8893d59;
}
.tv-head-explorer,
.tv-head-tools .tv-head-explorer {
  border: 0;
  border-radius: 9px;
  background: var(--soft-hover);
  color: #55534e;
  cursor: pointer;
  font-family: inherit;
}
.tv-head-explorer:hover {
  background: var(--soft);
  color: var(--text);
}
.topbar-actions .button {
  border: 0;
  border-radius: 10px;
}
.topbar-actions .button--outline {
  background: var(--soft-hover);
  color: var(--text);
}
.topbar-actions .button--outline:hover {
  background: var(--soft);
}
.topbar-actions .button--dark,
.topbar-actions .wallet-pill {
  border-radius: 10px;
}
.topbar-actions .wallet-pill {
  background: var(--soft-hover);
  border: 0;
}
.topbar-main .primary-nav > button,
.topbar-main .primary-nav > button.is-active {
  border-radius: 9px;
}
.chart-maturity-tip > .chart-maturity-flag,
.chart-maturity-tip > div.chart-maturity-flag {
  background: #ee7500;
  box-shadow: none;
  color: #fff;
}
.chart-maturity-guide {
  border-left-color: #ee75008c;
}
.tv-market-menu-search {
  position: relative;
}
.menu-sort-pop {
  position: absolute;
  z-index: 5;
  top: calc(100% + 6px);
  right: 0;
  display: flex;
  width: 190px;
  flex-direction: column;
  gap: 1px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  box-shadow: 0 14px 34px #12121024;
  animation: menu-pop 0.12s ease both;
}
.menu-sort-pop small {
  margin: 6px 8px 3px;
  color: var(--quiet);
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.menu-sort-pop small:first-child {
  margin-top: 2px;
}
.menu-sort-pop button,
.tv-market-menu .menu-sort-pop button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 32px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  text-align: left;
  grid-template-columns: none;
}
.menu-sort-pop button:hover {
  background: var(--soft-hover);
}
.menu-sort-pop button.is-active {
  background: var(--soft);
  font-weight: 650;
}
.menu-sort-pop button svg {
  width: 14px;
  height: 14px;
  color: var(--text);
}
.menu-market > button {
  width: 100%;
}
.menu-market-maturities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 2px 8px 8px 42px;
}
.menu-market-maturities button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-height: 0;
  padding: 7px 10px;
  border: 0;
  border-radius: 9px;
  background: var(--soft-hover);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  grid-template-columns: none;
}
.menu-market-maturities button:hover {
  background: var(--soft);
}
.menu-market-maturities strong {
  font-size: 11px;
  font-weight: 620;
}
.menu-market-maturities small {
  color: var(--quiet);
  font-size: 9.5px;
}
.menu-market-maturities em {
  color: var(--text);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.split-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 22px;
}
.split-in,
.split-out {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.split-panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
}
.split-token-select .tv-select-btn {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
}
.split-token-chosen {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 9px;
}
.split-token-chosen strong {
  font-size: 13.5px;
}
.split-token-chosen small {
  color: var(--muted);
  font-size: 11px;
}
.split-token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.split-token-grid button {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: var(--soft-hover);
  cursor: pointer;
  font-family: inherit;
}
.split-token-grid button:hover {
  background: var(--soft);
}
.split-token-grid strong {
  font-size: 12px;
  font-weight: 620;
}
.split-in .trade-maturity-row {
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.split-max {
  margin-left: 7px;
  padding: 1px 7px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 9.5px;
  font-weight: 650;
}
.split-arrow {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 120px;
}
.split-arrow svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--muted);
}
.split-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--soft-deep);
}
.split-rule {
  margin: 14px 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.split-out .split-primary {
  width: 100%;
  height: 44px;
  border-radius: 12px;
}
@media (max-width: 980px) {
  .split-flow {
    grid-template-columns: 1fr;
  }
  .split-arrow {
    min-height: 44px;
  }
  .split-arrow svg {
    transform: rotate(90deg);
  }
}
.position-table {
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.position-header {
  display: none;
}
.position-grid,
.position-row {
  display: grid;
  grid-template-columns: minmax(200px, 1.6fr) repeat(3, minmax(90px, 1fr)) auto;
  gap: 14px;
  align-items: center;
}
.position-row {
  min-height: 64px;
  padding: 8px 16px;
  border: 0;
  border-radius: 14px;
  transition: background 0.13s ease;
}
.position-row:hover {
  background: var(--soft-hover);
}
.fluid-tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
}
.fluid-tabs-thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  border-radius: 8px;
  background: var(--soft);
  transition: transform 0.38s cubic-bezier(0.28, 1.25, 0.35, 1),
    width 0.38s cubic-bezier(0.28, 1.25, 0.35, 1), background-color 0.2s ease;
  will-change: transform, width;
}
.fluid-tabs > button {
  position: relative;
  z-index: 1;
  height: 30px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.fluid-tabs > button:hover {
  color: var(--text);
}
.fluid-tabs > button[data-active="true"] {
  color: var(--text);
  font-weight: 650;
}
.fluid-tabs--grow {
  display: flex;
  width: 100%;
}
.fluid-tabs--grow > button {
  flex: 1;
}
.fluid-tabs.primary-nav {
  height: auto;
  margin-left: 20px;
  padding: 3px;
  border: 0;
  gap: 2px;
}
.fluid-tabs.primary-nav > button {
  height: 30px;
  min-height: 0;
  font-size: 13px;
}
.fluid-tabs.primary-nav .fluid-tabs-thumb {
  border-radius: 9px;
}
.fluid-tabs.primary-nav > button.is-active:after {
  display: none;
}
.fluid-tabs.chart-range-pill {
  margin: 0;
  border-radius: 999px;
}
.fluid-tabs.chart-range-pill .fluid-tabs-thumb {
  border-radius: 999px;
}
.fluid-tabs.chart-range-pill > button {
  min-width: 40px;
  height: 26px;
  padding: 0 10px;
  font-size: 11.5px;
}
.fluid-tabs.tv-tabs,
.fluid-tabs.tv-tabs .fluid-tabs-thumb {
  border-radius: 999px;
}
.fluid-tabs.tv-tabs > button {
  height: 28px;
  font-size: 12px;
}
.fluid-tabs--side > button {
  height: 36px;
  font-size: 13.5px;
}
.fluid-tabs--side[data-value="buy"] .fluid-tabs-thumb {
  background: #58a83f29;
}
.fluid-tabs--side[data-value="buy"] > button[data-active="true"] {
  color: #2f6b22;
}
.fluid-tabs--side[data-value="sell"] .fluid-tabs-thumb {
  background: #b3574d24;
}
.fluid-tabs--side[data-value="sell"] > button[data-active="true"] {
  color: #8f3d34;
}
.trade-view .trade-panel .fluid-tabs--side {
  margin-bottom: 18px;
}
.fluid-tabs.tv-activity-tabs {
  margin-bottom: 10px;
  border: 0;
  padding: 0;
  gap: 3px;
}
.fluid-tabs.tv-activity-tabs .fluid-tabs-thumb {
  top: 0;
  bottom: 0;
  border-radius: 999px;
}
.fluid-tabs.tv-activity-tabs > button {
  height: 28px;
  border-radius: 999px;
  font-size: 12px;
}
.fluid-tabs.operation-tabs {
  margin: 18px 0 22px;
}
.fluid-tabs.book-seg {
  width: 220px;
}
@media (prefers-reduced-motion: reduce) {
  .fluid-tabs-thumb {
    transition: none;
  }
}
html {
  scrollbar-gutter: stable;
}
.fluid-tab-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.fluid-tab-label:after {
  content: attr(data-label);
  height: 0;
  visibility: hidden;
  overflow: hidden;
  font-weight: 650;
  pointer-events: none;
}
.modal-heading button {
  border: 0;
}
.account-identity {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  padding: 13px 14px;
  border: 0;
  border-radius: 15px;
  background: var(--soft-hover);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.13s ease;
}
.account-identity:hover {
  background: var(--soft);
}
.account-identity span {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account-identity strong {
  font-size: 15px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.account-identity small {
  color: var(--muted);
  font-size: 11px;
}
.account-identity svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
}
.modal-list button {
  border: 0;
  background: var(--soft-hover);
}
.modal-list button:hover {
  border: 0;
  background: var(--soft);
}
.menu-filters-wrap {
  position: relative;
  margin: 10px 0 8px;
}
.menu-filters-wrap .tv-market-menu-filters {
  margin: 0;
}
.menu-filters-wrap:before,
.menu-filters-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 34px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.16s ease;
}
.menu-filters-wrap:before {
  left: 0;
  background: linear-gradient(to right, var(--paper), rgba(250, 249, 247, 0));
}
.menu-filters-wrap:after {
  right: 0;
  background: linear-gradient(to left, var(--paper), rgba(250, 249, 247, 0));
}
.menu-filters-wrap.at-start:before {
  opacity: 0;
}
.menu-filters-wrap.at-end:after {
  opacity: 0;
}
.chart-maturity-tip > .chart-maturity-flag,
.chart-maturity-tip > div.chart-maturity-flag {
  padding: 3px 9px;
  font-size: 9.5px;
  font-weight: 620;
  letter-spacing: 0.01em;
}
.chart-maturity-tip > .chart-maturity-flag,
.chart-maturity-tip > div.chart-maturity-flag {
  width: auto !important;
  max-width: none;
}
.tv-market-menu {
  overflow: visible;
}
.tv-market-menu-list {
  overflow-y: auto;
}
.tv-market-menu {
  overflow: hidden;
}
.tv-market-menu-extra {
  margin: 8px 0 0;
}
.menu-extra-divider {
  width: 1px;
  height: 14px;
  margin: 0 2px;
  background: var(--line);
}
.menu-sort-inline {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 5px;
  margin: 8px 0 -2px;
  padding: 9px 10px;
  border-radius: 12px;
  background: #1f1e1b0a;
  animation: menu-pop 0.14s ease both;
}
.menu-sort-line {
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu-sort-line small {
  flex: none;
  width: 54px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tv-market-menu .menu-sort-line button {
  display: inline-flex;
  flex: none;
  width: auto;
  min-height: 0;
  height: 26px;
  align-items: center;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: #55534e;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
  grid-template-columns: none;
  transition: background 0.14s ease, color 0.14s ease;
}
.tv-market-menu .menu-sort-line button:hover {
  background: var(--soft-hover);
}
.tv-market-menu .menu-sort-line button.is-active {
  background: var(--soft-deep);
  color: var(--text);
  font-weight: 650;
}
.chart-maturity-tip > .chart-maturity-flag,
.chart-maturity-tip > div.chart-maturity-flag {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: none;
}
.chart-maturity-tip.is-clamped .chart-maturity-guide {
  opacity: 1;
}
.market-price-chart {
  cursor: crosshair;
}
@media (max-width: 1500px) {
  .tv-head-stats > div:nth-child(3),
  .tv-head-stats > div:nth-child(4),
  .tv-head-stats > div:nth-child(5),
  .tv-head-stats > div:nth-child(6),
  .tv-head-stats > div:nth-child(7) {
    display: flex;
  }
  .tv-head-stats {
    gap: 14px;
    padding-left: 14px;
  }
  .tv-head-stats strong {
    font-size: 12px;
  }
  .tv-head-stats span {
    font-size: 9.5px;
  }
}
@media (max-width: 1280px) {
  .tv-head-stats > div:nth-child(5),
  .tv-head-stats > div:nth-child(6) {
    display: none;
  }
}
@media (max-width: 1080px) {
  .tv-head-stats > div:nth-child(3),
  .tv-head-stats > div:nth-child(7) {
    display: none;
  }
}
.folio-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px 24px 72px;
}
.folio-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.folio-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.folio-head h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 680;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.folio-head p {
  margin: 8px 0 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.folio-cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.folio-cells > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--soft-hover);
}
.folio-cells span {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 550;
}
.folio-cells strong {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.folio-cells small {
  color: var(--muted);
  font-size: 11px;
}
.folio-tabs {
  margin-top: 30px;
}
.folio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.folio-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  border-radius: 14px;
  background: var(--soft-hover);
  transition: background 0.14s ease;
}
.folio-row:hover {
  background: var(--soft);
}
.folio-row-asset {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  gap: 12px;
}
.folio-row-asset > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.folio-row-asset strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 640;
}
.folio-row-asset small {
  color: var(--muted);
  font-size: 11.5px;
}
.folio-tag {
  padding: 2px 7px;
  border-radius: 7px;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.folio-tag.is-pt {
  background: #1f1e1b14;
  color: var(--text);
}
.folio-tag.is-yt {
  background: #ee750024;
  color: #b05a08;
}
.folio-row-cell {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 1px;
  min-width: 86px;
}
.folio-row-cell small {
  color: var(--muted);
  font-size: 10.5px;
}
.folio-row-cell strong {
  font-size: 12.5px;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}
.folio-row-cell.is-value {
  min-width: 96px;
  text-align: right;
}
.folio-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 56px 20px;
  border-radius: 16px;
  background: var(--soft-hover);
  text-align: center;
}
.folio-empty strong {
  font-size: 15px;
  font-weight: 650;
}
.folio-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}
.folio-empty .button {
  margin-top: 12px;
}
.split-page-v2 {
  max-width: 560px;
  margin: 0 auto;
  padding: 44px 24px 72px;
}
.split-hero h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 680;
  letter-spacing: -0.015em;
}
.split-hero p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.split-page-v2 .operation-tabs {
  margin-top: 22px;
}
.split-stack {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.split-card-in {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: var(--soft-hover);
}
.split-card-in-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.split-page-v2 .split-panel-label {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
}
.split-change {
  padding: 4px 10px;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 570;
}
.split-change:hover {
  color: var(--text);
}
.split-page-v2 .split-token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.split-page-v2 .split-token-grid button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 6px;
  border: 0;
  border-radius: 11px;
  background: var(--paper);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 620;
  transition: background 0.13s ease;
}
.split-page-v2 .split-token-grid button:hover {
  background: var(--soft);
}
.split-page-v2 .swap-field,
.split-page-v2 .trade-maturity-row {
  background: var(--paper);
}
.split-equals {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.split-equals:before,
.split-equals:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.split-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.split-page-v2 .split-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border: 0;
  border-radius: 14px;
  background: var(--soft-hover);
}
.split-page-v2 .split-card.is-yt {
  background: #ee750012;
}
.split-page-v2 .split-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
}
.split-page-v2 .split-card-head img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.split-page-v2 .split-card strong {
  font-size: 17px;
  font-weight: 660;
  font-variant-numeric: tabular-nums;
}
.split-page-v2 .split-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}
.split-page-v2 .split-primary {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
  padding: 13px;
  border-radius: 12px;
  font-size: 13.5px;
}
.split-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 26px;
}
.split-steps > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--soft-hover);
}
.split-steps em {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--paper);
  color: var(--muted);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 650;
}
.split-steps span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.split-page-v2 .operation-empty {
  margin-top: 18px;
}
.wide-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px 24px 72px;
}
.pool-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
}
.pool-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
}
.pool-head {
  padding: 0 18px 4px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pool-row {
  padding: 11px 18px;
  border: 0;
  border-radius: 13px;
  background: var(--soft-hover);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  text-align: left;
  font-variant-numeric: tabular-nums;
  transition: background 0.13s ease;
}
.pool-row:hover {
  background: var(--soft);
}
.pool-name {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.pool-name > span {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pool-name strong {
  font-size: 13px;
  font-weight: 640;
}
.pool-name small {
  color: var(--muted);
  font-size: 11px;
}
.pool-apy {
  font-size: 13.5px;
  font-weight: 660;
}
.loop-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: var(--soft-hover);
}
.loop-pick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.loop-pick button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 6px;
  border: 0;
  border-radius: 11px;
  background: var(--paper);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 620;
  transition: background 0.13s ease, color 0.13s ease;
}
.loop-pick button:hover {
  background: var(--soft);
}
.loop-pick button.is-active {
  background: #161512;
  color: #f5f3ef;
}
.loop-lever {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 13px;
  background: var(--paper);
}
.loop-lever-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.loop-lever-head span {
  color: var(--muted);
  font-weight: 570;
}
.loop-lever-head strong {
  font-size: 15px;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
}
.loop-lever input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 999px;
  background: var(--soft-deep);
  outline: none;
}
.loop-lever input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  background: #161512;
  cursor: grab;
}
.loop-cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.loop-cells > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 15px;
  border-radius: 12px;
  background: var(--paper);
}
.loop-cells span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
}
.loop-cells strong {
  font-size: 16px;
  font-weight: 660;
  font-variant-numeric: tabular-nums;
}
.loop-cells .is-strong {
  background: #161512;
}
.loop-cells .is-strong span {
  color: #f5f3ef9e;
}
.loop-cells .is-strong strong {
  color: #f5f3ef;
}
.loop-card .split-primary {
  margin-top: 2px;
}
.loop-top {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 26px;
}
.loop-top .split-panel-label {
  margin-bottom: 4px;
}
.loop-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--soft-hover);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.13s ease;
}
.loop-top-row:hover {
  background: var(--soft);
}
.swap-page .split-token-grid button.is-active {
  background: #161512;
  color: #f5f3ef;
}
.swap-direction {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin: -4px auto;
  border: 0;
  border-radius: 11px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  transition: color 0.13s ease, transform 0.13s ease;
}
.swap-direction:hover {
  color: var(--text);
  transform: rotate(180deg);
}
.swap-direction svg {
  transform: rotate(90deg);
}
.swap-field-body output {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 24px;
  font-weight: 640;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.stake-cells {
  margin-top: 20px;
}
.stake-cells > div {
  background: var(--soft-hover);
}
.stake-page .split-stack {
  margin-top: 10px;
}
.stake-page .swap-token svg {
  width: 20px;
  height: 20px;
}
.stake-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  text-align: center;
}
.tv-head-stats > div,
.tv-head-stats > div:nth-child(3),
.tv-head-stats > div:nth-child(4),
.tv-head-stats > div:nth-child(5),
.tv-head-stats > div:nth-child(6),
.tv-head-stats > div:nth-child(7) {
  display: flex;
}
@media (max-width: 1560px) {
  .tv-head-stats {
    gap: 13px;
    padding-left: 13px;
  }
  .tv-head-stats strong {
    font-size: 12px;
  }
  .tv-head-stats span {
    font-size: 9.5px;
  }
}
@media (max-width: 1320px) {
  .tv-head-stats > div:nth-child(5),
  .tv-head-stats > div:nth-child(6) {
    display: none;
  }
}
@media (max-width: 1120px) {
  .tv-head-stats > div:nth-child(3),
  .tv-head-stats > div:nth-child(7) {
    display: none;
  }
}
@media (max-width: 900px) {
  .tv-head-stats > div:nth-child(4) {
    display: none;
  }
}
.dex-page {
  display: flex;
  justify-content: center;
  padding: 72px 24px;
}
.dex-card {
  position: relative;
  display: flex;
  width: 440px;
  max-width: 100%;
  flex-direction: column;
  gap: 6px;
}
.dex-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: var(--soft-hover);
}
.dex-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dex-field-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 570;
}
.dex-field-top small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.dex-max {
  padding: 2px 8px;
  border: 0;
  border-radius: 7px;
  background: var(--paper);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 620;
}
.dex-field-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dex-field-main input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 30px;
  font-weight: 640;
  letter-spacing: -0.015em;
  outline: none;
  font-variant-numeric: tabular-nums;
}
.dex-field-main input::placeholder {
  color: #b9b6ae;
}
.dex-token {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  transition: background 0.13s ease;
}
.dex-token:hover {
  background: var(--soft);
}
.dex-token.is-static {
  cursor: default;
}
.dex-token.is-static:hover {
  background: var(--paper);
}
.dex-token img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.dex-token svg {
  font-size: 13px;
  color: var(--muted);
}
.dex-flip {
  position: relative;
  z-index: 2;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin: -22px auto;
  border: 4px solid var(--bg);
  border-radius: 13px;
  background: var(--soft-deep);
  color: var(--text);
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.16s ease;
}
.dex-flip:hover {
  transform: rotate(180deg);
}
.dex-flip svg {
  transform: rotate(90deg);
}
.dex-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px 2px;
  color: var(--muted);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.dex-cta {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
}
.dex-cta:disabled {
  opacity: 0.45;
  cursor: default;
}
.dex-picker-scrim {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
}
.dex-picker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 41;
  display: flex;
  max-height: 420px;
  flex-direction: column;
  padding: 10px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 24px 60px #12121029;
  animation: menu-pop 0.14s ease both;
}
.dex-picker-search {
  display: flex;
  flex: none;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--soft-hover);
  color: var(--muted);
}
.dex-picker-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.dex-picker-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  overflow-y: auto;
}
.dex-picker-list button {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.12s ease;
}
.dex-picker-list button:hover,
.dex-picker-list button.is-active {
  background: var(--soft-hover);
}
.dex-picker-list span {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}
.dex-picker-list strong {
  font-size: 13px;
  font-weight: 640;
}
.dex-picker-list small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dex-picker-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}
.loop-page {
  align-items: flex-start;
}
.loop-layout {
  display: grid;
  grid-template-columns: 440px 300px;
  gap: 22px;
  align-items: start;
}
.loop-fixed {
  flex: 1;
  min-width: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.loop-fixed small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0;
}
.loop-lever-field {
  gap: 8px;
}
.loop-lever-value {
  font-size: 13px !important;
  font-weight: 680;
  color: var(--text) !important;
}
.loop-range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--soft-deep);
  outline: none;
}
.loop-range::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  background: #161512;
  cursor: grab;
}
.loop-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 570;
}
.loop-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}
.loop-side-label {
  margin: 0 4px 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.loop-rank {
  width: 18px;
  flex: none;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 640;
  font-variant-numeric: tabular-nums;
}
.loop-side .loop-top-row {
  gap: 10px;
}
@media (max-width: 900px) {
  .loop-layout {
    grid-template-columns: 1fr;
  }
}
.split-page-v2 .trade-maturity-row {
  margin: 0;
  padding: 10px 13px 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.split-page-v2 .trade-maturity-row .tv-select-btn:hover,
.split-page-v2 .trade-maturity-row .tv-select-btn.is-open {
  background: var(--soft-hover);
}
.deposit-modal {
  position: relative;
}
.deposit-manual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: var(--soft-hover);
}
.deposit-manual > small {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 620;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.deposit-manual-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.deposit-manual-row .dex-token {
  padding: 6px 10px;
  font-size: 12.5px;
}
.deposit-manual-row .dex-token img {
  width: 18px;
  height: 18px;
}
.deposit-manual-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  font-variant-numeric: tabular-nums;
}
.deposit-manual-credit {
  flex: none;
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  background: #161512;
  color: #f5f3ef;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 620;
}
.deposit-manual-credit:hover {
  background: #2a2925;
}
.deposit-modal .dex-picker {
  top: 12px;
  left: 12px;
  right: 12px;
  max-height: 360px;
}
.dex-picker-cash {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.op-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.op-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--soft-hover);
}
.op-row .pool-name {
  flex: 1;
}
.op-cell {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 1px;
  min-width: 84px;
}
.op-cell small {
  color: var(--muted);
  font-size: 10.5px;
}
.op-cell strong {
  font-size: 12.5px;
  font-weight: 630;
  font-variant-numeric: tabular-nums;
}
.op-action {
  flex: none;
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  background: #161512;
  color: #f5f3ef;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 620;
  transition: background 0.13s ease;
}
.op-action:hover {
  background: #2a2925;
}
.op-action:disabled {
  background: var(--soft-deep);
  color: var(--muted);
  cursor: default;
}
.op-note {
  margin: 4px 4px 0;
  color: var(--muted);
  font-size: 11.5px;
}
.markets-tabs {
  margin: 26px 0 0;
  scroll-margin-top: 70px;
}
.markets-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 14px;
  flex-wrap: wrap;
}
.markets-search {
  display: flex;
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  height: 34px;
  border-radius: 10px;
  background: var(--soft-hover);
  color: var(--muted);
}
.markets-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 12.5px;
  outline: none;
}
.markets-search input::placeholder {
  color: #a5a29a;
}
.toolbar-select {
  position: relative;
  flex: none;
}
.toolbar-select > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: var(--soft-hover);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 570;
  transition: background 0.13s ease;
}
.toolbar-select > button:hover,
.toolbar-select > button.is-open {
  background: var(--soft);
}
.toolbar-select > button svg {
  font-size: 12px;
  color: var(--muted);
}
.toolbar-select .markets-sort-menu {
  right: auto;
  left: 0;
}
.markets-controls .control-button {
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: var(--soft-hover);
  font-size: 12.5px;
}
.markets-controls .control-button.is-active {
  background: var(--soft-deep);
}
.markets-controls .markets-clear {
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 570;
}
.markets-controls .markets-clear:hover {
  color: var(--text);
}
.filter-done {
  align-self: flex-end;
  margin-top: 4px;
  padding: 7px 14px;
  border: 0;
  border-radius: 9px;
  background: #161512;
  color: #f5f3ef;
  cursor: pointer;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 620;
}
.folio-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 72px 24px;
  border-radius: 18px;
  background: var(--soft-hover);
  text-align: center;
}
.folio-gate svg {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  color: var(--text);
}
.folio-gate strong {
  font-size: 16px;
  font-weight: 660;
}
.folio-gate p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}
.folio-gate .button {
  margin-top: 14px;
}
.landing-hero {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.landing-hero .landing-sub {
  margin-bottom: 0;
}
.landing-mark svg {
  width: clamp(38px, 3.6vw, 50px);
  height: clamp(38px, 3.6vw, 50px);
  margin-bottom: clamp(18px, 3svh, 30px);
  color: var(--text);
}
.landing-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1;
}
.landing-sub {
  max-width: 58ch;
  margin: clamp(16px, 2.4svh, 26px) 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 16.5px);
  line-height: 1.65;
}
.landing-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3.6svh, 38px);
}
.landing-primary {
  display: inline-flex;
  height: clamp(44px, 5.4svh, 52px);
  align-items: center;
  padding: 0 clamp(22px, 2vw, 30px);
  border: 0;
  border-radius: 999px;
  background: #161512;
  color: #f5f3ef;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(13.5px, 1.05vw, 15px);
  font-weight: 620;
  transition: background 0.14s ease;
}
.landing-primary:hover {
  background: #2a2925;
}
.landing-secondary {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 14.5px);
  font-weight: 570;
  transition: color 0.13s ease, background 0.13s ease;
}
.landing-secondary:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.topbar-search {
  height: 32px;
}
.pools-page {
  display: flex;
  height: calc(100svh - 64px);
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 20px;
  overflow: hidden;
}
.pools-page .pool-head {
  flex: none;
  padding-bottom: 8px;
}
.pool-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}
.pool-name strong {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pool-name .folio-tag {
  font-size: 9px;
  padding: 2px 6px;
}
.loop-grid {
  display: grid;
  grid-template-columns: 26px 2.1fr 1fr 1fr 1fr 74px;
  align-items: center;
  gap: 12px;
}
.loop-row {
  cursor: default;
}
.loop-config-lever {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 10px;
  padding: 14px 16px;
  border-radius: 13px;
  background: var(--soft-hover);
}
.loop-config-lever-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.loop-config-lever-head span {
  color: var(--muted);
  font-weight: 570;
}
.loop-config-lever-head strong {
  font-size: 15px;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
}
.loop-config-deposit {
  margin-bottom: 12px;
}
.trade-loop {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 13px;
  background: var(--soft-hover);
}
.trade-loop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.trade-loop-head span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.trade-loop-head strong {
  font-size: 12.5px;
  font-weight: 640;
}
.trade-loop-head small {
  color: var(--muted);
  font-size: 11px;
}
.loop-switch {
  position: relative;
  width: 36px;
  height: 21px;
  flex: none;
  border: 0;
  border-radius: 999px;
  background: var(--soft-deep);
  cursor: pointer;
  transition: background 0.16s ease;
}
.loop-switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--paper);
  transition: transform 0.18s cubic-bezier(0.3, 1.2, 0.4, 1);
}
.loop-switch.is-on {
  background: #161512;
}
.loop-switch.is-on i {
  transform: translate(15px);
}
.trade-loop-body {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid rgba(31, 30, 27, 0.05);
}
.trade-loop-lever {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trade-loop-lever strong {
  flex: none;
  width: 34px;
  font-size: 13px;
  font-weight: 680;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.trade-loop-stats {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
  font-size: 11.5px;
  color: var(--muted);
}
.trade-loop-stats strong {
  color: var(--text);
  font-weight: 660;
}
.trade-loop-stats small {
  font-size: 10.5px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #d6d4ce transparent;
}
*::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  border: 2.5px solid transparent;
  border-radius: 999px;
  background-color: #d6d4ce;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #c2c0b9;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
.topbar-x {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--soft-hover);
  color: var(--text);
  transition: background 0.13s ease;
}
.topbar-x:hover {
  background: var(--soft);
}
.topbar-x svg {
  width: 13px;
  height: 13px;
}
.markets-controls {
  margin-top: 26px;
}
.markets-controls .markets-tabs {
  margin: 0 0 0 auto;
}
.markets-controls .markets-tabs button {
  padding: 0 11px;
  font-size: 11.5px;
}
.filter-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 61;
  display: flex;
  min-width: 320px;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 18px 44px #12121024;
  animation: menu-pop 0.14s ease both;
}
.filter-pop-line {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.filter-pop-line small {
  width: 62px;
  flex: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.filter-pop-line button {
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: var(--soft-hover);
  color: #55534e;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
  transition: background 0.13s ease, color 0.13s ease;
}
.filter-pop-line button:hover {
  background: var(--soft);
}
.filter-pop-line button.is-active {
  background: var(--soft-deep);
  color: var(--text);
  font-weight: 650;
}
.filter-wrap,
.split-card-in {
  position: relative;
}
.split-card-in .dex-picker {
  top: 10px;
  left: 10px;
  right: 10px;
  max-height: 380px;
}
.nav-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  padding: 6px;
  color: var(--muted);
  transition: color 0.13s ease;
}
.nav-x:hover {
  color: var(--text);
}
.nav-x svg {
  width: 12.5px;
  height: 12.5px;
}
.trade-view .trade-panel .trade-field-label {
  margin: 11px 0 6px;
  font-size: 10.5px;
}
.choice-cards {
  gap: 7px;
}
.choice-cards button {
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 12px;
}
.choice-cards strong {
  font-size: 12px;
}
.choice-cards span {
  font-size: 10px;
  line-height: 1.35;
}
.choice-cards button.is-active span {
  max-height: 42px;
  margin-top: 4px;
}
.choice-cards button.is-active .choice-viz {
  max-height: 24px;
  margin-top: 5px;
}
.trade-view .trade-panel .trade-choice-copy {
  margin: 8px 0 0;
}
.trade-view .trade-panel .trade-choice-copy p {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.45;
}
.trade-view .trade-panel .trade-maturity-row {
  margin-top: 12px;
  padding-bottom: 12px;
}
.trade-view .trade-panel .swap-field--lg {
  padding: 7px 11px 8px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-body input {
  font-size: 21px;
}
.trade-view .trade-panel .trade-estimate {
  margin-top: 10px;
}
.trade-view .trade-panel .trade-estimate > div {
  padding: 5px 0;
}
.trade-view .trade-panel .trade-estimate span {
  font-size: 10.5px;
}
.trade-view .trade-panel .trade-estimate strong {
  font-size: 11.5px;
}
.trade-loop {
  margin-top: 10px;
  padding: 10px 12px;
}
.trade-loop-head strong {
  font-size: 12px;
}
.trade-loop-head small {
  font-size: 10.5px;
}
.trade-view .trade-panel .trade-scroll {
  padding: 12px 16px 18px;
}
.trade-view .trade-panel .tv-seg--primary {
  margin-bottom: 10px;
}
.trade-view .trade-panel .tv-seg--primary button {
  height: 32px;
  font-size: 12.5px;
}
.trade-view .trade-panel .trade-field-label {
  margin: 7px 0 5px;
  font-size: 10px;
}
.choice-cards button {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 11px;
}
.choice-cards strong {
  font-size: 11.5px;
}
.choice-cards span {
  font-size: 9.5px;
  line-height: 1.3;
}
.choice-cards button.is-active span {
  max-height: 34px;
  margin-top: 3px;
}
.choice-cards button.is-active .choice-viz {
  max-height: 16px;
  margin-top: 4px;
}
.trade-view .trade-panel .trade-choice-copy {
  margin: 6px 2px 0;
}
.trade-view .trade-panel .trade-choice-copy p {
  font-size: 10px;
  line-height: 1.4;
}
.trade-view .trade-panel .trade-maturity-row {
  margin: 8px 0 10px;
  padding-bottom: 10px;
}
.trade-view .trade-panel .trade-maturity-row .tv-select-btn {
  height: 30px;
}
.trade-view .trade-panel .swap-field--lg {
  padding: 6px 10px 7px;
  border-radius: 12px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-head {
  margin-bottom: 3px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-head span {
  font-size: 11px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-head small {
  font-size: 10px;
}
.trade-view .trade-panel .swap-field--lg .swap-token {
  height: 28px;
  padding: 0 10px 0 6px;
  font-size: 12.5px;
}
.trade-view .trade-panel .swap-field--lg .swap-token img,
.trade-view .trade-panel .swap-field--lg .company-logo--swap {
  width: 18px;
  height: 18px;
}
.trade-view .trade-panel .swap-field--lg .swap-field-body input {
  font-size: 19px;
}
.trade-view .trade-panel .trade-estimate {
  margin-top: 8px;
  padding-top: 8px;
}
.trade-view .trade-panel .trade-estimate > div {
  padding: 3px 0;
}
.trade-view .trade-panel .trade-estimate span {
  font-size: 10px;
}
.trade-view .trade-panel .trade-estimate strong {
  font-size: 11px;
}
.trade-loop {
  margin-top: 8px;
  padding: 8px 10px;
}
.trade-loop-head strong {
  font-size: 11.5px;
}
.trade-loop-head small {
  font-size: 10px;
}
.trade-loop-body {
  margin-top: 8px;
  padding-top: 8px;
}
.trade-loop-stats {
  margin-top: 6px;
  font-size: 10.5px;
}
.trade-view .trade-panel .trade-foot {
  margin-top: -26px;
  padding: 26px 16px 10px;
}
.trade-view .trade-panel .trade-primary {
  margin-top: 0;
  padding: 11px;
  font-size: 13px;
}
.trade-view .trade-panel .trade-learn {
  margin-top: 6px;
  font-size: 10.5px;
}
.choice-cards button.is-active .choice-viz {
  max-height: 20px;
  margin-top: 5px;
}
.choice-viz--pt,
.choice-viz--yt {
  height: 20px;
}
.choice-viz--pt .viz-track {
  top: 10px;
}
.choice-viz--pt .viz-dot {
  top: 4px;
  width: 12px;
  height: 12px;
  border-width: 2px;
}
.choice-viz--pt .viz-flag {
  top: 2px;
  height: 16px;
}
.choice-viz--yt .viz-usdg {
  bottom: 3px;
  width: 12px;
  height: 12px;
}
.landing-hero {
  min-height: 0;
  justify-content: flex-start;
  padding-top: clamp(56px, 11svh, 110px);
  padding-bottom: 90px;
}
.landing-shot {
  width: min(1120px, 94vw);
  margin-top: clamp(34px, 5svh, 54px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px #1f1e1b0f, 0 24px 70px -18px #1f1e1b47;
}
.landing-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.search-pal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 13vh 20px 20px;
  background: #1f1e1b47;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: search-fade 0.14s ease both;
}
@keyframes search-fade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.search-pal {
  display: flex;
  width: 560px;
  max-width: 100%;
  max-height: min(560px, 74vh);
  flex-direction: column;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 32px 90px -12px #12121059;
  overflow: hidden;
  animation: search-rise 0.18s cubic-bezier(0.3, 1.1, 0.4, 1) both;
}
@keyframes search-rise {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.search-pal-field {
  display: flex;
  flex: none;
  align-items: center;
  gap: 11px;
  padding: 16px 18px 13px;
}
.search-pal-field svg {
  flex: none;
  font-size: 17px;
  color: var(--muted);
}
.search-pal-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 540;
  outline: none;
}
.search-pal-field input::placeholder {
  color: #b3b0a8;
}
.search-pal kbd {
  flex: none;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--soft-hover);
  color: var(--muted);
  font-family: inherit;
  font-size: 10px;
  font-weight: 620;
}
.search-pal-chips {
  display: flex;
  flex: none;
  gap: 5px;
  padding: 0 14px 12px;
  overflow-x: auto;
}
.search-pal-chips button {
  display: inline-flex;
  height: 26px;
  flex: none;
  align-items: center;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: var(--soft-hover);
  color: #55534e;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
  transition: background 0.13s ease, color 0.13s ease;
}
.search-pal-chips button:hover {
  background: var(--soft);
}
.search-pal-chips button.is-active {
  background: var(--soft-deep);
  color: var(--text);
  font-weight: 650;
}
.search-pal-results {
  flex: 1;
  min-height: 120px;
  padding: 4px 8px 8px;
  overflow-y: auto;
}
.search-pal-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.search-pal-row.is-hot {
  background: var(--soft-hover);
}
.search-pal-name {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}
.search-pal-name strong {
  font-size: 13px;
  font-weight: 650;
}
.search-pal-name small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-pal-return {
  flex: none;
  padding: 3px 8px;
  border-radius: 7px;
  background: var(--soft-hover);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.search-pal-row.is-hot .search-pal-return {
  background: var(--paper);
}
.search-pal-price {
  display: flex;
  min-width: 84px;
  flex: none;
  flex-direction: column;
  align-items: flex-end;
}
.search-pal-price strong {
  font-size: 12.5px;
  font-weight: 640;
  font-variant-numeric: tabular-nums;
}
.search-pal-price small {
  font-size: 10.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.search-pal-price .positive {
  color: #2f8032;
}
.search-pal-price .negative {
  color: #a44b41;
}
.search-pal-empty {
  padding: 44px 0;
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
}
.search-pal-skel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
}
.search-pal-skel-thumb {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--soft-hover);
  animation: skel-pulse 1.1s ease-in-out infinite;
}
.search-pal-skel-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
}
.search-pal-skel-copy i {
  height: 9px;
  border-radius: 5px;
  background: var(--soft-hover);
  animation: skel-pulse 1.1s ease-in-out infinite;
}
.search-pal-skel-copy i:first-child {
  width: 34%;
}
.search-pal-skel-copy i:last-child {
  width: 58%;
}
.search-pal-skel-value {
  width: 62px;
  height: 12px;
  flex: none;
  border-radius: 6px;
  background: var(--soft-hover);
  animation: skel-pulse 1.1s ease-in-out infinite;
}
@keyframes skel-pulse {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
.search-pal-foot {
  display: flex;
  flex: none;
  gap: 16px;
  padding: 9px 16px;
  background: var(--soft-hover);
  color: var(--muted);
  font-size: 10.5px;
}
.search-pal-foot span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.search-pal-foot kbd {
  background: var(--paper);
}
.choice-cards button {
  min-height: 0;
  padding: 9px 11px 10px;
  border: 0;
  border-radius: 12px;
  background: var(--soft-hover);
}
.choice-cards button:hover {
  background: var(--soft);
}
.choice-cards button.is-active {
  background: var(--soft-deep);
  border: 0;
}
.choice-cards strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
}
.choice-cards strong .folio-tag {
  padding: 1.5px 5px;
  border-radius: 5px;
  font-size: 8.5px;
}
.choice-cards span,
.choice-cards button.is-active span {
  max-height: none;
  margin-top: 3px;
  overflow: visible;
  opacity: 1;
  font-size: 9.5px;
  line-height: 1.35;
}
@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url(/assets/fonts/nunito-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url(/assets/fonts/nunito-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
html:has(.landing-hero),
body:has(.landing-hero) {
  overflow: hidden;
}
.landing-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100svh;
  overflow: hidden;
  padding: 0;
  background: var(--paper) url(/assets/landing-twin-portals.png) center top /
    cover no-repeat;
}
.landing-intro,
.landing-showcase {
  position: relative;
  z-index: 1;
}
.landing-intro {
  display: flex;
  min-height: clamp(320px, 46svh, 460px);
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(58px, 9svh, 96px) 24px clamp(46px, 7svh, 72px);
  text-align: center;
}
.landing-hero h1 {
  margin: 0;
  font-family: SF Pro Rounded, ui-rounded, Nunito, -apple-system,
    BlinkMacSystemFont, sans-serif;
  font-size: clamp(31px, 4vw, 55px);
  font-weight: 650;
  letter-spacing: -0.026em;
  line-height: 1.08;
}
.landing-cta {
  gap: 10px;
  margin-top: clamp(26px, 3.8svh, 40px);
}
.landing-primary,
.landing-secondary {
  display: inline-flex;
  width: auto;
  min-width: 126px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  white-space: nowrap;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 620;
}
.landing-secondary {
  border: 1px solid rgba(18, 18, 16, 0.16);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  transition: background 0.13s ease, border-color 0.13s ease;
}
.landing-secondary:hover {
  border-color: #1212104d;
  background: #1212100a;
}
.landing-showcase {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding: clamp(28px, 3.6vw, 54px) 18px 0;
}
.landing-shot {
  width: 74vw;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 16, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 80px -42px #12121057;
}
.landing-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
@media (max-width: 640px) {
  .landing-intro {
    min-height: 430px;
    padding-inline: 18px;
  }
  .landing-hero h1 {
    font-size: clamp(27px, 7.6vw, 38px);
  }
  .landing-primary,
  .landing-secondary {
    width: auto;
    min-width: 112px;
    height: 40px;
    padding: 0 18px;
  }
  .landing-showcase {
    padding: 20px 12px 0;
  }
}
.trade-view .trade-panel .trade-scroll {
  display: flex;
  flex-direction: column;
}
.trade-view .trade-panel .trade-scroll > * {
  flex: none;
}
.trade-view .trade-panel .trade-estimate {
  margin-top: auto;
  padding-top: 14px;
}
.trade-view .trade-panel .trade-learn {
  display: block;
  width: 100%;
  text-align: center;
}
.trade-loop.is-off {
  opacity: 0.62;
}
.trade-loop.is-off .loop-switch {
  cursor: default;
}
.activity-row > span.is-out svg {
  transform: rotate(180deg);
}
.landing-nav {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1120px, 86vw);
  height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px auto 0;
  padding: 0;
}
.landing-nav-left,
.landing-nav-right {
  display: inline-flex;
  align-items: center;
}
.landing-nav-left {
  gap: 30px;
  min-width: 0;
}
.landing-nav-right {
  gap: 8px;
  flex: none;
}
.landing-contract-pill {
  position: absolute;
  left: 50%;
  display: flex;
  width: clamp(250px, 28vw, 340px);
  height: 32px;
  min-width: 0;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 0;
  border-radius: 999px;
  background: #1212100d;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transform: translate(-50%);
  white-space: nowrap;
}
.landing-ca-label {
  flex: none;
  padding-left: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.landing-ca-value {
  display: block;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(9.5px, 0.78vw, 11px);
  font-variant-numeric: tabular-nums;
  font-weight: 620;
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(100% - 28px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(100% - 28px),
    transparent 100%
  );
}
.landing-ca-value mark {
  padding: 1px 2px;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  transition: background 80ms ease, color 80ms ease;
}
.landing-contract-pill:hover .landing-ca-value {
  color: var(--text);
}
.landing-contract-pill:hover .landing-ca-value mark {
  background: var(--soft-hover);
}
.landing-ca-copy {
  position: relative;
  display: grid;
  width: 26px;
  height: 100%;
  flex: none;
  place-items: center;
  border-radius: 999px;
  background: var(--text);
  color: var(--paper);
  transition: background 0.14s ease;
}
.landing-ca-copy-icon,
.landing-ca-check-icon,
.landing-ca-error-icon {
  grid-area: 1 / 1;
  width: 13px;
  height: 13px;
  transition: opacity 0.12s ease;
}
.landing-ca-check-icon,
.landing-ca-error-icon,
.landing-contract-pill.is-copied .landing-ca-copy-icon,
.landing-contract-pill.is-error .landing-ca-copy-icon {
  opacity: 0;
}
.landing-contract-pill.is-copied .landing-ca-check-icon,
.landing-contract-pill.is-error .landing-ca-error-icon {
  opacity: 1;
}
.landing-contract-pill.is-error .landing-ca-copy {
  background: #a44b41;
}
.landing-contract-pill:focus-visible {
  outline: 1px solid rgba(18, 18, 16, 0.34);
  outline-offset: 1px;
}
@media (prefers-reduced-motion: reduce) {
  .landing-ca-copy-icon,
  .landing-ca-check-icon,
  .landing-ca-error-icon {
    transition: none;
  }
}
.landing-nav-cta {
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: var(--paper);
  font: inherit;
  font-size: 12.5px;
  font-weight: 620;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.13s ease;
}
.landing-nav-cta:hover {
  opacity: 0.86;
}
.landing-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 660;
  letter-spacing: 0.135em;
  white-space: nowrap;
}
.landing-nav-brand .verona-mark {
  width: 20px;
  height: 20px;
  flex: none;
}
.landing-nav-rule {
  display: none;
}
.landing-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.landing-nav-links > *,
.landing-nav-x {
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #121210a8;
  font: inherit;
  font-size: 13.5px;
  font-weight: 550;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.13s ease, color 0.13s ease;
}
.landing-nav-links > *:hover,
.landing-nav-x:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.landing-nav-x {
  gap: 7px;
  padding: 0 13px;
}
.landing-nav-x svg {
  width: 13px;
  height: 13px;
  flex: none;
}
.landing-intro {
  min-height: clamp(180px, 24svh, 260px);
  padding: clamp(52px, 8.6svh, 82px) 20px clamp(24px, 3.4svh, 40px);
}
@media (max-width: 860px) {
  .landing-nav-links {
    display: none;
  }
  .landing-contract-pill {
    top: 52px;
    display: flex;
    width: min(100%, 340px);
  }
}
@media (max-width: 640px) {
  .landing-nav {
    width: calc(100% - 32px);
    height: 44px;
    margin-top: 16px;
    gap: 10px;
    padding: 0;
  }
  .landing-contract-pill {
    width: 100%;
  }
  .landing-nav-cta {
    height: 34px;
    padding: 0 14px;
    font-size: 13.5px;
  }
  .landing-nav-x {
    width: 34px;
    gap: 0;
    padding: 0;
  }
  .landing-nav-x span {
    display: none;
  }
  .landing-nav-brand {
    font-size: 10.5px;
    letter-spacing: 0.16em;
  }
  .landing-nav-links > * {
    height: 34px;
    padding: 0 11px;
    font-size: 13.5px;
  }
  .landing-nav-x {
    width: 32px;
    padding: 0;
  }
  .landing-intro {
    min-height: 232px;
  }
}
@keyframes tick-up-flash {
  0% {
    color: #2f8032;
  }
  to {
    color: inherit;
  }
}
@keyframes tick-down-flash {
  0% {
    color: #a44b41;
  }
  to {
    color: inherit;
  }
}
.tv-market-button-price strong.tick-up {
  animation: tick-up-flash 0.7s ease both;
}
.tv-market-button-price strong.tick-down {
  animation: tick-down-flash 0.7s ease both;
}
.landing-cta {
  gap: 10px;
}
.landing-primary {
  gap: 9px;
  font-weight: 640;
  letter-spacing: -0.01em;
  transition: background 0.15s ease,
    transform 0.15s cubic-bezier(0.3, 1.2, 0.4, 1);
}
.landing-primary:hover {
  background: #2a2925;
  transform: translateY(-1px);
}
.landing-primary:active {
  transform: translateY(0) scale(0.98);
}
.landing-arrow {
  display: inline-block;
  transition: transform 0.18s cubic-bezier(0.3, 1.2, 0.4, 1);
}
.landing-primary:hover .landing-arrow {
  transform: translate(3px);
}
.landing-secondary {
  display: inline-flex;
  height: clamp(44px, 5.4svh, 52px);
  align-items: center;
  padding: 0 clamp(20px, 1.8vw, 26px);
  border-radius: 999px;
  background: var(--soft-hover);
  color: var(--text);
  font-weight: 590;
  transition: background 0.15s ease,
    transform 0.15s cubic-bezier(0.3, 1.2, 0.4, 1);
}
.landing-secondary:hover {
  background: var(--soft);
  color: var(--text);
  transform: translateY(-1px);
}
.landing-secondary:active {
  transform: translateY(0) scale(0.98);
}
.landing-cta .landing-primary,
.landing-cta .landing-secondary {
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
}
.landing-hero,
.landing-hero h1 {
  font-family: -apple-system, system-ui, SF Pro Display, Helvetica Neue,
    sans-serif;
}
.landing-hero h1 {
  font-weight: 660;
  letter-spacing: -0.04em;
}
.landing-cta .landing-primary,
.landing-cta .landing-secondary {
  height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 620;
  letter-spacing: -0.01em;
  transform: none;
  transition: background 0.14s ease;
}
.landing-cta .landing-primary {
  gap: 0;
  background: #161512;
  color: #f5f3ef;
}
.landing-cta .landing-primary:hover {
  background: #2a2925;
  transform: none;
}
.landing-cta .landing-primary:active {
  transform: scale(0.985);
}
.landing-cta .landing-secondary {
  background: #1615120f;
  color: #1f1e1b;
}
.landing-cta .landing-secondary:hover {
  background: #1615121a;
  color: #1f1e1b;
  transform: none;
}
.landing-cta .landing-secondary:active {
  transform: scale(0.985);
}
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px 11px 12px;
  border: 0;
  border-radius: 14px;
  background: #161512;
  color: #f5f3ef;
  font-size: 13px;
  font-weight: 590;
  letter-spacing: -0.005em;
  box-shadow: 0 18px 44px -12px #12121066;
  transform: translate(-50%);
  animation: toast-life 3.2s cubic-bezier(0.3, 1.15, 0.4, 1) both;
}
.toast svg {
  width: 21px;
  height: 21px;
  flex: none;
  color: #7fd18a;
}
@keyframes toast-life {
  0% {
    opacity: 0;
    transform: translate(-50%) translateY(14px) scale(0.96);
  }
  7% {
    opacity: 1;
    transform: translate(-50%) translateY(0) scale(1);
  }
  88% {
    opacity: 1;
    transform: translate(-50%) translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%) translateY(8px) scale(0.98);
  }
}
.tv-activity-row.is-mine {
  background: var(--soft-hover);
  border-radius: 9px;
}
.tape-you {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 7px;
  background: #161512;
  color: #f5f3ef;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.scv2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 2px 8px;
}
.scv2-bar {
  display: flex;
  gap: 3px;
  height: 30px;
}
.scv2-bar span {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.scv2-bar-pt {
  background: #161512;
  color: #f5f3ef;
}
.scv2-bar-yt {
  justify-content: flex-end;
  background: #ee7500;
  color: #fff;
}
.scv2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.scv2-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 18px;
  border: 0;
  border-radius: 14px;
  background: var(--soft-hover);
}
.scv2-card.is-yt {
  background: #ee750012;
}
.scv2-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
}
.scv2-card-head img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.scv2-card > strong {
  font-size: 24px;
  font-weight: 680;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}
.scv2-chip {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--soft-deep);
  color: var(--text);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 630;
  font-variant-numeric: tabular-nums;
}
.scv2-chip.is-yt {
  background: #ee750026;
  color: #b05a08;
}
.scv2-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}
.scv2-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.scv2-labels {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 0 16px 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.scv2-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--soft-hover);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  text-align: left;
  font-variant-numeric: tabular-nums;
  transition: background 0.13s ease;
}
.scv2-row:hover {
  background: var(--soft);
}
.scv2-row.is-active {
  background: var(--soft-deep);
}
.scv2-when {
  display: flex;
  flex-direction: column;
}
.scv2-when strong {
  font-size: 12.5px;
  font-weight: 640;
}
.scv2-when small {
  color: var(--muted);
  font-size: 10.5px;
}
.deposit-modal {
  width: 584px;
  max-width: calc(100vw - 40px);
  padding: 20px 22px 22px;
}
.deposit-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}
.deposit-pane-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.deposit-modal .deposit-qr {
  margin: 0;
  padding: 12px;
  border-radius: 18px;
  background: var(--soft-hover);
}
.deposit-modal .deposit-network {
  margin: 0;
  justify-content: center;
}
.deposit-pane-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.deposit-modal .deposit-caption {
  margin: 2px 0 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.deposit-modal .deposit-check {
  margin: 0;
  width: 100%;
}
@media (max-width: 640px) {
  .deposit-body {
    grid-template-columns: 1fr;
  }
  .deposit-pane-qr {
    align-items: center;
  }
}
.deposit-modal {
  display: grid;
  width: 600px;
  max-width: calc(100vw - 40px);
  grid-template-columns: 252px 1fr;
  padding: 0;
  overflow: hidden;
}
.deposit-pane-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 24px;
  background: var(--soft-hover);
}
.deposit-modal .deposit-qr {
  margin: 0;
  padding: 11px;
  border-radius: 18px;
  background: var(--paper);
}
.deposit-modal .deposit-network {
  margin: 0;
  justify-content: center;
  font-size: 10.5px;
}
.deposit-pane-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 20px 22px 22px;
}
.deposit-pane-info .deposit-header {
  margin: 0;
  padding: 0;
}
.deposit-modal .deposit-caption {
  margin: 0;
  text-align: left;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}
.deposit-modal .deposit-address-block {
  margin: 0;
}
.deposit-modal .deposit-address code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.deposit-modal .deposit-check {
  margin: auto 0 0;
  width: 100%;
}
.deposit-modal .deposit-notice {
  margin: 0;
  text-align: left;
}
@media (max-width: 660px) {
  .deposit-modal {
    grid-template-columns: 1fr;
  }
}
.deposit-modal {
  display: flex;
  width: 396px;
  grid-template-columns: none;
  flex-direction: column;
  gap: 13px;
  padding: 20px 20px 16px;
  overflow: visible;
}
.deposit-modal .deposit-header {
  margin: 0;
  padding: 0;
}
.deposit-qr-card {
  display: flex;
  justify-content: center;
  padding: 22px;
  border-radius: 18px;
  background: var(--soft-hover);
}
.deposit-modal .deposit-qr {
  margin: 0;
  padding: 10px;
  border-radius: 14px;
  background: var(--paper);
}
.deposit-address-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 0;
  border-radius: 12px;
  background: var(--soft-hover);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.13s ease;
}
.deposit-address-pill:hover {
  background: var(--soft);
}
.deposit-address-pill code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-family: ui-monospace, SF Mono, monospace;
  font-size: 11.5px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.deposit-copy-hint {
  display: inline-flex;
  flex: none;
  color: var(--muted);
  font-size: 15px;
}
.deposit-address-pill:hover .deposit-copy-hint {
  color: var(--text);
}
.deposit-modal .deposit-caption {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.deposit-modal .deposit-check {
  margin: 2px 0 0;
  width: 100%;
}
.deposit-modal .deposit-notice {
  margin: 0;
  text-align: center;
}
.deposit-modal .deposit-network {
  margin: 2px 0 0;
  justify-content: center;
  font-size: 10.5px;
}
.deposit-modal {
  width: 384px;
  gap: 0;
  padding: 20px 22px 18px;
}
.deposit-qr-stage {
  display: flex;
  justify-content: center;
  padding: 26px 0 20px;
}
.deposit-modal .deposit-qr {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.deposit-addr {
  display: block;
  width: 100%;
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: ui-monospace, SF Mono, monospace;
  font-size: 11px;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}
.deposit-addr strong {
  color: var(--text);
  font-weight: 640;
}
.deposit-addr span {
  color: var(--muted);
  transition: color 0.13s ease;
}
.deposit-addr:hover span {
  color: var(--text);
}
.deposit-modal .deposit-caption {
  margin: 2px 0 0;
  min-height: 16px;
  color: var(--faint, #92908a);
  font-size: 11px;
  text-align: center;
}
.deposit-modal .deposit-check {
  margin: 18px 0 0;
  width: 100%;
}
.deposit-modal .deposit-notice {
  margin: 10px 0 0;
  text-align: center;
}
.deposit-modal .deposit-network {
  margin: 12px 0 0;
  justify-content: center;
  font-size: 10px;
  opacity: 0.75;
}
.deposit-modal {
  position: relative;
  width: 360px;
  padding: 30px 24px 20px;
  gap: 0;
}
.deposit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--soft-hover);
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  transition: background 0.13s ease, color 0.13s ease;
}
.deposit-close:hover {
  background: var(--soft);
  color: var(--text);
}
.deposit-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.deposit-identity img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 50%;
}
.deposit-identity strong {
  font-size: 16px;
  font-weight: 660;
  letter-spacing: -0.01em;
}
.deposit-identity small {
  color: var(--muted);
  font-size: 11.5px;
}
.deposit-qr-stage {
  padding: 24px 0 18px;
}
.deposit-addr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: ui-monospace, SF Mono, monospace;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.13s ease;
}
.deposit-addr:hover {
  background: var(--soft-hover);
}
.deposit-addr svg {
  color: var(--muted);
  font-size: 14px;
}
.deposit-modal .deposit-check {
  margin: 20px 0 0;
  width: 100%;
}
.deposit-modal .deposit-network {
  margin: 12px 0 0;
  justify-content: center;
  color: var(--muted);
  font-size: 10.5px;
  opacity: 1;
}
.fav-toggle em {
  padding: 1px 6px;
  border-radius: 7px;
  background: var(--paper);
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 640;
  font-variant-numeric: tabular-nums;
}
.fav-toggle.is-active {
  background: var(--soft-deep);
}
.fav-toggle.is-active svg {
  fill: currentColor;
}
.deposit-identity img {
  width: 36px;
  height: 36px;
  margin-bottom: 9px;
  box-shadow: 0 3px 10px #1f1e1b1f;
}
.deposit-identity strong {
  font-size: 16.5px;
  font-weight: 680;
  letter-spacing: -0.015em;
}
.deposit-identity small {
  font-size: 11px;
  color: var(--muted);
}
.deposit-qr-stage {
  display: flex;
  justify-content: center;
  padding: 22px 0 16px;
}
.deposit-addr {
  padding: 6px 13px;
  font-size: 14px;
  gap: 6px;
  transition: background 0.13s ease, transform 0.12s ease;
}
.deposit-addr:active {
  transform: scale(0.97);
}
.deposit-addr svg {
  font-size: 13px;
  opacity: 0.75;
}
.deposit-addr.is-copied {
  color: #2f8032;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 620;
}
.deposit-modal .deposit-check {
  margin-top: 18px;
  height: 46px;
  border-radius: 13px;
  font-size: 13.5px;
  transition: background 0.14s ease, transform 0.12s ease;
}
.deposit-modal .deposit-check:hover {
  background: #2a2925;
}
.deposit-modal .deposit-check:active {
  transform: scale(0.99);
}
.deposit-modal .deposit-network {
  margin-top: 10px;
  color: #92908a;
  font-size: 10.5px;
}
.deposit-modal .deposit-notice {
  margin-top: 10px;
}
@media (max-width: 640px) {
  .topbar,
  .topbar-main {
    max-width: 100%;
    overflow: hidden;
  }
  .topbar-main {
    min-width: 0;
  }
  .fluid-tabs.primary-nav {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .fluid-tabs.primary-nav::-webkit-scrollbar,
  .markets-tabs::-webkit-scrollbar {
    display: none;
  }
  .fluid-tabs.primary-nav > button {
    height: 30px;
    min-height: 30px;
    flex: 0 0 auto;
    padding: 0 13px;
  }
  .page.markets-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 18px 12px 48px;
  }
  .markets-controls {
    min-width: 0;
  }
  .markets-controls .markets-tabs {
    width: 100%;
    max-width: 100%;
    flex: 1 0 100%;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .markets-controls .markets-tabs > button {
    flex: 0 0 auto;
  }
  .markets-page .market-table--lean {
    display: none;
  }
  .markets-page .mobile-market-list {
    display: grid;
    gap: 10px;
  }
  .mobile-market-card {
    padding: 14px;
  }
  .mobile-market-card-body {
    margin-top: 14px;
    gap: 9px 14px;
  }
  .filter-pop {
    position: fixed;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-width: 0;
    height: fit-content;
    max-height: calc(100svh - 24px);
    margin: auto 0;
    overflow-y: auto;
    transform: none;
  }
  .page.trade-view {
    height: auto;
    min-height: calc(100svh - 92px);
    overflow: visible;
  }
  .trade-view > .tv-head {
    height: auto;
    min-height: 0;
    padding: 8px 12px;
  }
  .tv-market-switcher,
  .tv-market-button {
    width: 100%;
    max-width: 100%;
  }
  .tv-head-stats {
    min-width: 0;
    padding-left: 8px;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .tv-head-stats::-webkit-scrollbar {
    display: none;
  }
  .trade-view .tv-body {
    display: flex;
    width: 100%;
    min-height: 0;
    flex-direction: column;
    grid-template-columns: none;
    overflow: visible;
  }
  .trade-view .tv-chart {
    display: contents;
  }
  .trade-view .tv-content {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    overflow: visible;
  }
  .trade-view .market-price-chart-section,
  .trade-view .chart-section.market-price-chart-section {
    width: 100%;
    height: auto;
    padding-top: 10px;
  }
  .trade-view .market-price-chart {
    width: 100%;
    height: 300px;
  }
  .tv-controls-row {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
  }
  .tv-controls-row .chart-range-pill,
  .tv-controls-row .tv-tabs {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .tv-controls-row .chart-range-pill > button,
  .tv-controls-row .tv-tabs > button {
    flex: 1;
    padding-right: 8px;
    padding-left: 8px;
  }
  .trade-view .tv-market-activity {
    display: none;
  }
  .trade-view .trade-panel {
    order: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    border-top: 1px solid var(--line);
    border-left: 0;
    overflow: visible;
  }
  .trade-view .trade-scroll {
    width: 100%;
    min-height: 0;
    flex: none;
    padding: 16px 16px 10px;
    overflow: visible;
  }
  .trade-view .trade-foot {
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 8px 16px 16px;
    border: 0;
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-mask-image: none;
  }
  .trade-view .tv-about,
  .trade-view .tv-resources {
    order: 3;
    width: 100%;
    margin: 0;
    padding: 28px 16px 0;
  }
  .trade-view .tv-resources {
    order: 4;
    padding-bottom: 40px;
  }
  .page.wide-page.pools-page {
    width: 100%;
    max-width: 100%;
    height: calc(100svh - 92px);
    margin: 0;
    padding: 24px 12px 16px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .pools-page .pool-head,
  .pools-page .pool-scroll {
    width: 620px;
    min-width: 620px;
  }
  .loop-page-v3 .pool-head,
  .loop-page-v3 .pool-scroll {
    width: 700px;
    min-width: 700px;
  }
  .pools-page .pool-scroll {
    overflow-y: auto;
  }
}
@media (max-width: 360px) {
  .topbar-search {
    width: 32px;
    flex: 0 0 32px;
    justify-content: center;
    margin-left: 8px;
    padding: 0;
  }
  .topbar-search > span,
  .topbar-search kbd {
    display: none;
  }
  .fluid-tabs.primary-nav > button {
    padding: 0 8px;
    font-size: 11.5px;
  }
  .discovery-groups {
    display: flex;
    gap: 8px;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .discovery-groups::-webkit-scrollbar {
    display: none;
  }
  .discovery-group {
    width: 260px;
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
  .split-page-v2 .trade-maturity-row {
    gap: 6px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .split-page-v2 .trade-maturity-row > span {
    font-size: 11px;
  }
  .split-page-v2 .trade-maturity-row .tv-select-btn {
    padding-right: 0;
    padding-left: 0;
  }
  .split-page-v2 .trade-maturity-row .tv-select-btn > span {
    align-items: flex-end;
    flex-direction: column;
    gap: 0;
  }
  .split-page-v2 .trade-maturity-row .tv-select-btn em {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  html:has(.landing-hero),
  body:has(.landing-hero) {
    width: 100%;
  }
  .landing-hero {
    width: 100%;
    align-items: stretch;
    background-position: center bottom;
    background-size: 100% auto;
  }
  .landing-nav {
    flex: none;
  }
  .landing-intro {
    width: 100%;
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    padding: 32px 16px 24px;
  }
  .landing-cta {
    width: min(288px, calc(100vw - 32px));
    gap: 8px;
  }
  .landing-cta .landing-primary,
  .landing-cta .landing-secondary {
    width: 0;
    min-width: 0;
    flex: 1 1 0;
    padding-right: 10px;
    padding-left: 10px;
  }
  .landing-showcase {
    width: 100%;
    flex: none;
    margin-top: 0;
    padding: 0 16px 18px;
  }
  .landing-shot {
    width: min(88vw, 340px);
  }
}
.nav-docs {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 6px 11px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 550;
  transition: background 0.13s ease, color 0.13s ease;
}
.nav-docs:hover {
  background: var(--soft-hover);
  color: var(--text);
}
.topbar .nav-docs {
  height: 30px;
  margin-left: 4px;
  padding: 0 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
}
.topbar .nav-docs:hover {
  background: var(--soft-hover);
  color: var(--text);
  text-decoration: none;
}
