:root {
  --bg: #fd8faa;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #2a1020;
  --muted: rgba(42, 16, 32, 0.7);
  --brand: #ff3d9a;
  --brand-2: #ff7bbf;
  --brand-3: #ffb4d6;
  --shadow: 0 18px 45px rgba(255, 61, 154, 0.18);
  --ring: 0 0 0 3px rgba(255, 61, 154, 0.22);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  background: #fd8faa;
  /* Doubles root size so all rem-based font sizes are 2x default */
  font-size: 200%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Passero One", cursive, ui-sans-serif, system-ui, sans-serif;
  background: #fd8faa;
  overflow-x: clip;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: #fd8faa;
  border-bottom: 1px solid rgba(255, 61, 154, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.icon-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: transparent;
  border-color: transparent;
}

.icon-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow), var(--ring);
}

.icon {
  width: 30px;
  height: 30px;
  color: rgba(42, 16, 32, 0.85);
}

main {
  padding: 0 0 70px;
}

.banner {
  width: 100%;
  min-height: clamp(560px, 78vh, 820px);
  display: flex;
  align-items: stretch;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 61, 154, 0.12);
  background-color: #fd8faa;
  background-image: url("https://images.unsplash.com/photo-1520975958225-1b93b63f8d9e?auto=format&fit=crop&w=2400&q=70");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 143, 170, 0.35);
  pointer-events: none;
}

.banner-inner {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.banner-col {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(34px, 5vw, 72px) clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(560px, 78vh, 820px);
  position: relative;
  overflow: hidden;
}

.banner-col::after {
  content: none;
}

.banner-col.left {
  border-right: 1px solid rgba(255, 61, 154, 0.2);
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/banner-left.png") center / cover no-repeat;
}

.banner-col.right {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/banner-right.png") center / cover no-repeat;
}

.banner-col h1,
.banner-col h2 {
  color: #fff;
}

.banner-col-inner {
  width: min(560px, 100%);
}

.banner-col > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 61, 154, 0.09);
  border: 1px solid rgba(255, 61, 154, 0.15);
  color: rgba(42, 16, 32, 0.8);
  font-weight: 700;
  font-size: 0.9rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(255, 61, 154, 0.25);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 60ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 61, 154, 0.18);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--surface-strong);
  border-color: rgba(255, 61, 154, 0.3);
}

.btn-primary {
  border-color: rgba(255, 61, 154, 0.25);
  background: var(--brand);
  color: white;
  box-shadow: 0 16px 36px rgba(255, 61, 154, 0.28);
}

.btn-primary:hover {
  background: #e91a84;
}

.hero-art {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 61, 154, 0.14);
  background: rgba(255, 255, 255, 0.35);
  padding: 18px;
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.blob {
  width: 240px;
  height: 240px;
  border-radius: 65% 35% 45% 55% / 55% 50% 50% 45%;
  background: var(--brand);
  filter: drop-shadow(0 22px 38px rgba(255, 61, 154, 0.3));
  animation: float 7.5s ease-in-out infinite;
  position: relative;
}

.blob::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0.7;
}

.spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 30px rgba(255, 61, 154, 0.2);
  animation: twinkle 2.2s ease-in-out infinite;
}

.spark.s1 {
  top: 26px;
  left: 26px;
  animation-delay: 0.2s;
}

.spark.s2 {
  bottom: 34px;
  left: 54px;
  animation-delay: 0.6s;
}

.spark.s3 {
  top: 64px;
  right: 46px;
  animation-delay: 0.95s;
}

.spark.s4 {
  bottom: 68px;
  right: 30px;
  animation-delay: 1.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 900px) {
  html {
    font-size: 125%;
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .section-header,
  .cardless,
  .join-wrap,
  .roadmap-wrap,
  .bounty-wrap {
    width: min(100%, calc(100% - 24px));
  }

  .banner-inner {
    grid-template-columns: 1fr;
  }

  .banner-col {
    min-height: 360px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
  }

  .banner-col.left {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 61, 154, 0.2);
  }

  .banner-col-inner {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .cta-row {
    justify-content: center;
  }
}

.section {
  padding: 70px 0 0;
}

.section-header {
  text-align: center;
  margin: 0 auto 26px;
  width: min(820px, calc(100% - 40px));
}

.section-header h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2px;
  align-items: center;
  margin-top: 4px;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.section[aria-label="Why Porky"] .split:not(.reverse) {
  grid-template-columns: 0.8fr 1.2fr;
}

.split.reverse .split-media img {
  height: 320px;
}

.split + .split {
  margin-top: 0;
}

.cardless {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.split-copy h4 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.split-copy p {
  margin: 0;
  max-width: 70ch;
  color: #000000;
}

.split-media {
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
  align-self: start;
}

.split-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: top;
  display: block;
}

.marquee {
  width: 75%;
  overflow: hidden;
  margin: 24px auto 0;
}

.marquee-track {
  display: flex;
  gap: 15px;
  width: max-content;
  padding: 4px 6px 8px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.meme {
  margin: 0;
  width: 250px;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 61, 154, 0.22);
  box-shadow: 0 18px 55px rgba(42, 16, 32, 0.08);
  background: rgba(255, 255, 255, 0.65);
  flex: 0 0 auto;
}

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

.join-wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.join-subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.slider-table {
  margin-top: 22px;
  border: 1px solid rgba(255, 61, 154, 0.18);
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.slider-col {
  position: relative;
}

.slider-col + .slider-col {
  border-left: 1px solid rgba(255, 61, 154, 0.18);
}

.slider-span {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 61, 154, 0.18);
}

.info-cell {
  padding: 8px 12px;
  min-height: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0;
}

.info-cell h5 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tab-btn {
  border: 0;
  background: transparent;
  margin: 0;
  padding: 2px 8px;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: rgba(42, 16, 32, 0.62);
  cursor: pointer;
  border-radius: 10px;
  transition: color 140ms ease, background 140ms ease;
}

.tab-btn:hover {
  color: rgba(42, 16, 32, 0.9);
  background: rgba(255, 255, 255, 0.22);
}

.tab-btn.is-active {
  color: rgba(42, 16, 32, 1);
  background: rgba(255, 255, 255, 0.35);
}

.tab-btn:focus-visible {
  outline: none;
  box-shadow: inset var(--ring);
}

.info-cell p {
  margin: 0;
  max-width: none;
}

.slider-unit {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: stretch;
  min-height: 120px;
}

.sbtn {
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 160ms ease, transform 160ms ease;
}

.sbtn:hover {
  background: rgba(255, 255, 255, 0.72);
}

.sbtn:active {
  transform: scale(0.98);
}

.sbtn:focus-visible {
  outline: none;
  box-shadow: inset var(--ring);
}

.sbtn svg {
  width: 20px;
  height: 20px;
  color: rgba(42, 16, 32, 0.85);
}

.slide-viewport {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  min-width: 0;
  isolation: isolate;
  padding: 18px 18px 14px;
  display: grid;
  align-content: center;
}

.slide-track {
  display: flex;
  width: 400%;
  transform: translateX(0);
  transition: transform 220ms ease;
  will-change: transform;
}

.slide {
  flex: 0 0 25%;
  width: 25%;
  min-width: 25%;
  max-width: 25%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 0 8px;
}

.slide h5 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.slide p {
  margin: 0;
  max-width: 42ch;
}

.slide-meta {
  margin: 0 0 2px;
  color: rgba(42, 16, 32, 0.72);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.roadmap-wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid rgba(255, 61, 154, 0.18);
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.roadmap-item {
  border-bottom: 1px solid rgba(255, 61, 154, 0.14);
}

.roadmap-item:last-child {
  border-bottom: 0;
}

.roadmap-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  text-align: left;
  transition: background 0.15s ease;
}

.roadmap-toggle:hover {
  background: rgba(255, 61, 154, 0.06);
}

.roadmap-toggle:focus-visible {
  outline: none;
  box-shadow: inset var(--ring);
}

.roadmap-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
  color: rgba(42, 16, 32, 0.75);
}

.roadmap-item.is-open .roadmap-arrow {
  transform: rotate(90deg);
}

.roadmap-label {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}

.roadmap-panel {
  padding: 0 18px 16px 52px;
  margin: 0;
}

.roadmap-panel p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.bounty-wrap {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.section-header h3.bounty-headline {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
}

.bounty-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
  justify-content: center;
}

.bounty-cell {
  margin: 0;
  width: 300px;
  height: 300px;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(255, 61, 154, 0.2);
  box-shadow: 0 14px 44px rgba(42, 16, 32, 0.1);
  background: #ffffff;
}

.bounty-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.bounty-cta {
  margin-top: 4px;
}

.site-footer {
  margin-top: 48px;
  padding: 36px 20px 44px;
  border-top: 1px solid rgba(255, 61, 154, 0.14);
  background: transparent;
}

.footer-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer-social a {
  width: 56px;
  height: 56px;
  border-radius: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(42, 16, 32, 0.85);
  transition: transform 0.15s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.footer-social a:focus-visible {
  outline: none;
  box-shadow: var(--shadow), var(--ring);
}

.footer-social img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.footer-rights {
  margin: 0;
  margin-top: -8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 900px) {
  .section {
    padding-top: 56px;
  }

  .section[aria-label="Why Porky"] .split:not(.reverse) {
    grid-template-columns: 1fr;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .split-copy {
    text-align: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }

  .split-copy p,
  .split-copy h4 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .split-media {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .split-media img {
    height: 280px;
    width: min(100%, 560px);
    margin: 0 auto;
    object-position: center;
  }

  .section[aria-label="About Porky"] .split,
  .section[aria-label="Why Porky"] .split,
  .section[aria-label="About Porky"] .split.reverse,
  .section[aria-label="Why Porky"] .split.reverse {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
  }

  .section[aria-label="About Porky"] .split-copy,
  .section[aria-label="Why Porky"] .split-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .section[aria-label="About Porky"] .split-copy p,
  .section[aria-label="Why Porky"] .split-copy p,
  .section[aria-label="Why Porky"] .split-copy h4 {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section[aria-label="About Porky"] .split-copy,
  .section[aria-label="Why Porky"] .split-copy {
    order: 1;
  }

  .section[aria-label="About Porky"] .split-media,
  .section[aria-label="Why Porky"] .split-media {
    order: 2;
  }

  .meme {
    width: 190px;
    height: 190px;
  }

  .slider-table {
    grid-template-columns: 1fr;
  }

  .slider-col + .slider-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 61, 154, 0.18);
  }

  .slider-span {
    border-top: 1px solid rgba(255, 61, 154, 0.18);
  }

  .slider-unit {
    grid-template-columns: 50px 1fr 50px;
  }

  .bounty-grid {
    grid-template-columns: repeat(2, min(300px, calc(50vw - 28px)));
    grid-template-rows: auto;
    grid-auto-rows: min(300px, calc(50vw - 28px));
  }

  .bounty-cell {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 300px;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 100%;
  }

  h1,
  h2 {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .bounty-grid {
    grid-template-columns: min(300px, calc(100vw - 40px));
    grid-auto-rows: min(300px, calc(100vw - 40px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  .meme {
    scroll-snap-align: start;
  }
}
