@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Inter:wght@400;500;600;650;700;750;800&display=swap");
:root {
  color-scheme: dark;
  --bg: #071113;
  --panel: #102226;
  --panel-hover: #142b30;
  --line: #26434b;
  --line-soft: #20383e;
  --text: #eef5f6;
  --muted: #91a7ae;
  --blue: #70aec2;
  --blue-light: #b0d1dc;
  --active: #204653;
  --green: #33d4a3;
  --red: #f0867d;
  --radius: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button,
a,
input,
select,
textarea {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-light);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
button {
  border: 0;
  background: none;
}
button:disabled {
  opacity: 0.5;
  cursor: default;
}
.site-header {
  height: 76px;
  border-bottom: 1px solid var(--line-soft);
  background: #071113f5;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}
.header-inner {
  max-width: 1680px;
  margin: auto;
  height: 100%;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.8px;
}
.brand img {
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.portfolio-tag {
  font-size: 10px;
  letter-spacing: 1.7px;
  color: var(--muted);
  margin-right: 19px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.portfolio-tag i,
.live-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 10px #33d4a340;
}
.button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 650;
  font-size: 15px;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid var(--line);
}
.button:hover {
  background: var(--panel-hover);
  transform: translateY(-1px);
}
.primary {
  background: var(--blue);
  color: #06171c;
  border-color: var(--blue);
}
.primary:hover {
  background: #8dc3d5;
  border-color: #8dc3d5;
}
.button svg {
  width: 17px;
  height: 17px;
}
.plus {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}
.icon-button {
  height: 44px;
  width: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: background 0.2s;
}
.icon-button:hover {
  background: var(--active);
}
.social-button svg {
  fill: var(--text);
  stroke: none;
  width: 19px;
}
.x-icon {
  font-size: 24px;
}
main {
  max-width: 1680px;
  padding: 32px 4% 65px;
  margin: auto;
  min-height: 75vh;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--panel);
  height: 345px;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: 51%;
  padding: 38px 0 38px 43px;
  pointer-events: none;
}
.hero-copy .button {
  pointer-events: auto;
}
.hero h1 {
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 3.48vw, 57px);
  line-height: 1.08;
  letter-spacing: -2.9px;
  margin: 0 0 20px;
  font-weight: 800;
}
.hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
  margin: 0 0 27px;
}
.hero .button {
  min-height: 45px;
}
.hero .button svg {
  margin-left: 8px;
}
.hero-art {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
}
.hero-art > svg {
  width: 100%;
  height: 100%;
  stroke: none;
  overflow: visible;
}
.hero-track {
  stroke-dasharray: 19 12;
  animation: dash 30s linear infinite;
}
.hero-coin {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #aacdd780;
  padding: 5px;
  background: #0a1c2090;
  box-shadow: 0 0 0 5px #73b4c810;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
.hero-coin img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.feature-card {
  position: absolute;
  bottom: 28px;
  right: 34px;
  width: 294px;
  padding: 14px;
  border: 1px solid #3b6470;
  border-radius: 14px;
  background: #102226ed;
  z-index: 4;
  transition: transform 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
}
.feature-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-top .avatar {
  width: 37px;
  height: 37px;
}
.feature-name {
  font-size: 15px;
  font-weight: 650;
}
.feature-pair {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.feature-top > svg {
  margin-left: auto;
  color: var(--muted);
  width: 16px;
}
.feature-bottom {
  display: flex;
  align-items: baseline;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 11px;
  margin-top: 12px;
}
.feature-bottom strong {
  font-size: 21px;
  font-family: Inter, sans-serif;
  letter-spacing: -0.7px;
}
.feature-bottom span {
  font-size: 11px;
  color: var(--muted);
}
.feature-bottom b {
  color: var(--green);
  font-size: 12px;
  margin-left: auto;
}
.hero-controls {
  position: absolute;
  bottom: 28px;
  left: 49%;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  color: var(--muted);
}
.hero-controls button {
  width: 25px;
  height: 25px;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
}
.hero-controls input {
  width: 90px;
  accent-color: var(--blue);
  height: 3px;
  cursor: pointer;
}
.hero-controls label {
  font-size: 10px;
  letter-spacing: 1.4px;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin: 30px 0 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.search-box {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  background: #0b191c;
  border-radius: 9px;
  padding: 0 15px;
  width: 410px;
  height: 47px;
  transition: border-color 0.2s;
}
.search-box:focus-within {
  border-color: var(--blue);
}
.search-box svg {
  color: #7a979f;
  flex-shrink: 0;
}
.search-box input {
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  min-width: 0;
}
.search-box input::placeholder {
  color: #748c94;
}
.search-box button {
  font-size: 20px;
  color: var(--muted);
  padding: 0 2px;
}
.sort-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.sort-controls > span {
  color: var(--muted);
  font-size: 14px;
  margin-right: 6px;
}
.sort-controls button,
.chart-tabs button {
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  padding: 10px 13px;
  border-radius: 8px;
  transition: all 0.2s;
}
.sort-controls button:hover,
.chart-tabs button:hover {
  color: var(--text);
}
.sort-controls button.active,
.chart-tabs button.active {
  background: var(--active);
  color: var(--blue-light);
}
.filters {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 18px 0 25px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filters > span {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
  margin-right: 6px;
}
.filter {
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 13px;
  font-size: 14px;
  color: var(--muted);
  transition: 0.2s;
}
.filter:hover {
  color: var(--text);
  background: var(--panel);
}
.filter.active {
  background: var(--active);
  border-color: var(--blue);
  color: var(--blue-light);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
  gap: 12px;
}
.section-heading h2 {
  font-size: 20px;
  letter-spacing: -0.6px;
  margin: 0;
  font-weight: 650;
}
.catalog-status {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}
.data-state {
  display: flex;
  align-items: center;
  gap: 6px;
}
.data-state i {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.data-state.live i {
  background: var(--green);
}
.token-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.token-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 21px 22px 0;
  overflow: hidden;
  min-height: 282px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    background 0.25s;
  animation: appear 0.4s both;
  animation-delay: calc(var(--i, 0) * 25ms);
}
.token-card:hover {
  border-color: #56808c;
  background: #14282d;
  transform: translateY(-4px);
}
.card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.card-link:focus-visible {
  outline-offset: -4px;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 71px;
}
.avatar {
  display: grid;
  place-items: center;
  background: var(--avatar-bg, #193b48);
  color: var(--blue-light);
  border: 1px solid #46616a;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  overflow: hidden;
  flex-shrink: 0;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-actions {
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 3;
}
.mini-button {
  height: 27px;
  min-width: 27px;
  border: 1px solid #385d68;
  border-radius: 50%;
  color: #8cb9c6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #16343e;
  padding: 0 6px;
}
.mini-button svg {
  width: 14px;
  height: 14px;
}
.mini-button:hover {
  background: var(--active);
  color: var(--text);
}
.copy-button {
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 0.6px;
  gap: 5px;
  background: transparent;
  color: var(--muted);
}
.copy-button svg {
  width: 11px;
  height: 11px;
}
.ticker {
  font-size: 13px;
  color: var(--blue);
  font-weight: 650;
  margin-bottom: 5px;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.token-name {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 79%;
}
.market-cap {
  font-family: Inter, sans-serif;
  font-weight: 650;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1.35px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.paired {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b5c6cb;
  font-size: 12px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  max-width: 80%;
  overflow: hidden;
}
.paired > span:first-child {
  color: var(--muted);
}
.pair-mini {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--coin-color, #8fb9c4);
  color: #09212a;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.badge {
  border: 1px solid #416b76;
  border-radius: 30px;
  background: #173641;
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.card-bottom {
  border-top: 1px solid var(--line-soft);
  margin-top: 20px;
  padding: 15px 0;
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.positive {
  color: var(--green) !important;
}
.negative {
  color: var(--red) !important;
}
.coin-orbit {
  position: absolute;
  height: 178px;
  width: 178px;
  border: 1px solid #31515c;
  right: -22px;
  bottom: -30px;
  border-radius: 50%;
  background: #14282d;
  z-index: -1;
  transition: transform 0.6s;
}
.coin-orbit:before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid #ffffff09;
  border-radius: 50%;
  background: #ffffff02;
}
.coin-orbit .avatar {
  position: absolute;
  inset: 38px;
  width: 100px;
  height: 100px;
  font-size: 41px;
  opacity: 0.65;
  border: 0;
  background: var(--coin-color, #78a5b5);
  color: #071416;
  transform: rotate(-12deg);
  transition: transform 0.6s;
}
.token-card:hover .coin-orbit {
  transform: rotate(9deg) scale(1.05);
}
.token-card:hover .coin-orbit .avatar {
  transform: rotate(-9deg);
}
.load-more {
  display: block;
  margin: 28px auto 0;
  min-width: 160px;
}
.result-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 15px 0;
}
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--line);
  border-radius: 14px;
}
.empty-state > svg {
  width: 35px;
  height: 35px;
  color: var(--blue);
}
.empty-state h3 {
  font-size: 22px;
  margin: 16px 0 8px;
}
.empty-state p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.site-footer {
  border-top: 1px solid var(--line-soft);
  max-width: 1546px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 4% 35px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer .brand {
  font-size: 17px;
  color: var(--text);
}
.site-footer > a:last-child:hover {
  color: var(--blue-light);
}
.back-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}
.back-link svg {
  width: 15px;
}
.back-link:hover {
  color: var(--blue);
}
.token-summary {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.summary-top {
  display: flex;
  align-items: center;
  padding: 26px;
  gap: 18px;
}
.summary-top > .avatar {
  height: 65px;
  width: 65px;
  font-size: 26px;
}
.summary-title {
  min-width: 0;
}
.summary-title h1 {
  font-family: Inter, sans-serif;
  font-size: 27px;
  letter-spacing: -1px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.status-badge {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  background: var(--active);
  padding: 5px 9px;
  color: var(--blue-light);
  border-radius: 5px;
  letter-spacing: 0;
  font-weight: 600;
}
.summary-subtitle {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}
.address-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 12px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.address-button svg {
  width: 13px;
  height: 13px;
}
.summary-links {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.summary-links .button {
  color: #bccbd0;
  font-size: 13px;
  min-height: 39px;
  padding: 0 12px;
}
.summary-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
}
.stat {
  padding: 18px 23px;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child {
  border: 0;
}
.stat span {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.stat strong {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.4px;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-top: 25px;
}
.panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line-soft);
}
.panel-heading h2 {
  font-size: 16px;
  font-weight: 650;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.panel-heading h2 svg {
  color: var(--blue);
  width: 17px;
}
.panel-heading > span {
  font-size: 12px;
  color: var(--muted);
}
.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 12px;
  gap: 10px;
}
.chart-tabs {
  display: flex;
  gap: 3px;
}
.chart-tabs button {
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 5px;
}
.chart-wrap {
  height: 400px;
  position: relative;
}
.chart-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.chart-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.chart-caption {
  position: absolute;
  left: 16px;
  top: 13px;
  color: var(--muted);
  font-size: 11px;
  pointer-events: none;
}
.chart-caption b {
  color: var(--blue-light);
  margin-right: 9px;
  font-weight: 500;
}
.chart-tooltip {
  position: absolute;
  display: none;
  background: #071113ef;
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  pointer-events: none;
  z-index: 2;
}
.chart-note {
  padding: 13px 17px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chart-note a {
  color: var(--blue-light);
  white-space: nowrap;
}
.swap-panel .panel-heading {
  display: block;
}
.panel-heading p {
  font-size: 13px;
  color: var(--muted);
  margin: 5px 0 0;
}
.swap-placeholder {
  margin: 15px;
  padding: 38px 18px;
  min-height: 256px;
  border: 1px dashed #365963;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.swap-symbol {
  font-size: 28px;
  color: var(--blue);
  width: 53px;
  height: 53px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.swap-placeholder h3 {
  font-size: 17px;
  margin: 0 0 9px;
}
.swap-placeholder p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.swap-placeholder .button {
  min-height: 40px;
  font-size: 14px;
}
.info-panel {
  padding: 20px;
  margin-top: 20px;
}
.info-panel h3 {
  font-size: 15px;
  color: var(--blue-light);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-panel p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.detail-about {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.about-body {
  padding: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.about-body p {
  margin: 0 0 14px;
}
.key-values {
  padding: 5px 19px;
}
.key-values > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.key-values > div:last-child {
  border: none;
}
.key-values span {
  color: var(--muted);
}
.detail-data-status {
  font-size: 12px;
  color: var(--muted);
  margin: 15px 0;
  text-align: right;
}
.launch-wrap {
  max-width: 950px;
  margin: 0 auto;
}
.launch-header {
  text-align: center;
  margin: 18px 0 35px;
}
.eyebrow {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 2px;
  font-weight: 600;
}
.launch-header h1 {
  font-family: Inter, sans-serif;
  font-size: 42px;
  letter-spacing: -2px;
  margin: 12px 0;
}
.launch-header p {
  font-size: 15px;
  color: var(--muted);
}
.launch-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 25px;
  align-items: start;
}
.launch-form {
  padding: 26px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 21px;
}
.form-field label {
  font-size: 14px;
  color: var(--blue-light);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b191d;
  color: var(--text);
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 14px;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.field-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 15px;
}
.launch-form > .button {
  width: 100%;
}
.form-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}
.preview-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  margin: 5px 0 13px;
}
.launch-preview .token-card {
  min-height: 300px;
}
.launch-preview .card-top {
  height: 88px;
}
dialog {
  color: var(--text);
  background: var(--panel);
  border: 1px solid #42626c;
  border-radius: 18px;
  width: 430px;
  max-width: calc(100% - 32px);
  padding: 34px;
  box-shadow: 0 25px 100px #0008;
}
dialog::backdrop {
  background: #02090ac9;
  backdrop-filter: blur(7px);
}
.close-button {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 28px;
  color: var(--muted);
}
.modal-icon {
  color: var(--blue);
  height: 56px;
  width: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--active);
  margin-bottom: 24px;
}
.modal-icon svg {
  height: 27px;
  width: 27px;
}
dialog h2 {
  font-size: 25px;
  letter-spacing: -0.7px;
  margin: 0 0 12px;
}
dialog p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 24px;
}
dialog .button {
  width: 100%;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 20px;
  border: 1px solid #466570;
  background: #15303a;
  box-shadow: 0 8px 30px #0005;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  z-index: 100;
  transition: 0.2s;
  max-width: 90%;
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@keyframes dash {
  to {
    stroke-dashoffset: -620;
  }
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1650px) {
  .hero {
    height: 390px;
  }
  .hero-copy {
    padding: 44px 0 40px 49px;
  }
  .hero p {
    font-size: 18px;
    max-width: 530px;
  }
  .token-card {
    min-height: 312px;
    padding: 24px 25px 0;
  }
  .card-top {
    height: 83px;
  }
  .market-cap {
    font-size: 36px;
  }
  .token-name {
    font-size: 17px;
  }
  .paired {
    font-size: 14px;
  }
  .card-bottom {
    padding: 18px 0;
    font-size: 13px;
  }
  .feature-card {
    width: 335px;
    bottom: 31px;
  }
  .hero-controls {
    left: 52%;
  }
  .filters {
    gap: 10px;
  }
  .filter {
    font-size: 15px;
    padding: 10px 15px;
  }
}
@media (max-width: 1100px) {
  .portfolio-tag {
    display: none;
  }
  .hero {
    height: 325px;
  }
  .hero-copy {
    padding: 34px 0 30px 30px;
    width: 54%;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .hero p {
    font-size: 14px;
    max-width: 355px;
  }
  .feature-card {
    right: 24px;
    width: 260px;
    bottom: 25px;
  }
  .hero-controls {
    left: 56%;
    bottom: 10px;
  }
  .hero-controls label {
    display: none;
  }
  .token-grid {
    gap: 13px;
  }
  .token-card {
    padding: 17px 17px 0;
    min-height: 265px;
  }
  .market-cap {
    font-size: 28px;
  }
  .card-top {
    height: 64px;
  }
  .paired {
    font-size: 11px;
    gap: 4px;
  }
  .badge {
    font-size: 9px;
    padding: 3px 5px;
  }
  .coin-orbit {
    width: 150px;
    height: 150px;
    right: -29px;
  }
  .coin-orbit .avatar {
    inset: 33px;
    width: 84px;
    height: 84px;
    font-size: 32px;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 17px;
  }
  .summary-links {
    flex-direction: column;
  }
  .summary-title h1 {
    font-size: 24px;
  }
  .search-box {
    width: 365px;
  }
}
@media (max-width: 800px) {
  main {
    padding: 22px 4% 45px;
  }
  .site-header {
    height: 67px;
  }
  .brand {
    font-size: 20px;
    gap: 8px;
  }
  .brand img {
    width: 28px;
    height: 31px;
  }
  nav {
    gap: 7px;
  }
  nav > .button {
    font-size: 13px;
    padding: 0 12px;
    min-height: 39px;
  }
  .social-button {
    display: none;
  }
  .hero {
    height: 335px;
  }
  .hero-copy {
    width: 62%;
    padding: 29px 0 25px 27px;
  }
  .hero h1 {
    font-size: 37px;
    letter-spacing: -2px;
  }
  .hero p {
    font-size: 14px;
    max-width: 330px;
  }
  .hero-art {
    width: 71%;
    opacity: 0.75;
  }
  .feature-card {
    width: 240px;
    right: 20px;
    bottom: 20px;
  }
  .hero-controls {
    display: none;
  }
  .toolbar {
    gap: 15px;
    align-items: stretch;
    flex-direction: column;
    margin-top: 23px;
    padding-bottom: 17px;
  }
  .search-box {
    width: 100%;
  }
  .sort-controls {
    justify-content: flex-end;
  }
  .sort-controls > span {
    margin-right: auto;
  }
  .filters {
    margin-top: 16px;
  }
  .token-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .token-card {
    min-height: 274px;
  }
  .card-top {
    height: 71px;
  }
  .coin-orbit {
    right: -15px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  .detail-sidebar .info-panel {
    margin-top: 0;
  }
  .swap-placeholder {
    min-height: 225px;
    padding: 20px;
  }
  .summary-top {
    flex-wrap: wrap;
    padding: 20px;
    gap: 13px;
  }
  .summary-top > .avatar {
    width: 53px;
    height: 53px;
  }
  .summary-links {
    flex-direction: row;
    flex-basis: 100%;
    margin: 5px 0 0;
  }
  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    padding: 16px 20px;
  }
  .stat:nth-child(2) {
    border: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }
  .stat strong {
    font-size: 19px;
  }
  .detail-about {
    gap: 17px;
  }
  .site-footer {
    flex-wrap: wrap;
    font-size: 11px;
  }
  .site-footer > span {
    order: 3;
    width: 100%;
    text-align: center;
  }
  .launch-layout {
    gap: 18px;
  }
  .launch-form {
    padding: 20px;
  }
  .launch-header h1 {
    font-size: 35px;
  }
}
@media (max-width: 520px) {
  .header-inner {
    gap: 10px;
  }
  .brand {
    font-size: 18px;
  }
  .brand img {
    width: 25px;
  }
  nav > .button {
    padding: 0 10px;
    font-size: 12px;
    min-height: 37px;
    gap: 5px;
  }
  nav > .button[data-wallet-placeholder] {
    font-size: 0;
    width: 37px;
    padding: 0;
  }
  nav > .button[data-wallet-placeholder] svg {
    width: 17px;
    height: 17px;
  }
  .plus {
    font-size: 20px;
  }
  .hero {
    height: 425px;
  }
  .hero-copy {
    padding: 27px 23px;
    width: 100%;
  }
  .hero h1 {
    font-size: 36px;
    letter-spacing: -1.8px;
    margin-bottom: 13px;
  }
  .hero p {
    font-size: 14px;
    max-width: 300px;
    line-height: 1.65;
    margin-bottom: 19px;
  }
  .hero .button {
    min-height: 39px;
    font-size: 13px;
    padding: 0 13px;
  }
  .hero-art {
    width: 125%;
    height: 64%;
    top: 180px;
    right: -10%;
    opacity: 0.8;
  }
  .feature-card {
    bottom: 19px;
    right: 18px;
    width: 241px;
    padding: 11px 13px;
  }
  .feature-top .avatar {
    width: 31px;
    height: 31px;
  }
  .feature-name {
    font-size: 13px;
  }
  .feature-pair {
    font-size: 10px;
  }
  .feature-bottom {
    margin-top: 9px;
    padding-top: 9px;
  }
  .feature-bottom strong {
    font-size: 18px;
  }
  .feature-bottom span {
    font-size: 10px;
  }
  .feature-bottom b {
    font-size: 11px;
  }
  .toolbar {
    margin-top: 21px;
    gap: 13px;
  }
  .sort-controls button {
    font-size: 12px;
    padding: 8px 10px;
  }
  .sort-controls > span {
    font-size: 12px;
  }
  .search-box input {
    font-size: 13px;
  }
  .filter {
    font-size: 12px;
    padding: 8px 11px;
  }
  .filters > span {
    font-size: 12px;
  }
  .filters {
    gap: 7px;
    margin-bottom: 22px;
  }
  .section-heading {
    align-items: center;
    margin-bottom: 15px;
  }
  .section-heading h2 {
    font-size: 18px;
  }
  .catalog-status {
    font-size: 10px;
    gap: 9px;
  }
  .data-state {
    font-size: 10px;
  }
  .token-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .token-card {
    padding: 22px 23px 0;
    min-height: 284px;
  }
  .card-top {
    height: 74px;
  }
  .market-cap {
    font-size: 33px;
  }
  .paired {
    font-size: 12px;
  }
  .badge {
    font-size: 10px;
    padding: 3px 7px;
  }
  .coin-orbit {
    width: 181px;
    height: 181px;
    right: -13px;
    bottom: -28px;
  }
  .coin-orbit .avatar {
    width: 103px;
    height: 103px;
    inset: 38px;
    font-size: 43px;
  }
  .card-bottom {
    font-size: 12px;
    margin-top: 22px;
    padding: 16px 0;
  }
  .ticker {
    font-size: 13px;
  }
  .token-name {
    font-size: 16px;
  }
  .summary-title h1 {
    font-size: 21px;
    gap: 7px;
  }
  .summary-top {
    padding: 18px 16px;
  }
  .summary-top > .avatar {
    width: 46px;
    height: 46px;
  }
  .summary-title {
    max-width: calc(100% - 60px);
  }
  .summary-subtitle {
    font-size: 12px;
    gap: 6px;
  }
  .summary-title h1 .status-badge {
    font-size: 9px;
  }
  .summary-stats .stat {
    padding: 15px;
  }
  .stat span {
    font-size: 12px;
  }
  .stat strong {
    font-size: 17px;
  }
  .detail-sidebar,
  .detail-about {
    grid-template-columns: 1fr;
  }
  .chart-wrap {
    height: 330px;
  }
  .chart-toolbar {
    flex-wrap: wrap;
    gap: 5px;
  }
  .chart-tabs button {
    padding: 6px 8px;
    font-size: 11px;
  }
  .chart-note {
    font-size: 10px;
    align-items: start;
  }
  .panel-heading {
    padding: 15px;
  }
  .launch-layout {
    grid-template-columns: 1fr;
  }
  .launch-header {
    text-align: left;
    margin: 12px 0 25px;
  }
  .launch-header h1 {
    font-size: 32px;
  }
  .launch-preview {
    order: 2;
  }
  .launch-header p {
    font-size: 14px;
    line-height: 1.7;
  }
  .detail-data-status {
    text-align: left;
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
[hidden] {
  display: none !important;
}
.chart-note a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.chart-note a svg {
  width: 12px;
  height: 12px;
}
.summary-title h1 {
  overflow-wrap: anywhere;
}
.about-body .summary-links {
  flex-wrap: wrap;
}
.hero-controls {
  left: 48%;
}
.token-card .card-actions {
  isolation: isolate;
}
@media (min-width: 1650px) {
  .hero-controls {
    left: 52%;
  }
}
@media (max-width: 1100px) and (min-width: 801px) {
  .hero-controls {
    left: 51%;
    bottom: 11px;
  }
}
@media (max-width: 800px) {
  .hero-controls {
    display: flex;
    left: 28px;
    bottom: 24px;
  }
  .hero-controls label {
    display: none;
  }
  .hero-controls input {
    width: 64px;
  }
}
@media (max-width: 520px) {
  .hero-controls {
    left: 23px;
    bottom: 146px;
  }
  .hero-controls input {
    width: 100px;
  }
}
/* $STONK campaign hero */
.hero {
  height: 455px;
}
.hero-copy {
  width: 53%;
  padding: 48px 0 44px 43px;
}
.hero h1 {
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.08;
  letter-spacing: -2.8px;
  margin-bottom: 23px;
}
.hero h1 span {
  display: block;
}
.hero p {
  margin-bottom: 25px;
}
.hero-join {
  font-size: 19px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 13px;
}
.hero .button {
  min-width: 140px;
}
.hero-art {
  width: 65%;
}
.hero-track {
  stroke-dasharray: none;
  animation: none;
}
.toolbar {
  justify-content: flex-end;
}
@media (min-width: 1650px) {
  .hero {
    height: 490px;
  }
  .hero-copy {
    padding: 54px 0 45px 49px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .hero-join {
    font-size: 21px;
  }
}
@media (max-width: 1100px) {
  .hero {
    height: 425px;
  }
  .hero-copy {
    padding: 43px 0 35px 30px;
    width: 56%;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-join {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .hero {
    height: 430px;
  }
  .hero-copy {
    padding: 37px 0 30px 27px;
    width: 65%;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero p {
    max-width: 285px;
  }
  .hero-art {
    width: 71%;
  }
  .toolbar {
    align-items: flex-end;
  }
  .sort-controls > span {
    margin-right: 6px;
  }
}
@media (max-width: 520px) {
  .hero {
    height: 530px;
  }
  .hero-copy {
    width: 100%;
    padding: 30px 23px;
  }
  .hero h1 {
    font-size: clamp(33px, 8.9vw, 44px);
    letter-spacing: -1.7px;
    margin-bottom: 19px;
  }
  .hero p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .hero-join {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .hero .button {
    min-height: 43px;
    min-width: 130px;
  }
  .hero-art {
    width: 125%;
    height: 54%;
    top: 244px;
    right: -10%;
  }
  .hero-controls {
    bottom: 155px;
  }
  .feature-card {
    bottom: 23px;
  }
}
/* Token artwork is always an image, including paired assets and fallback artwork. */
.avatar {
  background: #18333b;
}
.avatar img {
  display: block;
  object-fit: cover;
}
.pair-avatar {
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 0;
  font-size: 0;
}
.coin-orbit .avatar {
  opacity: 0.92;
  transform: none;
  background: #11242a;
}
.token-card:hover .coin-orbit .avatar {
  transform: rotate(-9deg);
}
.hero-coin img {
  display: block;
}
