:root {
  --sky: #8bc3ef;
  --blue: #2d66cf;
  --wall: #72a8f5;
  --yellow: #ffe214;
  --red: #e20b00;
  --cream: #fff9c9;
  --white: #ffffff;
  --black: #121212;
  --gray: #c9c9c9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--sky);
  color: var(--black);
  font-family: "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
}

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

button,
a {
  font: inherit;
}

.page {
  min-height: 100vh;
  padding: 0;
}

.workie-card {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: var(--wall);
}

.nav-band {
  position: relative;
  z-index: 10;
  display: grid;
  min-height: clamp(190px, 20vh, 260px);
  grid-template-columns: 330px 1fr 360px;
  align-items: start;
  gap: 24px;
  padding: 42px clamp(40px, 5vw, 92px) 0;
  background: var(--blue);
}

.nav-band::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 330px;
  height: 190px;
  background: #b7ddfb;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  content: "";
}

.nav-band::after {
  position: absolute;
  top: 34px;
  left: 50px;
  width: 310px;
  height: 2px;
  background: var(--black);
  content: "";
  transform: rotate(35deg);
  transform-origin: left center;
}

.logo,
.nav-links,
.socials {
  position: relative;
  z-index: 2;
}

.logo {
  display: inline-block;
  width: fit-content;
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(28px, 2.8vw, 42px);
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow:
    -3px -3px 0 var(--black),
    3px -3px 0 var(--black),
    -3px 3px 0 var(--black),
    3px 3px 0 var(--black),
    5px 5px 0 rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
  padding-top: 4px;
  color: white;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(18px, 1.7vw, 26px);
  text-shadow:
    -2px -2px 0 rgba(255, 255, 255, 0.45),
    2px 2px 0 rgba(0, 0, 0, 0.22);
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.socials a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--black);
  border-radius: 8px;
  background: #ffc918;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 25px;
  transition: transform 140ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(3px);
  outline: none;
}

.scene {
  position: relative;
  min-height: calc(100vh - clamp(190px, 20vh, 260px));
  margin-top: -20px;
  overflow: hidden;
  background: var(--wall);
}

.fold {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 330px;
  height: 430px;
  background: #b7ddfb;
  clip-path: polygon(0 0, 100% 0, 58% 74%, 0 58%);
}

.fold::after {
  position: absolute;
  top: 160px;
  left: 36px;
  width: 300px;
  height: 2px;
  background: var(--black);
  content: "";
  transform: rotate(10deg);
}

.back-wall {
  position: absolute;
  top: 220px;
  left: 0;
  z-index: 1;
  width: 270px;
  height: 520px;
  background: var(--gray);
  clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 90%);
}

.screen-box {
  position: absolute;
  z-index: 2;
  left: 210px;
  bottom: 215px;
  width: 340px;
  height: 185px;
  border: 3px solid var(--black);
  background: #4a4a4a;
  transform: skewX(8deg);
}

.screen-box::before {
  position: absolute;
  right: -42px;
  bottom: -88px;
  width: 110px;
  height: 90px;
  border: 3px solid var(--black);
  background: #d7d7d7;
  content: "";
  transform: skewX(-15deg);
}

.shelf {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 290px;
  width: 560px;
  height: 170px;
}

.shelf::before,
.shelf::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 34px;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  background: #8d563b;
  content: "";
}

.shelf::before {
  top: 0;
}

.shelf::after {
  bottom: 0;
}

.shelf span {
  position: absolute;
  top: -32px;
  width: 64px;
  height: 34px;
  border: 2px solid var(--black);
  background: #f5d12f;
}

.shelf span:nth-child(1) { right: 270px; }
.shelf span:nth-child(2) { right: 176px; background: white; }
.shelf span:nth-child(3) { right: 92px; background: var(--red); }

.copy-stack {
  position: relative;
  z-index: 5;
  width: min(760px, 54%);
  padding: 70px 0 0 clamp(40px, 5.7vw, 92px);
}

h1 {
  margin: 0;
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(70px, 7.6vw, 132px);
  line-height: 0.85;
  letter-spacing: 0;
  text-shadow:
    -6px -6px 0 var(--black),
    6px -6px 0 var(--black),
    -6px 6px 0 var(--black),
    6px 6px 0 var(--black),
    10px 10px 0 rgba(0, 0, 0, 0.18);
  transform: rotate(-1deg);
}

.lead {
  max-width: 760px;
  margin: 34px 0 30px;
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(22px, 2.08vw, 34px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-shadow:
    -3px -3px 0 var(--black),
    3px -3px 0 var(--black),
    -3px 3px 0 var(--black),
    3px 3px 0 var(--black);
}

.ca-box {
  display: flex;
  width: min(730px, 100%);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 10px 10px 20px;
  border: 3px solid var(--blue);
  border-radius: 18px;
  background: white;
  box-shadow: 0 6px 0 var(--black);
}

.ca-box code {
  min-width: 0;
  overflow: hidden;
  color: #484848;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(16px, 1.4vw, 23px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-box button {
  flex: 0 0 auto;
  min-width: 118px;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 24px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18);
}

.notice-row {
  display: flex;
  width: min(730px, 100%);
  gap: 0;
  margin-top: 46px;
}

.notice {
  display: grid;
  min-height: 128px;
  grid-template-columns: 74px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 10px 14px;
  width: 50%;
  margin: 0;
  padding: 18px 18px;
  border: 3px solid var(--black);
  border-radius: 14px;
  background: white;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.notice-left {
  transform: rotate(-2deg);
}

.notice-right {
  margin-left: -4px;
  transform: rotate(0.8deg);
}

.notice strong {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 5px solid #ffc445;
  border-radius: 50%;
  color: #ffc445;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 34px;
}

.notice-right strong {
  border-color: var(--black);
  color: var(--black);
}

.notice p {
  margin: 0;
  min-width: 0;
  font-size: clamp(17px, 1.38vw, 23px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.notice a {
  grid-column: 2;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.buy-button {
  display: inline-flex;
  min-width: 260px;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  border: 3px solid var(--black);
  border-radius: 18px;
  background: white;
  box-shadow: 0 6px 0 var(--black);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 35px;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.buy-button:hover,
.buy-button:focus-visible {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--black);
  outline: none;
}

.mascot {
  position: absolute;
  z-index: 6;
  right: clamp(50px, 6vw, 106px);
  bottom: 166px;
  width: min(475px, 34vw);
  height: auto;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.18));
  animation: wave-shift 3s ease-in-out infinite;
}

@keyframes wave-shift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(0.6deg);
  }
}

.counter {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 4;
}

.counter-top {
  bottom: 196px;
  height: 74px;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  background: var(--red);
}

.counter-cream {
  bottom: 82px;
  height: 114px;
  border-bottom: 3px solid var(--black);
  background: var(--cream);
}

.counter-bottom {
  bottom: 0;
  height: 82px;
  background: var(--red);
}

.below-card {
  display: grid;
  width: min(1160px, calc(100% - 20px));
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 26px;
  margin: 42px auto;
  padding: 24px 28px;
  border: 3px solid var(--black);
  border-radius: 18px;
  background: white;
  box-shadow: 8px 8px 0 var(--blue);
}

.below-card img {
  width: 132px;
  height: 132px;
  border: 3px solid var(--black);
  border-radius: 50%;
}

.below-card p {
  margin: 0 0 4px;
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.below-card h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(34px, 3.35vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .nav-band {
    min-height: 210px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nav-links,
  .socials {
    justify-content: flex-start;
  }

  .copy-stack {
    width: min(850px, 90%);
  }

  .mascot {
    right: 20px;
    width: min(360px, 38vw);
    opacity: 0.96;
  }
}

@media (max-width: 760px) {
  .page {
    padding: 0;
  }

  .workie-card {
    border-radius: 0;
  }

  .nav-band {
    padding: 28px 22px 0;
  }

  .nav-band::before,
  .nav-band::after,
  .fold {
    display: none;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .socials {
    gap: 10px;
  }

  .socials a {
    width: 46px;
    height: 46px;
  }

  .scene {
    min-height: 980px;
  }

  .copy-stack {
    width: 100%;
    padding: 42px 20px 0;
  }

  h1 {
    font-size: clamp(62px, 20vw, 96px);
    text-shadow:
      -4px -4px 0 var(--black),
      4px -4px 0 var(--black),
      -4px 4px 0 var(--black),
      4px 4px 0 var(--black);
  }

  .lead {
    font-size: 25px;
  }

  .ca-box {
    align-items: stretch;
    flex-direction: column;
  }

  .notice-row {
    flex-direction: column;
    gap: 14px;
  }

  .notice {
    width: 100%;
    margin-left: 0;
  }

  .mascot {
    right: 8px;
    bottom: 150px;
    width: 320px;
  }

  .below-card {
    grid-template-columns: 1fr;
  }
}

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