:root {
  color-scheme: dark;
  --bg: #050700;
  --bg-2: #0b1000;
  --brand: #ff6a00;
  --brand-hot: #ff8a18;
  --pairing: #2f7f43;
  --pairing-hot: #46b45f;
  --acid: var(--pairing);
  --acid-2: var(--brand);
  --text: #f7f7ef;
  --muted: #b9c0aa;
  --line: rgba(255, 106, 0, 0.24);
  --panel: rgba(10, 16, 0, 0.86);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 106, 0, 0.14), transparent 34rem),
    linear-gradient(180deg, #010200 0%, var(--bg) 42%, #090d00 100%);
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Black", "Inter", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
}

.ticker {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-height: 2.7rem;
  text-decoration: none;
  color: var(--brand);
  font-size: clamp(2.25rem, 7vw, 4.15rem);
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 106, 0, 0.72),
    0 0 34px rgba(255, 106, 0, 0.42);
}

.ticker::before {
  content: "";
  position: absolute;
  inset: -0.24em -0.45em -0.2em;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.28), rgba(255, 106, 0, 0.05) 52%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.ticker-mark {
  color: var(--text);
}

.socials {
  position: absolute;
  right: clamp(1rem, 4vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  width: 2.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

main {
  width: 100%;
}

.hero {
  width: 100%;
  min-height: clamp(14rem, 55vw, 48rem);
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  background: #000;
  overflow: hidden;
}

.hero-image {
  width: min(100%, 1780px);
  height: auto;
  max-height: calc(100vh - 5rem);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 38px rgba(255, 106, 0, 0.18));
}

.contract-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: clamp(1.05rem, 3vw, 2rem) 1rem;
  border-block: 1px solid rgba(255, 106, 0, 0.3);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(255, 106, 0, 0.11), transparent 22%, transparent 78%, rgba(47, 127, 67, 0.1)),
    #000;
  text-align: center;
  overflow: hidden;
}

.contract-panel::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  z-index: -1;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background-image:
    linear-gradient(rgba(255, 106, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.08) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  mask-image: radial-gradient(ellipse at center, black, transparent 78%);
}

.contract-card {
  width: min(100%, 58rem);
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: clamp(0.95rem, 2vw, 1.35rem);
  border: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.1), transparent 17rem),
    rgba(0, 0, 0, 0.42);
}

.contract-kicker {
  margin: 0;
  color: var(--pairing-hot);
  font: 900 clamp(0.92rem, 2vw, 1.18rem)/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contract-address {
  width: min(100%, 48rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.55rem, 2vw, 0.9rem);
  padding: 0.64rem 0.75rem;
  border: 1px solid rgba(255, 106, 0, 0.72);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: inset 0 0 16px rgba(255, 106, 0, 0.08);
}

.contract-address span {
  color: var(--brand);
  font-size: clamp(0.82rem, 2vw, 1rem);
  line-height: 1;
  text-transform: uppercase;
}

.contract-address span {
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 106, 0, 0.62);
}

.contract-address code {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font: 800 clamp(0.76rem, 2vw, 1rem)/1.15 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.loyalty-panel {
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: #000;
  border-top: 1px solid rgba(255, 106, 0, 0.28);
}

.loyalty-image {
  width: min(100%, 1780px);
  height: auto;
  display: block;
  object-fit: contain;
}

.wallet-panel {
  position: relative;
  isolation: isolate;
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(2.2rem, 5vw, 4.6rem) 1rem;
  border-top: 1px solid rgba(255, 106, 0, 0.28);
  border-bottom: 1px solid rgba(255, 106, 0, 0.28);
  background:
    radial-gradient(circle at 80% 42%, rgba(255, 106, 0, 0.2), transparent 22rem),
    radial-gradient(circle at 8% 42%, rgba(255, 106, 0, 0.16), transparent 17rem),
    #000;
  overflow: hidden;
}

.wallet-panel::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 50%;
  width: min(100%, 74rem);
  height: 1px;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.76), transparent);
  box-shadow:
    0 0 18px rgba(255, 106, 0, 0.5),
    0 0 0 5px rgba(0, 0, 0, 0.86);
}

.wallet-card {
  position: relative;
  width: min(100%, 76rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(18rem, 25rem);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.45rem, 3vw, 2.25rem);
  border: 1px solid rgba(255, 106, 0, 0.46);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 106, 0, 0.14), transparent 16rem),
    linear-gradient(90deg, rgba(255, 106, 0, 0.08), rgba(0, 0, 0, 0.9) 34%, rgba(0, 0, 0, 0.84)),
    rgba(0, 0, 0, 0.92);
  box-shadow:
    0 0 44px rgba(255, 106, 0, 0.16),
    inset 0 0 42px rgba(255, 106, 0, 0.04);
}

.wallet-icon {
  width: clamp(6rem, 11vw, 8.7rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.08);
  color: var(--brand);
  box-shadow:
    0 0 20px rgba(255, 106, 0, 0.5),
    inset 0 0 22px rgba(255, 106, 0, 0.13);
}

.wallet-icon svg,
.wallet-button svg {
  width: 48%;
  height: 48%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.4;
}

.wallet-copy {
  min-width: 0;
  display: grid;
  gap: 0.75rem;
}

.wallet-kicker {
  margin: 0;
  color: var(--pairing-hot);
  font: 900 0.82rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.wallet-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.22),
    0 0 26px rgba(255, 106, 0, 0.24);
}

.wallet-lede {
  margin: 0;
  max-width: 45rem;
  color: rgba(247, 247, 239, 0.78);
  font: 700 clamp(1rem, 1.8vw, 1.32rem)/1.45 Inter, ui-sans-serif, system-ui, sans-serif;
}

.wallet-action {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.wallet-panel button {
  width: min(100%, 24rem);
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: auto auto;
  place-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 106, 0, 0.88);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ff9d24, var(--brand) 72%, #ef5600);
  color: #080300;
  cursor: pointer;
  font: 900 clamp(1.3rem, 2.5vw, 1.8rem)/1 Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  box-shadow:
    0 0 24px rgba(255, 106, 0, 0.58),
    0 0 68px rgba(255, 106, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.wallet-panel button:hover {
  background: linear-gradient(180deg, #ffb33c, var(--brand-hot) 72%, #f35c00);
  box-shadow: 0 0 34px rgba(255, 106, 0, 0.48);
}

.wallet-button svg {
  width: 2.05rem;
  height: 2.05rem;
  stroke-width: 4.8;
}

.wallet-options {
  display: grid;
  grid-template-columns: repeat(4, 3.25rem);
  justify-content: center;
  gap: 0.78rem;
}

.wallet-options span {
  width: 3.25rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.68rem;
  background: #101010;
}

.wallet-options img {
  width: 3.25rem;
  height: 3.25rem;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.wallet-panel small {
  color: var(--muted);
  font: 700 0.92rem/1.3 Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: center;
}

.disclaimer-panel {
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: #000;
  border-top: 1px solid rgba(255, 106, 0, 0.28);
}

.disclaimer-image {
  width: min(100%, 1780px);
  height: auto;
  display: block;
  object-fit: contain;
}

.disclaimer-copy {
  display: none;
}

.pairing-panel {
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: #000;
  border-top: 1px solid rgba(255, 106, 0, 0.28);
}

.pairing-image {
  width: min(100%, 1780px);
  height: auto;
  display: block;
  object-fit: contain;
}

.pairing-copy {
  display: none;
}

.live-pair-panel {
  width: 100%;
  padding: clamp(2.1rem, 5vw, 4.5rem) 1rem;
  border-top: 1px solid rgba(255, 106, 0, 0.28);
  background: #000;
}

.live-pair-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  text-align: center;
}

.live-pair-kicker {
  margin: 0;
  color: var(--pairing-hot);
  font: 900 clamp(0.82rem, 1.5vw, 1rem)/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.live-pair-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.live-pair-title span,
.live-pair-lede span {
  color: var(--brand);
}

.live-pair-title em {
  color: var(--text);
  font-style: normal;
}

.live-pair-title strong,
.live-pair-lede strong {
  color: var(--pairing-hot);
}

.live-pair-lede {
  margin: 0;
  color: var(--text);
  font: 900 clamp(1.15rem, 2.6vw, 2rem)/1.15 Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
}

.live-pair-status {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(70, 180, 95, 0.58);
  color: var(--pairing-hot);
  font: 900 0.76rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13.5rem, 0.28fr);
  gap: 0.85rem;
  align-items: stretch;
  text-align: left;
}

.balls-market,
.dks-reference {
  border: 1px solid rgba(255, 106, 0, 0.42);
  background: #050505;
}

.balls-market {
  display: grid;
  gap: 0;
}

.market-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 106, 0, 0.26);
  color: var(--brand);
  font: 900 0.8rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-head strong {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.price-hero {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 3vw, 1.35rem) 1rem;
  border-bottom: 1px solid rgba(255, 106, 0, 0.22);
}

.price-hero span {
  color: var(--muted);
  font: 800 0.74rem/1.1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-hero strong {
  color: var(--brand);
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.price-hero em {
  width: fit-content;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(70, 180, 95, 0.42);
  color: var(--pairing-hot);
  font: 900 0.86rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

.pair-chart {
  width: 100%;
  min-height: clamp(16rem, 34vw, 23rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 0;
  border-bottom: 1px solid rgba(255, 106, 0, 0.26);
  background: #050505;
  overflow: hidden;
}

.pair-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 106, 0, 0.26);
  color: var(--muted);
  font: 900 0.76rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pair-chart-head strong {
  color: var(--pairing-hot);
  white-space: nowrap;
}

.pair-chart-canvas,
.pair-chart-frame {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  display: block;
}

.pair-chart-frame {
  border: 0;
  background: #050505;
}

.pair-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 0;
  background: rgba(255, 106, 0, 0.42);
}

.pair-metric {
  min-height: 7.4rem;
  display: grid;
  align-content: center;
  gap: 0.7rem;
  padding: 1rem;
  background: #050505;
}

.pair-metric span {
  color: var(--muted);
  font: 800 0.78rem/1.15 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pair-metric strong {
  min-width: 0;
  color: var(--brand);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.current-numbers,
.market-comparison {
  width: 100%;
  border: 1px solid rgba(255, 106, 0, 0.42);
  background: #050505;
  text-align: left;
}

.current-numbers {
  display: grid;
  gap: 1px;
  background: rgba(255, 106, 0, 0.38);
}

.numbers-copy,
.comparison-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  background: #050505;
}

.numbers-copy span,
.comparison-copy span,
.number-card span,
.comparison-values span {
  color: var(--muted);
  font: 900 0.68rem/1.15 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.numbers-copy span,
.comparison-copy span {
  color: var(--pairing-hot);
}

.numbers-copy h3,
.comparison-copy h3 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.numbers-copy p {
  max-width: 36rem;
  margin: 0;
  color: var(--text);
  font: 800 0.95rem/1.35 Inter, ui-sans-serif, system-ui, sans-serif;
}

.numbers-copy p strong {
  color: var(--brand);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
}

.market-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 106, 0, 0.38);
}

.number-card {
  min-height: 7rem;
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 0.95rem;
  background: #050505;
}

.number-card strong {
  min-width: 0;
  color: var(--brand);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.number-card-primary strong {
  color: var(--pairing-hot);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.numbers-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.8rem 1rem;
  background: #050505;
  color: var(--muted);
  font: 800 0.78rem/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.numbers-footnote::before {
  content: "";
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pairing-hot);
  box-shadow: 0 0 14px rgba(70, 180, 95, 0.7);
}

.market-comparison {
  display: grid;
  gap: 0;
}

.comparison-copy {
  border-bottom: 1px solid rgba(255, 106, 0, 0.26);
}

.comparison-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 106, 0, 0.38);
}

.comparison-values div {
  min-height: 6.4rem;
  display: grid;
  align-content: center;
  gap: 0.6rem;
  padding: 0.95rem;
  background: #050505;
}

.comparison-values strong {
  min-width: 0;
  color: var(--brand);
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.comparison-bar {
  height: 1rem;
  margin: 1rem;
  border: 1px solid rgba(255, 106, 0, 0.42);
  background: rgba(247, 247, 239, 0.1);
  overflow: hidden;
}

.comparison-bar span {
  width: 0%;
  height: 100%;
  display: block;
  background: var(--brand);
  transition: width 260ms ease;
}

.pair-actions {
  width: min(100%, 58rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.pair-button {
  min-height: 3.75rem;
  display: grid;
  place-items: center;
  padding: 0.75rem 0.7rem;
  border: 1px solid rgba(255, 106, 0, 0.74);
  background: rgba(255, 106, 0, 0.1);
  color: var(--text);
  font: 900 0.82rem/1.12 Inter, ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}

.pair-button:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.pair-button-dks {
  border-color: rgba(70, 180, 95, 0.68);
  background: rgba(70, 180, 95, 0.1);
}

.pair-button-dks:hover {
  border-color: var(--pairing-hot);
  color: var(--pairing-hot);
}

.pair-button.is-pending {
  color: rgba(247, 247, 239, 0.48);
  cursor: default;
  pointer-events: none;
}

.dks-reference {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 0.9rem;
  border-color: rgba(70, 180, 95, 0.44);
}

.dks-reference > div:first-child {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(70, 180, 95, 0.24);
}

.dks-reference span,
.dks-reference dt {
  color: var(--muted);
  font: 800 0.66rem/1.15 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dks-reference strong {
  color: var(--pairing-hot);
  font-size: clamp(2rem, 3.3vw, 2.75rem);
  line-height: 0.88;
}

.dks-reference em,
.dks-reference small {
  color: var(--text);
  font: 800 0.82rem/1.35 Inter, ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
}

.dks-reference dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.dks-reference dl div {
  display: grid;
  gap: 0.28rem;
}

.dks-reference dd {
  margin: 0;
  color: var(--text);
  font: 900 1rem/1.1 Inter, ui-sans-serif, system-ui, sans-serif;
  overflow-wrap: anywhere;
}

.dks-reference small {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.market-note {
  width: min(100%, 48rem);
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  text-align: center;
}

.market-note p,
.market-note small {
  margin: 0;
  color: var(--muted);
  font: 800 0.78rem/1.45 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.market-note small {
  color: rgba(247, 247, 239, 0.54);
  font-size: 0.7rem;
}

.how-it-works {
  width: 100%;
  display: grid;
  gap: 1rem;
  padding-top: 0.6rem;
}

.how-it-works h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(70, 180, 95, 0.42);
  background: rgba(70, 180, 95, 0.42);
  text-align: left;
}

.how-grid article {
  min-height: 10rem;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.2rem;
  background: #050505;
}

.how-grid span {
  color: var(--pairing-hot);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.how-grid p {
  margin: 0;
  color: var(--text);
  font: 800 1rem/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
}

.pair-close {
  width: min(100%, 58rem);
  margin: 0;
  padding-top: clamp(0.5rem, 2vw, 1.2rem);
  color: var(--brand);
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.statement,
.launch {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 0.85fr);
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: center;
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--acid-2);
  font: 900 0.9rem/1.1 Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  max-width: 40rem;
  font-size: clamp(3.2rem, 7vw, 6.15rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.statement p,
.launch p,
.bands p,
footer span {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.statement > p {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(154, 217, 0, 0.08);
}

.bands article {
  min-height: 15rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.38);
}

.bands article:last-child {
  border-right: 0;
}

.bands span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--acid-2);
  font-size: 1rem;
}

.bands h2,
.launch h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.bands p,
.launch-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.launch {
  display: grid;
  gap: 1.25rem;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.launch-grid p {
  min-height: 9rem;
  padding: 1.2rem;
  background: var(--panel);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.25rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--acid-2);
  font-size: 1.4rem;
}

@media (max-width: 780px) {
  html,
  body,
  .site-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .topbar,
  main,
  section,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.12), transparent 22rem),
      #050700;
  }

  .topbar {
    left: 0;
    right: 0;
    width: 100vw;
    min-height: 4.45rem;
    padding: 0.75rem 5.6rem 0.75rem;
    justify-content: center;
  }

  .ticker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
    font-size: 2.5rem;
  }

  .socials {
    position: fixed;
    top: 0.75rem;
    right: 0.85rem;
    z-index: 8;
    flex-shrink: 0;
    margin-left: auto;
    gap: 0.45rem;
  }

  .social-link {
    width: 2.2rem;
  }

  .hero {
    min-height: auto;
    padding: 0.55rem 0;
  }

  .hero-image {
    width: 100vw;
    max-width: 100vw;
    max-height: none;
  }

  .contract-panel {
    padding: 0.95rem 0.75rem;
  }

  .contract-panel::before {
    inset: 0.55rem;
    background-size: 1.55rem 1.55rem;
  }

  .contract-card {
    padding: 0.75rem 0.45rem 0.85rem;
    gap: 0.62rem;
  }

  .contract-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .contract-address {
    grid-template-columns: auto minmax(0, 1fr);
    width: min(100%, 22rem);
    gap: 0.55rem;
    padding: 0.6rem;
  }

  .contract-address code {
    width: 100%;
    max-width: 100%;
    font-size: 0.72rem;
  }

  .loyalty-panel {
    padding: 0;
  }

  .loyalty-image {
    width: 100vw;
    max-width: 100vw;
  }

  .wallet-panel {
    width: 100vw;
    max-width: 100vw;
    padding: 1.65rem 0.85rem;
  }

  .wallet-panel::before {
    top: 0.45rem;
    width: calc(100% - 2rem);
  }

  .wallet-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.95rem;
    padding: 1.15rem 0.95rem 1.25rem;
    border-radius: 0.85rem;
    text-align: center;
  }

  .wallet-icon {
    width: 5.6rem;
  }

  .wallet-copy {
    justify-items: center;
    gap: 0.65rem;
  }

  .wallet-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .wallet-panel h2 {
    font-size: 2.05rem;
    line-height: 0.98;
  }

  .wallet-lede {
    max-width: 20.5rem;
    font-size: 0.95rem;
  }

  .wallet-action {
    width: 100%;
    gap: 0.8rem;
  }

  .wallet-panel button {
    width: min(100%, 20rem);
    min-height: 4rem;
    font-size: 1.18rem;
  }

  .wallet-button svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .wallet-options {
    grid-template-columns: repeat(4, 2.85rem);
    gap: 0.55rem;
  }

  .wallet-options span,
  .wallet-options img {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.5rem;
  }

  .wallet-panel small {
    max-width: 20rem;
    font-size: 0.82rem;
  }

  .disclaimer-panel {
    padding: 1rem;
  }

  .disclaimer-image {
    display: none;
  }

  .disclaimer-copy {
    width: min(100%, 24rem);
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--brand);
    background: #030303;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .disclaimer-kicker {
    margin: 0;
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
  }

  .disclaimer-copy h2 {
    margin: 0;
    font-size: 2.25rem;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
  }

  .disclaimer-lede,
  .disclaimer-copy li,
  .disclaimer-close {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .disclaimer-lede {
    font-weight: 800;
    text-align: center;
  }

  .disclaimer-copy ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.05rem;
  }

  .disclaimer-copy li::marker {
    color: var(--brand);
  }

  .disclaimer-copy b {
    color: var(--brand);
  }

  .disclaimer-copy strong {
    color: var(--pairing);
  }

  .disclaimer-close {
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 106, 0, 0.5);
    color: var(--brand);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .pairing-panel {
    padding: 0;
  }

  .pairing-image {
    display: none;
  }

  .pairing-copy {
    width: 100%;
    max-width: 100vw;
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 1.45rem 1rem 1.75rem;
    background: #000;
    color: #fff;
    text-align: center;
    overflow: hidden;
  }

  .pairing-copy h1 {
    width: 100%;
    max-width: 8.4ch;
    margin: 0 0 0.2rem;
    font-size: clamp(3rem, 15vw, 3.65rem);
    line-height: 0.83;
    text-transform: uppercase;
    overflow-wrap: break-word;
  }

  .pairing-copy h1 span {
    color: var(--brand);
  }

  .pairing-copy h1 strong,
  .pairing-copy strong {
    color: var(--pairing);
  }

  .pairing-copy p {
    width: min(100%, 22rem);
    max-width: calc(100vw - 2rem);
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.28;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-wrap: anywhere;
  }

  .pairing-copy b {
    color: var(--brand);
  }

  .pairing-copy p + p::before {
    content: "";
    display: block;
    width: 3.7rem;
    height: 2px;
    margin: 0 auto 0.95rem;
    background: var(--brand);
  }

  .pairing-copy div {
    width: min(100%, 22rem);
    max-width: calc(100vw - 2rem);
    padding: 0.85rem 0.7rem;
    border: 1px solid var(--brand);
    color: var(--brand);
    font-size: 1.18rem;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    overflow-wrap: break-word;
  }

  .pairing-copy small {
    width: min(100%, 22rem);
    max-width: calc(100vw - 2rem);
    color: #fff;
    font: 800 0.72rem/1.55 Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }

  .live-pair-panel {
    padding: 1.7rem 0.85rem 2.2rem;
  }

  .live-pair-inner {
    gap: 1rem;
  }

  .live-pair-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .live-pair-title {
    max-width: 8.8ch;
    font-size: clamp(3.2rem, 16vw, 4.6rem);
    overflow-wrap: break-word;
  }

  .live-pair-lede {
    width: min(100%, 22rem);
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .market-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .market-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem;
    font-size: 0.72rem;
  }

  .price-hero {
    padding: 0.9rem 0.8rem;
  }

  .price-hero strong {
    font-size: clamp(2.5rem, 15vw, 3.6rem);
  }

  .pair-chart {
    min-height: 15rem;
  }

  .pair-chart-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem;
    font-size: 0.68rem;
  }

  .pair-metrics,
  .pair-actions,
  .numbers-grid,
  .market-strip-grid,
  .comparison-values,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .dks-reference {
    text-align: center;
  }

  .dks-reference > div:first-child,
  .dks-reference dl div,
  .market-note {
    justify-items: center;
  }

  .pair-metric {
    min-height: 5.6rem;
    padding: 0.9rem;
  }

  .pair-metric strong {
    font-size: 1.5rem;
  }

  .numbers-copy,
  .comparison-copy,
  .number-card,
  .comparison-values div {
    justify-items: center;
    text-align: center;
  }

  .number-card,
  .comparison-values div {
    min-height: 5.6rem;
    padding: 0.9rem;
  }

  .comparison-bar {
    height: 0.85rem;
    margin: 0.85rem;
  }

  .pair-button {
    min-height: 3.4rem;
    font-size: 0.78rem;
  }

  .how-it-works h3 {
    font-size: 2.45rem;
  }

  .how-grid {
    text-align: center;
  }

  .how-grid article {
    min-height: auto;
    gap: 0.75rem;
    padding: 1rem;
  }

  .how-grid span {
    font-size: 1.35rem;
  }

  .how-grid p {
    font-size: 0.92rem;
  }

  .pair-close {
    width: min(100%, 21rem);
    font-size: clamp(2.75rem, 13vw, 3.8rem);
    overflow-wrap: break-word;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 15vw, 3.2rem);
    line-height: 0.88;
  }

  .statement > p,
  .bands p,
  .launch-grid p {
    max-width: 18rem;
    overflow-wrap: anywhere;
  }

  .statement {
    width: 100%;
    grid-template-columns: 1fr;
    align-items: start;
    padding-inline: 1rem;
  }

  .statement > *,
  .bands article,
  .launch-grid p {
    min-width: 0;
  }

  .bands,
  .launch-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .bands article {
    min-height: auto;
    padding-inline: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .launch {
    width: 100%;
    padding-inline: 1rem;
  }

  .bands article:last-child {
    border-bottom: 0;
  }

  .bands span {
    margin-bottom: 1.2rem;
  }

  .launch-grid p {
    min-height: auto;
  }

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