:root {
  --ink: #121014;
  --paper: #fff6f6;
  --white: #ffffff;
  --brand-pink: #eeabac;
  --pink: #eeabac;
  --pink-soft: #f7d4d5;
  --hot: #d94c60;
  --lip: #ff515b;
  --mint: #8be7d0;
  --acid: #f4ff6a;
  --yellow: #fff05a;
  --teal: #169c91;
  --violet: #43205a;
  --violet-dark: #221126;
  --muted: rgba(18, 16, 20, .72);
  --shadow: 8px 8px 0 var(--ink);
  --soft-shadow: 0 24px 60px rgba(18, 16, 20, .18);
  --radius: 8px;
  --font-display: "Jently", "Lobster", "Cooper Black", cursive;
  --font-body: "Baloo 2", system-ui, sans-serif;
  --container: 1160px;
  --pad: 28px;
  --header: 76px;
  --ease-pop: cubic-bezier(.22, 1.36, .36, 1);
}

@font-face {
  font-family: "Jently";
  src: local("Jently");
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--hot);
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  transition: transform .2s ease;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.nav-shell {
  width: min(calc(100% - 28px), 1180px);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 5px 5px 0 rgba(18, 16, 20, .2);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, .96);
  box-shadow: 7px 7px 0 rgba(18, 16, 20, .25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 4px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transform: scale(1.44);
}

.brand__wordmark {
  width: 132px;
  height: 46px;
  object-fit: contain;
  object-position: center;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--brand-pink);
  box-shadow: 4px 4px 0 rgba(18, 16, 20, .18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
  font-size: .98rem;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 5px;
  background: var(--hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform .18s var(--ease-pop), box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-4px);
  box-shadow: 8px 9px 0 var(--ink);
}

.button:active {
  transform: translateY(2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button--primary {
  background: var(--acid);
}

.button--secondary {
  background: var(--white);
}

.button--small {
  min-height: 42px;
  padding: 11px 15px;
  font-size: .92rem;
}

.button--with-icon {
  gap: 10px;
}

.button--with-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--pink);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 3px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .22s ease, opacity .2s ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  padding: 110px var(--pad) 40px;
  background:
    repeating-linear-gradient(135deg, rgba(18, 16, 20, .08) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, var(--pink), var(--mint) 58%, var(--yellow));
  transform: translateY(-110%);
  transition: transform .42s var(--ease-pop);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a:not(.button) {
  font-family: var(--font-display);
  font-size: 2.65rem;
  line-height: .95;
  letter-spacing: 0;
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 rgba(18, 16, 20, .18);
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: calc(var(--header) + 42px) var(--pad) 0;
  isolation: isolate;
  background: linear-gradient(135deg, var(--brand-pink) 0 68%, var(--pink-soft) 68% 100%);
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
  width: min(620px, 100%);
  margin-block: auto;
  padding-bottom: 78px;
  padding-left: clamp(0px, 1vw, 12px);
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 9px 13px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  line-height: 1;
}

.kicker__dot {
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lip);
}

.eyebrow {
  background: var(--acid);
}

.eyebrow--dark {
  background: var(--violet-dark);
  color: var(--white);
}

.hero__title {
  margin: 0;
  line-height: .72;
  animation: title-float 3.8s ease-in-out infinite;
}

.hero__wordmark {
  width: min(100%, 560px);
  height: 156px;
  object-fit: contain;
  object-position: left center;
  border-radius: var(--radius);
  filter: drop-shadow(9px 9px 0 rgba(18, 16, 20, .16));
}

@keyframes title-float {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-7px); }
}

.hero__lead {
  max-width: 530px;
  margin: 22px 0 0;
  font-size: 1.22rem;
  line-height: 1.46;
  font-weight: 800;
  color: rgba(18, 16, 20, .82);
}

.contract-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 590px);
  margin-top: 20px;
  padding: 13px 14px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 5px 5px 0 var(--ink);
}

.contract-card code {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.35;
}

.contract-copy {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .18s var(--ease-pop), box-shadow .18s ease, background .18s ease;
}

.contract-copy:hover {
  transform: translateY(-3px);
  background: var(--acid);
  box-shadow: 6px 6px 0 var(--ink);
}

.contract-copy:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.contract-copy.is-copied {
  background: var(--mint);
}

.contract-copy svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linejoin: round;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 13px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 4px 4px 0 rgba(18, 16, 20, .28);
  font-weight: 900;
}

.hero__chips img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero__mascot {
  position: absolute;
  right: clamp(-18px, 1.8vw, 38px);
  bottom: 26px;
  z-index: 2;
  width: min(47vw, 660px);
  min-width: 470px;
  filter: none;
  pointer-events: none;
  user-select: none;
}

.meme-tape {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  width: calc(100% + (var(--pad) * 2));
  margin: 0 calc(var(--pad) * -1);
  overflow: hidden;
  border-block: 4px solid var(--ink);
  background: var(--violet-dark);
  color: var(--white);
}

.meme-tape__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: tape-run 18s linear infinite;
}

.meme-tape span {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding-inline: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.meme-tape span::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 24px;
  border: 3px solid var(--ink);
  background: var(--acid);
}

@keyframes tape-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: 104px;
}

.story {
  background:
    repeating-linear-gradient(135deg, rgba(255, 63, 120, .08) 0 2px, transparent 2px 22px),
    var(--white);
  border-top: 5px solid var(--ink);
}

.story__grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.story__badge {
  display: grid;
  place-items: center;
  min-height: 410px;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--acid);
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: .92;
  letter-spacing: 0;
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.story__copy h2,
.section-head h2,
.buy__copy h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 4.35rem;
  line-height: .92;
  letter-spacing: 0;
}

.story__copy p:not(.eyebrow),
.buy__copy p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 700;
}

.story__portrait {
  position: relative;
  border: 5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(2deg);
}

.story__portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.story__portrait span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--hot);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.vibes {
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, var(--violet-dark), var(--violet));
}

.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-head h2 {
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 rgba(0, 0, 0, .2);
}

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

.vibe-card,
.step-card {
  min-width: 0;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.vibe-card {
  min-height: 300px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vibe-card:nth-child(1) {
  background: var(--pink);
}

.vibe-card:nth-child(3) {
  background: var(--mint);
}

.vibe-card--hot {
  background: var(--acid);
  transform: translateY(28px);
}

.vibe-card__number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: .92rem;
}

.vibe-card h3,
.step-card h3 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: 1.82rem;
  line-height: .96;
  letter-spacing: 0;
}

.vibe-card p,
.step-card p {
  margin: 16px 0 0;
  color: rgba(18, 16, 20, .74);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
}

.buy {
  background:
    repeating-linear-gradient(0deg, rgba(18, 16, 20, .08) 0 2px, transparent 2px 28px),
    linear-gradient(135deg, var(--acid), #ffed66 52%, var(--pink));
  border-block: 5px solid var(--ink);
}

.buy__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.buy__copy {
  max-width: 520px;
}

.buy__copy .button {
  margin-top: 28px;
}

.buy-steps {
  display: grid;
  gap: 18px;
}

.step-card {
  min-height: 158px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 20px;
  padding: 22px;
  align-items: center;
}

.step-card:nth-child(2) {
  margin-left: 44px;
}

.step-card:nth-child(3) {
  margin-left: 88px;
}

.step-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--hot);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
}

.step-card h3 {
  margin: 0;
}

.step-card p {
  margin-top: 8px;
}

.community {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet-dark) 0 28%, var(--brand-pink) 28% 74%, var(--pink-soft) 74% 100%);
}

.community-tape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  border-block: 4px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
}

.community-tape__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: tape-run 18s linear infinite;
}

.community-tape span {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding-inline: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  white-space: nowrap;
}

.community-tape span::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 24px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lip);
}

.community__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
}

.community__intro {
  max-width: 760px;
  padding-top: 56px;
}

.community__wordmark {
  display: block;
  width: min(100%, 390px);
  height: 142px;
  margin: 20px 0 0;
  object-fit: contain;
  object-position: center;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--brand-pink);
  box-shadow: 6px 6px 0 var(--ink);
}

.community__intro h2 {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 rgba(18, 16, 20, .38);
}

.community__intro p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.16rem;
  line-height: 1.58;
  font-weight: 800;
}

.community__stage {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(320px, 1fr) minmax(270px, .72fr);
  gap: 20px;
  align-items: stretch;
}

.pige-chat,
.pige-mascot,
.social-dock a {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pige-chat {
  min-height: 430px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.pige-chat__top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 16px;
  border-bottom: 4px solid var(--ink);
  background: var(--acid);
  font-weight: 900;
}

.pige-chat__top span,
.pige-chat__top span::before,
.pige-chat__top span::after {
  display: block;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lip);
}

.pige-chat__top span {
  position: relative;
  margin-right: 40px;
}

.pige-chat__top span::before,
.pige-chat__top span::after {
  content: "";
  position: absolute;
  top: -3px;
}

.pige-chat__top span::before {
  left: 20px;
  background: var(--yellow);
}

.pige-chat__top span::after {
  left: 40px;
  background: var(--mint);
}

.chat-feed {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.chat-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-line--right {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1;
}

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

.chat-avatar--hot {
  background: var(--acid);
}

.chat-line p {
  margin: 0;
  min-height: 70px;
  display: grid;
  align-content: center;
  max-width: 280px;
  padding: 13px 15px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: #f4f1ec;
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(18, 16, 20, .22);
  font-weight: 900;
  line-height: 1.15;
}

.chat-line p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--hot);
}

.pige-mascot {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 16, 20, .08) 0 2px, transparent 2px 28px),
    linear-gradient(180deg, #b6f0dd, #f8b1c2);
}

.pige-mascot::before {
  content: "$PIGE";
  position: absolute;
  left: 18px;
  top: 16px;
  color: rgba(18, 16, 20, .08);
  font-family: var(--font-display);
  font-size: 5.8rem;
  line-height: 1;
}

.pige-mascot img {
  position: relative;
  z-index: 1;
  width: 112%;
  max-width: none;
  margin-bottom: -42px;
  object-fit: cover;
  object-position: center;
}

.pige-sticker {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  line-height: 1;
}

.pige-sticker--top {
  top: 18px;
  right: 18px;
  background: var(--acid);
  color: var(--ink);
  transform: rotate(4deg);
}

.pige-sticker--bottom {
  left: 18px;
  bottom: 18px;
  background: var(--violet-dark);
  color: var(--white);
  transform: rotate(-3deg);
}

.social-dock {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.social-dock a {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 13px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  color: var(--ink);
  transition: transform .18s var(--ease-pop), background .18s ease, box-shadow .18s ease;
}

.social-dock a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.social-dock a:hover {
  transform: translate(-4px, -4px);
  background: var(--acid);
  box-shadow: 11px 11px 0 var(--ink);
}

.social-dock img {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.social-dock span,
.social-dock small {
  padding-right: 24px;
}

.social-dock span {
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1;
}

.social-dock small {
  align-self: start;
  color: rgba(18, 16, 20, .62);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.1;
}

.footer {
  padding-block: 32px;
  border-top: 5px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer .brand__mark {
  border-color: var(--white);
}

.footer .brand__wordmark {
  border-color: rgba(255, 255, 255, .72);
}

.footer p,
.footer span {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
  line-height: 1.5;
  font-weight: 700;
}

[data-parallax] {
  --parallax-x: 0px;
  --parallax-y: 0px;
  translate: var(--parallax-x) var(--parallax-y);
}

.reveal {
  --reveal-y: 28px;
  opacity: 0;
  translate: var(--parallax-x, 0px) calc(var(--parallax-y, 0px) + var(--reveal-y));
  transition: opacity .62s ease, translate .62s var(--ease-pop);
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero__wordmark {
    width: min(100%, 450px);
    height: 128px;
  }

  .hero__mascot {
    right: -76px;
    bottom: 24px;
    width: 560px;
    min-width: 0;
  }

  .story__grid,
  .buy__grid {
    grid-template-columns: 1fr;
  }

  .community__stage {
    grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  }

  .social-dock {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .story__badge {
    min-height: 88px;
    writing-mode: initial;
    transform: none;
  }

  .story__portrait {
    max-width: 520px;
    margin-inline: auto;
  }

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

  .vibe-card,
  .vibe-card--hot {
    min-height: 230px;
    transform: none;
  }

  .buy__copy,
  .community__intro {
    max-width: 720px;
  }

  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 22px;
    --header: 72px;
  }

  .nav-shell {
    min-height: 58px;
  }

  .brand__wordmark {
    width: 104px;
    height: 38px;
  }

  .mobile-menu a:not(.button) {
    font-size: 2.2rem;
  }

  .hero {
    min-height: calc(100svh - 70px);
    padding-top: 112px;
    padding-bottom: 0;
  }

  .hero__copy {
    max-width: 310px;
    padding-bottom: 68px;
  }

  .hero__title {
    margin-top: 0;
  }

  .hero__wordmark {
    width: min(100%, 292px);
    height: 84px;
    filter: drop-shadow(6px 6px 0 rgba(18, 16, 20, .14));
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.48;
  }

  .contract-card {
    width: min(100%, 270px);
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 16px;
  }


  .hero__actions {
    width: min(100%, 260px);
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__chips {
    width: min(100%, 260px);
  }

  .hero__chips span {
    min-height: 38px;
    font-size: .9rem;
  }

  .hero__mascot {
    right: -148px;
    bottom: 24px;
    width: 390px;
    opacity: .88;
    filter: none;
  }

  .meme-tape span {
    height: 40px;
    font-size: .85rem;
  }

  .section {
    padding-block: 74px;
  }

  .story__grid {
    gap: 28px;
  }

  .story__copy h2,
  .section-head h2,
  .buy__copy h2,
  .community__intro h2 {
    font-size: 2.65rem;
    line-height: .95;
  }

  .story__copy p:not(.eyebrow),
  .buy__copy p,
  .community__intro p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.58;
  }

  .story__badge {
    font-size: 1.2rem;
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card span {
    grid-row: auto;
  }

  .community {
    background:
      linear-gradient(135deg, var(--violet-dark) 0 28%, var(--brand-pink) 28% 76%, var(--pink-soft) 76% 100%);
  }

  .community-tape {
    top: 0;
  }

  .community__intro {
    padding-top: 56px;
  }

  .community__wordmark {
    width: min(100%, 280px);
    height: 104px;
  }

  .community__stage,
  .social-dock {
    grid-template-columns: 1fr;
  }

  .pige-chat,
  .pige-mascot {
    min-height: 360px;
  }

  .chat-line p {
    max-width: 100%;
  }

  .pige-mascot::before {
    font-size: 3.8rem;
  }

  .pige-mascot img {
    width: 118%;
    margin-bottom: -34px;
  }

  .social-dock a {
    min-height: 72px;
  }

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

  .footer .brand {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .hero__copy {
    max-width: 284px;
  }

  .hero__wordmark {
    width: min(100%, 260px);
    height: 78px;
  }

  .button {
    padding-inline: 16px;
    white-space: normal;
  }

  .hero__mascot {
    right: -156px;
    bottom: 22px;
    width: 374px;
  }
}

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