:root {
  --ink: #112825;
  --ink-soft: #3d5651;
  --paper: #f5f3eb;
  --paper-deep: #e9e5d8;
  --line: #c9cbbf;
  --mint: #00ae84;
  --mint-dark: #007f62;
  --lime: #ddf99a;
  --alert: #b85c32;
  --radius: 2px;
  --max-width: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

button, input { font: inherit; }

button { cursor: pointer; }

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3.25rem);
  border-color: var(--line);
}

.site-header { border-bottom: 1px solid var(--line); }
.site-footer { border-top: 1px solid var(--line); font-size: .77rem; color: var(--ink-soft); }

.header-tools { display: flex; align-items: center; gap: .8rem; }
.language-control select {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  padding: .34rem 1.9rem .34rem .65rem;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .03em;
}
.language-control { position: relative; }
.language-control::after { position: absolute; right: .65rem; top: 50%; content: "⌄"; pointer-events: none; transform: translateY(-58%); }
.language-control select:focus { outline: 3px solid rgba(0, 174, 132, .14); border-color: var(--mint-dark); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .095em;
  text-decoration: none;
}

.brand b { color: var(--mint-dark); }
.brand-mark { color: var(--mint); font-size: 1.45rem; line-height: .8; }
.version { color: var(--ink-soft); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }

.section-wrap { width: min(var(--max-width), calc(100% - 2.5rem)); margin-inline: auto; }
.hero { padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 9vw, 7rem); }
.eyebrow { margin: 0 0 .65rem; color: var(--mint-dark); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.02; }
h1 { max-width: 850px; margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { margin-bottom: 0; font-size: 1.35rem; }

.hero-copy { max-width: 670px; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.32rem); }
.hero-notes { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.2rem; }
.hero-notes span, .method-badge, .source-count, .data-state {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .34rem .6rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.workspace { padding: 0 0 6rem; }
.section-heading, .result-heading, .panel-heading { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; }
.result-heading-controls { display: flex; align-items: center; justify-content: end; flex-wrap: wrap; gap: .6rem; }
.small-copy { color: var(--ink-soft); font-size: .86rem; }
.control-card { margin-top: 1.4rem; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--ink); background: #faf9f4; }
.control-card label { display: block; margin-bottom: .6rem; font-size: .8rem; font-weight: 800; }
.input-row { position: relative; display: flex; gap: .7rem; }
.catalog-row { display: flex; align-items: end; gap: 1.4rem; margin-top: 1rem; }
.catalog-field { flex: 0 0 min(300px, 100%); }
.catalog-field label { margin-bottom: .35rem; }
.catalog-field select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--ink); padding: .7rem .8rem; }
.catalog-field select:disabled { cursor: wait; color: var(--ink-soft); }
.catalog-hint { max-width: 500px; margin: 0 0 .08rem; color: var(--ink-soft); font-size: .77rem; }
.timeframe-row { display: flex; align-items: end; gap: 1.4rem; margin-top: 1rem; }
.timeframe-field { flex: 0 0 min(300px, 100%); }
.timeframe-field label { margin-bottom: .35rem; }
.timeframe-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: .7rem .8rem;
}
.timeframe-field select:focus, .custom-period input:focus { outline: 3px solid rgba(0, 174, 132, .14); border-color: var(--mint-dark); }
.period-hint { max-width: 500px; margin: 0 0 .08rem; color: var(--ink-soft); font-size: .77rem; }
.custom-period { display: flex; align-items: end; gap: .6rem; margin-top: .8rem; }
.custom-period[hidden] { display: none; }
.custom-period label { margin: 0; white-space: nowrap; }
.custom-period input { width: auto; padding: .58rem .65rem; }
.progress-wrap { margin-top: 1rem; }
.progress-meta { display: flex; justify-content: space-between; gap: .8rem; margin-bottom: .35rem; color: var(--ink-soft); font-size: .74rem; }
.progress-bar { height: .38rem; background: var(--paper-deep); }
.progress-bar span { display: block; width: 0; height: 100%; background: var(--mint); transition: width .2s ease; }

input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  outline: none;
  padding: .85rem 1rem;
}
input:focus { border-color: var(--mint-dark); box-shadow: 0 0 0 3px rgba(0, 174, 132, .14); }

.asset-search-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + .45rem);
  left: 0;
  width: min(430px, 100%);
  overflow: hidden;
  border: 1px solid rgba(53, 226, 202, .22);
  border-radius: 16px;
  background: rgba(18, 23, 22, .98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
}

.asset-search-suggestions[hidden] { display: none; }

.asset-search-suggestion {
  display: grid;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(205, 238, 233, .08);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  gap: .2rem;
  padding: .78rem .95rem;
  text-align: left;
}

.asset-search-suggestion:last-child { border-bottom: 0; }
.asset-search-suggestion:hover,
.asset-search-suggestion:focus {
  background: rgba(53, 226, 202, .11);
  outline: none;
}

.asset-search-suggestion strong {
  color: var(--ink);
  font-size: .84rem;
}

.asset-search-suggestion span {
  color: var(--ink-soft);
  font-size: .76rem;
}

.primary-button {
  flex: 0 0 auto;
  border: 1px solid var(--mint-dark);
  border-radius: var(--radius);
  background: var(--mint-dark);
  color: white;
  padding: .85rem 1rem;
  font-weight: 750;
  white-space: nowrap;
}
.primary-button:hover { background: var(--ink); border-color: var(--ink); }
.primary-button:disabled { cursor: wait; opacity: .72; }
.secondary-button {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  padding: .56rem .72rem;
  font-size: .73rem;
  font-weight: 800;
}
.secondary-button:hover { background: var(--ink); color: var(--paper); }
.control-footer { display: flex; justify-content: space-between; gap: 1rem; align-items: start; margin-top: .85rem; }
.control-footer p { max-width: 640px; margin: 0; color: var(--ink-soft); font-size: .77rem; }
.text-button { border: 0; background: transparent; color: var(--mint-dark); font-size: .76rem; font-weight: 800; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 1.2rem; margin: .65rem 0 0; color: var(--alert); font-size: .78rem; }

.official-universe { margin-top: 1rem; border: 1px solid var(--line); background: #eff5ef; padding: clamp(1.1rem, 2.2vw, 1.5rem); }
.universe-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.universe-copy { max-width: 880px; margin: .75rem 0 1rem; color: var(--ink-soft); font-size: .82rem; line-height: 1.45; }
.basket-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .65rem; }
.basket-card { display: block; min-width: 0; border: 1px solid var(--line); background: #fbfaf5; color: var(--ink); cursor: pointer; padding: .7rem; text-align: left; transition: transform .15s ease, border-color .15s ease; }
.basket-card:hover { border-color: var(--mint); transform: translateY(-2px); }
.basket-rank { display: block; color: var(--mint-dark); font-size: .62rem; font-weight: 850; letter-spacing: .08em; }
.basket-symbol { display: block; margin: .28rem 0; font-size: 1rem; font-weight: 850; letter-spacing: -.03em; }
.basket-meta { display: block; color: var(--ink-soft); font-size: .67rem; line-height: 1.35; }
.basket-status { display: inline-block; margin-top: .45rem; border-radius: 999px; background: #d6f6e9; color: #075d48; padding: .2rem .35rem; font-size: .55rem; font-weight: 850; letter-spacing: .05em; }
.basket-status.candidate { background: #e5e9e8; color: #40514e; }
.basket-status.confirmed { background: #d6f6e9; color: #075d48; }
.basket-status.queued { background: #fff0c4; color: #7a4d00; }
.discovered-pools { margin-top: 1.15rem; border-top: 1px dashed var(--line); padding-top: 1.15rem; }
.discovered-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.discovered-heading h4 { margin: 0; font-size: 1.1rem; letter-spacing: -.03em; }
.discovered-copy { max-width: 760px; margin: .55rem 0 .8rem; color: var(--ink-soft); font-size: .77rem; }
.basket-card.discovery { border-color: #9bcfbe; background: #f7fcf8; }

.results { padding: 1rem 0 6rem; }
.data-state { color: var(--mint-dark); background: var(--lime); border-color: transparent; }
.data-state.live { background: var(--mint); color: white; }
.data-state.partial { background: #f6ca81; color: var(--ink); }
.summary-grid { display: grid; grid-template-columns: minmax(240px, .82fr) minmax(0, 1.18fr); gap: 1rem; margin-top: 1.4rem; }
.score-card, .finding-card, .panel { border: 1px solid var(--line); background: #fbfaf5; padding: clamp(1.2rem, 2.5vw, 1.75rem); }
.score-card { background: var(--ink); color: #fbfaf5; }
.card-label { margin-bottom: 1rem; color: var(--mint-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.score-card .card-label { color: var(--lime); }
.score-line { display: flex; align-items: baseline; gap: .25rem; }
.score-line strong { font-size: 4.3rem; letter-spacing: -.08em; line-height: .85; }
.score-line span { color: #b4c5c0; font-weight: 700; }
.status-pill { display: inline-block; margin-top: .8rem; border-radius: 999px; padding: .28rem .52rem; font-size: .62rem; font-weight: 850; letter-spacing: .08em; }
.status-pill.positive { background: var(--lime); color: var(--ink); }
.status-pill.caution { background: #f6ca81; color: var(--ink); }
.status-pill.neutral { background: #3a514c; color: #d8e2df; }
.summary-disclaimer { margin: .75rem 0 0; color: #b4c5c0; font-size: .7rem; }
.score-card p:last-of-type { margin: 1rem 0 1.25rem; color: #d8e2df; font-size: .88rem; }
.score-meter { height: .35rem; background: #3a514c; }
.score-meter span { display: block; height: 100%; background: var(--lime); transition: width .5s ease; }
.score-card.warning-card {
  border-color: rgba(246, 202, 129, .65);
  background:
    radial-gradient(circle at 78% 8%, rgba(246, 202, 129, .2), transparent 16rem),
    linear-gradient(160deg, #2b2412, #10100b 68%);
}
.score-card.warning-card .card-label { color: #ffd994; }
.score-card.warning-card .score-line strong { color: #ffd994; }
.score-card.warning-card .score-line span { display: none; }
.score-card.warning-card .score-meter span { background: #f6ca81; }
.finding-card { display: flex; flex-direction: column; justify-content: center; }
.finding-card p:last-child { max-width: 630px; margin: 0; font-size: clamp(1rem, 2vw, 1.25rem); letter-spacing: -.02em; }
.confidence-row { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: .55rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.confidence-label { color: var(--ink-soft); font-size: .65rem; font-weight: 850; letter-spacing: .09em; }
.confidence-row strong { color: var(--mint-dark); font-size: .73rem; letter-spacing: .04em; }
.confidence-row span:last-child { color: var(--ink-soft); font-size: .76rem; }
.quick-reasons { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .85rem; }
.quick-reasons span { border: 1px solid var(--line); border-radius: 999px; padding: .28rem .5rem; color: var(--ink-soft); font-size: .71rem; }
.research-recency { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .7rem; }
.research-recency span { color: var(--ink-soft); font-size: .69rem; }
.research-recency strong { color: var(--ink); font-size: .69rem; }

.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 1px; background: var(--line); border: 1px solid var(--line); }
.metric { min-height: 142px; padding: 1.2rem; background: var(--paper); }
.metric-label { display: block; color: var(--ink-soft); font-size: .67rem; font-weight: 800; letter-spacing: .09em; }
.metric-value { display: block; margin: .6rem 0 .25rem; font-size: 1.9rem; font-weight: 800; letter-spacing: -.05em; }
.metric-detail { color: var(--ink-soft); font-size: .77rem; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.panel-heading { align-items: start; padding-bottom: 1.15rem; border-bottom: 1px solid var(--line); }
.signal-list, .source-list { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.signal-list { counter-reset: signals; }
.signal-list li { position: relative; padding: 0 0 1rem 2.25rem; counter-increment: signals; font-size: .84rem; }
.signal-list li::before { position: absolute; left: 0; top: -.15rem; content: "0" counter(signals); color: var(--mint-dark); font-size: 1rem; font-weight: 800; }
.signal-list strong { display: block; font-size: .9rem; }
.signal-list span { color: var(--ink-soft); }
.source-list { display: grid; gap: .65rem; }
.source-list li { display: flex; gap: .7rem; align-items: center; border-bottom: 1px solid var(--paper-deep); padding-bottom: .65rem; }
.source-dot { width: .56rem; height: .56rem; flex: 0 0 auto; border-radius: 50%; background: var(--mint); }
.source-dot.muted { background: var(--line); }
.source-copy { min-width: 0; }
.source-copy strong, .source-copy span { display: block; }
.source-copy strong { font-size: .82rem; }
.source-copy span { overflow: hidden; color: var(--ink-soft); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.source-copy a { color: inherit; }

.trade-routes { margin-top: 1rem; }
.trade-route-list { display: grid; gap: .75rem; margin-top: 1rem; }
.trade-route-card {
  display: grid;
  grid-template-columns: 3rem minmax(8rem, .75fr) minmax(11rem, 1fr) minmax(9rem, .85fr) minmax(7rem, .65fr) auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--paper-deep);
  border-radius: 18px;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.035);
}
.trade-venue-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(53,226,202,.11);
  color: var(--mint);
  font-size: .72rem;
  font-weight: 900;
}
.trade-venue-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
  background: var(--ink);
}
.trade-route-venue,
.trade-route-pair,
.trade-route-quote,
.trade-route-tvl { display: grid; gap: .16rem; min-width: 0; }
.trade-route-pair strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.trade-route-venue span,
.trade-route-quote span,
.trade-route-tvl span { color: var(--ink-soft); font-size: .74rem; }
.trade-route-quote strong,
.trade-route-tvl span { color: var(--ink); font-weight: 850; }
.trade-route-quote strong { font-size: .88rem; }
.trade-venue { color: var(--mint) !important; font-weight: 850; text-transform: uppercase; }
.trade-route-action {
  border: 1px solid rgba(53,226,202,.45);
  border-radius: 999px;
  padding: .58rem .85rem;
  color: var(--mint);
  font-size: .72rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.trade-route-action:hover { background: rgba(53,226,202,.12); }

.source-intelligence { margin-top: 1rem; border: 1px solid var(--line); background: #f2f6ef; padding: clamp(1.2rem, 2.5vw, 1.75rem); }
.intelligence-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.intelligence-note { max-width: 840px; margin: 1rem 0 1.2rem; color: var(--ink-soft); font-size: .88rem; }
.intelligence-footer-note { max-width: none; margin: 1rem 0 0; border-top: 1px solid var(--line); padding-top: .9rem; font-size: .78rem; }
.source-intelligence-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; }
.map-panel, .source-registry-panel, .next-evidence-panel { background: #fbfaf5; }
.table-wrap { overflow-x: auto; }
.market-table { width: 100%; border-collapse: collapse; font-size: .78rem; }
.market-table th { color: var(--ink-soft); font-size: .63rem; font-weight: 850; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.market-table th, .market-table td { border-bottom: 1px solid var(--paper-deep); padding: .7rem .45rem; vertical-align: top; }
.market-table th:first-child, .market-table td:first-child { padding-left: 0; }
.market-table th:last-child, .market-table td:last-child { padding-right: 0; }
.market-table a { color: var(--mint-dark); font-weight: 750; }
.market-observation { display: block; margin-top: .3rem; color: var(--ink-soft); font-size: .69rem; line-height: 1.3; }
.status-tag { display: inline-block; border-radius: 999px; padding: .25rem .45rem; font-size: .6rem; font-weight: 850; letter-spacing: .06em; white-space: nowrap; }
.status-tag.observed, .status-tag.confirmed { background: #d6f6e9; color: #075d48; }
.status-tag.announced { background: #fff0c4; color: #7a4d00; }
.status-tag.candidate { background: #e5e9e8; color: #40514e; }
.status-tag.missing { background: #f9dbd2; color: #9a351c; }
.research-source-list { display: grid; gap: .8rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.research-source-list li { border-bottom: 1px solid var(--paper-deep); padding-bottom: .75rem; }
.research-source-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.source-row { display: flex; align-items: start; justify-content: space-between; gap: .7rem; }
.source-row strong, .source-row a { color: var(--ink); font-size: .82rem; }
.source-row a { text-decoration-color: var(--mint); text-underline-offset: 3px; }
.source-type, .source-meta { display: block; color: var(--ink-soft); font-size: .7rem; }
.source-detail { display: block; margin-top: .25rem; color: var(--ink-soft); font-size: .76rem; line-height: 1.4; }
.score-use { display: inline-block; margin-top: .35rem; color: var(--mint-dark); font-size: .65rem; font-weight: 800; }
.score-use.no { color: var(--ink-soft); }
.next-evidence-panel { margin-top: 1rem; border: 1px dashed var(--line); padding: 1rem 1.15rem; }
.next-evidence-panel h3 { font-size: 1.08rem; }
.next-evidence-panel ul { display: grid; gap: .5rem; margin: .7rem 0 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: .82rem; }
@media (max-width: 780px) { .source-intelligence-grid { grid-template-columns: 1fr; } .intelligence-heading { align-items: start; flex-direction: column; } }
@media (max-width: 900px) { .basket-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .basket-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .universe-heading { align-items: start; flex-direction: column; } }

.method { padding: clamp(3.5rem, 8vw, 6.5rem) 0; border-top: 1px solid var(--line); }
.method h2 { max-width: 620px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); max-width: 900px; margin-top: 2rem; }
.method-grid p { color: var(--ink-soft); }

@media (max-width: 720px) {
  .site-header, .site-footer, .section-heading, .result-heading, .panel-heading, .control-footer { align-items: start; flex-direction: column; }
  .result-heading-controls { justify-content: start; }
  .version { display: none; }
  .header-tools { align-self: center; }
  .input-row, .summary-grid, .detail-grid, .method-grid { grid-template-columns: 1fr; flex-direction: column; }
  .asset-search-suggestions { position: static; width: 100%; margin: -.25rem 0 .2rem; }
  .catalog-row, .timeframe-row, .custom-period { align-items: stretch; flex-direction: column; }
  .timeframe-field { flex-basis: auto; }
  .custom-period input { width: 100%; }
  .primary-button { width: 100%; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .trade-route-card { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
  .trade-route-pair,
  .trade-route-quote,
  .trade-route-tvl,
  .trade-route-action { grid-column: 2; }
  .trade-route-action { justify-self: start; margin-top: .35rem; text-align: center; }
  .confidence-row { grid-template-columns: 1fr; gap: .25rem; }
  .site-footer { gap: .25rem; }
}

@media (max-width: 420px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .section-wrap { width: min(var(--max-width), calc(100% - 1.5rem)); }
  .site-header, .site-footer { padding-inline: .75rem; }
}

/* V28 experience refresh: Mantle/xStocks inspired dark research console. */
:root {
  --ink: #f5fbf8;
  --ink-soft: #aebbb7;
  --paper: #070908;
  --paper-deep: #111716;
  --line: rgba(205, 238, 233, .14);
  --mint: #35e2ca;
  --mint-dark: #69e8dc;
  --lime: #dffb9d;
  --alert: #ff9b73;
  --panel: rgba(16, 24, 23, .82);
  --panel-strong: #0d1917;
  --panel-soft: rgba(255, 255, 255, .045);
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

html { background: #000; }

body {
  background:
    radial-gradient(circle at 78% 8%, rgba(31, 210, 191, .16), transparent 34rem),
    radial-gradient(circle at 12% 22%, rgba(223, 251, 157, .075), transparent 28rem),
    linear-gradient(180deg, #080a09 0%, #050706 52%, #080b0a 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 7, .82);
  backdrop-filter: blur(18px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 7, .72);
  color: var(--ink-soft);
}

.brand { color: var(--ink); }
.brand b, .brand-mark, .eyebrow, .text-button, .basket-rank { color: var(--mint); }
.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), #1fb7ff);
  color: #001311;
  font-size: 1rem;
  box-shadow: 0 0 30px rgba(53, 226, 202, .28);
}

.version,
.small-copy,
.hero-copy,
.catalog-hint,
.period-hint,
.control-footer p,
.universe-copy,
.discovered-copy,
.metric-detail,
.signal-list span,
.source-copy span,
.intelligence-note,
.method-grid p {
  color: var(--ink-soft);
}

.hero {
  min-height: 74vh;
  display: grid;
  align-content: center;
  padding-top: clamp(4.8rem, 9vw, 8rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

h1 {
  max-width: 980px;
  text-wrap: balance;
}

h1, h2, h3 {
  color: var(--ink);
}

.hero-copy {
  max-width: 760px;
}

.hero-notes span,
.method-badge,
.source-count,
.data-state,
.quick-reasons span {
  border-color: rgba(205, 238, 233, .18);
  background: rgba(255, 255, 255, .045);
  color: var(--ink);
}

.lens-flow,
.result-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.lens-flow {
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.lens-flow article,
.result-guide article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  padding: 1rem;
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
}

.lens-flow span,
.result-guide span {
  display: inline-flex;
  margin-bottom: .7rem;
  color: var(--mint);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.lens-flow strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.lens-flow p,
.result-guide p {
  margin: .45rem 0 0;
  color: var(--ink-soft);
  font-size: .82rem;
}

.workspace { padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }

.control-card,
.official-universe,
.score-card,
.finding-card,
.panel,
.source-intelligence,
.next-evidence-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.control-card {
  background:
    linear-gradient(135deg, rgba(53, 226, 202, .08), transparent 34%),
    rgba(13, 19, 18, .88);
}

.control-card label,
.metric-label,
.card-label,
.confidence-label,
.market-table th {
  color: #cfeee8;
}

input,
.catalog-field select,
.timeframe-field select,
.custom-period input,
.language-control select {
  border-color: rgba(205, 238, 233, .16);
  background: rgba(0, 0, 0, .28);
  color: var(--ink);
}

input::placeholder { color: rgba(245, 251, 248, .42); }
.catalog-field select:disabled { color: var(--ink-soft); }

.primary-button {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), #c8ff8c);
  color: #001311;
  box-shadow: 0 18px 44px rgba(53, 226, 202, .18);
}

.primary-button:hover {
  background: #f0ffd2;
  color: #001311;
}

.secondary-button {
  border-color: rgba(205, 238, 233, .28);
  border-radius: 12px;
  color: var(--ink);
}

.secondary-button:hover {
  background: var(--ink);
  color: #04100e;
}

.official-universe {
  background: rgba(10, 22, 20, .72);
}

.basket-card {
  border-color: var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  color: var(--ink);
}

.basket-card:hover {
  border-color: rgba(53, 226, 202, .72);
  background: rgba(53, 226, 202, .08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.basket-meta { color: var(--ink-soft); }
.basket-card.discovery { background: rgba(53, 226, 202, .07); border-color: rgba(53, 226, 202, .28); }
.basket-status,
.basket-status.confirmed,
.status-tag.observed,
.status-tag.confirmed {
  background: rgba(53, 226, 202, .15);
  color: var(--mint);
}
.basket-status.queued,
.status-tag.announced {
  background: rgba(255, 199, 109, .15);
  color: #ffd28c;
}
.basket-status.candidate,
.status-tag.candidate {
  background: rgba(255, 255, 255, .08);
  color: #d7dfdd;
}
.status-tag.missing {
  background: rgba(255, 125, 94, .14);
  color: #ffad96;
}

.results { padding-bottom: clamp(4rem, 7vw, 6rem); }

.score-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(53, 226, 202, .18), transparent 16rem),
    linear-gradient(160deg, #0d211e, #07110f 68%);
}

.score-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(53, 226, 202, .22);
  border-radius: 50%;
  content: "";
}

.score-line strong { color: #ffffff; }
.score-line span,
.summary-disclaimer,
.score-card p:last-of-type {
  color: #c8d7d3;
}
.score-meter {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.score-meter span {
  background: linear-gradient(90deg, var(--lime), var(--mint));
}

.finding-card {
  background: rgba(12, 16, 15, .82);
}

.finding-card p:last-child,
.confidence-row span:last-child {
  color: var(--ink-soft);
}

.confidence-row,
.panel-heading,
.source-list li,
.market-table th,
.market-table td,
.research-source-list li {
  border-color: var(--line);
}

.confidence-row strong,
.source-copy strong,
.source-row strong,
.source-row a,
.signal-list li::before,
.research-recency strong,
.metric-value {
  color: var(--ink);
}

.data-state {
  background: rgba(223, 251, 157, .16);
  color: var(--lime);
}
.data-state.live {
  background: rgba(53, 226, 202, .18);
  color: var(--mint);
}
.data-state.partial {
  background: rgba(255, 199, 109, .16);
  color: #ffd28c;
}

.metrics-grid {
  gap: .85rem;
  border: 0;
  background: transparent;
}

.metric {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.result-guide {
  margin-top: .85rem;
}

.detail-grid { margin-top: .85rem; }

.source-intelligence {
  background: rgba(9, 21, 19, .72);
}

.map-panel,
.source-registry-panel,
.next-evidence-panel {
  background: rgba(255, 255, 255, .04);
}

.market-table a,
.source-row a {
  color: var(--mint);
  text-decoration-color: rgba(53, 226, 202, .55);
}

.source-dot { background: var(--mint); box-shadow: 0 0 18px rgba(53, 226, 202, .35); }
.source-dot.muted { background: rgba(255,255,255,.22); box-shadow: none; }

.method {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(53, 226, 202, .035));
}

@media (max-width: 900px) {
  .lens-flow,
  .result-guide {
    grid-template-columns: 1fr;
  }
}

/* V28.1: compact branded hero. */
.site-header {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: .9rem auto 0;
  top: .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .9rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.brand {
  min-width: 0;
  gap: .7rem;
  letter-spacing: 0;
}

.brand > span {
  display: none;
}

.brand::before {
  display: block;
  width: 9.8rem;
  height: 2rem;
  content: "";
  background: url("brandassets/LOGO_HORIZONTAL_WHITE.svg") left center / contain no-repeat;
}

.brand::after {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  border-left: 1px solid rgba(205, 238, 233, .22);
  padding-left: .7rem;
  content: "Distribution Lens";
  color: #dffbf6;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: none;
}

.hero.section-wrap {
  position: relative;
  isolation: isolate;
  min-height: auto;
  margin-top: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
  border: 1px solid rgba(205, 238, 233, .14);
  border-radius: clamp(22px, 3vw, 34px);
  overflow: hidden;
  padding: clamp(1.65rem, 3.5vw, 2.75rem);
  background:
    linear-gradient(105deg, rgba(255,255,255,.075), rgba(255,255,255,.02) 48%, rgba(53,226,202,.06)),
    radial-gradient(circle at 78% 18%, rgba(53, 226, 202, .18), transparent 22rem),
    rgba(7, 12, 11, .9);
  box-shadow: 0 35px 120px rgba(0, 0, 0, .42), 0 1px 0 rgba(255,255,255,.08) inset;
}

.hero.section-wrap::before {
  position: absolute;
  right: clamp(-7rem, -4vw, -3rem);
  top: clamp(-6rem, -5vw, -2.5rem);
  z-index: -1;
  width: clamp(16rem, 32vw, 28rem);
  aspect-ratio: 1;
  content: "";
  background: url("brandassets/Mantle-Logo-mark.png") center / contain no-repeat;
  filter: saturate(1.08);
  opacity: .24;
  transform: translate3d(0, 0, 0) rotate(10deg);
  animation: mantleFloat 12s ease-in-out infinite;
}

.hero.section-wrap::after {
  position: absolute;
  right: 8%;
  bottom: 14%;
  z-index: -1;
  width: clamp(8rem, 18vw, 14rem);
  aspect-ratio: 1;
  border: 1px solid rgba(53, 226, 202, .24);
  border-radius: 999px;
  content: "";
  background:
    linear-gradient(135deg, rgba(53,226,202,.14), rgba(255,255,255,.02)),
    radial-gradient(circle at 30% 30%, rgba(223,251,157,.18), transparent 42%);
  box-shadow: 0 0 70px rgba(53,226,202,.12);
  animation: mantleDrift 16s ease-in-out infinite;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: .85rem;
  font-size: clamp(2.25rem, 4.35vw, 4.15rem);
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(.94rem, 1.35vw, 1.08rem);
}

.hero-notes {
  margin-top: 1.1rem;
}

.lens-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.15rem, 2.3vw, 1.75rem);
}

.lens-flow article {
  border-radius: 18px;
  background: rgba(255, 255, 255, .052);
  box-shadow: none;
  padding: .85rem;
}

@keyframes mantleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(10deg) scale(1); }
  50% { transform: translate3d(-1.4rem, 1.1rem, 0) rotate(16deg) scale(1.035); }
}

@keyframes mantleDrift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .86; }
  50% { transform: translate3d(1.1rem, -.8rem, 0); opacity: .55; }
}

@media (max-width: 760px) {
  .site-header {
    width: min(var(--max-width), calc(100% - 1.2rem));
    align-items: stretch;
    border-radius: 22px;
  }

  .brand::before { width: 8.8rem; }
  .brand::after { font-size: .72rem; }

  .hero.section-wrap {
    padding: 1.35rem;
  }

  .hero.section-wrap::before {
    right: -8rem;
    top: -3rem;
    opacity: .16;
  }

  .lens-flow {
    grid-template-columns: 1fr;
  }
}

/* V28.2: navbar cleanup. */
.site-header {
  width: 100%;
  max-width: none;
  margin: 0;
  top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding: .72rem clamp(1.15rem, 3.4vw, 3rem);
}

.brand::after {
  content: "RWA Distribution Lens";
  min-height: auto;
  padding-left: .85rem;
  font-size: .82rem;
}

.header-tools {
  margin-left: auto;
}

.version {
  display: none !important;
}

.language-control select {
  min-width: 12rem;
  padding: .45rem 2.1rem .45rem 2.1rem;
  text-align: center;
  text-align-last: center;
}

.language-control::after {
  right: 1rem;
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
    border-radius: 0;
    padding: .65rem .9rem;
  }

  .brand::before {
    width: 7.6rem;
  }

  .brand::after {
    font-size: .72rem;
    padding-left: .6rem;
  }

  .language-control select {
    min-width: 8.5rem;
  }
}

/* V28.3: move the Lens usage flow below the hero banner. */
.hero.section-wrap {
  margin-bottom: clamp(1.1rem, 2.4vw, 1.8rem);
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.15rem, 3.9vw, 3.8rem);
}

.hero-copy {
  max-width: 640px;
}

.onboarding {
  margin-top: 0;
  margin-bottom: clamp(1.35rem, 3vw, 2.25rem);
}

.onboarding-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(53, 226, 202, .08), rgba(255,255,255,.025) 45%, rgba(223, 251, 157, .04)),
    rgba(10, 18, 17, .78);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .3), 0 1px 0 rgba(255,255,255,.06) inset;
  padding: clamp(1rem, 2.3vw, 1.45rem);
}

.onboarding-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.onboarding-heading h2 {
  max-width: 520px;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.onboarding .lens-flow {
  margin-top: 0;
}

.onboarding .lens-flow article {
  border-color: rgba(205, 238, 233, .16);
  background: rgba(255, 255, 255, .045);
}

.workspace {
  padding-top: 0;
}

@media (max-width: 760px) {
  .onboarding-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: .85rem;
  }
}

/* V28.4: unified RWA asset list, replacing the visible tracked-library select. */
.legacy-catalog {
  display: none !important;
}

.official-universe {
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.asset-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.15rem;
}

.asset-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .95rem;
  margin-top: 1.15rem;
  margin-bottom: .2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.asset-tab {
  border: 1px solid rgba(53, 226, 202, .26);
  border-radius: 16px;
  min-width: 168px;
  padding: .84rem 1.38rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
    rgba(6, 19, 16, .78);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.asset-tab.active {
  background:
    linear-gradient(135deg, rgba(53, 226, 202, .2), rgba(95, 255, 176, .08)),
    rgba(4, 30, 25, .92);
  color: var(--mint);
  border-color: rgba(53, 226, 202, .72);
  box-shadow: 0 0 0 1px rgba(53, 226, 202, .16), 0 12px 34px rgba(12, 213, 178, .1);
}

.asset-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(53, 226, 202, .5);
  color: var(--ink);
}

.asset-row {
  display: grid;
  grid-template-columns: auto minmax(250px, 1fr) minmax(120px, .3fr) minmax(170px, .32fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: .85rem .95rem;
}

.asset-row:hover {
  transform: translateY(-1px);
}

.asset-token {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(53, 226, 202, .22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(53, 226, 202, .18), transparent 55%),
    rgba(255, 255, 255, .045);
  overflow: hidden;
}

.asset-token img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.asset-token-fallback {
  font-family: var(--mono);
  font-weight: 900;
  color: var(--mint);
}

.asset-main {
  min-width: 0;
}

.asset-main .basket-symbol {
  margin-top: .18rem;
}

.asset-main .basket-symbol strong {
  font-size: 1rem;
}

.asset-main .basket-symbol span {
  margin-left: .28rem;
  color: var(--ink-soft);
}

.asset-main .basket-symbol span::before {
  content: "· ";
}

.asset-market {
  display: grid;
  gap: .15rem;
  min-width: 0;
}

.asset-market span,
.asset-contract-copy {
  color: var(--ink-soft);
  font-size: .76rem;
}

.asset-market strong {
  font-size: .94rem;
  letter-spacing: -.02em;
}

.asset-contract-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  max-width: 100%;
  border: 1px solid rgba(205, 238, 233, .14);
  border-radius: 12px;
  padding: .52rem .62rem;
  background: rgba(255, 255, 255, .035);
  font-family: var(--mono);
  cursor: copy;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
  white-space: nowrap;
}

.asset-contract-copy span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.asset-contract-copy:hover,
.asset-contract-copy.copied {
  border-color: rgba(53, 226, 202, .56);
  background: rgba(53, 226, 202, .1);
  color: var(--mint);
  transform: translateY(-1px);
}

.asset-row .basket-action {
  justify-self: end;
  white-space: nowrap;
}

.asset-research-button {
  border: 1px solid rgba(53, 226, 202, .58);
  border-radius: 999px;
  padding: .66rem .95rem;
  background:
    linear-gradient(135deg, rgba(53, 226, 202, .17), rgba(95, 255, 176, .08)),
    rgba(7, 36, 29, .72);
  color: var(--mint);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.asset-research-button:hover {
  border-color: rgba(95, 255, 176, .82);
  background:
    linear-gradient(135deg, rgba(53, 226, 202, .26), rgba(95, 255, 176, .13)),
    rgba(7, 48, 38, .9);
  box-shadow: 0 0 0 1px rgba(53, 226, 202, .12), 0 14px 30px rgba(12, 213, 178, .12);
  transform: translateY(-1px);
}

.asset-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(205, 238, 233, .1);
}

.asset-carousel-controls span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .75rem;
  min-width: 92px;
  text-align: center;
}

.asset-carousel-controls button {
  min-width: 104px;
}

.asset-carousel-controls button:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 980px) {
  .asset-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .asset-market,
  .asset-contract-copy {
    grid-column: 2 / -1;
  }

  .asset-row .basket-action {
    grid-column: 3;
    grid-row: 2 / span 2;
    align-self: center;
  }
}

@media (max-width: 640px) {
  .asset-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .asset-market,
  .asset-contract-copy,
  .asset-row .basket-action {
    grid-column: 2;
    justify-self: start;
  }

  .asset-row .basket-action {
    margin-top: .2rem;
  }

  .asset-carousel-controls {
    justify-content: space-between;
  }
}

/* V29: present analysis only when requested, without redesigning the result cards. */
body.analysis-open {
  overflow: hidden;
}

.analysis-drawer[hidden] {
  display: none !important;
}

.analysis-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(680px, 58vw);
  background: rgba(0, 0, 0, .28);
}

.analysis-drawer-backdrop {
  grid-column: 1 / -1;
  grid-row: 1;
  border: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(53, 226, 202, .16), transparent 28%),
    rgba(0, 0, 0, .62);
  cursor: pointer;
}

.analysis-drawer-panel {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: none;
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  border-left: 1px solid rgba(53, 226, 202, .28);
  border-radius: 28px 0 0 28px;
  background:
    linear-gradient(135deg, rgba(53, 226, 202, .07), rgba(255,255,255,.025) 40%, rgba(0,0,0,.18)),
    #07110f;
  box-shadow: -28px 0 90px rgba(0, 0, 0, .45);
}

.analysis-close-button {
  position: sticky;
  top: 0;
  z-index: 3;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 0 .8rem .8rem;
  border: 1px solid rgba(205, 238, 233, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .22);
}

.analysis-close-button:hover {
  border-color: rgba(53, 226, 202, .65);
  background: rgba(53, 226, 202, .14);
}

.analysis-drawer-panel .result-heading {
  clear: both;
}

@media (max-width: 960px) {
  .analysis-drawer {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .analysis-drawer-panel {
    grid-column: 1;
    max-height: 94vh;
    height: auto;
    border-left: 0;
    border-top: 1px solid rgba(53, 226, 202, .28);
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 620px) {
  .analysis-drawer-panel {
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
    padding: 1rem;
  }

  .analysis-close-button {
    width: 38px;
    height: 38px;
  }
}
