:root {
  color-scheme: dark;
  --bg: #010403;
  --bg-soft: #03100a;
  --panel: rgba(3, 13, 8, 0.72);
  --panel-deep: rgba(0, 5, 3, 0.88);
  --line: rgba(196, 225, 202, 0.45);
  --line-soft: rgba(147, 180, 153, 0.24);
  --text: #d9e6d7;
  --muted: #8fa18f;
  --faint: #536356;
  --mint: #b9dcc0;
  --mint-bright: #effff1;
  --green: #79d38b;
  --red: #b96969;
  --silver: #eef6ed;
  --shadow: rgba(160, 222, 174, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(2, 8, 5, 0.98), rgba(0, 3, 2, 0.96) 55%, #010403),
    #010403;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(190, 224, 192, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(190, 224, 192, 0.025) 1px, transparent 1px);
  background-size: 74px 74px, 74px 74px;
  opacity: 0.42;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16%),
    url("./assets/raccoon-glass.png") center -470px / 1180px auto no-repeat;
  opacity: 0.1;
  filter: saturate(0.85);
}

body.is-loading {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(100%, 1210px);
  margin: 0 auto;
  padding: 18px 34px 12px;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 18, 11, 0.82), rgba(1, 7, 4, 0.72) 52%, rgba(0, 0, 0, 0.88)),
    var(--panel);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 28px rgba(132, 204, 145, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(14px);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(238, 255, 239, 0.09), transparent 16%),
    linear-gradient(90deg, transparent, rgba(166, 210, 176, 0.06), transparent);
  mix-blend-mode: screen;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 46px;
  margin-bottom: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--mint);
  font-size: 25px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(193, 231, 199, 0.35);
}

.brand img {
  width: 50px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(188, 229, 196, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
  color: #dbe6d8;
  font-size: 13px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  opacity: 0.9;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: center;
  box-shadow: 0 0 8px var(--mint);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--mint-bright);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-actions,
.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.pill-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(197, 230, 203, 0.58);
  color: #f1fff2;
  background:
    linear-gradient(180deg, rgba(197, 230, 203, 0.2), rgba(74, 98, 76, 0.22) 45%, rgba(0, 4, 2, 0.72)),
    rgba(5, 17, 9, 0.78);
  border-radius: 999px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow:
    0 0 16px rgba(182, 226, 190, 0.19),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pill-button:hover,
.outline-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(235, 255, 238, 0.85);
  box-shadow:
    0 0 22px rgba(182, 226, 190, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.pill-button.small {
  min-height: 43px;
  padding-inline: 24px;
  font-size: 14px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  color: var(--muted);
  background: transparent;
  transition: transform 180ms ease, color 180ms ease;
}

.social-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(238, 248, 238, 0.55));
}

.telegram-logo {
  transform: rotate(-8deg) scale(1.16);
}

.x-logo {
  transform: scale(1.18);
}

.pump-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(239, 255, 240, 0.42));
}

.hero {
  min-height: 368px;
  padding: 34px 42px 30px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(177, 217, 184, 0.06) 55%, transparent 88%),
    linear-gradient(90deg, transparent, rgba(216, 246, 219, 0.1), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.chrome-title {
  margin: 0;
  color: transparent;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 60px;
  font-weight: 650;
  line-height: 0.98;
  background:
    linear-gradient(180deg, #fbfff9 0%, #95aa99 18%, #effff1 31%, #627065 54%, #dce8dc 77%, #fafffb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(222, 242, 224, 0.46);
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.68),
    0 0 13px rgba(188, 235, 197, 0.52),
    0 0 28px rgba(113, 178, 124, 0.25);
}

.hero-kicker,
.loader-kicker {
  margin: 16px 0 15px;
  color: #dce8dc;
  font-size: 16px;
  font-weight: 500;
}

.hero-text {
  margin: 0 0 22px;
  color: #c8d2c6;
  font-size: 15px;
  line-height: 1.28;
}

.hero-button {
  min-width: 245px;
}

.hero-pump-logo {
  width: 29px;
  height: 29px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(194, 233, 200, 0.12);
}

.hero-art {
  position: absolute;
  z-index: 1;
  right: -22px;
  bottom: 6px;
  width: 65%;
  height: 98%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0.9;
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter:
    drop-shadow(0 0 12px rgba(230, 255, 233, 0.2))
    drop-shadow(0 0 34px rgba(141, 212, 154, 0.18));
}

.hero-shadow {
  position: absolute;
  left: 35%;
  right: 6%;
  bottom: 34px;
  height: 24px;
  background: rgba(178, 226, 186, 0.11);
  filter: blur(16px);
  transform: perspective(500px) rotateX(65deg);
}

.contract-strip {
  z-index: 4;
  display: grid;
  grid-template-columns: 2.15fr repeat(4, 1fr);
  align-items: center;
  width: 88%;
  min-height: 58px;
  margin: -21px auto 10px;
  padding: 0 20px;
}

.contract-strip::before {
  opacity: 0.5;
}

.contract-ca,
.contract-stat {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  color: #d5dfd3;
}

.contract-ca {
  justify-content: flex-start;
}

.contract-stat,
.contract-ca {
  min-height: 38px;
  border-right: 1px solid rgba(176, 205, 181, 0.2);
}

.contract-stat:last-child {
  border-right: 0;
}

.meta-label {
  color: var(--muted);
  font-size: 12px;
}

.contract-ca code {
  display: block;
  min-width: 0;
  max-width: 260px;
  overflow: hidden;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid rgba(176, 205, 181, 0.19);
  border-radius: 5px;
  padding: 8px 12px;
  background: rgba(3, 11, 7, 0.75);
}

.contract-stat {
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.contract-stat strong {
  color: #edf7ec;
  font-size: 13px;
}

.copy-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #bdd7bf;
  background: rgba(141, 185, 149, 0.08);
  cursor: pointer;
}

.copy-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-button.is-copied {
  color: var(--silver);
  border-color: rgba(212, 244, 217, 0.45);
}

.market-grid,
.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(330px, 0.98fr);
  gap: 13px;
  margin-top: 10px;
}

.chart-panel,
.token-panel,
.gallery-panel,
.lore-panel,
.faq-panel {
  padding: 12px 16px;
}

.chart-panel {
  min-height: 398px;
  padding: 6px;
}

.dex-embed-wrap {
  position: relative;
  z-index: 1;
  height: 386px;
  overflow: hidden;
  border: 1px solid rgba(149, 184, 156, 0.22);
  border-radius: 7px;
  background: rgba(0, 4, 2, 0.72);
}

.dex-iframe {
  display: block;
  width: calc(100% + 58px);
  height: calc(100% + 160px);
  border: 0;
  background: #050805;
  transform: translate(-56px, -82px);
}

.panel-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 8px;
}

.tab,
.chart-toolbar button,
.chart-footer button {
  border: 0;
  color: #cfdacf;
  background: transparent;
  cursor: pointer;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
}

.tab.muted {
  color: var(--muted);
}

.mini-mask {
  width: 22px;
  height: 22px;
  background: url("./assets/logo-mark.png") center / contain no-repeat;
  filter: grayscale(1) brightness(1.3);
}

.chart-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  margin: 0 -12px;
  padding: 0 12px;
  border-top: 1px solid rgba(149, 184, 156, 0.18);
  border-bottom: 1px solid rgba(149, 184, 156, 0.18);
  overflow-x: auto;
  scrollbar-width: none;
}

.chart-toolbar::-webkit-scrollbar {
  display: none;
}

.chart-toolbar button {
  flex: 0 0 auto;
  color: #c8d5c6;
  font-size: 13px;
}

.chart-toolbar button.is-active {
  color: var(--mint-bright);
}

.toolbar-divider {
  width: 1px;
  height: 23px;
  flex: 0 0 auto;
  background: rgba(172, 205, 178, 0.22);
}

.toolbar-spacer {
  flex: 1 0 12px;
}

.square-tool {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(155, 188, 162, 0.18) !important;
  border-radius: 5px;
}

.square-tool svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-title-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 2px;
}

.chart-title-row h2 {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 6px;
  color: #dbe7da;
  font-size: 14px;
  font-weight: 500;
}

.chart-title-row p {
  margin: 0 0 4px;
  color: #83be8b;
  font-size: 12px;
}

.chart-title-row p:last-child {
  color: #86ae88;
}

.chart-badge {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 18px;
  border: 1px solid rgba(137, 201, 147, 0.35);
  border-radius: 4px;
  color: #74c87e;
  font-size: 10px;
}

.chart-canvas-wrap {
  position: relative;
  height: 200px;
  margin: 0 -5px;
}

#priceChart {
  width: 100%;
  height: 100%;
}

.chart-watermark {
  position: absolute;
  left: 22px;
  bottom: 44px;
  color: rgba(184, 222, 190, 0.045);
  font-size: 52px;
  font-weight: 800;
  pointer-events: none;
}

.chart-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(149, 184, 156, 0.18);
}

.range-row,
.time-row {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #cbd7ca;
}

.time-row {
  gap: 12px;
}

.time-row span,
.chart-footer button {
  font-size: 14px;
}

.token-panel {
  min-height: 398px;
}

.token-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.token-heading img {
  width: 62px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(185, 220, 192, 0.32));
}

.token-heading h2 {
  margin: 0 0 6px;
  color: #f0fff1;
  font-size: 20px;
  font-weight: 780;
}

.token-heading p {
  margin: 0;
  color: #cbd8ca;
  font-size: 14px;
}

.token-status {
  margin-left: auto;
  align-self: flex-start;
  padding: 4px 7px;
  border: 1px solid rgba(132, 227, 148, 0.24);
  border-radius: 999px;
  color: #84e394;
  background: rgba(84, 146, 91, 0.12);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.token-status.is-error {
  color: #e58d8d;
  border-color: rgba(229, 141, 141, 0.28);
  background: rgba(174, 74, 74, 0.12);
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(149, 184, 156, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.metric-cell {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-right: 1px solid rgba(149, 184, 156, 0.18);
  border-bottom: 1px solid rgba(149, 184, 156, 0.18);
  background: rgba(0, 6, 3, 0.38);
}

.metric-cell:nth-child(2n) {
  border-right: 0;
}

.metric-cell:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metric-cell span,
.trade-table span,
.time-stats span {
  color: var(--muted);
  font-size: 11px;
}

.metric-cell strong {
  color: #eef8ed;
  font-size: 15px;
  font-weight: 680;
}

.lock-mark {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(144, 218, 155, 0.6);
  border-radius: 50%;
  color: #92db9b;
  font-size: 11px;
  font-style: normal;
}

.time-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(149, 184, 156, 0.16);
  border-radius: 7px;
}

.time-stats div {
  min-height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-right: 1px solid rgba(149, 184, 156, 0.14);
  background: rgba(84, 146, 91, 0.12);
}

.time-stats div:last-child {
  border-right: 0;
}

.time-stats strong {
  color: #84e394;
  font-size: 13px;
}

.time-stats strong.is-negative {
  color: #e58d8d;
}

.trade-table {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 36px;
  gap: 4px 12px;
  padding: 8px 8px 8px;
}

.trade-table div {
  min-width: 0;
}

.trade-table span {
  display: block;
  line-height: 1.1;
}

.trade-table strong {
  display: block;
  margin-top: 2px;
  color: #e6f0e5;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trade-table i {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 5px;
  background: rgba(159, 188, 164, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.trade-table i::before {
  content: "";
  display: block;
  width: var(--size);
  height: 100%;
  background: linear-gradient(90deg, #8ed796, #d2e9d5);
  box-shadow: 0 0 8px rgba(142, 215, 150, 0.48);
}

.outline-button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 36px;
  border-radius: 6px;
  color: #cbd8ca;
  background: rgba(1, 7, 4, 0.48);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09) inset;
}

.gallery-panel {
  min-height: 213px;
  margin-top: 12px;
  padding-bottom: 22px;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: #f2fff2;
  font-size: 21px;
  font-weight: 700;
}

.gallery-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  padding: 0 18px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.22 / 1;
  border: 1px solid rgba(207, 233, 211, 0.55);
  border-radius: 8px;
  background: #010403;
  box-shadow: 0 0 16px rgba(150, 220, 162, 0.12);
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.gallery-item.is-active {
  border-color: rgba(235, 255, 238, 0.86);
  box-shadow: 0 0 20px rgba(188, 231, 196, 0.2);
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 53%;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 44px;
  border: 0;
  color: #dce9db;
  background: transparent;
  cursor: pointer;
}

.gallery-arrow.prev {
  left: 9px;
}

.gallery-arrow.next {
  right: 9px;
}

.gallery-arrow svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 9px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.gallery-dots button {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(169, 201, 174, 0.22);
  cursor: pointer;
}

.gallery-dots button.is-active {
  background: #e9f6e9;
  box-shadow: 0 0 8px rgba(221, 255, 225, 0.5);
}

.lower-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.lore-panel,
.faq-panel {
  min-height: 330px;
}

.lore-content {
  position: relative;
  z-index: 2;
  width: 58%;
  color: #aebdae;
  font-size: 12px;
  line-height: 1.32;
}

.lore-content p {
  margin: 0 0 8px;
}

.lore-content .outline-button {
  margin-top: 12px;
}

.lore-art {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 1;
  width: 58%;
  opacity: 0.88;
  filter: drop-shadow(0 0 18px rgba(182, 225, 189, 0.2));
  mask-image: linear-gradient(90deg, transparent 0%, #000 25%);
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(149, 184, 156, 0.2);
  border-radius: 7px;
  background: rgba(2, 10, 6, 0.62);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 32px;
  padding: 0 13px;
  border: 0;
  color: #cfdacf;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  min-width: 0;
}

.faq-question b {
  color: #c2d4c2;
  font-size: 18px;
  font-weight: 400;
}

.faq-answer {
  padding: 0 13px 8px;
  color: #9eaf9e;
  font-size: 12px;
}

.faq-cta {
  width: 70%;
  margin-top: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr auto;
  align-items: end;
  gap: 20px;
  min-height: 69px;
  padding: 10px 0 0;
  color: #94a695;
  font-size: 12px;
}

.footer-left {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.footer-brand {
  font-size: 22px;
}

.footer-brand img {
  width: 44px;
  height: 36px;
}

.footer-tag {
  margin: -3px 0 0 54px;
  color: #b8c8b7;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.footer-disclaimer {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
}

.footer-socials {
  grid-column: 4;
  grid-row: 1;
  align-self: end;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0, 3, 2, 0.96), rgba(0, 0, 0, 0.98)),
    #000;
  transition: opacity 580ms ease, visibility 580ms ease;
}

.loader-screen.is-complete {
  opacity: 0;
  visibility: hidden;
}

.loader-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1482px);
  min-height: min(93vh, 950px);
  padding: 58px 34px 34px;
  overflow: hidden;
  border: 1px solid rgba(218, 240, 221, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%),
    rgba(0, 3, 2, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 40px rgba(171, 220, 181, 0.13);
}

.loader-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(211, 244, 217, 0.065), transparent),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.62) 55%, #000 100%);
}

.loader-scene {
  position: relative;
  z-index: 1;
  width: min(840px, 72vw);
  height: auto;
  margin-top: 20px;
  opacity: 0.88;
  filter: drop-shadow(0 0 22px rgba(208, 242, 214, 0.16));
}

.loader-title {
  position: relative;
  z-index: 2;
  margin-top: -12px;
  font-size: 82px;
}

.loader-kicker,
.loader-word,
.loader-percent,
.loader-tagline,
.loader-copy {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #b7c9b6;
}

.loader-kicker {
  margin-top: 17px;
  font-size: 20px;
}

.loader-word {
  margin-top: 39px;
  color: #b8d0b8;
  font-size: 28px;
}

.loader-bar {
  position: relative;
  z-index: 2;
  width: min(680px, 62vw);
  height: 44px;
  margin-top: 15px;
  padding: 7px;
  border: 1px solid rgba(230, 249, 232, 0.76);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.25)),
    rgba(0, 4, 2, 0.95);
  box-shadow:
    0 0 16px rgba(214, 247, 219, 0.23),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.loader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(111, 143, 113, 0.95), rgba(232, 255, 234, 0.95) 48%, rgba(129, 163, 131, 0.95)),
    #b9dcc0;
  box-shadow:
    0 0 13px rgba(232, 255, 234, 0.76),
    0 1px 0 rgba(255, 255, 255, 0.58) inset;
  transition: width 120ms linear;
}

.loader-percent {
  margin-top: 17px;
  color: #a9d7ac;
  font-size: 30px;
}

.loader-tagline {
  margin-top: 42px;
  font-size: 15px;
}

.loader-logo {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 68px;
  margin-top: 14px;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(205, 240, 211, 0.35));
}

.loader-copy {
  margin-top: 9px;
  color: #9aa99a;
  font-size: 16px;
}

@media (max-width: 900px) {
  .page-shell {
    padding-inline: 24px;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .market-grid,
  .lower-grid {
    grid-template-columns: 1fr;
  }

  .token-panel,
  .chart-panel {
    min-height: auto;
  }

  .contract-strip {
    width: 94%;
    grid-template-columns: 1fr 1fr;
    padding-block: 12px;
  }

  .contract-ca {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .contract-stat:nth-child(3),
  .contract-stat:nth-child(5) {
    border-right: 0;
  }

  .gallery-track {
    grid-template-columns: repeat(5, 172px);
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
}

@media (max-width: 760px) {
  body::after {
    background-size: 900px auto;
    background-position: center -350px;
  }

  .page-shell {
    padding: 16px 14px 24px;
  }

  .brand {
    font-size: 21px;
  }

  .header-actions {
    gap: 8px;
  }

  .pill-button.small {
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 650px;
    padding: 30px 22px 25px;
  }

  .chrome-title {
    font-size: 47px;
  }

  .hero-kicker {
    font-size: 15px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-art {
    right: -70px;
    bottom: 12px;
    width: 118%;
    height: 47%;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%);
  }

  .hero-copy {
    max-width: 100%;
  }

  .contract-strip {
    margin-top: 12px;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contract-ca,
  .contract-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(176, 205, 181, 0.16);
    padding-block: 9px;
  }

  .contract-stat:last-child {
    border-bottom: 0;
  }

  .contract-ca code {
    max-width: 190px;
  }

  .chart-panel,
  .token-panel,
  .gallery-panel,
  .lore-panel,
  .faq-panel {
    padding-inline: 14px;
  }

  .chart-title-row h2 {
    font-size: 14px;
  }

  .chart-canvas-wrap {
    height: 285px;
  }

  .chart-watermark {
    font-size: 40px;
  }

  .chart-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .token-heading h2 {
    font-size: 20px;
  }

  .metric-grid,
  .time-stats,
  .trade-table {
    grid-template-columns: 1fr 1fr;
  }

  .trade-table {
    gap: 12px;
  }

  .lore-panel {
    min-height: 480px;
  }

  .lore-content {
    width: 100%;
  }

  .lore-art {
    right: -18px;
    width: 74%;
    opacity: 0.6;
  }

  .faq-cta {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-tag {
    margin: -12px 0 0 60px;
  }

  .loader-screen {
    padding: 16px;
  }

  .loader-frame {
    min-height: 90vh;
    padding: 42px 18px 28px;
  }

  .loader-scene {
    width: 94vw;
    margin-top: 30px;
  }

  .loader-title {
    font-size: 50px;
  }

  .loader-kicker {
    font-size: 14px;
    text-align: center;
  }

  .loader-word {
    margin-top: 30px;
    font-size: 18px;
  }

  .loader-bar {
    width: 82vw;
  }

  .loader-percent {
    font-size: 24px;
  }

  .loader-tagline {
    margin-top: 30px;
    font-size: 11px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
