.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.steps .icon {
  width: 94px;
  height: 94px;
  margin-bottom: 28px;
  border: 2px solid var(--lime);
  transform: rotate(-2deg);
  overflow: hidden;
  background: var(--paper);
  font-size: 0;
}

.steps .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cats {
  display: flex;
  justify-content: center;
  gap: 18px;
  transform: translateY(18px);
  white-space: nowrap;
  letter-spacing: 0;
}

.cats img {
  width: 74px;
  height: 74px;
  border: 3px solid var(--black);
  border-radius: 50%;
  object-fit: cover;
}

.cats img:nth-child(even) { transform: rotate(8deg) translateY(10px); }
.cats img:nth-child(odd) { transform: rotate(-8deg); }

.lore-tweet {
  position: relative;
  display: block;
  margin-top: 28px;
  padding: 24px 84px 24px 24px;
  border: 3px solid var(--black);
  background:
    radial-gradient(circle at 18px 18px, var(--black) 2px, transparent 3px) 0 0 / 24px 24px,
    var(--lime);
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(-1deg);
}

.lore-tweet::before {
  content: "X";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--lime);
  border-radius: 50%;
  font: 26px 'Archivo Black', sans-serif;
}

.lore-tweet::after {
  content: "$PURR LORE";
  position: absolute;
  right: 16px;
  bottom: -15px;
  padding: 7px 10px;
  border: 2px solid var(--black);
  background: var(--orange);
  color: var(--black);
  font: 10px 'Archivo Black', sans-serif;
  transform: rotate(5deg);
}

.lore-tweet span,
.lore-tweet small {
  display: block;
  font-size: 11px;
  font-weight: 700;
}

.lore-tweet strong {
  display: block;
  margin: 8px 0 10px;
  max-width: 520px;
  font: 30px/0.95 'Archivo Black', sans-serif;
  letter-spacing: 0;
}

.lore-tweet:hover {
  background:
    radial-gradient(circle at 18px 18px, var(--black) 2px, transparent 3px) 0 0 / 24px 24px,
    var(--acid);
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--black);
}

.hero-grid,
.hero-copy,
.hero-visual {
  min-width: 0;
}

/* Keep the oversized wordmark inside its own column at desktop widths. */
.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(62px, 7.5vw, 112px);
  letter-spacing: -5px;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .brand img { width: 36px; height: 36px; }
  .cats { gap: 8px; }
  .cats img { width: 54px; height: 54px; }

  .hero-grid,
  .hero-copy,
  .hero-visual {
    width: 100%;
    min-width: 0;
  }

  .hero-copy { overflow: hidden; }

  .hero h1 {
    max-width: 100%;
    font-size: 19vw;
    letter-spacing: -4px;
    white-space: nowrap;
  }

  .hero h1 span {
    -webkit-text-stroke-width: 2px;
    text-shadow: 4px 4px 0 var(--paper);
  }

  .actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta,
  .copy-btn {
    width: calc(100% - 6px);
    box-shadow: 4px 4px 0 var(--black);
  }

  .photo-frame {
    width: calc(100% - 44px);
    max-width: 360px;
    transform: rotate(1.5deg);
  }

  .photo-frame img { height: auto; aspect-ratio: 3 / 4; }
  .burst { left: 12px; top: 44px; width: 96px; height: 96px; font-size: 22px; }
  .stamp { right: 12px; bottom: 34px; }
  .stats strong { font-size: 21px; }
  .split { flex-direction: column; gap: 7px; }
  .supply-card { padding: 24px 18px; }
  .supply-card strong { font-size: 9vw; overflow-wrap: anywhere; }
  .giant-btn { font-size: 15px; }
  .lore-tweet {
    padding: 20px 18px 58px;
    box-shadow: 5px 5px 0 var(--black);
  }
  .lore-tweet::before {
    left: 18px;
    right: auto;
    top: auto;
    bottom: 12px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .lore-tweet::after {
    right: 14px;
    bottom: 18px;
  }
  .lore-tweet strong { font-size: 24px; }
}
