@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap");

/* ---------- Reset ---------- */
html, body { margin: 0; padding: 0; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
*, *::before, *::after { box-sizing: border-box; }

/* ---------- Design Tokens ---------- */
.pc-app {
  --cream: #FFF7E2;
  --cream-2: #FFEFC8;
  --sun: #FFC837;
  --sun-deep: #F5A524;
  --orange: #FF8A3D;
  --orange-deep: #F46B1B;
  --pink: #FF6BA1;
  --ink: #2B1B0E;
  --ink-soft: #5A4636;
  --muted: #8A7461;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(244, 107, 27, 0.18);
  --shadow-pop: 0 18px 40px rgba(244, 107, 27, 0.28);
  --radius: 22px;
  --radius-lg: 32px;

  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

.pc-app * {
  box-sizing: border-box;
}

.pc-app a {
  color: inherit;
  text-decoration: none;
}

.pc-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
.pc-h1 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
}
.pc-h2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 10px 0 16px;
}
.pc-grad {
  background: linear-gradient(100deg, var(--orange-deep), var(--sun-deep) 55%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pc-p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.pc-center { text-align: center; max-width: 640px; margin-inline: auto; }
.pc-lede { font-size: 1.125rem; line-height: 1.6; color: var(--ink-soft); max-width: 540px; }
.pc-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(255, 138, 61, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.pc-btn-sm { padding: 10px 18px; font-size: 0.92rem; }
.pc-btn-primary {
  background: linear-gradient(180deg, var(--sun) 0%, var(--orange) 100%);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.pc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
}
.pc-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.pc-btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ---------- Nav ---------- */
.pc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(255, 247, 226, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43, 27, 14, 0.08);
}
.pc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.pc-brand-emoji {
  font-size: 1.6rem;
  transform: rotate(-6deg);
  display: inline-block;
  transition: transform 0.3s ease;
}
.pc-brand:hover .pc-brand-emoji { transform: rotate(8deg) scale(1.1); }
.pc-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.pc-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.pc-links a:hover { color: var(--orange-deep); }
.pc-links a.pc-btn { color: var(--ink); }
.pc-links a.pc-btn:hover { color: var(--ink); }

.pc-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.pc-burger span {
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ---------- Hero ---------- */
.pc-hero {
  position: relative;
  padding: 80px 24px 40px;
  overflow: hidden;
}
.pc-hero-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}
.pc-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.pc-hero-blob-1 {
  width: 480px; height: 480px;
  background: var(--sun);
  top: -120px; right: -80px;
}
.pc-hero-blob-2 {
  width: 360px; height: 360px;
  background: var(--pink);
  bottom: -100px; left: -80px;
  opacity: 0.35;
}
.pc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(43, 27, 14, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(43, 27, 14, 0.06);
}
.pc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3ED28A;
  box-shadow: 0 0 0 4px rgba(62, 210, 138, 0.2);
  animation: pc-pulse 1.6s ease-in-out infinite;
}
@keyframes pc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(62, 210, 138, 0.2); }
  50%      { box-shadow: 0 0 0 10px rgba(62, 210, 138, 0); }
}

.pc-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 28px;
}

.pc-contract {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 16px;
  background: var(--white);
  border: 1px dashed rgba(43, 27, 14, 0.25);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(43, 27, 14, 0.05);
  max-width: 100%;
}
.pc-contract-label {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pc-contract-addr {
  font-family: "Nunito", monospace;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.pc-copy {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: "Fredoka", sans-serif;
}
.pc-copy:hover { background: var(--orange-deep); transform: translateY(-1px); }

/* ---------- Cat Mascot ---------- */
.pc-hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-cat {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1/1;
  animation: pc-float 5s ease-in-out infinite;
}
@keyframes pc-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.pc-cat-shadow {
  position: absolute;
  bottom: 6%;
  left: 15%;
  right: 15%;
  height: 26px;
  background: rgba(43, 27, 14, 0.18);
  filter: blur(12px);
  border-radius: 50%;
  animation: pc-shadow 5s ease-in-out infinite;
}
@keyframes pc-shadow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(0.85); opacity: 0.35; }
}
.pc-cat-body {
  position: absolute;
  inset: 10% 12% 8% 12%;
  background: linear-gradient(180deg, #FFDB8A 0%, #FFC066 100%);
  border-radius: 48% 48% 45% 45% / 50% 50% 45% 45%;
  box-shadow:
    inset 0 -20px 30px rgba(244, 107, 27, 0.18),
    inset 0 14px 24px rgba(255, 255, 255, 0.5),
    0 30px 60px rgba(244, 107, 27, 0.25);
}
.pc-cat-ear {
  position: absolute;
  top: -6%;
  width: 30%;
  height: 42%;
  background: linear-gradient(180deg, #FFCE78 0%, #FF9E4A 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.pc-cat-ear-l { left: 2%; transform: rotate(-14deg); }
.pc-cat-ear-r { right: 2%; transform: rotate(14deg); }
.pc-cat-ear::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 55%;
  background: #FF9BB9;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0.85;
}
.pc-cat-face { position: absolute; inset: 25% 15% 20% 15%; }
.pc-cat-eye {
  position: absolute;
  top: 18%;
  width: 14%;
  height: 22%;
  background: var(--ink);
  border-radius: 50%;
  animation: pc-blink 5s infinite;
}
.pc-cat-eye::after {
  content: "";
  position: absolute;
  top: 18%; left: 22%;
  width: 35%; height: 30%;
  background: white;
  border-radius: 50%;
}
.pc-cat-eye-l { left: 22%; }
.pc-cat-eye-r { right: 22%; }
@keyframes pc-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.15); }
}
.pc-cat-nose {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 6%;
  background: var(--pink);
  border-radius: 50% 50% 50% 50% / 0 0 100% 100%;
}
.pc-cat-mouth {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translateX(-50%);
  width: 22%;
  height: 12%;
  border: 2.5px solid var(--ink);
  border-top: none;
  border-left: none;
  border-radius: 0 0 60% 60% / 0 0 100% 100%;
  border-right: none;
}
.pc-cat-mouth::before,
.pc-cat-mouth::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  border: 2.5px solid var(--ink);
  border-top: none;
}
.pc-cat-mouth::before { left: 0; border-right: none; border-radius: 0 0 0 100%; }
.pc-cat-mouth::after { right: 0; border-left: none; border-radius: 0 0 100% 0; }
.pc-cat-blush {
  position: absolute;
  top: 38%;
  width: 16%; height: 9%;
  background: #FFB0C8;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(0.5px);
}
.pc-cat-blush-l { left: 4%; }
.pc-cat-blush-r { right: 4%; }

.pc-cat-paw {
  position: absolute;
  bottom: 4%;
  width: 22%;
  height: 18%;
  background: linear-gradient(180deg, #FFCE78, #FF9E4A);
  border-radius: 50%;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.1);
}
.pc-cat-paw-l { left: 18%; }
.pc-cat-paw-r { right: 18%; }

.pc-sparkle {
  position: absolute;
  font-size: 1.4rem;
  color: var(--sun-deep);
  animation: pc-twinkle 2.4s ease-in-out infinite;
}
.pc-sparkle-1 { top: 8%; right: 4%; animation-delay: 0s; }
.pc-sparkle-2 { top: 30%; left: -2%; animation-delay: 0.6s; color: var(--pink); }
.pc-sparkle-3 { bottom: 18%; right: -2%; animation-delay: 1.2s; }
@keyframes pc-twinkle {
  0%, 100% { transform: scale(0.8); opacity: 0.4; }
  50%      { transform: scale(1.2); opacity: 1; }
}

/* ---------- Marquee ---------- */
.pc-marquee {
  margin-top: 60px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
  overflow: hidden;
  transform: rotate(-1.5deg);
  border-top: 3px solid var(--sun);
  border-bottom: 3px solid var(--sun);
  position: relative;
  z-index: 2;
}
.pc-marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: pc-scroll 22s linear infinite;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.pc-marquee-group { display: inline-flex; gap: 40px; padding-right: 40px; }
@keyframes pc-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.pc-section { padding: 100px 0; }
.pc-section-alt { background: var(--cream-2); }
.pc-section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }

.pc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pc-feature {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(43, 27, 14, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pc-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(244, 107, 27, 0.15);
}
.pc-feature-icon {
  font-size: 1.8rem;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-2);
  border-radius: 14px;
  margin-bottom: 12px;
}
.pc-feature-t {
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
  margin: 0 0 6px;
}
.pc-feature-d { font-size: 0.95rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ---------- Tokenomics ---------- */
.pc-tok {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.pc-donut {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow-pop);
}
.pc-donut-hole {
  position: absolute;
  inset: 22%;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pc-donut-num {
  font-family: "Fredoka", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.pc-donut-sub { font-size: 0.85rem; color: var(--muted); margin-top: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }

.pc-tok-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 420px;
}
.pc-tok-legend li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(43, 27, 14, 0.05);
}
.pc-legend-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.pc-legend-label { flex: 1; font-weight: 700; color: var(--ink); }
.pc-legend-val { font-family: "Fredoka", sans-serif; font-weight: 700; color: var(--ink); }

/* ---------- Roadmap ---------- */
.pc-road {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pc-road-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(43, 27, 14, 0.06);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pc-road-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pop);
}
.pc-road-num {
  font-family: "Fredoka", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  margin-bottom: 8px;
}
.pc-road-q {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 4px;
}
.pc-road-t {
  font-family: "Fredoka", sans-serif;
  font-size: 1.3rem;
  margin: 0 0 14px;
}
.pc-road-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-road-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.45;
}
.pc-road-list li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
}

/* ---------- How to Buy ---------- */
.pc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pc-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.pc-step:hover {
  border-color: var(--sun);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.pc-step-n {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pc-step-t { font-family: "Fredoka", sans-serif; font-size: 1.15rem; margin: 0 0 8px; }
.pc-step-d { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

.pc-buy-contract {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 26px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pc-buy-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 6px;
}
.pc-buy-contract code {
  font-family: "Nunito", monospace;
  font-weight: 700;
  font-size: 1rem;
  word-break: break-all;
}

/* ---------- Community ---------- */
.pc-community { text-align: center; }
.pc-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.pc-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 6px 16px rgba(43, 27, 14, 0.06);
}
.pc-social:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
}
.pc-social-icon {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  color: var(--ink);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.pc-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 54px 0 34px;
}
.pc-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.pc-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.pc-footer-disclaimer {
  max-width: 520px;
  color: rgba(255, 247, 226, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.pc-footer-meta { font-size: 0.85rem; color: rgba(255, 247, 226, 0.5); }

/* ---------- Toast ---------- */
.pc-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.pc-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@keyframes pc-toast-in {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .pc-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .pc-cat { max-width: 340px; }
  .pc-two-col { grid-template-columns: 1fr; gap: 36px; }
  .pc-tok { grid-template-columns: 1fr; gap: 36px; }
  .pc-road { grid-template-columns: repeat(2, 1fr); }
  .pc-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pc-nav { padding: 14px 20px; }
  .pc-links {
    position: fixed;
    top: 66px; left: 16px; right: 16px;
    background: var(--white);
    flex-direction: column;
    padding: 22px;
    border-radius: var(--radius);
    gap: 16px;
    box-shadow: 0 20px 50px rgba(43,27,14,0.18);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    align-items: stretch;
  }
  .pc-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .pc-links a { text-align: center; }
  .pc-burger { display: flex; }
  .pc-hero { padding: 50px 20px 30px; }
  .pc-section { padding: 70px 0; }
  .pc-feature-grid { grid-template-columns: 1fr; }
  .pc-road { grid-template-columns: 1fr; }
  .pc-steps { grid-template-columns: 1fr; }
  .pc-buy-contract { flex-direction: column; align-items: flex-start; }
  .pc-buy-contract code { font-size: 0.82rem; }
  .pc-contract { flex-wrap: wrap; padding: 8px; }
  .pc-contract-label { padding-left: 8px; }
}

.pc-cat-floating {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  animation: pcFloat 3s ease-in-out infinite;
}

.pc-cat-floating {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  animation: pcFloat 3s ease-in-out infinite;
}

.pc-cat-img {
  width: 100%;
  max-width: 620px; /* aumenta questo valore */
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

@keyframes pcFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.pc-brand-logo {
  height: 48px;   /* aumenta o diminuisci qui */
  width: auto;
  display: block;
}
