*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #f5c400;
  --gold-bright: #ffe14a;
  --sky: #5ec8ff;
  --pink: #ff6b9d;
  --ink: #fff6d6;
  --muted: #e8d39a;
  --night: #120d06;
  --panel: #1b140a;
  --print: #fff8e7;
  --line: #111;
  --font-display: "Bangers", Impact, sans-serif;
  --font-body: "Comic Neue", "Comic Sans MS", cursive, system-ui, sans-serif;
  --font-mono: "Bungee", Impact, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--night);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.grid-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse fill='%23ffe14a' cx='50' cy='70' rx='23' ry='18'/%3E%3Cellipse fill='%23ffe14a' cx='20' cy='38' rx='11' ry='14' transform='rotate(-20 20 38)'/%3E%3Cellipse fill='%23ffe14a' cx='39' cy='22' rx='11' ry='14' transform='rotate(-7 39 22)'/%3E%3Cellipse fill='%23ffe14a' cx='61' cy='22' rx='11' ry='14' transform='rotate(7 61 22)'/%3E%3Cellipse fill='%23ffe14a' cx='80' cy='38' rx='11' ry='14' transform='rotate(20 80 38)'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-position: 18px 22px;
}

.paw-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  overflow: hidden;
}

.paw-stamp {
  position: absolute;
  width: var(--paw-size, 42px);
  height: var(--paw-size, 42px);
  margin: calc(var(--paw-size, 42px) / -2) 0 0 calc(var(--paw-size, 42px) / -2);
  color: var(--gold-bright);
  filter: drop-shadow(0 0 8px rgba(255, 213, 74, 0.4));
  transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.4);
  animation: paw-press var(--paw-life, 1.4s) ease-out forwards;
}

.paw-stamp.is-walk { color: rgba(255, 213, 74, 0.7); animation-name: paw-walk-fade; }
.paw-stamp svg { width: 100%; height: 100%; display: block; }

@keyframes paw-press {
  0% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(0.35); }
  16% { opacity: 0.95; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(1.1); }
  42% { opacity: 0.82; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(calc(var(--rot) + 8deg)) scale(0.88); }
}

@keyframes paw-walk-fade {
  0% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(0.5); }
  14% { opacity: 0.7; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(0.92); }
}

/* Rail */
.rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 92px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.6rem;
  background: #1a1206;
  border-right: 4px solid var(--line);
  clip-path: none;
}

.rail-brand {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--gold-bright);
}

.rail-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #000;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.rail-brand span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.rail-nav {
  display: grid;
  gap: 0.85rem;
}

.rail-nav a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.rail-nav a:hover { color: var(--gold-bright); }

.rail-socials {
  display: grid;
  gap: 0.4rem;
  width: 100%;
}

.rail-socials a {
  display: grid;
  place-items: center;
  height: 36px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  background: var(--gold-bright);
  color: #120800;
  clip-path: none;
  border: 3px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--line);
}

/* Mobile header */
.site-header {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: #1a1206;
  border-bottom: 4px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gold-bright);
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: #000;
  border-radius: 50%;
}

.nav-title {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a { text-decoration: none; color: var(--ink); font-weight: 700; }
.nav-socials { display: flex; gap: 0.4rem; }
.nav-social {
  padding: 0.3rem 0.55rem;
  background: var(--gold-bright);
  color: #120800 !important;
  font-family: var(--font-display);
  font-size: 0.9rem;
  border: 3px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--line);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--gold-bright);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  margin-left: 92px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 4rem 4vw 3rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 13, 6, 0.88) 0%, rgba(18, 13, 6, 0.42) 46%, rgba(18, 13, 6, 0.12) 100%),
    url("hero-bg.png") center right / cover no-repeat;
}

.wow-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.wow-tag {
  position: absolute;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--line);
  background: var(--gold-bright);
  border: 3px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  box-shadow: 4px 4px 0 var(--line);
  font-size: 1.05rem;
}

.wow-tag.t1 { top: 14%; left: 38%; transform: rotate(-12deg); background: #fff; }
.wow-tag.t2 { top: 22%; right: 8%; transform: rotate(8deg); background: var(--sky); }
.wow-tag.t3 { bottom: 18%; left: 42%; transform: rotate(6deg); background: var(--pink); color: #fff; }
.wow-tag.t4 { bottom: 12%; right: 16%; transform: rotate(-8deg); }

.hero-slash {
  position: absolute;
  inset: 8% 42% auto auto;
  width: 3px;
  height: 78%;
  background: var(--gold-bright);
  transform: rotate(12deg);
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.45);
}

.hero-stamp {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 180px;
  opacity: 0.12;
  color: var(--gold-bright);
}

.hero-stamp svg { fill: currentColor; width: 100%; }

.hero-kicker,
.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 0.8rem;
  text-transform: lowercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  -webkit-text-stroke: 4px var(--line);
  paint-order: stroke fill;
  text-shadow: 8px 8px 0 var(--line);
}

.hero-title span { display: block; }

.hero-title span:last-child {
  color: var(--sky);
  -webkit-text-stroke: 4px var(--line);
}

.hero-ticker {
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
}

.hero-ticker em {
  font-style: normal;
  color: var(--muted);
  margin-left: 0.8rem;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 3;
}

.hero-right {
  display: grid;
  gap: 1.2rem;
  justify-items: start;
}

.hero-coin {
  width: min(220px, 62%);
  border: 4px solid var(--line);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 8px 8px 0 var(--line);
  animation: coin-spin 12s linear infinite;
}

.hero-logo { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 50%; }

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

.hero-note {
  max-width: 24em;
  padding: 1.05rem 1.15rem;
  background: var(--print);
  color: #1a1206;
  font-weight: 700;
  border: 4px solid var(--line);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--line);
  transform: rotate(-1.5deg);
}

.hero-note strong { color: #b45309; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  border: 4px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--line);
}

.btn-primary {
  background: var(--gold-bright);
  color: var(--line);
}

.btn-ghost {
  background: #fff;
  color: var(--line);
}

.btn-copy {
  background: var(--sky);
  color: var(--line);
  flex-shrink: 0;
}

.btn-copy.copied { filter: brightness(1.15); }

.slash-band {
  margin-left: 92px;
  overflow: hidden;
  background: var(--gold-bright);
  color: var(--line);
  transform: rotate(-1.4deg);
  border-block: 4px solid var(--line);
}

.slash-track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  padding: 0.7rem 0;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  animation: slide 22s linear infinite;
}

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

main { position: relative; z-index: 1; margin-left: 92px; }

/* Lore */
.lore {
  display: grid;
  grid-template-columns: 90px 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 6rem 5vw;
  background: #1a1408;
  clip-path: none;
  border-block: 4px solid var(--line);
}

.lore-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.lore h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.lore p { color: var(--muted); margin-bottom: 0.8rem; max-width: 32em; }
.lore strong { color: var(--gold-bright); }

.cut-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.lore-visual {
  position: relative;
  justify-self: end;
  width: min(340px, 100%);
}

.lore-visual img {
  width: 100%;
  background: var(--gold-bright);
  border-radius: 50%;
  border: 4px solid var(--line);
  box-shadow: 10px 10px 0 var(--line);
}

.lore-tag {
  position: absolute;
  left: -10px;
  bottom: 18px;
  padding: 0.35rem 0.7rem;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transform: rotate(-8deg);
  border: 3px solid var(--line);
  box-shadow: 4px 4px 0 var(--line);
}

/* Origin */
.origin {
  padding: 5.5rem 5vw;
  background: var(--night);
}

.origin-head { max-width: 20em; margin-bottom: 2rem; }
.origin-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.9;
}
.origin-head p:last-child { color: var(--muted); margin-top: 0.6rem; }

.origin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.embed-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--print);
  border: 4px solid var(--line);
  border-radius: 22px;
  clip-path: none;
  padding: 0.85rem;
  box-shadow: 8px 8px 0 var(--line);
  transform: rotate(-0.6deg);
}

.embed-stage-meta {
  border-color: var(--line);
  background: #e8f7ff;
  transform: rotate(0.8deg);
}

.embed-stage-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--line);
  margin-bottom: 0.7rem;
}

.embed-stage-bar a { color: var(--muted); text-decoration: none; }

.social-card {
  background: #fff;
  color: #111;
  padding: 1rem;
  text-align: left;
  border: 3px solid var(--line);
  border-radius: 14px;
}

.social-card header { display: grid; margin-bottom: 0.6rem; }
.social-card header span { color: #666; font-size: 0.85rem; }
.social-card p { font-weight: 600; margin-bottom: 0.8rem; }
.social-card a {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  color: #111;
}

.meta-card {
  background: #fff;
  color: #1a1206;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 3px solid var(--line);
  border-radius: 16px;
  text-align: left;
}

.meta-card header {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.meta-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sky);
}

.meta-card header strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
}

.meta-card header span {
  color: #0369a1;
  font-size: 0.78rem;
}

.meta-card p {
  color: #4b3a1a;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.meta-card p strong { color: #b45309; }

.meta-card a {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0369a1;
  text-decoration: none;
}

.embed-frame {
  display: flex;
  justify-content: center;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  background: #000;
}

.tweet-embed { background: #000; width: 100%; }
.fb-embed { background: #fff; width: 100%; }

.fb-plugin {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 640px;
  margin: 0 auto;
  border: 0;
  background: #fff;
}

.embed-stage.is-embedded .social-card { display: none; }
.embed-stage.is-embedded .meta-card { display: block; margin-bottom: 0.85rem; }

.embed-stage.is-embedded .embed-frame {
  height: auto;
  min-height: 420px;
  overflow: auto;
  visibility: visible;
}

.embed-frame twitter-widget,
.embed-frame iframe {
  max-width: 100% !important;
  margin: 0 auto !important;
}

.embed-stage-meta .embed-stage-bar { color: #0369a1; }

.embed-stage.is-embedded .fb-embed {
  max-height: 640px;
}

/* Brand look */
.look { padding: 2rem 0 4.5rem; }

.look-head {
  margin-left: 5vw;
  margin-bottom: 1.4rem;
}

.look-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.92;
}

.look-banner {
  margin: 0 4vw 1.8rem;
  background: var(--print);
  padding: 0.7rem 0.7rem 1.6rem;
  border: 4px solid var(--line);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--line);
  transform: rotate(-1deg);
}

.look-banner img {
  width: 100%;
  object-fit: contain;
  background: #fff8e7;
}

.look-banner figcaption,
.look-coin figcaption {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #4b3a1a;
}

.look-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 2rem;
  align-items: center;
  margin: 0 5vw;
}

.look-coin {
  margin: 0;
  background: var(--gold-bright);
  padding: 0.7rem;
  border: 4px solid var(--line);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--line);
  transform: rotate(4deg);
}

.look-coin img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
}

.look-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.look-copy p { color: var(--muted); margin-bottom: 0.7rem; max-width: 36em; }

/* Slabs */
.slab {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 4.5rem 5vw;
  align-items: start;
}

.slab-side h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem 1rem 1.1rem;
  background: var(--print);
  border: 4px solid var(--line);
  border-radius: 18px;
  clip-path: none;
  box-shadow: 8px 8px 0 var(--line);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-weight: 700;
  word-break: break-all;
  color: #b45309;
}

.ca-address.is-tba {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.18em;
  text-align: center;
}

.copy-toast {
  min-height: 1.4rem;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gold-bright);
  opacity: 0;
}

.copy-toast.show { opacity: 1; }

.chart-wrapper {
  min-height: 460px;
  background: #000;
  border: 4px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--line);
}

.chart-wrapper.is-tba {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 213, 74, 0.16), transparent 58%),
    #000;
}

.chart-tba { text-align: center; color: var(--ink); padding: 2rem; }
.chart-tba span {
  display: block;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  font-size: 0.75rem;
}
.chart-tba strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
}
.chart-tba p { color: var(--muted); }

.dexscreener-embed {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
}

.chart-section .cut-link { display: inline-block; margin-top: 1rem; }

/* Buy */
.buy {
  padding: 5rem 5vw 4rem;
  background:
    linear-gradient(180deg, transparent, rgba(255, 213, 74, 0.06));
}

.buy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1.8rem;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.buy-grid article {
  padding: 1.2rem 1rem;
  background: var(--print);
  color: #1a1206;
  border: 4px solid var(--line);
  border-radius: 22px;
  clip-path: none;
  box-shadow: 6px 6px 0 var(--line);
}

.buy-grid article:nth-child(2) { transform: rotate(1.4deg); background: #e8f7ff; }
.buy-grid article:nth-child(3) { transform: rotate(-1.2deg); background: #ffe4ee; }
.buy-grid article:nth-child(4) { transform: rotate(0.8deg); }

.buy-grid b {
  font-family: var(--font-display);
  color: #b45309;
  font-size: 1.5rem;
}

.buy-grid h3 {
  font-family: var(--font-display);
  margin: 0.35rem 0 0.4rem;
}

.buy-grid p { color: #4b3a1a; font-size: 0.92rem; }

.footer {
  margin-left: 92px;
  padding: 2.2rem 5vw;
  background: #1a1206;
  border-top: 4px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem 1.2rem;
  align-items: center;
}

.footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #000;
  border-radius: 50%;
}

.footer strong {
  display: block;
  font-family: var(--font-display);
}

.footer span,
.footer p { color: var(--muted); font-size: 0.82rem; }

.footer p { grid-column: 1 / -1; max-width: 46em; }

.footer-links { display: flex; gap: 1rem; }
.footer-links a {
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .paw-layer, .slash-track, .hero-coin { animation: none; }
  .paw-layer { display: none; }
}

@media (max-width: 980px) {
  .rail { display: none; }
  .site-header { display: block; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #1a1206;
    padding: 0.5rem 0 1rem;
    border-bottom: 4px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 1.2rem; }
  .hero, main, .slash-band, .footer { margin-left: 0; }
  .hero, .lore, .origin-split, .slab, .buy-grid, .look-row, .footer {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding: 7rem 6vw 3rem; background-position: center; }
  .hero-slash { display: none; }
  .wow-tag.t1,
  .wow-tag.t4 { display: none; }
  .hero-coin { width: 148px; }
  .lore-num { writing-mode: horizontal-tb; transform: none; }
  .lore-visual { justify-self: start; }
  .look-banner { margin: 0 5vw 1.4rem; }
  .look-coin { max-width: 240px; }
  .footer { justify-items: start; }
}
