:root {
  --paper: #f7f7f5;
  --paper-strong: #ffffff;
  --ink: #110e08;
  --ink-soft: #35322d;
  --muted: #66635d;
  --faint: #898681;
  --rule: #110e08;
  --rule-soft: #d4cfc9;
  --heather-1: #d4cfc9;
  --heather-2: #b2afa8;
  --heather-3: #898681;
  --buy: #ccff00;
  --buy-strong: #b8e600;
  --halt: #c92e29;
  --positive: #477000;
  --sans: "Hanken Grotesk", Arial, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, monospace;
  --page-pad: 32px;
  --page-max: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-synthesis: none;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--buy);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

:focus-visible {
  outline: 3px solid var(--halt);
  outline-offset: 4px;
}

.vignette,
.etch,
.grain {
  display: none;
}

.bar.top {
  position: relative;
  z-index: 20;
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 14px var(--page-pad) 11px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "date brand chain"
    "links links links";
  align-items: center;
  gap: 13px 24px;
  border-bottom: 1px solid var(--rule);
  background: rgba(247, 247, 245, 0.97);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.bar.top .archive-date {
  grid-area: date;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.bar.top .mid {
  position: static;
  grid-area: brand;
  transform: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.brand-key {
  min-width: 44px;
  padding: 7px 9px 6px;
  border-radius: 999px;
  background: var(--buy);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.bar.top .chain-label {
  grid-area: chain;
  justify-self: end;
}

.header-links {
  grid-area: links;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 10px;
  border-top: 1px solid var(--rule-soft);
  color: var(--muted);
  font-size: 11px;
}

.header-links a,
.header-links button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.header-links a:hover,
.header-links button:hover {
  border-bottom-color: var(--buy);
  color: var(--ink);
}

main {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 var(--page-pad);
  text-align: left;
}

.reveal {
  opacity: 1;
  animation: editorial-reveal 560ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.r2 {
  animation-delay: 90ms;
}

.r3 {
  animation-delay: 170ms;
}

@keyframes editorial-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  order: 1;
  min-height: 600px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "copy artifact"
    "cta cta";
  gap: 18px 56px;
  align-items: center;
  padding: 58px 0 16px;
}

.hero-copy {
  grid-area: copy;
  align-self: center;
  width: 100%;
  max-width: 620px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--buy);
  box-shadow: 0 0 0 1px var(--ink);
}

.hero h1 {
  max-width: 620px;
  font-family: var(--sans);
  font-size: 128px;
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-rule {
  width: min(100%, 530px);
  height: 1px;
  margin: 29px 0 24px;
  background: var(--rule);
}

.hero-lore {
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
}

.hero-lore .off {
  color: var(--halt);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.hero-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.hero-mechanism {
  max-width: 520px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.hero-mechanism b {
  color: var(--positive);
}

.press-station {
  grid-area: artifact;
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.artifact {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 130ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 160ms ease;
}

.artifact:hover {
  transform: none;
  filter: none;
}

.artifact:active,
.artifact.pressed {
  transform: none;
  filter: none;
  box-shadow: none;
}

.artifact:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.artifact img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.artifact-face-well,
.artifact-face {
  position: absolute;
  pointer-events: none;
}

.artifact-face-well {
  z-index: 2;
  top: 15.7%;
  left: 24.7%;
  width: 50.6%;
  height: 46.5%;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.38);
  box-shadow: inset 0 9px 15px rgba(0, 0, 0, 0.62), inset 0 -3px 5px rgba(204, 255, 0, 0.16);
  opacity: 0;
  transition: opacity 90ms ease;
}

.artifact-face {
  z-index: 3;
  inset: 0;
  background: url("/buy-artifact.jpg") center / 100% 100% no-repeat;
  clip-path: ellipse(24.9% 23% at 50% 38.9%);
  transform-origin: 50% 38.9%;
  transition: transform 105ms cubic-bezier(0.2, 0.78, 0.2, 1), filter 105ms ease;
}

.artifact:hover .artifact-face {
  filter: saturate(1.04) brightness(1.015);
}

.artifact:active .artifact-face,
.artifact.pressed .artifact-face {
  transform: translateY(7px) scale(0.963);
  filter: saturate(1.08) brightness(0.94);
}

.artifact:active .artifact-face-well,
.artifact.pressed .artifact-face-well {
  opacity: 1;
}

.press-particles {
  position: absolute;
  z-index: 4;
  inset: 0 0 50px;
  overflow: visible;
  pointer-events: none;
}

.press-float {
  --press-drift: 0px;
  --press-tilt: 0deg;
  position: absolute;
  min-width: 0;
  padding: 2px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--buy);
  font-family: var(--sans);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  -webkit-text-stroke: 1.6px var(--ink);
  transform: translate(-50%, -50%);
  text-shadow: 0 3px 0 var(--ink), 0 0 9px var(--buy), 0 0 20px rgba(204, 255, 0, 0.82);
  box-shadow: none;
  animation: press-float-away 1200ms cubic-bezier(0.16, 0.9, 0.25, 1) forwards;
}

.press-float::before {
  content: none;
}

.press-float::after {
  content: none;
}

.press-float.is-count {
  border: 0;
  background: transparent;
  color: var(--buy);
  box-shadow: none;
}

@keyframes press-float-away {
  0% {
    opacity: 0;
    transform: translate(-50%, -35%) rotate(var(--press-tilt)) scale(0.58);
  }
  17% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--press-tilt)) scale(1.13);
  }
  28% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--press-tilt)) scale(1);
  }
  68% {
    opacity: 1;
    transform: translate(-50%, -76%) rotate(var(--press-tilt)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--press-drift)), -145%) rotate(var(--press-tilt)) scale(0.88);
  }
}

.press-spark {
  --spark-x: 0px;
  --spark-y: 0px;
  --spark-turn: 0deg;
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--ink);
  background: var(--buy);
  transform: translate(-50%, -50%);
  box-shadow: 1px 1px 0 var(--ink);
  animation: press-spark-away 720ms cubic-bezier(0.1, 0.72, 0.22, 1) forwards;
}

.press-spark.is-white {
  background: var(--paper-strong);
}

.press-spark.is-red {
  background: var(--halt);
}

@keyframes press-spark-away {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg) scale(0.2);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(20deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-x)), calc(-50% + var(--spark-y))) rotate(var(--spark-turn)) scale(0.35);
  }
}

.press-ring {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 42%;
  aspect-ratio: 1;
  border: 2px solid var(--buy);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.65);
  box-shadow: 0 0 0 2px rgba(8, 8, 8, 0.38);
  animation: press-ring-out 620ms cubic-bezier(0.12, 0.7, 0.3, 1) forwards;
}

.press-ring.is-milestone {
  border-width: 4px;
  animation-duration: 900ms;
}

@keyframes press-ring-out {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.65);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.65);
  }
}

.press-milestone {
  position: absolute;
  z-index: 8;
  top: 38%;
  left: 50%;
  width: min(78%, 390px);
  display: grid;
  gap: 5px;
  padding: 17px 20px 18px;
  border: 2px solid var(--buy);
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 var(--buy), 0 0 30px rgba(204, 255, 0, 0.46);
  pointer-events: none;
  animation: press-milestone-award 1950ms cubic-bezier(0.16, 0.86, 0.22, 1) forwards;
}

.press-milestone::before,
.press-milestone::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border: 1px solid var(--ink);
  background: var(--buy);
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(45deg);
}

.press-milestone::before {
  top: -24px;
  left: -17px;
}

.press-milestone::after {
  right: -19px;
  bottom: -27px;
}

.press-milestone-label,
.press-milestone-detail {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 650;
}

.press-milestone-label {
  color: var(--buy);
}

.press-milestone strong {
  font-family: var(--sans);
  font-size: 31px;
  font-weight: 900;
  line-height: 0.95;
}

.press-milestone-detail {
  color: var(--paper);
}

@keyframes press-milestone-award {
  0% {
    opacity: 0;
    transform: translate(-50%, -43%) rotate(-2deg) scale(0.64);
  }
  13% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(1deg) scale(1.08);
  }
  22%, 78% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -57%) rotate(1deg) scale(0.96);
  }
}

.press-console {
  position: relative;
  z-index: 5;
  min-height: 50px;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) 50px 50px;
  align-items: stretch;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
}

.press-total {
  position: relative;
  min-width: 128px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border-right: 1px solid #3a3a37;
  white-space: nowrap;
}

.press-total:disabled {
  cursor: default;
  opacity: 1;
}

.press-rankings-trigger.has-rankings {
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.press-rankings-trigger.has-rankings:hover {
  background: #20201d;
}

.press-rankings-trigger.has-rankings:active {
  background: #2b2b26;
}

.press-rankings-trigger i {
  position: absolute;
  top: 5px;
  right: 5px;
  color: var(--buy);
  font-size: 12px;
  filter: drop-shadow(0 0 5px rgba(204, 255, 0, 0.5));
}

.press-total strong {
  min-width: 3ch;
  color: var(--buy);
  font-family: var(--sans);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  line-height: 1;
}

.press-total span {
  color: var(--faint);
  font-size: 9px;
}

.press-mode {
  position: relative;
  min-width: 0;
  min-height: 48px;
  display: grid;
  place-items: stretch;
  overflow: hidden;
}

.press-state,
.press-share {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  transition: opacity 150ms ease, transform 150ms ease;
}

.press-state {
  color: var(--paper);
}

.press-share {
  gap: 8px;
  margin: 5px 6px 7px;
  border: 1px solid var(--buy);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px);
  background: var(--buy);
  color: var(--ink);
  box-shadow: 0 3px 0 #526600, inset 0 1px rgba(255, 255, 255, 0.55);
}

.press-share i {
  flex: 0 0 auto;
  font-size: 16px;
}

.press-mode.share-ready .press-state {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
}

.press-mode.share-ready .press-share {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.press-share:hover {
  background: var(--paper);
}

.press-mode.share-ready .press-share:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #526600, inset 0 1px rgba(255, 255, 255, 0.3);
}

.press-share:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.press-reset,
.press-sound {
  display: grid;
  place-items: center;
  border-left: 1px solid #3a3a37;
  color: var(--buy);
  font-size: 18px;
  transition: background 150ms ease, color 150ms ease;
}

.press-reset:disabled {
  color: #66665f;
  cursor: default;
}

.press-reset:not(:disabled):hover,
.press-sound:hover {
  background: var(--buy);
  color: var(--ink);
}

.trade-actions {
  grid-area: cta;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.trade-cta {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 72px;
  align-items: stretch;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--buy);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.trade-cta span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
}

.trade-cta i {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--paper);
  background: var(--buy);
  color: var(--ink);
  font-size: 25px;
}

.trade-cta:hover {
  background: var(--buy);
  color: var(--ink);
}

.trade-cta:hover i {
  border-left-color: var(--ink);
}

.solana-trade-cta {
  border-left: 0;
  background: var(--buy);
  color: var(--ink);
}

.solana-trade-cta i {
  border-left-color: var(--ink);
  background: var(--ink);
  color: var(--buy);
}

.solana-trade-cta:hover {
  background: var(--paper-strong);
}

.token-identity {
  order: 2;
  width: 100%;
  margin: 15px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
}

.ca {
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  font-size: 15px;
  text-align: left;
  transition: background 160ms ease;
}

.ca:hover {
  border-color: var(--rule);
  background: var(--paper-strong);
  color: var(--ink);
}

.ca-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ca-address {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca .hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.wallet-add {
  min-width: 174px;
  min-height: 58px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--rule);
  border-left: 0;
  background: var(--ink);
  color: var(--buy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.wallet-add:hover {
  background: var(--buy);
  color: var(--ink);
}

.wallet-add i {
  font-size: 17px;
}

.trustline {
  order: 9;
  max-width: none;
  margin: 0;
  padding: 0 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.trustline b {
  color: var(--ink);
  font-weight: 600;
}

.gt-verification {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--muted);
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease;
}

.gt-verification:hover {
  border-bottom-color: var(--positive);
  color: var(--positive);
}

.gt-verification:hover b {
  color: var(--positive);
}

.placard {
  order: 4;
  width: 100%;
  margin: 17px 0 0;
  padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-strong);
}

.placard > span {
  min-width: 0;
  padding: 7px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--rule-soft);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  white-space: normal;
}

.placard > span:last-child {
  border-right: 0;
}

.placard b {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
}

.placard .up,
.tr-stats .up,
.receipt-points {
  color: var(--positive);
}

.placard .dn {
  color: var(--halt);
}

.tr-stats .dn {
  color: #ff675e;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--positive);
  vertical-align: 1px;
}

.links {
  order: 8;
  width: 100%;
  max-width: none;
  margin: 36px 0 0;
  padding: 19px 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 16px;
  border-top: 1px solid var(--rule);
  background: var(--paper-strong);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.links a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}

.links a:hover {
  color: var(--positive);
}

.links .sep {
  display: inline-flex;
  align-items: center;
  color: var(--rule-soft);
}

.story {
  order: 7;
  width: 100%;
  max-width: none;
  margin: 42px 0 0;
  padding: 31px 36px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
}

.story summary {
  min-height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--buy);
  font-size: 13px;
  text-transform: uppercase;
}

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

.story .tick {
  color: var(--buy);
  font-size: 22px;
  transition: transform 180ms ease;
}

.story[open] .tick {
  transform: rotate(45deg);
}

.story p {
  max-width: 76ch;
  margin-top: 20px;
  color: #c9c9c2;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.story p b {
  color: var(--paper);
  font-weight: 600;
}

.story p .red {
  color: #ff675e;
}

.story p .grn {
  color: var(--buy);
}

.treasury {
  order: 5;
  width: 100%;
  max-height: none;
  margin: 18px 0 0;
  padding: 32px 0 0;
  overflow: visible;
  border-bottom: 1px solid var(--rule);
  opacity: 1;
  transition: none;
}

.treasury.on {
  max-height: none;
  opacity: 1;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--rule);
}

.section-heading h2 {
  font-family: var(--sans);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.tr-head {
  justify-content: flex-start;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.tr-head b {
  color: var(--positive);
  font-weight: 700;
}

.tr-head a {
  margin-left: auto;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.tr-head a:hover {
  color: var(--positive);
}

.treasury-board {
  margin-top: 19px;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.7fr);
  background: var(--ink);
  color: var(--paper);
}

.tr-chart-wrap {
  position: relative;
  height: 245px;
  margin: 0;
  padding: 28px 26px 31px;
  border-right: 1px solid #3b3b38;
}

.tr-chart {
  display: block;
  width: 100%;
  height: 185px;
  overflow: visible;
}

.tr-area {
  fill: transparent;
}

.tr-line {
  fill: none;
  stroke: var(--buy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tr-entry-line {
  stroke: #777770;
  stroke-width: 1;
  stroke-dasharray: 4 5;
  vector-effect: non-scaling-stroke;
}

.tr-dot {
  fill: var(--buy);
}

.tr-entry-tag,
.tr-chart-lbl {
  position: absolute;
  color: #aaa9a2;
  font-size: 10px;
  text-transform: uppercase;
}

.tr-entry-tag {
  left: 28px;
  padding: 0 4px;
  transform: translateY(-50%);
  background: var(--ink);
}

.tr-chart-lbl.tl {
  top: 12px;
  left: 28px;
}

.tr-chart-lbl.tr {
  right: 28px;
  bottom: 10px;
  left: auto;
}

.tr-stats {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  font-size: 11px;
  color: #aaa9a2;
}

.tr-stats span {
  min-height: 75px;
  padding: 14px 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-right: 1px solid #3b3b38;
  border-bottom: 1px solid #3b3b38;
  text-transform: uppercase;
}

.tr-stats span:nth-child(2n) {
  border-right: 0;
}

.tr-stats span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.tr-stats b {
  margin: 0;
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
}

.tr-note {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  text-align: left;
  text-transform: uppercase;
}

.tr-note b {
  color: var(--ink);
  font-weight: 700;
}

.tr-challenge {
  margin: 0;
  padding: 22px 0 29px;
  border: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.35;
  text-align: left;
}

.tr-challenge .q {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  text-shadow: none;
}

.vote {
  order: 6;
  width: 100%;
  margin: 55px 0 0;
  padding: 0 0 47px;
  border-top: 0;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}

.vote-kicker {
  width: fit-content;
  padding: 5px 8px 4px;
  background: var(--buy);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.vote h2 {
  max-width: 900px;
  margin-top: 9px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 54px;
  font-weight: 900;
  line-height: 0.98;
  text-align: left;
}

.vote h2 span {
  padding-inline: 0.08em;
  background: var(--buy);
  color: var(--ink);
  text-shadow: none;
}

.vote-meta {
  margin-top: 19px;
  justify-content: flex-start;
  color: var(--muted);
  font-size: 11px;
  text-align: left;
  text-transform: uppercase;
}

.vote-meta span {
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid var(--rule-soft);
}

.vote-meta b {
  color: var(--ink);
  font-weight: 600;
}

.vote-question {
  max-width: 72ch;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.vote-question b {
  color: var(--ink);
  font-weight: 700;
}

.vote-actions {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.vote-option {
  min-height: 126px;
  padding: 18px;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.vote-option:hover {
  border-color: var(--rule);
  background: var(--ink);
  color: var(--paper);
  transform: none;
}

.vote-option strong {
  display: block;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.vote-option small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.vote-option:hover small {
  color: #c9c9c2;
}

.vote-foot {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

.vote-connect {
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--buy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.vote-connect:hover {
  background: var(--buy);
  color: var(--ink);
}

.vote-status {
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.vote-results {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.vote-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(180px, 2fr) minmax(170px, auto);
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}

.vote-row label {
  color: var(--ink);
}

.vote-bar {
  height: 10px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}

.vote-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--buy);
  box-shadow: none;
  transition: width 300ms ease;
}

.vote-row output {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
  white-space: nowrap;
}

.vote-note {
  margin-top: 19px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
  text-align: left;
  text-transform: uppercase;
}

.vote-ledger,
.vote-history {
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid var(--rule-soft);
}

.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.ledger-head a {
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.receipt-list {
  margin-top: 10px;
}

.receipt-empty {
  padding: 18px 0 4px;
  color: var(--muted);
  font-size: 11px;
  text-align: left;
}

.receipt-row {
  min-height: 45px;
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(160px, 1.6fr) auto auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--muted);
  font-size: 10px;
}

.receipt-row a {
  color: var(--ink);
}

.receipt-row a:hover {
  color: var(--positive);
}

.receipt-choice {
  color: var(--muted);
}

.receipt-time {
  text-align: right;
  white-space: nowrap;
}

.history-list {
  margin-top: 8px;
}

.history-item {
  padding: 17px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.history-top,
.history-result {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.history-top {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.history-result {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.history-result strong {
  color: var(--ink);
  font-weight: 700;
}

.history-result span {
  color: var(--positive);
  white-space: nowrap;
}

.history-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.bar.bottom {
  position: relative;
  z-index: 2;
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 20px var(--page-pad) calc(20px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 0;
  background: var(--ink);
  color: var(--heather-2);
  font-size: 10px;
  text-transform: uppercase;
}

.bar.bottom > span {
  white-space: normal;
}

.ks {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--heather-2);
}

.ks .eth {
  color: var(--paper-strong);
  text-shadow: none;
}

.ks .cnt b {
  color: var(--buy);
  font-weight: 700;
}

.ks .cnt em {
  color: var(--halt);
  font-style: normal;
}

.switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--buy);
  border-radius: 99px;
  background: var(--ink-soft);
}

.switch .knob {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--buy);
  transition: transform 180ms ease, background 180ms ease;
}

.switch.trying .knob {
  transform: translateX(-18px);
  background: var(--halt);
}

.switch.denied {
  animation: switch-shake 360ms ease;
}

@keyframes switch-shake {
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(410px, calc(100vw - 44px));
  padding: 14px 18px;
  transform: translateY(12px);
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  transform: none;
  opacity: 1;
}

body.dialog-open {
  overflow: hidden;
}

.rankings-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: min(780px, calc(100svh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 14px 14px 0 rgba(8, 8, 8, 0.18);
}

.rankings-dialog::backdrop {
  background: rgba(8, 8, 8, 0.68);
}

.rankings-head {
  min-height: 108px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--paper);
}

.rankings-head span {
  color: var(--buy);
  font-size: 10px;
  text-transform: uppercase;
}

.rankings-head h2 {
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rankings-close {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #4a4a45;
  color: var(--paper);
  font-size: 22px;
}

.rankings-close:hover {
  border-color: var(--buy);
  background: var(--buy);
  color: var(--ink);
}

.rankings-body {
  padding: 20px 24px 24px;
}

.rankings-note {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  font-size: 11px;
}

.rankings-meta {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.rankings-list {
  list-style: none;
}

.rankings-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) max-content;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
}

.rankings-position {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.rankings-account {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.rankings-account a {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rankings-account a:hover {
  text-decoration: underline;
}

.rankings-account time {
  color: var(--muted);
  font-size: 9px;
}

.rankings-score {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.rankings-row.is-podium .rankings-position,
.rankings-row.is-podium .rankings-score {
  color: #687a00;
}

.sol-buy-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(860px, calc(100svh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 16px 16px 0 rgba(8, 8, 8, 0.18);
}

.sol-buy-dialog::backdrop {
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(2px);
}

.sol-buy-head {
  min-height: 116px;
  padding: 24px 24px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--paper);
}

.sol-buy-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--buy);
  font-size: 10px;
  text-transform: uppercase;
}

.sol-buy-head h2 {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.sol-buy-close {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #4a4a45;
  color: var(--paper);
  font-size: 23px;
}

.sol-buy-close:hover {
  border-color: var(--buy);
  background: var(--buy);
  color: var(--ink);
}

.sol-buy-body {
  padding: 0 24px 24px;
}

.sol-buy-route {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr 38px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.sol-buy-route > span {
  display: flex;
  flex-direction: column;
}

.sol-buy-route > span:last-child {
  text-align: right;
}

.sol-buy-route > i {
  color: var(--positive);
  font-size: 19px;
  text-align: center;
}

.sol-buy-route b {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 850;
}

.sol-buy-route small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.sol-wallet-row {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--rule-soft);
}

.sol-wallet-row > span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sol-command {
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--buy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sol-command:hover:not(:disabled) {
  background: var(--buy);
  color: var(--ink);
}

.sol-command.connected {
  background: transparent;
  color: var(--positive);
}

.sol-buy-fields {
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 16px;
}

.sol-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sol-field > span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.sol-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--paper-strong);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 16px;
  outline: none;
}

.sol-field input:focus {
  border-color: var(--positive);
  box-shadow: inset 4px 0 0 var(--buy);
}

.sol-field small {
  margin-top: 6px;
  color: var(--faint);
  font-size: 9px;
}

.sol-presets {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, 54px);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.sol-presets button {
  min-height: 26px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 9px;
}

.sol-presets button:hover {
  background: var(--buy);
}

.sol-destination-field {
  grid-column: 1 / -1;
}

.sol-destination-field input {
  font-size: 12px;
}

.sol-use-phantom {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 30px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 9px;
  text-transform: uppercase;
}

.sol-use-phantom:hover {
  color: var(--positive);
}

.sol-quote-board {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #3b3b38;
  border-left: 1px solid #3b3b38;
  background: var(--ink);
  color: var(--paper);
}

.sol-quote-board[hidden] {
  display: none;
}

.sol-quote-board > div {
  min-width: 0;
  min-height: 74px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #3b3b38;
  border-bottom: 1px solid #3b3b38;
}

.sol-quote-board span {
  color: #999992;
  font-size: 9px;
  text-transform: uppercase;
}

.sol-quote-board strong {
  margin-top: 6px;
  overflow: hidden;
  color: var(--buy);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sol-buy-status {
  min-height: 50px;
  padding: 15px 0 11px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
}

.sol-buy-status[data-state="live"],
.sol-buy-status[data-state="success"] {
  color: var(--positive);
}

.sol-buy-status[data-state="error"] {
  color: var(--halt);
}

.sol-buy-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.sol-quote-command,
.sol-press-command {
  min-height: 58px;
  font-size: 15px;
}

.sol-press-command {
  background: var(--buy);
  color: var(--ink);
}

.sol-press-command:hover:not(:disabled) {
  background: var(--ink);
  color: var(--buy);
}

.sol-buy-note {
  margin-top: 12px;
  color: var(--faint);
  font-size: 9px;
  line-height: 1.55;
  text-transform: uppercase;
}

.sol-buy-receipt {
  margin-top: 15px;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-top: 1px solid var(--rule-soft);
  font-size: 10px;
  text-transform: uppercase;
}

.sol-buy-receipt[hidden] {
  display: none;
}

.sol-buy-receipt a {
  border-bottom: 1px solid var(--ink);
}

.sol-buy-receipt a:hover {
  color: var(--positive);
}

.candle {
  display: none;
}

@media (max-width: 1080px) {
  :root {
    --page-pad: 24px;
  }

  .hero {
    min-height: 530px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 34px;
    padding: 48px 0 16px;
  }

  .hero h1 {
    font-size: 88px;
  }

  .hero-lore {
    font-size: 29px;
  }

  .placard {
    grid-template-columns: repeat(3, 1fr);
  }

  .placard > span:nth-child(3) {
    border-right: 0;
  }

  .placard > span:nth-child(-n + 3) {
    border-bottom: 1px solid var(--rule-soft);
  }

  .vote-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 17px;
  }

  body {
    font-size: 14px;
  }

  .bar.top {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand chain"
      "date date"
      "links links";
    gap: 10px 14px;
    padding-top: 14px;
  }

  .bar.top .mid {
    justify-self: start;
    font-size: 14px;
  }

  .brand-key {
    min-width: 39px;
    padding: 6px 8px 5px;
    font-size: 10px;
  }

  .bar.top .archive-date {
    font-size: 10px;
  }

  .bar.top .chain-label {
    font-size: 10px;
  }

  .header-links {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
    gap: 5px 17px;
    overflow: visible;
    white-space: normal;
  }

  .header-links i {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "artifact"
      "cta";
    gap: 24px;
    padding: 40px 0 11px;
  }

  .hero h1 {
    font-size: 60px;
    line-height: 0.88;
  }

  .hero-rule {
    margin: 23px 0 19px;
  }

  .hero-lore {
    font-size: 27px;
  }

  .hero-caption {
    font-size: 12px;
  }

  .hero-mechanism {
    margin-top: 15px;
    padding-top: 13px;
    font-size: 14px;
  }

  .press-station {
    width: calc(100% + 12px);
    margin-left: -6px;
  }

  .press-total {
    min-width: 105px;
    gap: 6px;
    padding-inline: 10px;
  }

  .press-total strong {
    font-size: 26px;
  }

  .press-state,
  .press-share {
    padding-inline: 8px;
    font-size: 10px;
  }

  .press-float {
    min-width: 0;
    padding: 2px 3px;
    font-size: 20px;
  }

  .press-milestone {
    width: min(82%, 310px);
    padding: 15px 16px 16px;
    box-shadow: 6px 6px 0 var(--buy), 0 0 24px rgba(204, 255, 0, 0.42);
  }

  .press-milestone strong {
    font-size: 26px;
  }

  .trade-cta {
    min-height: 60px;
    grid-template-columns: 1fr 60px;
    font-size: 16px;
  }

  .trade-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .solana-trade-cta,
  .wallet-add {
    border-left: 1px solid var(--ink);
  }

  .trade-cta span {
    justify-content: flex-start;
    padding: 12px 15px;
  }

  .ca {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
    padding: 13px 14px;
  }

  .token-identity {
    grid-template-columns: 1fr;
  }

  .wallet-add {
    min-height: 48px;
  }

  .ca-label {
    grid-column: 1 / 2;
  }

  .ca-address {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow: visible;
    font-size: 11px;
    overflow-wrap: anywhere;
    text-align: left;
    text-overflow: clip;
    white-space: normal;
  }

  .ca .hint {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .trustline {
    padding: 0 0 24px;
    display: block;
    font-size: 9px;
  }

  .gt-verification {
    width: fit-content;
    margin-top: 10px;
  }

  .placard {
    grid-template-columns: repeat(2, 1fr);
  }

  .placard > span,
  .placard > span:nth-child(3) {
    border-right: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
  }

  .placard > span:nth-child(2n) {
    border-right: 0;
  }

  .placard > span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .placard b {
    font-size: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .tr-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .tr-head a {
    margin-left: 0;
  }

  .treasury-board {
    grid-template-columns: 1fr;
  }

  .tr-chart-wrap {
    height: 225px;
    padding: 26px 17px 29px;
    border-right: 0;
    border-bottom: 1px solid #3b3b38;
  }

  .tr-chart {
    height: 170px;
  }

  .tr-entry-tag,
  .tr-chart-lbl.tl {
    left: 18px;
  }

  .tr-chart-lbl.tr {
    right: 18px;
  }

  .tr-stats span {
    min-height: 68px;
  }

  .tr-challenge {
    font-size: 19px;
  }

  .vote {
    margin-top: 42px;
  }

  .vote h2 {
    font-size: 39px;
  }

  .vote-meta {
    display: grid;
    gap: 6px;
  }

  .vote-meta span {
    padding: 0;
    margin: 0;
    border: 0;
  }

  .vote-actions {
    grid-template-columns: 1fr;
  }

  .vote-option {
    min-height: 105px;
  }

  .vote-foot {
    grid-template-columns: 1fr;
  }

  .vote-connect {
    width: 100%;
  }

  .vote-status {
    text-align: left;
  }

  .vote-row {
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
  }

  .vote-row .vote-bar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .vote-row output {
    text-align: right;
  }

  .receipt-row {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 10px 0;
  }

  .receipt-choice {
    grid-column: 1;
  }

  .receipt-time {
    grid-column: 2;
    grid-row: 2;
  }

  .story {
    padding: 24px 19px;
  }

  .links {
    justify-content: flex-start;
  }

  .bar.bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ks {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .toast {
    right: 17px;
    bottom: 17px;
    max-width: calc(100vw - 34px);
  }

  .sol-buy-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    box-shadow: 8px 8px 0 rgba(8, 8, 8, 0.18);
  }

  .rankings-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    margin: auto auto 10px;
    box-shadow: 8px 8px 0 rgba(8, 8, 8, 0.18);
  }

  .rankings-head {
    min-height: 94px;
    padding: 18px 17px;
  }

  .rankings-head h2 {
    font-size: 30px;
  }

  .rankings-body {
    padding: 17px;
  }

  .rankings-row {
    grid-template-columns: 34px minmax(0, 1fr) max-content;
    gap: 9px;
  }

  .rankings-score {
    font-size: 19px;
  }

  .sol-buy-head {
    min-height: 100px;
    padding: 19px 17px;
  }

  .sol-buy-head h2 {
    font-size: 30px;
  }

  .sol-buy-close {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .sol-buy-body {
    padding: 0 17px 18px;
  }

  .sol-wallet-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 13px 0;
  }

  .sol-wallet-row > span {
    text-align: left;
  }

  .sol-buy-fields {
    grid-template-columns: 1fr;
  }

  .sol-presets,
  .sol-destination-field,
  .sol-use-phantom {
    grid-column: 1;
  }

  .sol-presets {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sol-quote-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero-lore {
    font-size: 24px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .vote h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .press-float,
  .press-spark,
  .press-ring,
  .press-milestone {
    display: none !important;
  }

  .press-float.is-reduced {
    display: block !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  html.force-press-effects .press-float {
    display: block !important;
    animation: press-float-away 1200ms cubic-bezier(0.16, 0.9, 0.25, 1) forwards !important;
  }

  html.force-press-effects .press-spark {
    display: block !important;
    animation: press-spark-away 720ms cubic-bezier(0.1, 0.72, 0.22, 1) forwards !important;
  }

  html.force-press-effects .press-ring {
    display: block !important;
    animation: press-ring-out 620ms cubic-bezier(0.12, 0.7, 0.3, 1) forwards !important;
  }

  html.force-press-effects .press-ring.is-milestone {
    animation-duration: 900ms !important;
  }

  html.force-press-effects .press-milestone {
    display: grid !important;
    animation: press-milestone-award 1950ms cubic-bezier(0.16, 0.86, 0.22, 1) forwards !important;
  }
}
