:root {
  --bg: #07070b;
  --bg-raised: #0e0e15;
  --bg-panel: #12121c;
  --border: #23232f;
  --text: #e9e9f0;
  --text-dim: #a2a2b4;
  --text-faint: #75758a;
  --accent: #8b6cf7;
  --accent-2: #2ee0b0;
  --warn: #f5b74b;
  --bad: #f0808a;
  --radius: 14px;
  --wrap: 1080px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 520px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(139, 108, 247, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}

a {
  color: var(--accent-2);
}
a:hover {
  color: #7bf0d0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(7, 7, 11, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.ticker {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(139, 108, 247, 0.4);
  background: rgba(139, 108, 247, 0.1);
  border-radius: 999px;
  padding: 2px 9px;
}

.site-header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  /* Nav links plus a button wrap poorly on a phone, so on narrow
     screens the row scrolls sideways instead of stacking into the content. */
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.site-header nav::-webkit-scrollbar {
  display: none;
}

.site-header nav a {
  white-space: nowrap;
}

.site-header nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14.5px;
}
.site-header nav a:hover {
  color: var(--text);
}

.brand img {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-cta {
  color: var(--text) !important;
  font-weight: 600;
  border: 1px solid rgba(139, 108, 247, 0.45);
  background: rgba(139, 108, 247, 0.14);
  border-radius: 999px;
  padding: 5px 14px;
  line-height: 1.3;
}
.nav-cta:hover {
  background: rgba(139, 108, 247, 0.26);
}

/* Buttons */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 640;
  font-size: 15.5px;
  text-decoration: none;
  border-radius: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: #7b58f5;
  color: #fff;
}

.btn-ghost {
  border-color: var(--border);
  background: var(--bg-raised);
  color: var(--text);
}
.btn-ghost:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--text);
}

.btn-small {
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 9px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

/* Hero */
.hero {
  padding: 80px 24px 24px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 5.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 680;
  max-width: 19ch;
}

.lede {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  color: var(--text-dim);
  max-width: 62ch;
}

.lede strong {
  color: var(--text);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

/* Hero: the same ledger, read by a stranger, with and without encryption. */
.ledger-compare {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}

.ledger-compare figcaption {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--text-faint);
  max-width: 70ch;
}

.ledger {
  background: var(--bg-panel);
  border: 1px solid rgba(245, 183, 75, 0.26);
  border-radius: var(--radius);
  padding: 18px 20px 8px;
}

.ledger-sealed {
  border-color: rgba(46, 224, 176, 0.3);
  box-shadow: 0 0 0 1px rgba(46, 224, 176, 0.06), 0 18px 50px -30px rgba(46, 224, 176, 0.5);
}

/* Stacked rather than side by side, so both headers are the same height
   whatever the token is called. The two sets of rows have to line up or the
   comparison reads as two unrelated lists. */
.ledger-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.ledger-name {
  font-weight: 640;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.ledger-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(35, 35, 47, 0.6);
}

.ledger-row:last-child {
  border-bottom: 0;
}

.ledger-row span {
  font-size: 14px;
  color: var(--text-faint);
}

.ledger-row b {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--warn);
  overflow-wrap: anywhere;
  text-align: right;
}

.ledger-row b.cipher {
  color: var(--accent-2);
}

/* Claims on the mint / pool, each one a field anybody can read on-chain. */
.proof-strip {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-strip li {
  background: var(--bg-raised);
  padding: 20px;
}

.proof-strip b {
  display: block;
  font-size: 1.12rem;
  font-weight: 660;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.proof-strip span {
  font-size: 14.5px;
  color: var(--text-dim);
}

.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-dim);
}

/* Sections */
.section {
  padding: 72px 24px 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
  font-weight: 660;
}

.section-lede {
  margin: 0 0 32px;
  color: var(--text-dim);
  max-width: 64ch;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

/* What is hidden is the point, so it gets the room. */
.split-weighted {
  grid-template-columns: 1.35fr 1fr;
  align-items: start;
}

@media (max-width: 760px) {
  .split-weighted {
    grid-template-columns: 1fr;
  }
}

.panel-accent {
  border-color: rgba(139, 108, 247, 0.3);
}

.panel-accent p {
  margin: 0;
  font-size: 15.5px;
  color: var(--text-dim);
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.panel h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dim);
}

.panel li {
  margin-bottom: 8px;
  font-size: 15.5px;
}

/* These bullets carry a sentence each rather than a phrase. */
.panel-hidden li {
  margin-bottom: 13px;
}

.panel-hidden li:last-child {
  margin-bottom: 0;
}

.panel li strong {
  color: var(--text);
}

.panel-hidden {
  border-color: rgba(46, 224, 176, 0.28);
}
.panel-visible {
  border-color: rgba(245, 183, 75, 0.28);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  flex: none;
}
.dot-good {
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(46, 224, 176, 0.6);
}
.dot-warn {
  background: var(--warn);
  box-shadow: 0 0 10px rgba(245, 183, 75, 0.6);
}

.callout {
  margin: 24px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(139, 108, 247, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-dim);
}
.callout strong {
  color: var(--text);
}

/* Two-balance account model */
.account-model {
  display: grid;
  gap: 0;
  margin-bottom: 32px;
}

.balance-box {
  background: var(--bg-panel);
  border: 1px solid rgba(245, 183, 75, 0.28);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.balance-box-private {
  border-color: rgba(46, 224, 176, 0.28);
}

.balance-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.balance-head h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 11px;
  white-space: nowrap;
}

.tag-good {
  color: var(--accent-2);
  background: rgba(46, 224, 176, 0.12);
  border: 1px solid rgba(46, 224, 176, 0.35);
}

.tag-warn {
  color: var(--warn);
  background: rgba(245, 183, 75, 0.12);
  border: 1px solid rgba(245, 183, 75, 0.35);
}

.tag-bad {
  color: #f0808a;
  background: rgba(240, 128, 138, 0.12);
  border: 1px solid rgba(240, 128, 138, 0.35);
}

.tag-muted {
  color: var(--text-faint);
  background: rgba(117, 117, 138, 0.12);
  border: 1px solid rgba(117, 117, 138, 0.3);
}

.balance-figure {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  background: #07070b;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 15px;
  color: var(--warn);
  overflow-wrap: anywhere;
}

.balance-cipher {
  color: var(--accent-2);
}

.balance-note {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--text-dim);
}

.balance-note strong {
  color: var(--text);
}

.flows {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 14px 0;
}

.flow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-arrow {
  font-size: 20px;
  line-height: 1;
  color: var(--accent);
}

.flow-label {
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
}

.flow-label em {
  font-style: normal;
  font-weight: 500;
  font-size: 12.5px;
  color: var(--warn);
}

/* Per-step disclosure line */
.steps .reveal {
  margin: 12px 0 0;
  font-size: 14px;
  padding-left: 12px;
  border-left: 2px solid var(--border);
  color: var(--text-faint);
}

.steps .reveal-good {
  border-left-color: var(--accent-2);
}

.steps .reveal-warn {
  border-left-color: var(--warn);
}

/* Official documentation list */
.doclist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.doclist li {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.doclist a {
  font-weight: 600;
  text-decoration: none;
}

.doclist a:hover {
  text-decoration: underline;
}

.doc-src {
  margin-left: 10px;
  font-size: 12px;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 9px;
  white-space: nowrap;
}

.doclist p {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--text-dim);
  max-width: 72ch;
}

/* Venues */
.venues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.venue {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.venue-yes {
  border-color: rgba(46, 224, 176, 0.28);
}

.venue-no {
  opacity: 0.78;
}

.venue-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.venue-head h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.venue p {
  margin: 0;
  font-size: 15px;
  color: var(--text-dim);
}

.venue-link {
  margin-top: 14px !important;
  font-weight: 600;
}

/* App promo */
.app-promo {
  background: var(--bg-panel);
  border: 1px solid rgba(139, 108, 247, 0.3);
  border-radius: var(--radius);
  padding: 26px;
}

.app-features {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--text-dim);
  display: grid;
  gap: 8px;
}

.app-features strong {
  color: var(--text);
}

.app-note {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--text-faint);
  max-width: 68ch;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.step-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(139, 108, 247, 0.14);
  border: 1px solid rgba(139, 108, 247, 0.4);
  color: var(--accent);
  font-weight: 650;
  font-size: 15px;
}

.steps h3 {
  margin: 4px 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  grid-column: 2;
}

.steps p {
  margin: 0;
  grid-column: 2;
  color: var(--text-dim);
  font-size: 15.5px;
}

/* Prose */
.prose {
  max-width: 68ch;
  color: var(--text-dim);
}

.prose p {
  margin: 0 0 18px;
}

.prose strong {
  color: var(--text);
}

.footnote {
  font-size: 15px;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* Details */
.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  margin: 0 0 28px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.details > div {
  background: var(--bg-raised);
  padding: 18px 20px;
}

.details dt {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  margin-bottom: 5px;
}

.details dd {
  margin: 0;
  font-weight: 600;
  font-size: 15.5px;
}

.address-block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.address-label {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
}

.address-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.address-row code {
  flex: 1 1 320px;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  background: #07070b;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  color: var(--accent-2);
}

#copy-button {
  flex: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: rgba(139, 108, 247, 0.16);
  border: 1px solid rgba(139, 108, 247, 0.45);
  border-radius: 9px;
  padding: 11px 20px;
  cursor: pointer;
}

#copy-button:hover {
  background: rgba(139, 108, 247, 0.26);
}

#copy-button:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.address-note {
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--text-faint);
}

.link-out::after {
  content: " \2197";
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
  max-width: 78ch;
}

.faq details {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 22px;
}

.faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  flex: none;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details p {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 15.5px;
  max-width: 68ch;
}

.faq code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: #07070b;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
}

/* Footer */
.site-footer {
  margin-top: 88px;
  border-top: 1px solid var(--border);
  padding: 36px 0 56px;
}

.site-footer p {
  margin: 0 0 14px;
  color: var(--text-faint);
  font-size: 14.5px;
  max-width: 76ch;
}

.disclaimer {
  color: #5f5f73;
}

/* Explorer */
.explorer {
  padding: 72px 24px 0;
}

.explorer-hero {
  margin-bottom: 36px;
}

.explorer-legend {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.explorer-legend li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--text-dim);
}

.explorer-legend .tag {
  margin-top: 2px;
}

.explorer-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 18px;
  align-items: center;
}

.explorer-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.explorer-status {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-faint);
}

.explorer-error {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 128, 138, 0.45);
  background: rgba(240, 128, 138, 0.07);
  color: var(--text);
  font-size: 15px;
}

.tx-list {
  display: grid;
  gap: 10px;
}

.tx-skeleton {
  height: 92px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(90deg, var(--bg-raised), var(--bg-panel), var(--bg-raised));
  background-size: 180% 100%;
  animation: tx-shimmer 1.4s ease-in-out infinite;
}

@keyframes tx-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -80% 0;
  }
}

.tx-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(140px, 0.7fr) minmax(0, 1.2fr) auto;
  gap: 12px 20px;
  align-items: center;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.tx-row-private {
  border-color: rgba(46, 224, 176, 0.28);
}

.tx-row-failed {
  border-color: rgba(240, 128, 138, 0.35);
  opacity: 0.82;
}

.tx-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.tx-head time {
  font-size: 13px;
  color: var(--text-faint);
}

.tx-amount {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tx-amount b {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tx-amount span {
  font-size: 12px;
  color: var(--text-faint);
}

.tx-amount-private b {
  color: var(--accent-2);
}

.tx-amount-public b {
  color: var(--warn);
}

.tx-amount-none b {
  color: var(--text-faint);
}

.tx-parties {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: var(--mono);
  font-size: 13.5px;
}

.tx-party {
  color: var(--text);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.tx-party:hover {
  color: var(--accent-2);
}

.tx-party-pool {
  color: var(--text-dim);
}

.tx-arrow {
  color: var(--text-faint);
}

.tx-sig {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-faint);
  text-decoration: none;
  justify-self: end;
}

.tx-sig:hover {
  color: var(--accent-2);
}

.explorer-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.activity-empty {
  margin: 0;
  padding: 28px 8px;
  color: var(--text-faint);
  font-size: 15px;
}

@media (max-width: 860px) {
  .tx-row {
    grid-template-columns: 1fr auto;
  }
  .tx-amount,
  .tx-parties {
    grid-column: 1 / -1;
  }
  .tx-sig {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .hero {
    padding-top: 56px;
  }
  .section,
  .explorer {
    padding-top: 56px;
  }
  .steps li {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .steps h3,
  .steps p {
    grid-column: 1;
  }
  .flows {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .tx-skeleton {
    animation: none;
  }
}
