:root {
  --acid: #ecff73;
  --acid-soft: #f7ffc2;
  --black: #202225;
  --ink: #31343a;
  --paper: #fbffd7;
  --white: #ffffff;
  --mint: #dbf8d0;
  --line: rgba(32, 34, 37, 0.86);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.78), transparent 28rem),
    linear-gradient(135deg, var(--acid-soft), var(--acid) 55%, #d7f65e);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  padding: 22px;
}

.hero,
.banner,
.action-zone,
.content-grid,
.roadmap,
.ca-panel,
.chart-slot {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 690px;
  padding: 20px 0 44px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  color: rgba(32, 34, 37, 0.07);
  font-size: clamp(160px, 24vw, 360px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.hero::before {
  content: "$MEOW";
  top: 110px;
  right: -180px;
  transform: rotate(-7deg);
}

.hero::after {
  content: "Meme";
  bottom: 6px;
  left: -160px;
  transform: rotate(8deg);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 4px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 6px 6px 0 rgba(32, 34, 37, 0.72);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-size: 22px;
  font-weight: 950;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 3px solid var(--line);
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.nav-links a {
  min-width: 72px;
  padding: 11px 14px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--acid);
  font-weight: 900;
  text-align: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 70px;
}

.mascot-card {
  position: relative;
  border: 7px solid var(--line);
  border-radius: 50%;
  background: var(--acid-soft);
  box-shadow: 10px 10px 0 rgba(32, 34, 37, 0.72);
  aspect-ratio: 1;
}

.mascot-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(48px, 8.2vw, 116px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 rgba(255, 255, 255, 0.82);
}

.tagline {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(20px, 2.25vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.meme-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meme-strip span {
  padding: 11px 16px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--acid);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 950;
}

.banner {
  margin-top: -34px;
  border: 5px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 7px 7px 0 rgba(32, 34, 37, 0.72);
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.action-zone {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 56px 0 28px;
}

.click-card,
.info-panel,
.roadmap,
.chart-slot,
.ca-panel {
  border: 4px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 6px 6px 0 rgba(32, 34, 37, 0.68);
}

.click-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.click-card:hover,
.click-card:focus-visible {
  transform: translate(-4px, -4px);
  background: var(--white);
  box-shadow: 9px 9px 0 rgba(32, 34, 37, 0.72);
  outline: none;
}

.click-card span {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.click-card strong {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.click-card em {
  align-self: flex-start;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--acid);
  font-style: normal;
  font-weight: 950;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  padding: 22px 0 8px;
}

.info-panel {
  padding: 24px;
}

.info-panel h2,
.section-title h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.8vw, 64px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.info-panel p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1.32;
}

.stats-panel {
  background: var(--mint);
}

.mini-stats {
  display: grid;
  gap: 12px;
}

.mini-stats div {
  padding: 16px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
}

.mini-stats span {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 900;
}

.roadmap {
  margin-top: 28px;
  padding: 24px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-list article {
  min-height: 190px;
  padding: 18px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.roadmap-list span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-weight: 950;
}

.roadmap-list h3 {
  margin: 18px 0 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.roadmap-list p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.ca-panel {
  margin-top: 28px;
  padding: 22px;
}

.ca-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}

.ca-heading span {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--acid);
  font-weight: 950;
}

.ca-heading h2,
.chart-slot h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 950;
  text-transform: uppercase;
}

.ca-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.ca-box code {
  min-width: 0;
  padding: 18px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--black);
  font-size: clamp(14px, 1.8vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  white-space: normal;
}

.ca-box button,
.chart-slot a {
  min-width: 120px;
  padding: 14px 18px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--acid);
  cursor: pointer;
  font-weight: 950;
  text-align: center;
}

.chart-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 42px;
  padding: 24px;
}

@media (max-width: 900px) {
  .site-shell {
    padding: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 38px;
  }

  .mascot-card {
    width: min(430px, 92vw);
    margin: 0 auto;
  }

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

  .content-grid,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .banner {
    margin-top: 8px;
  }

  .action-zone {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .ca-box {
    grid-template-columns: 1fr;
  }

  .ca-box button {
    width: 100%;
  }

  .chart-slot {
    align-items: stretch;
    flex-direction: column;
  }
}
