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

:root {
  --ink: #11130f;
  --ink-soft: #1d201b;
  --felt: #0c4a3a;
  --felt-deep: #073429;
  --paper: #f4e7c9;
  --paper-dim: #cbbd9f;
  --red: #df3c31;
  --red-dark: #af2721;
  --blue: #2e8fd3;
  --lime: #98d26c;
  --white: #fffdf6;
  --line-dark: #34382f;
  --line-light: #bbac8e;
  --shadow-hard: 10px 10px 0 rgba(0, 0, 0, 0.2);
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.28);
  --radius-sm: 4px;
  --radius-md: 8px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --content-max: 1200px;
  --header-height: 76px;
  --viewport-height: 100vh;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@supports (height: 100dvh) {
  :root {
    --viewport-height: 100dvh;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--space-3));
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: var(--viewport-height);
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  opacity: 1;
  transition: opacity 360ms var(--ease-out), visibility 360ms var(--ease-out);
}

.site-loader::before,
.site-loader::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.site-loader::before {
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid var(--line-dark);
}

.site-loader::after {
  width: 340px;
  height: 340px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 26px var(--ink), 0 0 0 27px var(--line-dark);
}

body.is-ready .site-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-rail {
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--paper);
}

.loader-rail::after {
  display: block;
  width: 26%;
  height: 100%;
  background: var(--red);
  content: "";
}

.loader-rail-top {
  top: 0;
}

.loader-rail-top::after {
  margin-left: 12%;
}

.loader-rail-bottom {
  right: 0;
  bottom: 0;
}

.loader-rail-bottom::after {
  margin-left: auto;
  margin-right: 12%;
  background: var(--blue);
}

.loader-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(calc(100% - 48px), 480px);
  text-align: center;
}

.loader-chip {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 28px;
}

.loader-chip img {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 128px;
  object-fit: contain;
  animation: loader-chip-turn 940ms linear infinite;
}

.loader-card {
  position: absolute;
  width: 78px;
  height: 112px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.loader-card-back {
  right: 2px;
  bottom: 5px;
  background: var(--red);
  transform: rotate(14deg);
}

.loader-card-front {
  bottom: 1px;
  left: 2px;
  background: var(--blue);
  transform: rotate(-12deg);
}

.loader-name,
.loader-ticker {
  margin: 0;
}

.loader-name {
  color: var(--paper);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.86;
}

.loader-name span {
  display: block;
  animation: loader-name-rise 460ms var(--ease-out) both;
}

.loader-name span:last-child {
  color: var(--paper);
  animation-delay: 80ms;
  -webkit-text-stroke: 1px var(--red-dark);
  text-shadow: 3px 3px 0 var(--red-dark);
}

.loader-ticker {
  margin-top: 14px;
  color: var(--lime);
  font-family: "Bungee", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-shadow: 2px 2px 0 var(--red-dark);
  -webkit-text-stroke: 1px var(--ink);
}

.loader-progress {
  display: block;
  width: min(100%, 250px);
  height: 6px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.loader-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  animation: loader-progress-fill 1050ms var(--ease-out) forwards;
}

@keyframes loader-chip-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-name-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-progress-fill {
  to {
    width: 100%;
  }
}

.skip-link {
  position: fixed;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 100;
  padding: var(--space-2);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.header-inner,
.hero-inner,
.section-inner {
  width: min(calc(100% - 48px), var(--content-max));
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: var(--space-3);
}

.brand,
.header-buy,
.site-nav a,
.action,
.chart-external-link,
.site-footer a,
.menu-toggle {
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-height: 44px;
  color: var(--paper);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.brand span {
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 2px solid transparent;
  color: var(--paper-dim);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--red);
  color: var(--white);
}

.header-buy {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  gap: 6px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.header-buy:hover,
.header-buy:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--ink-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--paper);
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(var(--viewport-height) - var(--header-height));
  overflow: clip;
  background: var(--felt);
  border-bottom: 1px solid var(--line-dark);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 16px;
  border: 1px solid rgba(244, 231, 201, 0.2);
}

.hero::after {
  right: 4%;
  bottom: -1px;
  left: 4%;
  height: 10px;
  background: var(--paper);
  box-shadow: 0 -1px 0 var(--line-light);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  grid-template-areas: "copy art";
  align-items: center;
  min-height: calc(var(--viewport-height) - var(--header-height));
  padding: var(--space-6) 0 calc(var(--space-6) + 24px);
  gap: var(--space-5);
}

.hero-copy {
  grid-area: copy;
  align-self: center;
  max-width: 490px;
  margin-bottom: 148px;
}

.site-footer p {
  margin: 0;
  color: var(--paper-dim);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: inherit;
  line-height: 0.88;
}

h1 {
  margin-bottom: var(--space-3);
  font-weight: 900;
}

.hero-prefix,
.hero-name {
  display: block;
}

.hero-prefix {
  color: var(--paper);
  font-size: 54px;
  line-height: 0.95;
}

.hero-name {
  color: var(--paper);
  font-size: 124px;
  line-height: 0.82;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--red-dark);
}

.token-ticker {
  display: inline-block;
  margin: 0;
  color: var(--lime);
  font-family: "Bungee", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-shadow: 3px 3px 0 var(--red-dark);
  -webkit-text-stroke: 1px var(--ink);
}

.action-rail {
  grid-area: copy;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: var(--space-1);
}

.action {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 88px;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
}

.action > img,
.brand-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-icon {
  display: grid;
  place-items: center;
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--ink);
}

.action-text {
  min-width: 0;
}

.action-text strong,
.action-text small,
.copy-hint {
  display: block;
}

.action-text strong {
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.action-text small,
.copy-hint {
  margin-top: 4px;
  color: var(--paper-dim);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  line-height: 1.3;
}

.action-arrow {
  align-self: start;
  padding-top: 2px;
  color: var(--paper-dim);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.copy-hint {
  align-self: start;
  margin-top: 2px;
  color: var(--blue);
  text-align: right;
}

.action-buy {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.action-buy .action-text small,
.action-buy .action-arrow {
  color: var(--paper);
}

.action-x {
  background: var(--ink-soft);
}

.action-dex {
  border-color: var(--lime);
  background: var(--felt-deep);
}

.action-dex .action-text small {
  color: var(--lime);
}

.action-ca {
  border-color: var(--line-light);
  background: var(--paper);
  color: var(--ink);
}

.action-ca .action-text small {
  color: var(--ink-soft);
}

.action:hover,
.action:focus-visible {
  border-color: var(--paper);
  transform: translateY(-2px);
}

.action-buy:hover,
.action-buy:focus-visible {
  border-color: var(--white);
  background: var(--red-dark);
}

.action-dex:hover,
.action-dex:focus-visible {
  border-color: var(--lime);
  background: var(--felt);
}

.action-ca:hover,
.action-ca:focus-visible {
  border-color: var(--ink);
  background: var(--white);
}

.hero-art {
  grid-area: art;
  position: relative;
  display: grid;
  place-items: end center;
  align-self: stretch;
  min-height: 540px;
}

.hero-art::before {
  position: absolute;
  right: 8%;
  bottom: 34px;
  left: 8%;
  height: 16px;
  background: var(--ink);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.18);
  content: "";
}

.character-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 630px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(18px 18px 0 rgba(0, 0, 0, 0.2));
}

.roadmap-section {
  display: grid;
  align-items: center;
  min-height: calc(var(--viewport-height) - var(--header-height));
  scroll-margin-top: var(--header-height);
  background: var(--paper);
  color: var(--ink);
}

.section-inner {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: var(--space-5);
}

.section-heading h2,
.chart-heading h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
}

.roadmap-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.roadmap-track li {
  position: relative;
  padding: var(--space-3) var(--space-2) var(--space-2);
  border-right: 1px solid var(--line-light);
}

.roadmap-track li:first-child {
  padding-left: 0;
}

.roadmap-track li:last-child {
  border-right: 0;
}

.roadmap-number {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 52px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  line-height: 34px;
  text-align: center;
}

.roadmap-track li:nth-child(2) .roadmap-number {
  background: var(--red);
  color: var(--white);
}

.roadmap-track li:nth-child(3) .roadmap-number {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.roadmap-track li:nth-child(4) .roadmap-number {
  border-color: var(--felt);
  background: var(--felt);
  color: var(--white);
}

.roadmap-track h3 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.roadmap-track p:last-child {
  max-width: 240px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.chart-section {
  display: grid;
  min-height: calc(var(--viewport-height) - var(--header-height));
  scroll-margin-top: var(--header-height);
  background: var(--ink);
}

.chart-section .section-inner {
  display: flex;
  flex-direction: column;
  min-height: calc(var(--viewport-height) - var(--header-height));
  padding: clamp(36px, 6vh, 72px) 0;
}

.chart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.chart-external-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: var(--space-2);
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
}

.chart-external-link span:last-child {
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.chart-external-link:hover,
.chart-external-link:focus-visible {
  border-color: var(--paper);
  background: var(--ink-soft);
}

.chart-shell {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  box-shadow: var(--shadow-hard);
}

.chart-toolbar {
  display: flex;
  align-items: center;
  min-height: 52px;
  gap: 10px;
  padding: 0 var(--space-2);
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-dim);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.chart-toolbar-mark {
  display: inline-flex;
  gap: 5px;
}

.chart-toolbar-mark i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.chart-toolbar-mark i:nth-child(2) {
  background: var(--paper-dim);
}

.chart-toolbar-mark i:nth-child(3) {
  background: var(--lime);
}

.chart-frame {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  min-height: clamp(400px, 52vh, 620px);
  background: var(--ink);
}

.chart-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 240ms var(--ease-out);
}

.chart-shell.is-loaded iframe {
  opacity: 1;
}

.chart-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--paper-dim);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  transition: opacity 180ms var(--ease-out), visibility 180ms var(--ease-out);
}

.chart-shell.is-loaded .chart-loading {
  visibility: hidden;
  opacity: 0;
}

.chart-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  gap: 10px;
  padding: var(--space-4);
  color: var(--paper-dim);
  text-align: center;
}

.chart-placeholder strong {
  color: var(--paper);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.chart-placeholder span {
  max-width: 360px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
}

.loading-mark {
  width: 14px;
  height: 14px;
  border: 2px solid var(--line-dark);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: load-spin 800ms linear infinite;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--content-max));
  min-height: 88px;
  margin: 0 auto;
  gap: var(--space-2);
}

.site-footer p {
  color: var(--paper-dim);
}

.site-footer a {
  min-height: 44px;
  padding: 12px 0;
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--lime);
}

.site-notice {
  position: fixed;
  right: var(--space-2);
  bottom: var(--space-2);
  z-index: 80;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 12px 16px;
  border: 1px solid var(--paper);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

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

@media (max-width: 1024px) {
  .hero-prefix {
    font-size: 46px;
  }

  .hero-name {
    font-size: 102px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1.15fr);
    gap: var(--space-3);
  }

  .character-image {
    max-width: 570px;
  }

  .section-heading h2,
  .chart-heading h2 {
    font-size: 56px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    padding: var(--space-1);
    border: 1px solid var(--line-dark);
    border-top: 0;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: var(--ink);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: center;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art"
      "actions";
    padding-top: var(--space-5);
  }

  .hero-copy {
    align-self: auto;
    max-width: 560px;
    margin-bottom: 0;
  }

  .action-rail {
    grid-area: actions;
    align-self: auto;
  }

  .hero-art {
    min-height: 440px;
  }

  .character-image {
    max-width: 540px;
  }

  .hero-art-note-top {
    top: 8%;
    right: 8%;
  }

  .hero-art-note-bottom {
    bottom: 10%;
    left: 5%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .section-heading > p:last-child {
    grid-column: auto;
    margin-top: 0;
  }

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

  .roadmap-track li:nth-child(2) {
    border-right: 0;
  }

  .roadmap-track li:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 68px;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .site-footer {
    width: min(calc(100% - 32px), var(--content-max));
  }

  .brand {
    gap: 8px;
    font-size: 17px;
  }

  .site-loader::after {
    width: 260px;
    height: 260px;
  }

  .loader-chip {
    width: 126px;
    height: 126px;
    margin-bottom: 24px;
  }

  .loader-chip img {
    width: 108px;
    height: 108px;
  }

  .loader-card {
    width: 64px;
    height: 92px;
  }

  .loader-name {
    font-size: 44px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-buy {
    min-width: 44px;
    padding: 6px;
  }

  .header-buy span {
    display: none;
  }

  .site-nav {
    right: 16px;
    left: 16px;
  }

  .hero::before {
    inset: 8px;
  }

  .hero-inner {
    min-height: calc(var(--viewport-height) - var(--header-height));
    padding: 32px 0 24px;
    gap: var(--space-3);
  }

  .hero-prefix {
    font-size: 36px;
  }

  .hero-name {
    font-size: 76px;
    -webkit-text-stroke-width: 1px;
    text-shadow: 3px 3px 0 var(--red-dark);
  }

  .token-ticker {
    font-size: 22px;
  }

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

  .action {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 72px;
  }

  .action-arrow {
    display: none;
  }

  .copy-hint {
    display: none;
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-art::before {
    right: 2%;
    left: 2%;
  }

  .character-image {
    max-width: 300px;
  }

  .section-inner {
    padding: 80px 0;
  }

  .roadmap-section .section-inner {
    padding: 32px 0;
  }

  .chart-section .section-inner {
    padding: 24px 0;
  }

  .section-heading h2,
  .chart-heading h2 {
    font-size: 46px;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .roadmap-track li,
  .roadmap-track li:first-child,
  .roadmap-track li:nth-child(3) {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-2);
    padding: var(--space-3) 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .roadmap-track li:last-child {
    border-bottom: 0;
  }

  .roadmap-number {
    margin: 0;
  }

  .roadmap-track h3 {
    font-size: 26px;
  }

  .chart-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .chart-external-link {
    width: 100%;
    justify-content: space-between;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: min(500px, calc(var(--viewport-height) - 300px));
    height: 100%;
  }

  .site-footer {
    min-height: 100px;
  }
}

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

[hidden] {
  display: none !important;
}
