:root {
  color-scheme: dark;
  --bg: #101113;
  --panel: #17191d;
  --panel-soft: rgba(23, 25, 29, 0.72);
  --text: #f7fbff;
  --muted: #aab2bf;
  --line: rgba(255, 255, 255, 0.13);
  --cyan: #70d8ff;
  --cyan-2: #bcefff;
  --pink: #ff3fb7;
  --yellow: #ffe45e;
  --green: #85ffb6;
  --ink: #07090c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 228, 94, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(255, 63, 183, 0.18), transparent 30rem),
    radial-gradient(circle at 72% 82%, rgba(112, 216, 255, 0.2), transparent 35rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

main a:is(:hover, :focus-visible) {
  color: var(--pink);
}

img {
  max-width: 100%;
}

.home-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  display: inline-block;
  background: currentColor;
}

.icon-arrow-up {
  -webkit-mask: url("arrow-up.svg") center / contain no-repeat;
  mask: url("arrow-up.svg") center / contain no-repeat;
}

.icon-arrow-up-right {
  -webkit-mask: url("arrow-up-right.svg") center / contain no-repeat;
  mask: url("arrow-up-right.svg") center / contain no-repeat;
}

.icon-new-tab {
  -webkit-mask: url("svg/new-tab.svg") center / contain no-repeat;
  mask: url("svg/new-tab.svg") center / contain no-repeat;
}

.icon-dexscreener {
  -webkit-mask: url("svg/icon-dexscreener.svg") center / contain no-repeat;
  mask: url("svg/icon-dexscreener.svg") center / contain no-repeat;
}

.icon-x {
  -webkit-mask: url("svg/icon-x.svg") center / contain no-repeat;
  mask: url("svg/icon-x.svg") center / contain no-repeat;
}

.icon-jupiter {
  -webkit-mask: url("svg/icon-jupiter.svg") center / contain no-repeat;
  mask: url("svg/icon-jupiter.svg") center / contain no-repeat;
}

.icon-upload {
  -webkit-mask: url("upload.svg") center / contain no-repeat;
  mask: url("upload.svg") center / contain no-repeat;
}

.primary-button,
.secondary-button {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: #090a0c;
  transition: opacity 380ms ease, visibility 380ms ease, transform 380ms ease;
}

.loader-inner {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15em;
  color: var(--cyan);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: 0;
}

.section-full,
.section {
  position: relative;
  width: 100%;
}

.section-full {
  min-height: 100vh;
  padding: clamp(110px, 14vh, 160px) clamp(18px, 5vw, 64px) 60px;
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 64px);
}

.hero {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  overflow: hidden;
  background: #050607;
  filter: saturate(1.18) contrast(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 17, 19, 0.04), rgba(16, 17, 19, 0.9)),
    linear-gradient(90deg, rgba(16, 17, 19, 0.82), rgba(16, 17, 19, 0.26) 58%, rgba(16, 17, 19, 0.82));
}

.hero-bg-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  margin-left: -2.4vw;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  transition: flex-grow 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
}

.hero-bg-panel:first-child {
  margin-left: 0;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero-bg-panel:last-child {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.46)),
    rgba(0, 0, 0, 0.14);
}

.hero-bg-panel img,
.hero-bg-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-bg-panel img {
  z-index: 0;
}

.hero-bg-panel video {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-bg:hover .hero-bg-panel {
  flex-grow: 0.92;
}

.hero-bg .hero-bg-panel:hover {
  flex-grow: 1.38;
  filter: brightness(1.08) saturate(1.14);
}

.hero-bg-panel:hover img,
.hero-bg-panel:hover video {
  transform: scale(1.13);
}

.hero-bg-panel.is-video-playing video {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 80px);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -16% -10%;
  z-index: 1;
  pointer-events: none;
  height: 36%;
  background: radial-gradient(ellipse at center, rgba(112, 216, 255, 0.22), transparent 68%);
  filter: blur(12px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  align-self: center;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(5.4rem, 17vw, 15rem);
  font-weight: 1000;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy {
  max-width: 39rem;
  margin: 26px 0 0;
  color: #dce6ee;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 650;
  line-height: 1.35;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  pointer-events: none;
}

.hero-actions a {
  pointer-events: auto;
}

.risk-note {
  max-width: 43rem;
  margin: 18px 0 0;
  color: rgba(221, 232, 238, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.5;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
}

.primary-button {
  color: #061017;
  background: var(--cyan);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--cyan-2);
}

.secondary-button {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: rgba(255, 228, 94, 0.5);
  background: rgba(255, 228, 94, 0.12);
}

.hero-token {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 7vw, 120px);
  top: clamp(110px, 18vh, 190px);
  width: clamp(160px, 23vw, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  animation: float-token 4.8s ease-in-out infinite;
}

.hero-token:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 8px;
  border-radius: 50%;
}

.hero-token:hover .token-ring,
.hero-token:focus-visible .token-ring {
  filter: drop-shadow(0 0 18px rgba(255, 228, 94, 0.34));
}

.hero-token img,
.hero-token-video {
  position: relative;
  z-index: 1;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 24px 80px rgba(112, 216, 255, 0.35);
}

.hero-token-video {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-token.is-video-playing .hero-token-video {
  opacity: 1;
}

.token-ring {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 57%, rgba(188, 239, 255, 0.28) 57.4%, transparent 57.9%),
    radial-gradient(circle, transparent 89%, rgba(188, 239, 255, 0.42) 89.4%, transparent 89.9%);
  animation: spin 18s linear infinite;
}

.token-ring-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.token-ring-text text {
  fill: var(--yellow);
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 1000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin-top: clamp(44px, 10vh, 92px);
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(180px, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(7, 9, 12, 0.58);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.hero-metrics article {
  min-height: 96px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.hero-metrics article + article {
  border-left: 1px solid var(--line);
}

.hero-metrics span,
.stat-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics strong,
.stat-card strong {
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.marquee-band {
  overflow: hidden;
  padding: 18px 0;
  color: #050607;
  background: var(--yellow);
}

.marquee-line {
  width: max-content;
  display: flex;
  gap: 22px;
  font-size: clamp(2.2rem, 8vw, 7rem);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: marquee-left 20s linear infinite;
}

.marquee-line span {
  white-space: nowrap;
}

.cards-section {
  padding-top: clamp(58px, 8vw, 98px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.feature-card {
  position: relative;
  min-height: clamp(280px, 28vw, 420px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px);
  display: grid;
  align-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(23, 25, 29, 0.84);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.feature-card-hot {
  grid-column: span 5;
  color: #071017;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 18rem),
    linear-gradient(135deg, var(--yellow), var(--cyan));
}

.feature-card-chart {
  grid-column: span 7;
  padding: 0;
  grid-template-columns: minmax(0, 1.06fr) minmax(230px, 0.72fr);
  align-content: stretch;
  gap: 0;
}

.feature-card-wide {
  grid-column: span 7;
}

.feature-card-community {
  grid-column: span 5;
}

.feature-card p {
  max-width: 28rem;
  margin: 14px 0 0;
  color: currentColor;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 700;
  line-height: 1.34;
  overflow-wrap: anywhere;
}

.feature-card:not(.feature-card-hot) p {
  color: #d9e2ea;
}

.feature-number,
.feature-card-copy strong {
  display: block;
  max-width: 100%;
  font-size: clamp(3.4rem, 6.8vw, 6.35rem);
  font-weight: 1000;
  line-height: 0.88;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.feature-card-chart .feature-card-copy strong,
.feature-card-community .feature-number {
  font-size: clamp(3rem, 5.4vw, 5.35rem);
}

.feature-pill,
.about-link {
  width: fit-content;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 950;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.feature-pill:hover,
.feature-pill:focus-visible,
.about-link:hover,
.about-link:focus-visible {
  border-color: rgba(112, 216, 255, 0.78);
  background: rgba(112, 216, 255, 0.16);
}

.feature-pill-dark {
  color: #071017;
  border-color: rgba(7, 16, 23, 0.72);
  background: rgba(7, 16, 23, 0.04);
}

.feature-pill-dark:hover,
.feature-pill-dark:focus-visible {
  color: #071017;
  border-color: rgba(7, 16, 23, 0.9);
  background: rgba(7, 16, 23, 0.12);
}

.feature-chart {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 48% 30%, rgba(112, 216, 255, 0.28), transparent 18rem),
    #111722;
  background-size: 100% 58px, 58px 100%, auto, auto;
}

.feature-chart::before,
.feature-chart::after {
  content: "";
  position: absolute;
  inset: 23% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0.48;
}

.feature-chart::after {
  inset: auto 12% 18%;
  height: 90px;
  border-top: 1px dashed rgba(255, 255, 255, 0.42);
  border-right: 1px dashed rgba(255, 255, 255, 0.32);
  background: none;
}

.feature-chart span {
  position: absolute;
  left: var(--x);
  bottom: 42px;
  width: clamp(8px, 1.3vw, 14px);
  height: var(--h);
  border-radius: 4px 4px 1px 1px;
  color: var(--cyan);
  background: currentColor;
  box-shadow: 0 14px 34px rgba(112, 216, 255, 0.3);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 860ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.feature-chart span:nth-child(3n + 2) {
  color: var(--pink);
  box-shadow: 0 14px 34px rgba(255, 63, 183, 0.28);
}

.feature-card-chart.is-visible .feature-chart span {
  transform: scaleY(1);
}

.feature-chart span:nth-child(1) { transition-delay: 120ms; }
.feature-chart span:nth-child(2) { transition-delay: 180ms; }
.feature-chart span:nth-child(3) { transition-delay: 240ms; }
.feature-chart span:nth-child(4) { transition-delay: 300ms; }
.feature-chart span:nth-child(5) { transition-delay: 360ms; }
.feature-chart span:nth-child(6) { transition-delay: 420ms; }
.feature-chart span:nth-child(7) { transition-delay: 480ms; }
.feature-chart span:nth-child(8) { transition-delay: 540ms; }
.feature-chart span:nth-child(9) { transition-delay: 600ms; }
.feature-chart span:nth-child(10) { transition-delay: 660ms; }
.feature-chart span:nth-child(11) { transition-delay: 720ms; }
.feature-chart span:nth-child(12) { transition-delay: 780ms; }

.feature-chart span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 1px;
  height: calc(100% + 44px);
  background: currentColor;
  transform: translateX(-50%);
  opacity: 0.72;
}

.feature-card-copy {
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  min-width: 0;
}

.feature-card-copy p {
  margin: 0;
}

.feature-card-copy .feature-pill {
  margin-top: 2px;
}

.feature-card-gallery {
  isolation: isolate;
}

.feature-card-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 63, 183, 0.22), transparent 16rem),
    radial-gradient(circle at 76% 88%, rgba(112, 216, 255, 0.2), transparent 18rem);
}

.feature-image-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52%, 520px);
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transform: translateX(8%);
}

.feature-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.04);
}

.feature-card-gallery > div:first-child,
.feature-card-gallery .feature-pill {
  position: relative;
  z-index: 1;
}

.feature-community-media {
  position: absolute;
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 40px);
  width: clamp(108px, 15vw, 210px);
  aspect-ratio: 1;
  border: 1px solid rgba(112, 216, 255, 0.42);
  border-radius: 24px;
  overflow: hidden;
  background: #071017;
  box-shadow:
    0 18px 60px rgba(112, 216, 255, 0.22),
    0 0 0 8px rgba(255, 255, 255, 0.03);
  transform: rotate(-3deg);
}

.feature-community-media img,
.feature-community-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-community-media video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.feature-card-community.is-video-playing .feature-community-media video {
  opacity: 1;
}

.feature-card-community .feature-pill {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading h2,
.about-title h2,
.cta-content h2 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 7.8rem);
  font-weight: 1000;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.matchup-section {
  --matchup-og-share: 65.5%;
  --matchup-vamp-share: 34.5%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%),
    linear-gradient(135deg, rgba(112, 216, 255, 0.1), transparent 36%),
    linear-gradient(225deg, rgba(255, 63, 183, 0.12), transparent 40%),
    #090b0f;
}

.matchup-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 10px);
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.matchup-head {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto clamp(26px, 4vw, 46px);
  text-align: center;
}

.matchup-head h2 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 8.4rem);
  font-weight: 1000;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.matchup-head p:not(.eyebrow) {
  max-width: 48rem;
  margin: 18px auto 0;
  color: #dce6ee;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.matchup-stage {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.matchup-fighter {
  --matchup-panel-border: rgba(255, 255, 255, 0.16);
  --matchup-panel-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(12, 15, 20, 0.9);
  min-width: 0;
  min-height: 560px;
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  grid-template-rows: auto auto minmax(190px, 1fr) auto;
  gap: clamp(16px, 2vw, 24px);
  border-radius: 8px;
  isolation: isolate;
  overflow: visible;
  position: relative;
  background: transparent;
}

.matchup-fighter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    var(--matchup-panel-bg);
  filter: drop-shadow(0 0 0.9px var(--matchup-panel-border));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.matchup-fighter::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border: 1px solid var(--matchup-panel-border);
  border-radius: 8px;
}

.matchup-fighter-og {
  --matchup-panel-border: rgba(112, 216, 255, 0.5);
  --matchup-panel-bg:
    radial-gradient(circle at 24% 52%, rgba(112, 216, 255, 0.34), transparent 15rem),
    radial-gradient(circle at 56% 46%, rgba(112, 216, 255, 0.16), transparent 19rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 40%),
    rgba(9, 17, 22, 0.94);
}

.matchup-fighter-vamp {
  --matchup-panel-border: rgba(255, 63, 183, 0.55);
  --matchup-panel-bg:
    radial-gradient(circle at 26% 54%, rgba(255, 63, 183, 0.36), transparent 15rem),
    radial-gradient(circle at 64% 42%, rgba(255, 63, 183, 0.16), transparent 19rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 40%),
    rgba(22, 9, 16, 0.94);
}

.matchup-fighter > * {
  position: relative;
  z-index: 1;
}

.matchup-fighter-top,
.matchup-meter-row,
.matchup-sources {
  display: flex;
  align-items: center;
}

.matchup-fighter-top {
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.matchup-status,
.matchup-meter-row span {
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matchup-meter-row span {
  color: var(--muted);
}

.matchup-status {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.matchup-status-good {
  color: var(--cyan-2);
}

.matchup-status-danger {
  color: #ff9aad;
}

.matchup-timestamp {
  width: fit-content;
  color: rgba(216, 224, 234, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: lowercase;
}

.matchup-fighter-body {
  display: grid;
  grid-template-columns: minmax(132px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 34px);
  align-items: center;
}

.matchup-portrait {
  width: min(190px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(112, 216, 255, 0.5);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(112, 216, 255, 0.28), transparent 58%),
    #05070a;
  box-shadow:
    0 0 0 8px rgba(112, 216, 255, 0.08),
    0 0 44px rgba(112, 216, 255, 0.48);
}

.matchup-portrait img,
.matchup-portrait-video {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matchup-portrait-video {
  position: relative;
  z-index: 1;
  display: block;
}

.matchup-portrait-vamp {
  color: #fff;
  border-color: rgba(255, 63, 183, 0.72);
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.22), transparent 4.6rem),
    radial-gradient(circle at 50% 50%, rgba(255, 63, 183, 0.48), transparent 62%),
    linear-gradient(135deg, #2a0613, #6b1036 48%, #16070f),
    #10050b;
  box-shadow:
    0 0 0 8px rgba(255, 63, 183, 0.08),
    0 0 44px rgba(255, 63, 183, 0.54);
}

.matchup-portrait-vamp span {
  width: 100%;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.matchup-fighter h3 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.65rem, 2.55vw, 2.55rem);
  font-weight: 820;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.matchup-fighter p {
  margin: 0;
  color: #d8e0ea;
  font-size: clamp(0.96rem, 1.16vw, 1.08rem);
  font-weight: 650;
  line-height: 1.55;
}

.matchup-actions {
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.matchup-vamp-receipts {
  justify-self: stretch;
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.matchup-fighter .matchup-vamp-chart-title {
  margin: 0;
  justify-self: center;
  color: var(--pink);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.matchup-link {
  width: fit-content;
  max-width: 100%;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.matchup-link-primary {
  color: #071017;
  border-color: transparent;
  background: var(--cyan);
}

.matchup-link-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.matchup-link-secondary:hover,
.matchup-link-secondary:focus-visible {
  border-color: rgba(255, 228, 94, 0.5);
  background: rgba(255, 228, 94, 0.11);
}

.matchup-versus {
  position: relative;
  z-index: 4;
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  overflow: visible;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 63, 183, 0.16), transparent 10rem),
    radial-gradient(circle at 50% 82%, rgba(112, 216, 255, 0.2), transparent 11rem),
    linear-gradient(90deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.9) 18%, rgba(7, 9, 12, 0.96) 50%, rgba(7, 9, 12, 0.9) 82%, rgba(7, 9, 12, 0));
}

.matchup-versus::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.matchup-versus::after {
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(112, 216, 255, 0.5) 42.2%, transparent 42.8%),
    linear-gradient(70deg, transparent 0 55%, rgba(255, 63, 183, 0.48) 55.2%, transparent 55.8%);
  opacity: 0.42;
}

.matchup-versus-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(10.5rem, 17vw, 14.8rem);
  max-width: calc(100% + 34px);
  height: auto;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.7))
    drop-shadow(0 18px 42px rgba(0, 0, 0, 0.72));
}

.matchup-round {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matchup-round::before,
.matchup-round::after {
  content: "";
  width: 66px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.matchup-meter {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: clamp(18px, 3vw, 32px) auto 0;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1fr) minmax(130px, 0.25fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(6, 8, 11, 0.78);
}

.matchup-meter-row {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.matchup-meter-row-right {
  justify-items: end;
  text-align: right;
}

.matchup-meter-row strong {
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.matchup-healthbar {
  min-width: 0;
  height: 20px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.matchup-healthbar span {
  min-width: 8%;
  height: 100%;
  transition: width 220ms ease;
}

.matchup-healthbar-og {
  width: var(--matchup-og-share);
  background: var(--cyan);
}

.matchup-healthbar-vamp {
  width: var(--matchup-vamp-share);
  background: var(--pink);
}

.matchup-sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.matchup-sources a {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dce6ee;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.matchup-sources a:hover,
.matchup-sources a:focus-visible {
  border-color: rgba(255, 228, 94, 0.5);
  background: rgba(255, 228, 94, 0.11);
}

.matchup-vamp-receipts .matchup-sources {
  width: 100%;
  gap: 8px;
}

.matchup-vamp-receipts .matchup-sources a {
  min-height: 36px;
  padding: 0 11px;
  font-size: 0.76rem;
}

.matchup-sources .home-icon {
  width: 0.92em;
  height: 0.92em;
}

.gallery-section {
  overflow: hidden;
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: stretch;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.gallery-head .section-heading {
  margin-bottom: 0;
}

.home-upload-drop {
  min-height: clamp(250px, 31vw, 430px);
  padding: clamp(22px, 3vw, 38px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  border: 1px dashed rgba(188, 239, 255, 0.32);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(112, 216, 255, 0.12), transparent 18rem),
    rgba(8, 10, 13, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-upload-drop:hover,
.home-upload-drop:focus-visible,
.home-upload-drop.is-drag-over {
  border-color: rgba(112, 216, 255, 0.78);
  background:
    radial-gradient(circle at 50% 18%, rgba(112, 216, 255, 0.22), transparent 18rem),
    rgba(13, 18, 24, 0.9);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(112, 216, 255, 0.2);
}

.home-upload-drop.is-loading {
  cursor: progress;
  opacity: 0.72;
}

.home-upload-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(112, 216, 255, 0.38);
  border-radius: 50%;
  background: rgba(112, 216, 255, 0.08);
}

.home-upload-icon .home-icon {
  width: 24px;
  height: 24px;
}

.home-upload-drop strong {
  max-width: 18rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
}

.home-upload-drop small {
  max-width: 24rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.home-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.gallery-track {
  width: max-content;
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  animation: gallery-slide 32s linear infinite;
}

.gallery-track img {
  width: clamp(138px, 17vw, 245px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  background: var(--panel);
}

.gallery-cta {
  margin-top: clamp(30px, 5vw, 56px);
  display: flex;
  justify-content: center;
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.chart-card {
  min-height: clamp(420px, 62vw, 720px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #07090c;
}

.chart-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.market-cards {
  display: grid;
  gap: 14px;
}

.stat-card,
.step-card,
.social-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-soft);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.stat-card {
  min-height: 160px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.pair-action-button {
  width: fit-content;
  min-height: 38px;
  padding: 0 13px 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--text);
  border: 1px solid rgba(112, 216, 255, 0.34);
  border-radius: 999px;
  background: rgba(112, 216, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.pair-action-button:hover,
.pair-action-button:focus-visible {
  border-color: rgba(112, 216, 255, 0.72);
  background: rgba(112, 216, 255, 0.18);
}

.pair-action-button .home-icon {
  width: 1em;
  height: 1em;
}

.stat-card small,
.social-card small,
.step-card p {
  color: var(--muted);
  line-height: 1.5;
}

.steps-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 320px;
  padding: 24px;
  display: grid;
  grid-template-rows: 28px minmax(104px, auto) 1fr;
  align-content: start;
  gap: 18px;
}

.step-card span,
.social-card span {
  color: var(--pink);
  font-size: 0.84rem;
  font-weight: 950;
}

.step-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  align-self: start;
}

.step-card p {
  margin: 0;
  align-self: start;
}

.section-risk-note {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(221, 232, 238, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.social-card {
  min-height: 230px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  color: var(--text);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(255, 228, 94, 0.46);
  background: rgba(255, 228, 94, 0.1);
}

.social-card strong {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.36em;
  flex-wrap: wrap;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.social-card strong .home-icon {
  width: 0.86em;
  height: 0.86em;
  color: inherit;
  font-size: inherit;
}

.meme-guide-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 63, 183, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 6%, rgba(112, 216, 255, 0.12), transparent 28rem),
    var(--page);
}

.meme-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.meme-guide-card {
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  color: var(--text);
  background: var(--panel-soft);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.meme-guide-card:hover,
.meme-guide-card:focus-visible {
  color: var(--text);
  border-color: rgba(112, 216, 255, 0.52);
  background: rgba(112, 216, 255, 0.1);
  transform: translateY(-2px);
}

.meme-guide-card span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
}

.meme-guide-card strong {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 1000;
  line-height: 0.98;
  text-transform: uppercase;
}

.meme-guide-card small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.48;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 44%),
    rgba(0, 0, 0, 0.08);
}

.about-title {
  position: sticky;
  top: 112px;
}

.about-copy {
  max-width: 780px;
}

.about-copy p {
  max-width: 52rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.about-copy p + p {
  margin-top: 24px;
}

.about-copy .about-lead {
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.33;
}

.about-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-contract-button {
  width: fit-content;
  min-height: 50px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--text);
  border: 1px solid rgba(112, 216, 255, 0.34);
  border-radius: 999px;
  background: rgba(9, 12, 16, 0.7);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.about-contract-button:hover,
.about-contract-button:focus-visible {
  border-color: rgba(112, 216, 255, 0.68);
  background: rgba(112, 216, 255, 0.16);
}

.about-contract-button span:first-child {
  color: var(--cyan-2);
  font-size: 0.72rem;
  font-weight: 950;
}

.about-contract-button code {
  min-width: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(0.62rem, 1.35vw, 0.82rem);
  line-height: 1;
  white-space: normal;
  overflow-wrap: anywhere;
}

.about-contract-button .shared-copy-icon {
  margin-left: auto;
}

.cta-section {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vw, 160px) clamp(18px, 5vw, 64px);
  color: #071017;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 63, 183, 0.62), transparent 20rem),
    radial-gradient(circle at 88% 78%, rgba(112, 216, 255, 0.88), transparent 24rem),
    var(--yellow);
}

.cta-marquee {
  position: absolute;
  inset: auto 0 6%;
  width: max-content;
  color: rgba(7, 16, 23, 0.12);
  font-size: clamp(6rem, 18vw, 17rem);
  font-weight: 1000;
  line-height: 0.8;
  white-space: nowrap;
  animation: marquee-left 22s linear infinite reverse;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.cta-token-card {
  position: relative;
  width: clamp(108px, 12vw, 156px);
  aspect-ratio: 1;
  margin: 0 auto clamp(24px, 4vw, 38px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(7, 16, 23, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    var(--yellow);
  box-shadow:
    0 26px 70px rgba(7, 16, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  text-decoration: none;
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cta-token-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(255, 228, 94, 0.36), rgba(255, 228, 94, 0.08)),
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.24), transparent 5rem);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cta-token-card:hover,
.cta-token-card:focus-visible {
  border-color: rgba(7, 16, 23, 0.36);
  box-shadow:
    0 28px 80px rgba(7, 16, 23, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.cta-token-card:hover::before,
.cta-token-card:focus-visible::before {
  opacity: 1;
}

.cta-token-card img,
.cta-token-card video {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.cta-token-card video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cta-section.is-video-playing .cta-token-card video,
.cta-token-card.is-video-playing video {
  opacity: 1;
}

.cta-content .eyebrow {
  color: #071017;
}

.cta-content .primary-button {
  margin-top: 28px;
  color: var(--text);
  background: #071017;
}

.cta-content .primary-button:hover,
.cta-content .primary-button:focus-visible {
  background: #22313d;
}

.home-toast-root {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 9999;
  width: min(360px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
  pointer-events: none;
  transform: translateX(-50%);
}

.home-toast {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(112, 216, 255, 0.32);
  border-radius: 10px;
  color: var(--text);
  background: rgba(18, 22, 28, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-toast.is-leaving {
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
}

.home-toast strong,
.home-toast span {
  display: block;
}

.home-toast strong {
  font-size: 0.94rem;
}

.home-toast span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.scroll-top-button {
  position: fixed;
  right: clamp(18px, 3vw, 38px);
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 58;
  width: 56px;
  height: 56px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(12px) scale(0.94);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease, background 160ms ease, border-color 160ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  border-color: rgba(112, 216, 255, 0.54);
  background: rgba(112, 216, 255, 0.18);
}

.scroll-top-button .home-icon {
  width: 24px;
  height: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes gallery-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-token {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -16px, 0) rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-chart span {
    transform: scaleY(1);
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-bg {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-bg-panel {
    display: none;
    margin-left: -4vw;
    clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  }

  .hero-bg-panel:first-child {
    display: none;
  }

  .hero-bg-panel-mobile {
    display: block;
  }

  .hero-bg-panel-mobile-start {
    margin-left: 0;
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  }

  .hero-bg-panel-mobile-end {
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-bg:hover .hero-bg-panel,
  .hero-bg .hero-bg-panel:hover {
    flex-grow: initial;
  }

  .hero-token {
    top: 104px;
    right: 18px;
    width: clamp(130px, 32vw, 220px);
  }

  .hero-title {
    font-size: clamp(4.6rem, 19vw, 8.4rem);
    max-width: 100px;
    line-height: 0.9;
  }

  .matchup-stage {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .matchup-fighter {
    min-height: auto;
  }

  .matchup-fighter h3 {
    font-size: clamp(1.75rem, 7vw, 3rem);
    line-height: 0.98;
  }

  .matchup-fighter-body {
    grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  }

  .matchup-versus {
    min-height: 150px;
    padding: 24px 0;
  }

  .matchup-meter {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }

  .matchup-meter-row-right {
    justify-items: start;
    text-align: left;
  }

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

  .gallery-head {
    grid-template-columns: 1fr;
  }

  .about-title {
    position: static;
  }

  .feature-card-hot,
  .feature-card-chart,
  .feature-card-wide,
  .feature-card-community {
    grid-column: span 12;
  }

  .feature-card-chart {
    grid-template-columns: 1fr;
  }

  .feature-chart {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid,
  .social-grid,
  .meme-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-full {
    min-height: 92vh;
    padding-top: 104px;
  }

  .hero-token {
    top: 138px;
    right: 14px;
    width: clamp(172px, 45vw, 210px);
    opacity: 0.86;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .matchup-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .matchup-head {
    text-align: left;
  }

  .matchup-head h2 {
    font-size: clamp(2.8rem, 16vw, 5.2rem);
  }

  .matchup-fighter {
    padding: 22px;
    gap: 18px;
  }

  .matchup-fighter-body {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .matchup-portrait {
    width: min(184px, 62vw);
    justify-self: start;
  }

  .matchup-fighter h3 {
    font-size: clamp(1.75rem, 10vw, 2.7rem);
  }

  .matchup-link {
    width: fit-content;
  }

  .matchup-sources {
    justify-content: center;
  }

  .steps-grid,
  .social-grid,
  .meme-guide-grid {
    grid-template-columns: 1fr;
  }

  .cards-section {
    padding-top: 42px;
  }

  .home-upload-drop {
    min-height: 260px;
  }

  .feature-card {
    min-height: 260px;
    border-radius: 20px;
  }

  .feature-number,
  .feature-card-copy strong,
  .feature-card-chart .feature-card-copy strong,
  .feature-card-community .feature-number {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .feature-community-media {
    opacity: 0.5;
  }

  .feature-image-strip {
    width: 70%;
    opacity: 0.34;
  }

  .about-actions,
  .about-link,
  .about-contract-button {
    width: 100%;
  }

  .step-card {
    min-height: 220px;
    grid-template-rows: 26px auto auto;
  }

}

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

main a:is(
  .primary-button,
  .secondary-button,
  .feature-pill,
  .feature-pill-dark,
  .about-link,
  .social-card,
  .hero-token
):is(:hover, :focus-visible) {
  color: var(--pink);
}

main a:is(:hover, :focus-visible) {
  color: var(--pink);
}
