@font-face {
  font-family: "PP Neue Corp Normal";
  src: url("https://cdn.prod.website-files.com/69d7b950c24483d8c2a7283e/69d7b970e4a51e8b2554f5cd_PPNeueCorp-NormalMedium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Corp Compact";
  src: url("https://cdn.prod.website-files.com/69d7b950c24483d8c2a7283e/69d7b970c88dd76a4f640c05_PPNeueCorp-CompactUltrabold.woff") format("woff");
  font-display: swap;
}

:root {
  --pink: #ff0097;
  --bg: #141414;
  --panel: #252625;
  --panel-dark: #181818;
  --panel-soft: #303030;
  --line: #ffffff24;
  --muted: #9b9b9b;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: "PP Neue Corp Normal", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
}

.cta-ribbon {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 2.5vw;
  background: var(--pink);
  font-size: clamp(12px, 0.85vw, 16px);
  line-height: 1.1;
}

.nav-shell {
  min-height: 88px;
  padding: 1vh 2.5vw;
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: start;
  background-image: url("https://cdn.prod.website-files.com/69d7b950c24483d8c2a7283e/69d7bc52f125efe6f031d76e_Menu_Vector_BG.svg");
  background-position: 50% 100%;
  background-size: cover;
}

.desktop-nav {
  display: flex;
  gap: 1.1rem;
  padding-top: 22px;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  font-size: clamp(14px, 1.22vw, 24px);
  text-transform: uppercase;
}

.desktop-nav.right {
  justify-content: flex-end;
}

.desktop-nav a,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}

.desktop-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo {
  justify-self: center;
  margin-top: -34px;
  width: min(180px, 15vw);
  display: block;
  position: relative;
}

.logo-the {
  position: absolute;
  top: 17%;
  left: 50%;
  z-index: 2;
  padding: 0.1em 0.4em 0.02em;
  color: #141414;
  background: #fff;
  border: 2px solid #141414;
  border-radius: 999px;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  font-size: clamp(13px, 1.05vw, 20px);
  line-height: 0.9;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 3px 0 #ff99db, 0 0 0 1px #ff0097;
}

.menu-button {
  display: none;
  margin-left: auto;
  padding: 18px 0;
  border: 0;
  background: transparent;
  text-transform: uppercase;
}

.plus {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  display: inline-block;
  background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat, linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
}

.mobile-panel {
  margin-left: auto;
  width: min(86vw, 430px);
  padding: 92px 28px 30px;
  background: #ebdcc5;
  color: #131313;
  border-radius: 0 0 0 20px;
}

.mobile-panel a {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #1313132c;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  font-size: 46px;
  text-transform: uppercase;
}

.mobile-panel small {
  font-size: 14px;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 22vh 2.5vw 3vh;
}

.hero-copy {
  width: min(760px, 56vw);
  position: relative;
  z-index: 2;
}

.checks {
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: clamp(12px, 0.95vw, 18px);
}

.checks span {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
}

.checks img {
  width: 20px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(84px, 9vw, 174px);
  line-height: 0.9;
}

.hero p,
.section-heading p,
.proof-copy p,
.pricing-inner > p,
.note {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.25;
}

.actions {
  display: flex;
  gap: 0.5vw;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-width: 168px;
  padding: 18px 26px;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px #00000045;
}

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

.button.dark {
  background: var(--panel-soft);
  color: #ffffffe6;
}

.button.wide {
  min-width: min(320px, 100%);
}

.hero-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(600px, 39vw);
  z-index: 1;
}

.haul-section {
  padding: 8vh 0 10vh 2.5vw;
  overflow: hidden;
}

.section-heading {
  max-width: 1020px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.proof-copy h2,
.pricing-inner h2 {
  color: #686868;
  font-size: clamp(58px, 5vw, 104px);
  line-height: 0.95;
}

.card-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 22.5vw);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 2.5vw 20px 0;
  scroll-snap-type: x mandatory;
}

.card-row::-webkit-scrollbar,
.marquee::-webkit-scrollbar {
  height: 10px;
}

.card-row::-webkit-scrollbar-thumb,
.marquee::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 999px;
}

.haul-card {
  aspect-ratio: 4 / 5.25;
  padding: 16px;
  background: var(--pink);
  border: 1px solid #ffffff26;
  border-radius: 16px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.haul-card div {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2vw;
  background: var(--panel-dark);
  border: 1px solid #ffffff0d;
  border-radius: 8px;
}

.haul-card h3,
.steps h3,
.price-features h3 {
  padding: 16px 8px 4px;
  font-size: clamp(24px, 1.8vw, 38px);
  line-height: 0.95;
}

.process-section {
  padding: 6vh 5vw 9vh;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
}

.step-visual {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  padding: 1vw;
  background: var(--panel-dark);
  border: 8px solid var(--pink);
  border-radius: 12px;
}

.step-visual strong {
  color: #3d3d3d;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  font-size: clamp(82px, 8vw, 160px);
  line-height: 0.8;
}

.step-visual img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66%;
}

.steps p {
  margin: 0 8px;
  color: #d0d0d0;
  font-size: clamp(16px, 1vw, 20px);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.5vw;
  align-items: start;
  padding: 20vh 5vw 9vh;
  background: var(--panel);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: var(--pink);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 15px;
}

.comparison {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  border: 6px solid var(--pink);
  border-radius: 16px;
  background: #000;
}

.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-layer {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 45%);
}

.handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 6px;
  border: 0;
  padding: 0;
  cursor: ew-resize;
  background: var(--pink);
}

.handle::after {
  content: "<>";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
}

.badge {
  position: absolute;
  top: 18px;
  padding: 10px 16px;
  background: var(--pink);
  border-radius: 6px;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 22px;
}

.badge.before {
  left: 18px;
}

.badge.after {
  right: 18px;
}

.marquee {
  background: var(--panel);
  overflow-x: auto;
  padding: 0 0 9vh;
}

.marquee div {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 5vw;
}

.marquee img {
  width: min(330px, 70vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.marquee img:nth-child(odd) {
  border-radius: 999px;
}

.reviews-section {
  padding: 8vh 5vw;
}

.testimonial {
  position: relative;
  min-height: 340px;
  padding: 32px;
  background: #1d1d1d;
  border-top: 8px solid #353535;
  border-radius: 10px;
}

.testimonial-controls {
  position: absolute;
  right: 32px;
  top: 32px;
  display: flex;
  gap: 8px;
}

.testimonial-controls button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
}

.count {
  color: var(--muted);
  font-size: 20px;
}

blockquote {
  max-width: 960px;
  margin: 44px 0 32px;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  font-size: clamp(42px, 4.5vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
}

.reviewer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.reviewer img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.reviewer p {
  margin: 0;
  display: grid;
  gap: 4px;
  font-size: 21px;
}

.reviewer span {
  color: var(--muted);
}

.pricing-section {
  padding: 5vh 5.5vw 8.5vh;
  background: var(--panel);
}

.pricing-card {
  overflow: hidden;
  background: var(--bg);
  border-radius: 20px;
}

.pricing-ribbon {
  padding: 14px 2.5vw;
  background: var(--pink);
  text-align: center;
  font-size: clamp(16px, 1.2vw, 22px);
}

.pricing-inner {
  padding: 2.5vw;
  text-align: center;
}

.price-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 5vh;
}

.price-features article {
  padding: 2.5vw 1.5vw;
  background: #252525;
  border-radius: 8px;
}

.price-features img {
  width: 34%;
  margin: 0 auto 12px;
}

.divider {
  height: 4px;
  margin: 5vh 0;
  background: #ffffff1f;
  border-radius: 999px;
}

.centered {
  justify-content: center;
}

.note {
  margin-top: 24px;
}

.site-footer {
  min-height: 72svh;
  padding: 2.5em;
  border-top: 8px solid #202020;
  background-image: url("https://cdn.prod.website-files.com/69d7b950c24483d8c2a7283e/69da7117f580eb1d26d5b315_JunkDumperzFooterRaccoon.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(42px, 6vh, 86px);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em;
}

.footer-cols > div {
  display: flex;
  flex-direction: column;
  gap: 0.55em;
}

.footer-label,
.footer-tag {
  opacity: 0.55;
  font-size: clamp(18px, 1.3vw, 26px);
}

.site-footer a {
  width: fit-content;
  font-size: clamp(30px, 1.85vw, 42px);
  line-height: 0.98;
}

.footer-brand {
  width: min(76vw, 1180px);
  max-width: 100%;
  margin: 2vh auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 18px);
  position: relative;
  padding-top: 0;
}

.footer-the {
  flex: 0 0 auto;
  padding: 0.1em 0.42em 0.03em;
  color: #141414;
  background: #fff;
  border: clamp(2px, 0.22vw, 4px) solid #141414;
  border-radius: 999px;
  font-family: "PP Neue Corp Compact", Impact, sans-serif;
  font-size: clamp(38px, 5.25vw, 92px);
  line-height: 0.85;
  text-transform: uppercase;
  box-shadow: 0 clamp(3px, 0.35vw, 6px) 0 #ff99db, 0 0 0 clamp(1px, 0.12vw, 2px) #ff0097;
}

.footer-wordmark {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: auto;
}

@media (max-width: 980px) {
  .cta-ribbon span:last-child,
  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr 1fr;
    min-height: 78px;
  }

  .logo {
    justify-self: start;
    width: 150px;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    color: #131313;
  }

  .hero {
    min-height: 900px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 7vh;
  }

  .hero-art {
    width: min(520px, 78vw);
  }

  .steps,
  .proof-section,
  .price-features,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .proof-section {
    padding-top: 12vh;
  }
}

@media (max-width: 640px) {
  .cta-ribbon {
    padding: 10px 18px;
  }

  .nav-shell {
    padding: 1vh 18px;
  }

  .logo {
    margin-top: -22px;
    width: 128px;
  }

  .hero {
    min-height: 820px;
    padding: 170px 18px 24px;
  }

  .checks {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(72px, 23vw, 118px);
  }

  .button {
    width: 100%;
  }

  .haul-section {
    padding-left: 18px;
  }

  .process-section,
  .proof-section,
  .reviews-section,
  .pricing-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading h2,
  .proof-copy h2,
  .pricing-inner h2 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .card-row {
    grid-auto-columns: minmax(230px, 78vw);
  }

  .testimonial {
    padding: 22px;
  }

  .testimonial-controls {
    position: static;
    margin-bottom: 20px;
  }

  blockquote {
    margin-top: 24px;
    font-size: clamp(42px, 15vw, 66px);
  }

  .site-footer {
    background-size: 45%;
  }

  .footer-brand {
    width: 100%;
    margin-top: 3vh;
    padding-top: 0;
    gap: 8px;
  }

  .footer-the {
    font-size: clamp(28px, 13vw, 58px);
  }
}
