@font-face {
  font-family: Manrope;
  src: url("assets/manrope-regular.ttf") format("truetype");
  font-weight: 400 500;
  font-display: swap;
}
.brand-logo {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  button, a, select, input, textarea, summary {
    transition: background-color 180ms ease, color 180ms ease,
      border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  }
  button:not(:disabled):hover, a:hover {
    filter: brightness(.98);
  }
  .main-nav.open { animation: vera-menu-in 200ms ease both; }
  dialog {
    opacity: 0;
    transform: translateY(10px) scale(.98);
    transition: opacity 180ms ease, transform 200ms ease,
      display 200ms allow-discrete, overlay 200ms allow-discrete;
  }
  dialog[open] { opacity: 1; transform: translateY(0) scale(1); }
  dialog::backdrop {
    background-color: transparent;
    transition: background-color 200ms ease, display 200ms allow-discrete,
      overlay 200ms allow-discrete;
  }
  dialog[open]::backdrop { background-color: #20292655; }
  @starting-style {
    dialog[open] { opacity: 0; transform: translateY(10px) scale(.98); }
    dialog[open]::backdrop { background-color: transparent; }
  }
  @keyframes vera-menu-in {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-bold.ttf") format("truetype");
  font-weight: 600 800;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
  padding-bottom: 30px;
}
button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #91c5ac;
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
}
h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}
h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 18px;
}
h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
p {
  color: var(--muted);
  line-height: 1.8;
}
svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--chrome);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px;
  min-height: 76px;
  padding: 0 40px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 650;
  color: var(--accent);
  white-space: nowrap;
}
.brand-icon {
  height: 24px;
  width: 26px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 18px;
  font-weight: 700;
}
.main-nav {
  display: flex;
  gap: 3px;
  align-items: center;
}
.main-nav a,
.how-link {
  font-size: 16px;
  color: var(--muted);
  padding: 10px 12px;
  white-space: nowrap;
}
.main-nav a.active {
  background: var(--hover);
  color: var(--accent);
  border-radius: 24px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.how-link {
  padding: 10px 4px;
  margin-right: 7px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 25px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.button:hover {
  background: var(--hover);
}
.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.primary:hover {
  background: #06614f;
}
.small {
  min-height: 40px;
  font-size: 16px;
  padding: 10px 20px;
}
.search-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  color: var(--muted);
  font-size: 16px;
  padding: 0 12px;
}
.search-trigger svg {
  width: 14px;
  height: 14px;
}
kbd {
  font-size: 16px;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 0 3px;
  border-radius: 3px;
  margin-left: auto;
}
.icon-button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
}
.icon-button:hover {
  background: var(--soft);
}
.menu-button {
  display: none;
}
.skip {
  position: fixed;
  top: -60px;
  left: 10px;
  background: var(--surface);
  padding: 10px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
main {
  max-width: 1280px;
  padding: 28px 40px 80px;
  margin: auto;
  min-height: calc(100vh - 360px);
}
main:focus {
  outline: none;
}
.hero {
  position: relative;
  min-height: 408px;
  display: flex;
  align-items: center;
  padding: 0 0 20px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 57%;
}
.hero h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.06;
  margin: 0 0 28px;
}
.hero h1 span {
  color: var(--accent);
}
.hero p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 34px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 27px;
  font-size: 16px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  background: #34a984;
  flex-shrink: 0;
}
.hero-meta .slash {
  color: var(--line);
}
.hero-meta a {
  display: flex;
  gap: 5px;
  align-items: center;
}
.hero-meta svg {
  width: 12px;
  height: 12px;
}
.hero-art {
  position: absolute;
  right: -15px;
  width: 52%;
  max-width: 630px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}
.stat {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.stat:last-child {
  border: 0;
}
.stat-label {
  font-size: 16px;
  color: var(--muted);
}
.stat-value {
  font-size: 32px;
  font-weight: 500;
  margin: 8px 0;
}
.stat-note {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.green {
  color: var(--positive);
}
.red {
  color: var(--negative);
}
.eyebrow {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.section-top p {
  max-width: 640px;
  margin: 0;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 16px;
  background: none;
  border: 0;
  padding: 8px 0;
  white-space: nowrap;
}
.assets {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.asset {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  text-align: left;
  min-height: 174px;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.asset:hover,
.asset.selected {
  border-color: var(--accent);
  background: var(--hover);
}
.asset-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 10px;
}
.asset-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
}
.asset-initial {
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--surface);
  font-size: 16px;
}
.asset-name {
  color: var(--muted);
  font-size: 16px;
  min-height: 27px;
  margin-bottom: 12px;
}
.asset-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  font-size: 16px;
}
.change {
  font-size: 16px;
  white-space: nowrap;
}
.asset small {
  display: block;
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
}
.market {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.market h2 {
  font-size: 32px;
}
.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}
.toolbar label {
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toolbar select {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 28px 8px 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
}
.toolbar input[type="search"] {
  border: 1px solid var(--line);
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 16px;
  width: 210px;
  min-width: 0;
}
.toolbar .right {
  margin-left: auto;
}
.live-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--muted);
}
.live-row > span:last-child {
  margin-left: auto;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  font-size: 16px;
}
th {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  background: var(--soft);
  padding: 11px 18px;
}
td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}
th:not(:first-child),
td:not(:first-child) {
  text-align: right;
}
tr:hover td {
  background: var(--soft);
}
.coin-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}
.coin-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--avatar);
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.coin-button strong {
  font-size: 16px;
  font-weight: 500;
}
.coin-button small {
  display: block;
  font-size: 16px;
  color: var(--muted);
  margin-top: 3px;
}
.pays {
  margin-left: 6px;
}
.pays b {
  font-weight: 400;
  color: var(--accent);
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 16px;
  margin-top: 15px;
}
.page-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.empty {
  padding: 64px 20px;
  text-align: center;
  color: var(--muted);
}
.empty > svg {
  height: 36px;
  width: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}
.empty h1 {
  font-size: 28px;
  max-width: 500px;
  margin: 0 auto 20px;
  color: var(--text);
}
.empty p {
  margin-bottom: 26px;
}
.holdings {
  padding: 115px 0 130px;
}
.footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 32px;
}
footer {
  border-top: 1px solid var(--line);
}
footer nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}
footer h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
footer a:not(.brand) {
  font-size: 16px;
  color: var(--muted);
}
.footer-brand p {
  font-size: 16px;
  margin: 12px 0 0;
}
.footer-brand p + p {
  font-size: 16px;
  margin-top: 8px;
}
.demo-label {
  display: inline-block;
  font-size: 16px;
  color: var(--muted);
  margin-top: 15px;
}
.ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  display: flex;
  align-items: center;
  background: var(--chrome);
  border-top: 1px solid var(--line);
  z-index: 25;
  font-size: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 100%;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  color: var(--muted);
}
.ticker-track {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  padding: 0 18px;
  overflow: auto;
  scrollbar-width: none;
}
.quote {
  display: flex;
  gap: 8px;
  align-items: center;
}
.quote img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}
.quote span {
  color: var(--muted);
}
.page-heading {
  margin: 18px 0 30px;
}
.page-heading h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.page-heading p {
  margin: 0;
  max-width: 800px;
}
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.tabs button {
  padding: 12px 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  background: none;
}
.tabs button.active {
  border-color: var(--accent);
  color: var(--accent);
}
.analytics-stats {
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 30px;
  border-radius: 8px;
}
.analytics-stats .stat {
  padding: 20px 18px;
}
.analytics-stats .stat-value {
  font-size: 23px;
}
.analytics-stats .stat-label {
  font-size: 16px;
  text-transform: uppercase;
}
.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 35px 0 40px;
}
.chart {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.chart h3 {
  font-size: 16px;
}
.chart canvas {
  width: 100%;
  height: 210px;
  display: block;
}
.chart-legend {
  font-size: 16px;
  color: var(--muted);
  display: flex;
  gap: 18px;
}
.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  margin-right: 5px;
}
.legend-dot.green {
  background: #7ab49e;
}
.chart-caption {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
}
.launcher-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
}
.form-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.allocation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.allocation label {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.allocation label:has(input:checked) {
  border-color: var(--accent);
  background: var(--hover);
}
.allocation strong {
  font-size: 16px;
  font-weight: 500;
}
.allocation small {
  display: block;
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}
.allocation input {
  accent-color: var(--accent);
}
.muted {
  color: var(--muted);
}
.note {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 15px 0;
}
.fee-mini {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 16px;
  margin-top: 15px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 16px;
}
.field.full {
  grid-column: 1/-1;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: var(--surface);
  color: var(--text);
}
.field textarea {
  min-height: 96px;
  resize: vertical;
}
.field .counter {
  float: right;
  color: var(--muted);
  font-size: 16px;
}
.upload {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  margin: 20px 0;
  cursor: pointer;
}
.upload-thumb {
  width: 66px;
  height: 66px;
  background: var(--soft);
  border-radius: 8px;
  display: grid;
  place-items: center;
  object-fit: cover;
  flex-shrink: 0;
}
.upload-thumb svg {
  width: 24px;
  height: 24px;
  color: var(--muted);
}
.upload strong {
  font-size: 16px;
}
.upload p {
  margin: 7px 0 0;
  font-size: 16px;
}
.buy-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.buy-options button {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 7px 13px;
  font-size: 16px;
  background: var(--surface);
}
.buy-options button.active {
  background: var(--hover);
  border-color: var(--accent);
  color: var(--accent);
}
.summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.summary h3 {
  margin-bottom: 24px;
}
.summary-coin {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.summary-coin strong {
  font-weight: 500;
}
.summary-coin small {
  display: block;
  color: var(--muted);
  font-size: 16px;
}
.summary dl {
  font-size: 16px;
}
.summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 12px 0;
}
.summary dt {
  color: var(--muted);
}
.summary dd {
  margin: 0;
  text-align: right;
}
.summary .button {
  width: 100%;
  margin-top: 12px;
}
.split-bars {
  display: flex;
  gap: 3px;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin: 16px 0;
}
.split-bars span:first-child {
  width: 90%;
  background: var(--accent);
}
.split-bars span:nth-child(2) {
  width: 5%;
  background: #85b49b;
}
.split-bars span:last-child {
  width: 5%;
  background: #d4b84a;
}
.summary-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
}
.summary-block .eyebrow {
  margin-bottom: 12px;
}
.summary-block strong {
  font-size: 22px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 22px;
}
.step-number {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 15px;
}
.steps p {
  font-size: 16px;
}
.section-band {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 40px;
}
.trans-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin: 25px 0;
  font-size: 16px;
}
.trans-meta span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 7px;
}
.split-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0 30px;
}
.split-grid strong {
  font-size: 42px;
  font-weight: 400;
  color: var(--accent);
}
.split-grid h3 {
  margin: 8px 0;
  font-size: 16px;
}
.split-grid p {
  font-size: 16px;
}
.disclosure {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.disclosure summary {
  cursor: pointer;
  font-size: 16px;
}
.disclosure p {
  font-size: 16px;
  margin: 16px 0 0;
}
.docs-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
}
.docs-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.docs-nav button {
  text-align: left;
  border: 0;
  background: none;
  font-size: 16px;
  color: var(--muted);
  padding: 10px 0;
}
.docs-section {
  padding: 12px 0 34px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
  scroll-margin-top: 100px;
}
.docs-section h2 {
  font-size: 24px;
}
.docs-section p {
  font-size: 16px;
}
.dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
.dialog-heading h2 {
  font-size: 22px;
  margin: 0;
}
dialog {
  width: min(540px, calc(100% - 32px));
  max-height: 85vh;
  overflow: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: var(--surface);
}
dialog::backdrop {
  background: #20292655;
  backdrop-filter: blur(4px);
}
.dialog-copy {
  font-size: 16px;
}
.search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  margin-bottom: 16px;
}
.search-results {
  display: grid;
  gap: 5px;
}
.search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 0;
  border-radius: 5px;
  background: var(--soft);
  text-align: left;
}
.search-result small {
  display: block;
  color: var(--muted);
  font-size: 16px;
}
.detail-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}
.detail-metrics span {
  display: block;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 7px;
}
.detail-metrics strong {
  font-size: 21px;
  font-weight: 500;
}
.wallet-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  margin: 12px 0;
}
.wallet-option svg {
  color: var(--accent);
}
.reward-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.reward-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 10px;
  font-size: 16px;
}
.reward-options label:has(input:checked) {
  background: var(--hover);
  border-color: var(--accent);
}
.reward-options img {
  width: 22px;
  height: 22px;
}
.no-wrap {
  white-space: nowrap;
}
@media (min-width: 1450px) {
  .hero h1 {
    font-size: 68px;
  }
}
@media (max-width: 1150px) {
  .header-inner {
    gap: 22px;
  }
  .how-link {
    display: none;
  }
  .search-trigger {
    min-width: 36px;
    width: 36px;
    padding: 9px;
  }
  .search-trigger span,
  .search-trigger kbd {
    display: none;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero p {
    max-width: 390px;
  }
  .assets {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-art {
    right: -10px;
    width: 49%;
  }
  .hero-copy {
    width: 60%;
  }
  .launcher-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
  }
  .stat {
    padding: 22px;
  }
  .analytics-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 15px 24px;
    flex-wrap: wrap;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-button {
    display: grid;
  }
  .header-inner {
    padding: 0 24px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-copy {
    width: 60%;
  }
  .hero p {
    font-size: 16px;
    max-width: 350px;
  }
  .hero-art {
    width: 47%;
  }
  .hero {
    min-height: 380px;
  }
  .hero-buttons .button {
    padding: 11px 17px;
    font-size: 16px;
  }
  .stat {
    padding: 20px;
  }
  .stat-value {
    font-size: 26px;
  }
  main {
    padding: 24px 24px 60px;
  }
  .footer-inner {
    padding: 40px 24px;
    gap: 24px;
  }
  .launcher-layout {
    grid-template-columns: 1fr;
  }
  .summary {
    position: static;
  }
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .docs-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 18px;
  }
  .docs-nav button {
    white-space: nowrap;
  }
  .toolbar .right {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .header-inner {
    padding: 0 20px;
    gap: 12px;
    min-height: 68px;
  }
  .main-nav {
    top: 68px;
  }
  .header-actions {
    gap: 6px;
  }
  .brand {
    font-size: 16px;
    gap: 8px;
  }
  .brand-icon {
    width: 24px;
    height: 23px;
  }
  .button.small {
    font-size: 16px;
    padding: 9px 15px;
    min-height: 37px;
  }
  .search-trigger {
    border: 0;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 25px 0 24px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: 43px;
    margin-bottom: 22px;
  }
  .hero p {
    font-size: 16px;
    max-width: none;
    margin-bottom: 24px;
  }
  .hero-buttons .button {
    min-height: 44px;
    padding: 10px 17px;
  }
  .hero-meta {
    margin-top: 22px;
    font-size: 16px;
  }
  .hero-art {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 440px;
    margin: 2px 0 -6px;
  }
  .hero-art img {
    max-height: 250px;
    object-fit: contain;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 36px;
    border-radius: 12px;
  }
  .stat {
    padding: 19px;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-note {
    font-size: 16px;
  }
  .stat-label {
    font-size: 16px;
  }
  main {
    padding: 16px 20px 50px;
  }
  .eyebrow {
    font-size: 16px;
    margin-bottom: 14px;
  }
  h2,
  .market h2 {
    font-size: 26px;
  }
  .section-top {
    align-items: flex-start;
    gap: 15px;
  }
  .section-top p {
    font-size: 16px;
  }
  .section-top .text-button {
    font-size: 16px;
    white-space: normal;
    flex-shrink: 0;
    max-width: 65px;
    margin-top: 28px;
  }
  .assets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .asset {
    padding: 14px;
    min-height: 164px;
    border-radius: 10px;
  }
  .asset-top {
    font-size: 16px;
  }
  .asset-name {
    font-size: 16px;
  }
  .asset-price {
    font-size: 16px;
  }
  .market {
    padding-top: 28px;
  }
  .toolbar {
    gap: 10px;
  }
  .toolbar input[type="search"] {
    width: 100%;
    order: -1;
  }
  .toolbar label {
    font-size: 16px;
  }
  .toolbar select {
    font-size: 16px;
    padding: 7px;
  }
  .toolbar .right {
    margin-left: auto;
  }
  .live-row {
    font-size: 16px;
  }
  .live-row > span:last-child {
    display: none;
  }
  td,
  th {
    padding: 14px 12px;
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 20px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .ticker {
    font-size: 16px;
  }
  .ticker-label {
    padding: 0 8px;
  }
  .page-heading h1 {
    font-size: 28px;
  }
  .page-heading p {
    font-size: 16px;
  }
  .allocation {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-number {
    margin-bottom: 8px;
  }
  .analytics-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .analytics-stats .stat {
    border-bottom: 1px solid var(--line);
  }
  .analytics-stats .stat:nth-child(even) {
    border-right: 0;
  }
  .analytics-stats .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .charts {
    grid-template-columns: 1fr;
  }
  .split-grid {
    gap: 16px;
  }
  .split-grid strong {
    font-size: 32px;
  }
  .split-grid h3 {
    font-size: 16px;
  }
  .split-grid p {
    font-size: 16px;
  }
  .holdings {
    padding: 80px 0;
  }
  .empty h1 {
    font-size: 25px;
  }
  .reward-options {
    grid-template-columns: 1fr 1fr;
  }
  .upload {
    gap: 12px;
    padding: 13px;
  }
  .upload-thumb {
    width: 48px;
    height: 48px;
  }
  .page-heading {
    margin-top: 15px;
  }
  .trans-meta {
    gap: 20px;
  }
  .docs-section h2 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.coin-avatar {
  object-fit: cover;
}
.coin-button strong,
.summary-coin strong,
.dialog-heading h2 {
  overflow-wrap: anywhere;
  white-space: normal;
}
.summary-coin > span:last-child {
  min-width: 0;
}
.summary-coin small {
  overflow-wrap: anywhere;
}
.coin-button strong {
  display: block;
  max-width: 260px;
}
.docs-layout > div,
.chart {
  min-width: 0;
}

/* VERA market desk identity and local trading surfaces. */
body {
  background: var(--page);
}
header,
footer {
  background: var(--surface);
}
input,
select {
  accent-color: var(--accent);
}
.brand {
  font-size: 19px;
  font-weight: 800;
}
.brand-icon {
  background: #dbe85c;
  color: var(--text);
  border-radius: 5px;
  height: 29px;
  width: 29px;
}
.header-inner {
  gap: 26px;
}
.main-nav a {
  padding: 10px;
}
.button {
  border-radius: 7px;
  font-weight: 700;
}
.main-nav a.active {
  border-radius: 6px;
}
.search-trigger {
  border-radius: 6px;
}
.hero {
  min-height: 365px;
  gap: 50px;
  margin-bottom: 12px;
  padding: 26px 0 34px;
}
.hero-copy {
  width: 56%;
}
.hero h1 {
  font-size: 53px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero p {
  font-size: 16px;
  max-width: 390px;
  margin-bottom: 24px;
}
.hero .hero-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.label-square {
  width: 8px;
  height: 8px;
  background: #bfce3f;
}
.hero-meta {
  margin-top: 22px;
}
.market-pulse {
  flex: 1;
  min-width: 0;
  max-width: 440px;
}
.pulse-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--muted);
  font-weight: 700;
}
.pulse-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  padding: 20px 0;
  text-align: left;
}
.pulse-row:hover {
  background: var(--soft);
}
.pulse-name {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pulse-name strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.pulse-name small {
  display: block;
  font-size: 16px;
  color: var(--muted);
  margin-top: 3px;
}
.pulse-price {
  text-align: right;
  flex-shrink: 0;
}
.pulse-price strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}
.pulse-chart {
  width: 76px;
  height: 26px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-left: auto;
}
.pulse-chart span {
  width: 4px;
  background: #28846c;
}
.pulse-row:nth-child(4) .pulse-chart span {
  background: #b89c3f;
}
.pulse-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  color: var(--muted);
  font-size: 16px;
}
.stats {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background: var(--soft);
  margin-bottom: 44px;
}
.stat-value {
  font-size: 29px;
  font-weight: 700;
}
.stat-label {
  font-size: 16px;
}
.asset {
  border-radius: 8px;
  background: var(--surface);
}
.asset.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
h2 {
  font-size: 25px;
  font-weight: 700;
}
.market h2 {
  font-size: 29px;
}
.eyebrow {
  font-weight: 700;
}
.section-top p {
  font-size: 16px;
}
.coin-cell {
  display: flex;
  align-items: center;
  gap: 5px;
}
.favorite-button {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  color: var(--muted);
}
.favorite-button svg {
  width: 14px;
  height: 14px;
}
.favorite-button.selected {
  color: var(--gold);
}
.favorite-button.selected svg {
  fill: #eee09e;
}
.coin-avatar {
  background: var(--avatar);
  color: #41663f;
}
.demo-pill {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 4px;
  background: var(--badge);
  color: var(--badge-text);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.toolbar {
  gap: 12px;
}
.toolbar input[type="search"] {
  width: 190px;
}
.toast {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  width: max-content;
  background: #203b30;
  color: var(--surface);
  padding: 13px 20px;
  border-radius: 7px;
  z-index: 100;
  font-size: 16px;
  box-shadow: 0 4px 18px #203b3020;
}
.toast.error {
  background: #a44046;
}
dialog {
  border-radius: 8px;
}
.wallet-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.wallet-banner > svg {
  width: 27px;
  height: 27px;
  color: var(--accent);
}
.wallet-banner strong {
  display: block;
  font-size: 28px;
}
.wallet-banner div > span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 6px;
}
.wallet-banner .demo-pill {
  margin-left: auto;
}
.wide {
  width: 100%;
  white-space: normal;
}
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.trade-quote {
  display: flex;
  align-items: center;
  gap: 15px;
}
.trade-quote div > span {
  font-size: 16px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.trade-quote strong {
  display: block;
  font-size: 29px;
}
.trade-quote .demo-pill {
  margin-left: auto;
}
.detail-metrics {
  border-block: 1px solid var(--line);
  padding: 18px 0;
  margin: 22px 0;
}
.detail-metrics strong {
  font-size: 18px;
}
.trade-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 6px;
  background: var(--soft);
  margin-bottom: 22px;
}
.trade-tabs button {
  background: none;
  border: 0;
  border-radius: 4px;
  padding: 9px;
  font-weight: 700;
  font-size: 16px;
}
.trade-tabs button.active {
  background: var(--surface);
  color: var(--accent);
  box-shadow: 0 1px 3px #263d2912;
}
.trade-tabs button[data-side="sell"].active {
  color: var(--negative);
}
#trade-amount {
  font-size: 24px;
  font-weight: 700;
  padding: 14px;
}
.order-available {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  font-size: 16px;
  color: var(--muted);
}
.order-estimate {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
.inline-error {
  color: var(--negative);
  font-size: 16px;
  line-height: 1.5;
  min-height: 18px;
  margin: 0 0 12px;
}
.order-success {
  text-align: center;
  padding: 20px 0;
}
.order-success > svg {
  width: 42px;
  height: 42px;
  color: var(--accent);
  margin-bottom: 15px;
}
.order-success strong {
  font-size: 30px;
}
.order-success p {
  font-size: 16px;
  margin-top: 15px;
}
.portfolio-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.portfolio-empty {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.activity-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 16px;
}
.activity-filter select {
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 16px;
}
.order-side {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.portfolio-stats .stat-value {
  font-size: 25px;
}
.holdings .button {
  white-space: normal;
}
.portfolio-heading ~ .section-top {
  align-items: center;
}
.portfolio-empty .button svg {
  width: 16px;
  height: 16px;
  margin: 0;
}
.portfolio-empty {
  padding: 38px 20px;
}
.section-top:has(+ .portfolio-empty) {
  align-items: center;
}
.section-top:has(+ .portfolio-empty) h2 {
  margin: 0;
}
.section-top:has(+ .portfolio-empty) .text-button {
  margin-top: 0;
  max-width: none;
}
@media (max-width: 1150px) {
  .hero h1 {
    font-size: 47px;
  }
  .hero {
    gap: 30px;
  }
  .hero-copy {
    width: 53%;
  }
  .pulse-chart {
    width: 46px;
    gap: 2px;
  }
  .pulse-row {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero {
    gap: 24px;
  }
  .pulse-chart {
    display: none;
  }
  .hero-copy {
    width: 56%;
  }
  .header-inner {
    gap: 15px;
  }
  .toolbar input[type="search"] {
    width: 175px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 22px;
    gap: 30px;
    margin-bottom: 0;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero .hero-label {
    font-size: 16px;
  }
  .market-pulse {
    width: 100%;
    max-width: none;
  }
  .pulse-chart {
    display: flex;
    width: 64px;
  }
  .pulse-row {
    padding: 14px 0;
  }
  .pulse-heading {
    padding-bottom: 13px;
  }
  .pulse-footer {
    display: none;
  }
  .pulse-name strong {
    font-size: 16px;
  }
  .stats {
    border-radius: 0;
  }
  .stat-value {
    font-size: 24px;
  }
  .stat {
    padding: 17px 13px;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 7px;
  }
  .brand {
    font-size: 17px;
  }
  .header-inner {
    gap: 6px;
  }
  .header-actions {
    gap: 2px;
  }
  .button.small {
    padding: 9px 10px;
    font-size: 16px;
  }
  .toolbar input[type="search"] {
    width: 100%;
  }
  .toolbar .right {
    margin-left: 0;
  }
  .toolbar label {
    font-size: 16px;
  }
  .toolbar {
    gap: 12px;
  }
  .portfolio-heading {
    align-items: flex-start;
  }
  .portfolio-heading > .button {
    max-width: 100px;
    white-space: normal;
  }
  .portfolio-stats .stat-value {
    font-size: 20px;
  }
  .portfolio-heading h1 {
    font-size: 26px;
  }
  .portfolio-heading p {
    font-size: 16px;
  }
  .wallet-banner {
    gap: 10px;
  }
  .wallet-banner strong {
    font-size: 24px;
  }
  .coin-cell {
    gap: 0;
  }
  .favorite-button {
    width: 25px;
  }
  .order-estimate {
    flex-wrap: wrap;
  }
}
