@import url("https://fonts.googleapis.com/css2?family=Bungee&family=DM+Mono:wght@400;500&family=Rubik:wght@500;700;900&display=swap");

:root {
  --ink: #32160f;
  --ink-soft: #704438;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --pink-50: #fff1f5;
  --pink-100: #ffd8e6;
  --pink-300: #ff8fba;
  --pink-500: #ff207e;
  --orange: #ff7a18;
  --yellow: #ffd94a;
  --line: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    var(--pink-100);
  background-size: 32px 32px;
  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(50, 22, 15, 0.18) 3px 4px),
    radial-gradient(circle at 20% 20%, var(--pink-500) 0 1px, transparent 1px);
  background-size: auto, 19px 19px;
  mix-blend-mode: multiply;
}

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  min-height: 100vh;
  padding: 124px 0 96px;
  scroll-margin-top: 90px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 28px));
  min-height: 74px;
  padding: 8px 10px 8px 12px;
  background: rgba(255, 250, 240, 0.92);
  border: var(--line);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  background: var(--pink-300);
  border: 2px solid var(--ink);
  border-radius: 13px;
  transform: rotate(-3deg);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand__text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand__text strong {
  font-family: "Bungee", sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  letter-spacing: -0.03em;
}

.brand__text small {
  color: var(--pink-500);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: var(--pink-50);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.nav__link {
  padding: 9px 13px;
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--cream);
  background: var(--ink);
  outline: 0;
}

.nav__link:hover {
  transform: translateY(-2px);
}

.header-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 7px 18px 7px 8px;
  color: var(--cream);
  background: var(--pink-500);
  border: 2px solid var(--ink);
  border-radius: 13px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: "Bungee", sans-serif;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-buy img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.header-buy:hover,
.header-buy:focus-visible {
  box-shadow: 1px 1px 0 var(--ink);
  outline: 0;
  transform: translate(2px, 2px);
}

.hero {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding-top: 152px;
  background:
    linear-gradient(90deg, rgba(255, 242, 247, 0.28) 0 34%, rgba(255, 242, 247, 0.04) 52%, transparent 66%),
    url("assets/hero-catboard-jpeg.png") center / cover no-repeat;
}

.hero::after,
.roadmap::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  background: var(--yellow);
  border: var(--line);
  box-shadow: var(--shadow);
  transform: rotate(11deg);
}

.hero::after {
  display: none;
}

.hero__ticker {
  position: absolute;
  top: 105px;
  left: 50%;
  z-index: 5;
  width: 112vw;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateX(-50%) rotate(-1.2deg);
}

.hero__ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  font-family: "Bungee", sans-serif;
  font-size: 0.78rem;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

.hero__ticker-group {
  display: flex;
  flex: 0 0 auto;
  min-width: 100vw;
  gap: clamp(20px, 2.6vw, 48px);
  align-items: center;
  justify-content: flex-end;
  padding: 9px clamp(24px, 3vw, 56px);
}

.hero__ticker-track i {
  color: var(--pink-300);
  font-style: normal;
}

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

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

.hero__layout {
  position: relative;
  z-index: 2;
  display: block;
  width: calc(100% - clamp(32px, 4vw, 80px));
  max-width: none;
}

.hero__content {
  width: min(620px, 54%);
  padding: 34px;
  background: rgba(255, 250, 240, 0.92);
  border: var(--line);
  border-radius: 24px 8px 24px 8px;
  box-shadow: 10px 10px 0 var(--ink);
  backdrop-filter: blur(7px);
}

.section-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker span {
  display: inline-grid;
  width: 33px;
  height: 28px;
  place-items: center;
  color: var(--cream);
  background: var(--pink-500);
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 2px 2px 0 var(--ink);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero h1 > span {
  display: block;
  max-width: 100%;
  font-size: clamp(3.4rem, 5.4vw, 5.8rem);
  white-space: nowrap;
  text-shadow: 4px 4px 0 var(--cream), 7px 7px 0 var(--pink-500);
}

.hero h1 em {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 14px 10px;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--pink-500);
  font-family: "DM Mono", monospace;
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-style: normal;
  letter-spacing: 0.02em;
  transform: rotate(-2deg);
}

.hero__lead {
  max-width: 650px;
  margin: 30px 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

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

.action-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 8px 12px 8px 8px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 13px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.action-card:hover,
.action-card:focus-visible {
  background: var(--yellow);
  box-shadow: 1px 1px 0 var(--ink);
  outline: 0;
  transform: translate(3px, 3px) rotate(-0.6deg);
}

.action-card--primary {
  color: var(--cream);
  background: var(--pink-500);
}

.action-card--primary:hover,
.action-card--primary:focus-visible {
  color: var(--ink);
}

.action-card > img,
.social-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.social-icon {
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 10px;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon--telegram {
  color: var(--ink);
  background: #5cc8ff;
  border: 2px solid var(--ink);
}

.action-card > span:not(.social-icon) {
  display: grid;
  gap: 2px;
}

.action-card small {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  opacity: 0.68;
}

.action-card strong {
  font-size: 0.86rem;
}

.action-card b {
  font-size: 1.1rem;
}

.mascot-stage {
  position: relative;
  isolation: isolate;
  padding: 26px;
}

.mascot-stage::before,
.mascot-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: var(--line);
}

.mascot-stage::before {
  inset: 2% 0 7% 8%;
  background: var(--pink-500);
  border-radius: 38% 62% 46% 54% / 55% 31% 69% 45%;
  transform: rotate(5deg);
}

.mascot-stage::after {
  inset: 10% 9% 0 0;
  background: var(--yellow);
  border-radius: 54% 46% 62% 38% / 44% 58% 42% 56%;
  transform: rotate(-7deg);
}

.mascot-stage__frame {
  overflow: hidden;
  background: var(--pink-100);
  border: var(--line);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 11px 11px 0 var(--ink);
  transform: rotate(1.4deg);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mascot-stage:hover .mascot-stage__frame {
  transform: rotate(-1deg) translateY(-6px);
}

.mascot-stage__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.mascot-stage__stamp {
  position: absolute;
  top: 0;
  right: -6px;
  z-index: 2;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--cream);
  border-radius: 50%;
  outline: 3px solid var(--ink);
  font-family: "Bungee", sans-serif;
  font-size: 0.8rem;
  line-height: 1.1;
  text-align: center;
  transform: rotate(11deg);
}

.mascot-stage__caption {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: -14px auto 0;
  padding: 9px 14px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 0.67rem;
}

.roadmap {
  background: var(--cream);
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
}

.roadmap::before {
  content: "ROADMAP // ROADMAP // ROADMAP";
  position: absolute;
  top: 40px;
  right: -60px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 32, 126, 0.17);
  font-family: "Bungee", sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  white-space: nowrap;
  transform: rotate(3deg);
}

.roadmap::after {
  bottom: -95px;
  left: -70px;
  background: var(--pink-300);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  text-shadow: 5px 5px 0 var(--pink-100);
}

.section-heading h2 span {
  color: var(--pink-500);
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.roadmap__track {
  position: relative;
  display: grid;
  max-width: 980px;
  gap: 30px;
  margin: 0 auto;
  padding-left: 112px;
}

.roadmap__track::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 38px;
  width: 5px;
  background: repeating-linear-gradient(180deg, var(--ink) 0 22px, var(--pink-500) 22px 38px);
  border: 1px solid var(--ink);
}

.road-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.5fr) minmax(190px, 0.8fr);
  grid-template-rows: auto 1fr;
  gap: 8px 28px;
  min-height: 190px;
  padding: 28px 30px;
  background: var(--paper);
  border: var(--line);
  border-radius: 16px;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.road-card:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(5px, 5px);
}

.road-card__key {
  position: absolute;
  top: 50%;
  left: -108px;
  display: grid;
  min-width: 74px;
  height: 68px;
  padding: 0 12px;
  place-items: center;
  color: var(--cream);
  background: var(--pink-500);
  border: var(--line);
  border-radius: 11px;
  box-shadow: 0 7px 0 var(--ink);
  font-family: "Bungee", sans-serif;
  transform: translateY(-50%) rotate(-3deg);
}

.road-card__phase {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 8px;
  color: var(--pink-500);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.road-card h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0 0 14px;
  font-family: "Bungee", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.05;
}

.road-card > p:not(.road-card__phase) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-height: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.road-card ul {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: stretch;
  display: grid;
  gap: 7px;
  align-content: center;
  margin: 0;
  padding: 0 0 0 22px;
  border-left: 2px dashed var(--pink-300);
  list-style: none;
}

.road-card li {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
}

.road-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--pink-500);
  font-weight: 900;
}

.chart {
  background:
    radial-gradient(circle at 12% 85%, rgba(255, 217, 74, 0.52) 0 8%, transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(255, 32, 126, 0.2) 0 9%, transparent 28%);
}

.section-heading--split {
  display: flex;
  max-width: none;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
}

.chart__external {
  flex: 0 0 auto;
  padding: 13px 18px;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--pink-500);
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  transition: transform 160ms ease;
}

.chart__external:hover,
.chart__external:focus-visible {
  outline: 0;
  transform: rotate(-2deg) translateY(-3px);
}

.chart-window {
  overflow: hidden;
  background: var(--paper);
  border: var(--line);
  border-radius: 18px;
  box-shadow: 10px 10px 0 var(--ink);
}

.chart-window__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 14px;
  background: var(--pink-100);
  border-bottom: var(--line);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
}

.chart-window__dots {
  display: flex;
  gap: 7px;
}

.chart-window__dots i {
  width: 12px;
  height: 12px;
  background: var(--pink-500);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.chart-window__dots i:nth-child(2) {
  background: var(--yellow);
}

.chart-window__dots i:nth-child(3) {
  background: var(--orange);
}

.chart-window__live {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-self: end;
}

.chart-window__live i {
  width: 9px;
  height: 9px;
  background: #33d17a;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: pulse 1.7s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 5px rgba(51, 209, 122, 0.2);
  }
}

.chart-window__screen {
  display: grid;
  min-height: 600px;
  background:
    linear-gradient(rgba(255, 32, 126, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 32, 126, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

#dexscreener-frame {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
}

.chart-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: 600px;
  padding: 24px;
  text-align: center;
}

.chart-placeholder img {
  width: 110px;
  height: 110px;
  margin-bottom: 18px;
  object-fit: contain;
}

.chart-placeholder strong {
  font-family: "Bungee", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 400;
}

.chart-placeholder p {
  max-width: 500px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px max(20px, calc((100vw - 1180px) / 2));
  color: var(--cream);
  background: var(--ink);
  border-top: 4px solid var(--pink-500);
}

.site-footer__brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Bungee", sans-serif;
  font-size: 0.9rem;
}

.site-footer__brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-footer > a {
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
  }

  .hero {
    padding-top: 192px;
  }

  .hero__ticker {
    top: 142px;
  }

  .hero__layout {
    display: block;
  }

  .hero__content {
    width: min(620px, 70%);
  }

  .hero h1 > span {
    font-size: clamp(3rem, 6vw, 5rem);
  }

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

  .roadmap__track {
    padding-left: 98px;
  }

  .road-card {
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
    min-height: 220px;
  }

  .road-card ul {
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 18px 0 0;
    border-top: 2px dashed var(--pink-300);
    border-left: 0;
  }

  .road-card__key {
    left: -94px;
  }
}

@media (max-width: 740px) {
  :root {
    --shadow: 5px 5px 0 var(--ink);
  }

  html {
    scroll-padding-top: 150px;
  }

  .shell {
    width: min(100% - 24px, 560px);
  }

  .section {
    min-height: auto;
    padding: 170px 0 72px;
  }

  .site-header {
    top: 8px;
    min-height: 66px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__text strong {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-buy {
    padding-right: 12px;
  }

  .header-buy img {
    width: 32px;
    height: 32px;
  }

  .nav {
    top: calc(100% + 7px);
    width: calc(100vw - 28px);
    justify-content: center;
    overflow-x: auto;
  }

  .nav__link {
    padding: 8px 9px;
    white-space: nowrap;
  }

  .hero {
    padding-top: 190px;
    background-position: 72% center;
  }

  .hero__ticker {
    top: 145px;
  }

  .hero__layout {
    display: block;
    width: min(100% - 12px, 640px);
  }

  .hero__content {
    width: 100%;
    margin-top: 34vh;
    padding: 26px 24px 28px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .hero h1 > span {
    max-width: 100%;
    font-size: clamp(2.3rem, 9vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    text-shadow: 3px 3px 0 var(--cream), 5px 5px 0 var(--pink-500);
  }

  .hero__lead {
    margin: 22px 0;
    line-height: 1.55;
  }

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

  .action-card {
    grid-template-columns: 38px 1fr;
    min-height: 72px;
    padding-right: 8px;
  }

  .action-card > img,
  .social-icon {
    width: 38px;
    height: 38px;
  }

  .action-card b {
    display: none;
  }

  .mascot-stage {
    padding: 20px 10px;
  }

  .roadmap__track {
    gap: 46px;
    padding-left: 0;
  }

  .roadmap__track::before {
    top: 0;
    bottom: 0;
    left: 34px;
  }

  .road-card {
    display: block;
    min-height: 0;
    padding: 68px 20px 24px;
  }

  .road-card__key {
    top: -20px;
    left: 18px;
    transform: rotate(-3deg);
  }

  .road-card ul {
    display: grid;
    grid-template-columns: 1fr;
    margin: 20px 0 0;
    padding: 18px 0 0;
    border-top: 2px dashed var(--pink-300);
    border-left: 0;
  }

  .road-card > p:not(.road-card__phase) {
    min-height: auto;
  }

  .section-heading--split {
    display: grid;
    align-items: start;
  }

  .chart__external {
    justify-self: start;
  }

  .chart-window__bar {
    grid-template-columns: auto 1fr;
  }

  .chart-window__bar > span:nth-child(2) {
    display: none;
  }

  .chart-window__screen,
  #dexscreener-frame,
  .chart-placeholder {
    min-height: 520px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__brand {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .brand__text {
    display: none;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .mascot-stage__caption {
    width: 94%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

[hidden] {
  display: none !important;
}
