@font-face {
  font-family: Londrina;
  src: url("assets/londrina-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Londrina;
  src: url("assets/londrina-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #182437;
  --blue: #007ec0;
  --cyan: #08bfec;
  --yellow: #ffdc45;
  --green: #9be333;
  --paper: #fffdf7;
  --muted: #485568;
  --display: Londrina, "Arial Rounded MT Bold", sans-serif;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #dd2476;
  outline-offset: 6px;
}
button:disabled {
  cursor: default;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
}
h2 {
  font-size: 58px;
}
h3 {
  font-size: 27px;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: white;
  padding: 12px 20px;
  border: 2px solid var(--ink);
}
.skip-link:focus {
  top: 12px;
}
.container {
  width: min(1120px, calc(100% - 80px));
  margin-inline: auto;
}
.section-space {
  padding: 85px 0;
}
.eyebrow {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}
.blue-text {
  color: var(--blue);
}
.site-header {
  height: 90px;
  background: #fffefb;
  border-bottom: 1px solid #19253a12;
  position: relative;
  z-index: 20;
}
.header-inner {
  width: min(1250px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  flex-shrink: 0;
  display: block;
}
.brand img {
  height: 64px;
  width: 90px;
}
.site-header nav {
  display: flex;
  gap: 40px;
  font-size: 15px;
  font-weight: 700;
}
.site-header nav a {
  position: relative;
  padding: 8px 0;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--blue);
}
.site-header nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyan);
  transition: width 0.2s;
}
.site-header nav a:hover:after,
.site-header nav a[aria-current="page"]:after {
  width: 100%;
}
.tape-link {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 49px;
  padding: 13px 26px;
  background: #087ccb;
  box-shadow: 0 4px 0 #07589f;
  transform: rotate(-2deg);
  transition:
    transform 0.2s,
    background 0.2s;
  border-radius: 2px;
  position: relative;
}
.tape-link:hover {
  background: #0069b8;
  transform: translateY(-3px) rotate(0);
}
.tape-link span {
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}
.header-cta {
  font-size: 19px;
  min-height: 43px;
  padding: 10px 20px;
  gap: 20px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  height: min(810px, calc(100svh - 145px));
  background: #fcf9ef;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 35px 0 85px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/notebook.webp") center 47%/100% auto;
  opacity: 0.6;
}
.hero:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: 1080px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: url("assets/rays.webp") center/contain no-repeat;
  opacity: 0.24;
  pointer-events: none;
}
.hero-content {
  text-align: center;
  width: min(510px, calc(100% - 48px));
  position: relative;
  z-index: 3;
}
.hero .eyebrow {
  font-size: 13px;
  margin-bottom: 10px;
}
.hero-logo {
  width: 354px;
  height: auto;
  max-height: 252px;
  margin: 0 auto;
  filter: drop-shadow(0 7px 0 #17243b12);
  transform: rotate(-3deg);
}
.hero-tagline {
  font-family: var(--display);
  font-size: 43px;
  line-height: 1.05;
  margin: 12px 0 15px;
}
.hero-tagline br {
  display: none;
}
.hero-tagline span {
  color: var(--blue);
}
.hero-description {
  font-size: 17px;
  line-height: 1.55;
  color: #3d4652;
}
.hero-cta {
  margin-top: 24px;
  font-size: 25px;
  min-height: 55px;
  padding-inline: 28px;
}
.availability {
  font-size: 12px;
  margin-top: 20px;
  color: #4a535a;
}
.hero-art {
  position: absolute;
  inset: 0;
  max-width: 1440px;
  margin: auto;
  pointer-events: none;
}
.hero-coin {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  --angle: 12deg;
}
.coin-one {
  left: 29%;
  top: 14%;
  width: 42px;
  height: 42px;
  animation-delay: -4s;
}
.coin-two {
  right: 29%;
  top: 73%;
  width: 30px;
  height: 30px;
  animation-delay: -2s;
}
.scribble {
  position: absolute;
  font: 22px var(--display);
  color: #3b4a56;
  transform: rotate(-13deg);
}
.scribble-one {
  right: 9%;
  top: 59%;
}
.scribble-two {
  left: 10%;
  top: 60%;
  transform: rotate(9deg);
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: -2%;
  width: 104%;
  padding: 16px 5%;
  background: var(--yellow);
  display: flex;
  justify-content: center;
  gap: 90px;
  font: 21px var(--display);
  transform: rotate(-1.4deg);
  border-top: 2px solid #dcac29;
  border-bottom: 2px solid #dcac29;
}
.hero-bottom span:before {
  content: "+";
  margin-right: 55px;
  font-family: Arial;
  font-size: 22px;
  font-weight: 700;
}
.section-heading {
  text-align: center;
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section-heading > p:last-child {
  margin-top: 23px;
  color: var(--muted);
}
.game-section {
  background: white;
}
.rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 47px;
  text-align: center;
}
.rule {
  padding: 0 20px;
  border-right: 1px solid #d8e3e7;
}
.rule:last-child {
  border: 0;
}
.rule-pair {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
}
.rule-pair img {
  width: 74px;
  height: 88px;
}
.rule-pair img:first-child {
  transform: rotate(-12deg);
}
.rule-pair img:last-child {
  width: 58px;
  height: 66px;
  transform: rotate(9deg);
}
.rule-pair span {
  font-size: 26px;
  color: #617682;
}
.rule p {
  font-size: 14px;
  margin-top: 7px;
  color: var(--muted);
}
.wave-note {
  max-width: 705px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 46px auto 0;
  padding: 22px 0 0;
  border-top: 1px dashed #a5bfc8;
  color: var(--muted);
  font-size: 14px;
}
.wave-note img {
  width: 80px;
  height: 65px;
  flex-shrink: 0;
  transform: rotate(-8deg);
}
.wave-note strong {
  color: var(--ink);
}
.boss-heading {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: flex-end;
  margin-bottom: 35px;
}
.boss-heading .eyebrow {
  margin-bottom: 12px;
}
.boss-heading h2 {
  font-size: 60px;
}
.boss-heading h2 span {
  color: white;
  text-shadow: 0 3px 0 #005f8a;
}
.boss-heading > p {
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 4px;
}
.boss-stage-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.boss-stage-label span {
  background: white;
  padding: 5px 9px;
  border-radius: 2px;
}
#boss-image {
  height: 100%;
  width: 100%;
  filter: drop-shadow(4px 8px 0 #17243b18);
}
#boss-addon {
  position: absolute;
  right: 0;
  top: 34%;
  width: 65px;
  height: 80px;
  transform: rotate(15deg);
  animation: float 3.3s ease-in-out infinite;
}
.style-section {
  background: #fffdf6 url("assets/notebook.webp") center/100% auto;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 2px solid var(--blue);
  padding: 5px 0;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
}
.text-link:hover {
  color: var(--blue);
}
.launch-section {
  background: var(--yellow);
  border-top: 3px solid #f0c331;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.launch-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}
.launch-inner > div {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.launch-section .eyebrow {
  margin-bottom: 10px;
}
.launch-section h2 {
  font-size: 68px;
}
.launch-section h2 + p {
  margin-top: 14px;
}
.store-badges {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.store-badge {
  background: var(--ink);
  color: white;
  border: 1px solid #000;
  border-radius: 7px;
  padding: 12px 18px;
  min-width: 184px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  min-height: 67px;
}
.store-badge small {
  display: block;
  font-size: 10px;
  line-height: 1.4;
}
.store-badge strong {
  display: block;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 600;
}
.store-badge img {
  filter: invert(1);
  width: 27px;
  height: 31px;
}
.launch-note {
  font-size: 12px;
  margin-top: 18px;
}
.launch-scissors,
.launch-paper {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  --angle: -18deg;
  width: 150px;
  height: 185px;
  left: 0;
  top: 60px;
  filter: drop-shadow(0 10px 0 #18243715);
}
.launch-paper {
  left: auto;
  right: 0;
  top: 115px;
  width: 128px;
  height: 150px;
  --angle: 15deg;
  animation-delay: -2.5s;
}
.site-footer {
  background: white;
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-inner > .brand img {
  width: 70px;
  height: 50px;
}
.footer-inner > span {
  font: 18px var(--display);
}
.footer-inner nav {
  margin-left: auto;
  display: flex;
  gap: 25px;
  font-size: 12px;
  font-weight: 700;
}
.footer-inner small {
  color: var(--muted);
  font-size: 11px;
}
.footer-inner a:hover {
  color: var(--blue);
}
.about-hero {
  background: #fcf9ef url("assets/notebook.webp") center 34%/100% auto;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero h1 {
  font-size: 72px;
  max-width: 700px;
  margin: 18px auto;
}
.about-hero > div > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px auto;
  font-size: 18px;
  color: var(--muted);
}
.about-lineup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  height: 220px;
  padding: 22px 0 0;
  margin-top: 20px;
}
.about-lineup img {
  width: 130px;
  height: 170px;
  animation: float 5s ease-in-out infinite;
  --angle: -5deg;
}
.about-lineup img:nth-child(2n) {
  --angle: 7deg;
  animation-delay: -2s;
}
.about-lineup img:nth-child(3) {
  height: 200px;
  width: 150px;
}
.about-story {
  background: white;
  padding: 65px 0;
}
.reading-width {
  width: min(780px, calc(100% - 48px));
  margin: auto;
}
.about-story h2 {
  font-size: 45px;
  margin-bottom: 20px;
}
.about-story p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 17px;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #d7e1e7;
  margin: 35px 0;
  padding: 22px 0;
  text-align: center;
  gap: 15px;
}
.about-facts strong {
  font: 35px var(--display);
  display: block;
  color: var(--blue);
}
.about-facts span {
  font-size: 13px;
}
.faq {
  background: #e7f8fc;
  padding: 60px 0;
}
.faq h2 {
  font-size: 45px;
  margin-bottom: 25px;
}
.faq details {
  border-bottom: 1px solid #b9d8e0;
  padding: 17px 0;
}
.faq summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  font-size: 23px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}
.faq details[open] summary:after {
  content: "\2212";
}
.faq details p {
  margin-top: 14px;
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--angle, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--angle, 0deg) + 3deg));
  }
}
@keyframes sway {
  0%,
  100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
@media (min-width: 1700px) {
  .hero {
    max-height: 810px;
  }
}
@media (max-width: 1100px) {
  .coin-one {
    left: 25%;
  }
  .coin-two {
    right: 24%;
  }
  .scribble-one {
    right: 8%;
  }
  .scribble-two {
    left: 9%;
  }
  .hero-bottom {
    gap: 45px;
  }
  .hero-bottom span:before {
    margin-right: 30px;
  }
  .boss-heading h2 {
    font-size: 50px;
  }
  .boss-heading > p {
    font-size: 14px;
  }
  .launch-scissors {
    width: 110px;
    left: -15px;
  }
  .launch-paper {
    width: 100px;
    right: -10px;
  }
  .footer-inner > span {
    display: none;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 48px);
  }
  .section-space {
    padding: 64px 0;
  }
  h2 {
    font-size: 47px;
  }
  .site-header {
    height: 78px;
  }
  .header-inner {
    width: calc(100% - 40px);
    gap: 20px;
  }
  .brand img {
    width: 78px;
    height: 55px;
  }
  .site-header nav {
    gap: 22px;
    font-size: 13px;
  }
  .header-cta {
    font-size: 17px;
    gap: 12px;
    padding: 9px 14px;
  }
  .hero {
    height: 710px;
    min-height: 0;
    padding-bottom: 100px;
  }
  .hero-content {
    width: 400px;
  }
  .hero-logo {
    width: 295px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero-tagline {
    font-size: 37px;
  }
  .coin-one {
    left: 25%;
    top: 10%;
    width: 31px;
  }
  .coin-two {
    right: 22%;
    top: 81%;
    width: 24px;
  }
  .scribble {
    font-size: 16px;
  }
  .scribble-one {
    right: 6%;
    top: 59%;
  }
  .scribble-two {
    left: 4%;
    top: 47%;
  }
  .hero-bottom {
    font-size: 18px;
    gap: 28px;
    padding-block: 14px;
  }
  .hero-bottom span:before {
    margin-right: 23px;
  }
  .rule {
    padding: 0 13px;
  }
  .rule h3 {
    font-size: 23px;
  }
  .rule-pair {
    gap: 12px;
  }
  .rule-pair img {
    width: 60px;
  }
  .rule-pair img:last-child {
    width: 48px;
  }
  .boss-heading {
    display: block;
  }
  .boss-heading > p {
    margin-top: 16px;
  }
  .boss-heading > p br {
    display: none;
  }
  .boss-stage-label {
    font-size: 10px;
  }
  .launch-section h2 {
    font-size: 56px;
  }
  .launch-scissors,
  .launch-paper {
    display: none;
  }
  .footer-inner {
    gap: 17px;
  }
  .footer-inner nav {
    gap: 15px;
  }
  .footer-inner small {
    margin-left: auto;
  }
  .about-hero h1 {
    font-size: 60px;
  }
  .about-lineup {
    gap: 12px;
  }
  .about-lineup img {
    width: 105px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    width: calc(100% - 32px);
    gap: 12px;
  }
  .site-header {
    height: 72px;
  }
  .brand img {
    width: 70px;
    height: 50px;
  }
  .site-header nav {
    gap: 20px;
    font-size: 13px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    height: min(740px, calc(100svh - 90px));
    min-height: 595px;
    padding: 0 0 85px;
  }
  .hero:before {
    background-size: auto 135%;
    opacity: 0.65;
  }
  .hero:after {
    width: 850px;
  }
  .hero-content {
    width: calc(100% - 48px);
    padding-top: 9px;
  }
  .hero-logo {
    width: 252px;
    max-height: none;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 19px;
  }
  .hero-tagline {
    font-size: 35px;
    margin-top: 19px;
  }
  .hero-tagline br {
    display: block;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
  }
  .hero-cta {
    font-size: 22px;
    min-height: 49px;
    margin-top: 23px;
    padding: 12px 22px;
    gap: 20px;
  }
  .availability {
    font-size: 11px;
    margin-top: 17px;
  }
  .coin-one {
    left: 13%;
    top: 9%;
    width: 25px;
  }
  .coin-two {
    right: 15%;
    top: 70%;
    width: 23px;
  }
  .scribble {
    display: none;
  }
  .hero-bottom {
    padding: 12px 0;
    gap: 23px;
    font-size: 14px;
  }
  .hero-bottom span:before {
    display: none;
  }
  .section-space {
    padding: 54px 0;
  }
  h2 {
    font-size: 43px;
  }
  .eyebrow {
    font-size: 11px;
  }
  .section-heading > p:last-child {
    font-size: 15px;
    margin-top: 20px;
  }
  .desktop-break {
    display: none;
  }
  .rules {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 0;
    text-align: left;
  }
  .rule {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 0 16px;
    align-items: center;
    padding: 19px 0;
    border: 0;
    border-bottom: 1px solid #e3e8ea;
  }
  .rule-pair {
    grid-row: span 2;
    margin: 0;
    height: 80px;
    gap: 9px;
    justify-content: flex-start;
  }
  .rule-pair img {
    width: 57px;
    height: 72px;
  }
  .rule-pair img:last-child {
    width: 42px;
    height: 55px;
  }
  .rule-pair span {
    font-size: 23px;
  }
  .rule h3 {
    font-size: 25px;
    align-self: end;
  }
  .rule p {
    align-self: start;
    font-size: 12px;
  }
  .wave-note {
    margin-top: 15px;
    padding-top: 24px;
    gap: 16px;
    border: 0;
    font-size: 13px;
  }
  .wave-note img {
    width: 63px;
  }
  .boss-heading h2 {
    font-size: 46px;
  }
  .boss-heading h2 span {
    display: block;
  }
  .boss-heading > p {
    font-size: 14px;
    margin-top: 14px;
  }
  .boss-heading {
    margin-bottom: 25px;
  }
  .boss-stage-label {
    font-size: 11px;
  }
  .text-link {
    font-size: 13px;
  }
  .launch-section {
    padding: 48px 0;
  }
  .launch-section h2 {
    font-size: 51px;
  }
  .launch-section .eyebrow {
    font-size: 10px;
  }
  .launch-section h2 + p {
    font-size: 14px;
  }
  .store-badges {
    gap: 10px;
    margin-top: 24px;
  }
  .store-badge {
    min-width: 0;
    padding: 10px 12px;
    gap: 9px;
    min-height: 61px;
  }
  .store-badge img {
    width: 22px;
    height: 27px;
  }
  .store-badge strong {
    font-size: 18px;
  }
  .store-badge small {
    font-size: 9px;
  }
  .launch-note {
    font-size: 11px;
  }
  .footer-inner {
    justify-content: space-between;
  }
  .footer-inner nav {
    margin: 0;
    gap: 20px;
    font-size: 12px;
  }
  .footer-inner small {
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
  .site-footer {
    padding: 24px 0;
  }
  .about-hero {
    padding-top: 48px;
    background-size: auto 120%;
  }
  .about-hero h1 {
    font-size: 51px;
  }
  .about-hero > div > p:not(.eyebrow) {
    font-size: 16px;
  }
  .about-lineup {
    height: 158px;
    gap: 10px;
    margin-top: 8px;
  }
  .about-lineup img {
    width: 55px;
    height: 95px;
  }
  .about-lineup img:nth-child(3) {
    width: 75px;
    height: 140px;
  }
  .about-story {
    padding: 44px 0;
  }
  .about-story h2,
  .faq h2 {
    font-size: 38px;
  }
  .about-story p {
    font-size: 16px;
  }
  .about-facts strong {
    font-size: 30px;
  }
  .about-facts span {
    font-size: 12px;
  }
  .faq {
    padding: 44px 0;
  }
  .faq summary {
    font-size: 15px;
  }
  .faq details p {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .site-header nav {
    gap: 13px;
    font-size: 12px;
  }
  .hero-logo {
    width: 223px;
  }
  .hero-tagline {
    font-size: 32px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .rule {
    grid-template-columns: 132px 1fr;
    gap: 12px;
  }
  .rule-pair {
    gap: 6px;
  }
  .rule h3 {
    font-size: 22px;
  }
  .store-badge {
    padding: 10px;
    gap: 7px;
  }
  .store-badge strong {
    font-size: 16px;
  }
  .launch-section h2 {
    font-size: 44px;
  }
  .about-lineup {
    gap: 7px;
  }
  .about-lineup img {
    width: 49px;
  }
}
.hero {
  height: min(810px, calc(100svh - 230px));
}
@media (max-width: 600px) {
  .hero {
    height: min(740px, calc(100svh - 160px));
    min-height: 520px;
  }
}
@media (max-width: 600px) and (max-height: 760px) {
  .hero {
    padding-bottom: 60px;
  }
  .hero-logo {
    width: 205px;
  }
  .hero-tagline {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .hero-description {
    display: none;
  }
  .hero .eyebrow {
    margin-bottom: 14px;
  }
  .hero-cta {
    margin-top: 18px;
  }
  .availability {
    margin-top: 13px;
  }
}
@media (min-width: 601px) and (max-height: 850px) {
  .hero {
    min-height: 540px;
    height: calc(100svh - 180px);
    padding: 20px 0 70px;
  }
  .hero-logo {
    width: 250px;
  }
  .hero-description {
    display: none;
  }
  .hero-tagline {
    font-size: 36px;
  }
  .hero-cta {
    margin-top: 20px;
  }
}
.hero-character {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 8px 0 #17243b12);
  animation: hero-idle 6s ease-in-out infinite;
  --angle: 0deg;
}
.hero-paper {
  width: 145px;
  height: 170px;
  left: max(24px, calc(50% - 405px));
  top: 21%;
  --angle: -14deg;
}
.hero-scissors {
  width: 185px;
  height: 215px;
  right: max(24px, calc(50% - 445px));
  top: 20%;
  --angle: 12deg;
  animation-delay: -2.5s;
}
.hero-rock {
  width: 155px;
  height: 135px;
  left: max(32px, calc(50% - 365px));
  top: 65%;
  --angle: -9deg;
  animation-delay: -1.4s;
}
.hero-plane {
  width: 100px;
  height: 90px;
  right: max(40px, calc(50% - 355px));
  top: 68%;
  --angle: 10deg;
  animation-delay: -3.8s;
}
@keyframes hero-idle {
  0%,
  100% {
    transform: translateY(0) rotate(var(--angle)) scale(1);
  }
  50% {
    transform: translateY(-8px) rotate(calc(var(--angle) + 3deg)) scale(1.025);
  }
}
.boss-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cyan);
  border-block: 3px solid #08a3d0;
}
.boss-section:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 56%;
  width: 1400px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: url("assets/rays.webp") center/contain no-repeat;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.14;
  pointer-events: none;
}
.boss-carousel {
  position: relative;
  margin: 25px auto 0;
  max-width: 760px;
}
.boss-slide {
  display: grid;
  grid-template-rows: 330px 152px;
  gap: 15px;
  text-align: center;
}
.boss-art {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 600px);
  height: 330px;
  justify-self: center;
}
.boss-figure {
  position: relative;
  width: 330px;
  height: 320px;
  max-width: 75%;
  animation: boss-idle 5.5s ease-in-out infinite;
}
#boss-image {
  width: 100%;
  height: 100%;
  filter: drop-shadow(4px 12px 0 #05628222);
}
#boss-addon {
  position: absolute;
  right: -25px;
  top: 29%;
  width: 72px;
  height: 100px;
  animation: float 3.8s ease-in-out infinite;
  --angle: 12deg;
}
.boss-figure.has-addon {
  width: 290px;
  padding-right: 50px;
}
.boss-quote {
  position: absolute;
  right: 12px;
  top: 32px;
  font: 28px var(--display);
  line-height: 1.12;
  color: white;
  paint-order: stroke fill;
  -webkit-text-stroke: 5px #112050;
  max-width: 165px;
  z-index: 1;
  animation: float 6.5s ease-in-out infinite;
  --angle: 9deg;
}
.boss-identity {
  max-width: 580px;
  width: 100%;
  justify-self: center;
}
.boss-identity .eyebrow {
  font-size: 12px;
  margin-bottom: 5px;
}
#boss-name {
  font-size: 62px;
  color: white;
  paint-order: stroke fill;
  -webkit-text-stroke: 6px #132452;
  text-shadow: 0 4px 0 #132452;
}
#boss-description {
  font-size: 16px;
  line-height: 1.5;
  margin: 14px auto 0;
  max-width: 480px;
  min-height: 48px;
}
.boss-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
.boss-control,
.wall-playback {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid #18243760;
  border-radius: 50%;
  background: #ffffff29;
  color: var(--ink);
  transition:
    background 0.2s,
    transform 0.2s;
}
.boss-control:hover,
.wall-playback:hover {
  background: #ffffffb3;
  transform: translateY(-2px);
}
.boss-playback {
  margin-left: 12px;
}
.boss-dots {
  display: flex;
  gap: 2px;
}
.boss-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
}
.boss-dot:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #18243766;
  border-radius: 50%;
  transition:
    transform 0.2s,
    background 0.2s;
}
.boss-dot.is-active:before {
  background: var(--ink);
  transform: scale(1.4);
}
@keyframes boss-idle {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translateY(-9px) rotate(2deg) scale(1.015);
  }
}
.style-layout {
  display: block;
}
.style-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.style-copy .eyebrow {
  margin-bottom: 16px;
}
.style-copy > div > p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
}
.skin-wall {
  position: relative;
  margin: 35px -24px 0;
  padding: 32px 0 5px;
}
.wall-playback {
  position: absolute;
  right: 25px;
  top: -8px;
  z-index: 2;
  background: #fffdf7;
}
.skin-row {
  overflow: hidden;
  overflow: clip;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.skin-row::-webkit-scrollbar {
  display: none;
}
.skin-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.skin-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.skin-person {
  position: relative;
  flex: 0 0 178px;
  width: 178px;
  height: 162px;
  margin: 0;
}
.skin-person img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.skin-person:nth-child(2n) {
  transform: rotate(5deg);
}
.skin-person:nth-child(2n + 1) {
  transform: rotate(-5deg);
}
.wall-face {
  filter: var(--face-color, none);
}
.color-green {
  --face-color: hue-rotate(-85deg);
}
.color-orange {
  --face-color: hue-rotate(-175deg);
}
.color-pink {
  --face-color: hue-rotate(125deg);
}
.color-purple {
  --face-color: hue-rotate(70deg);
}
.color-red {
  --face-color: hue-rotate(170deg);
}
.color-coral {
  --face-color: hue-rotate(150deg);
}
.color-yellow {
  --face-color: hue-rotate(-145deg);
}
.color-sky {
  --face-color: hue-rotate(10deg);
}
.color-mint {
  --face-color: hue-rotate(-55deg);
}
.color-rose {
  --face-color: hue-rotate(140deg);
}
.color-violet {
  --face-color: hue-rotate(50deg);
}
.color-teal {
  --face-color: hue-rotate(-25deg);
}
.color-lime {
  --face-color: hue-rotate(-110deg);
}
.skin-wall.is-ready .skin-track {
  animation: skin-drift 42s linear infinite;
}
.skin-wall.is-ready .skin-row-offset .skin-track {
  animation-duration: 48s;
  animation-delay: -18s;
}
.skin-wall[data-paused="true"] .skin-track,
.skin-wall[data-visible="false"] .skin-track {
  animation-play-state: paused;
}
@keyframes skin-drift {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.boss-carousel[data-paused="true"] .boss-figure,
.boss-carousel[data-paused="true"] .boss-quote,
.boss-carousel[data-paused="true"] #boss-addon {
  animation-play-state: paused;
}
.trailer-section {
  background: #ffffff;
  border-top: 1px solid #17243b14;
}
.trailer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.trailer-heading .eyebrow {
  margin-bottom: 16px;
}
.trailer-heading > p {
  color: var(--muted);
  max-width: 280px;
}
.trailer-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #17243b;
  border-radius: 6px;
}
.trailer-video:focus-visible {
  outline: 3px solid #dd2476;
  outline-offset: 6px;
}
.trailer-fallback {
  margin-top: 14px;
  color: var(--blue);
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .hero-paper {
    width: 125px;
    height: 150px;
    left: max(22px, calc(50% - 350px));
  }
  .hero-scissors {
    width: 155px;
    height: 185px;
    right: max(22px, calc(50% - 380px));
  }
  .hero-rock {
    width: 130px;
    height: 115px;
    left: max(26px, calc(50% - 330px));
  }
  .hero-plane {
    width: 90px;
    height: 80px;
    right: max(30px, calc(50% - 310px));
  }
}
@media (max-width: 800px) {
  .hero-paper {
    width: 95px;
    height: 120px;
    left: 20px;
    top: 19%;
  }
  .hero-scissors {
    width: 116px;
    height: 140px;
    right: 15px;
    top: 28%;
  }
  .hero-rock {
    width: 100px;
    height: 90px;
    left: 25px;
    top: 69%;
  }
  .hero-plane {
    width: 80px;
    height: 75px;
    right: 28px;
    top: 70%;
  }
  .style-copy {
    gap: 30px;
  }
  .skin-person {
    width: 156px;
    height: 143px;
    flex-basis: 156px;
  }
}
@media (max-width: 600px) {
  .hero-paper {
    width: 62px;
    height: 82px;
    left: max(10px, calc(50% - 195px));
    top: 25%;
  }
  .hero-scissors {
    width: 74px;
    height: 94px;
    right: max(8px, calc(50% - 200px));
    top: 29%;
  }
  .hero-rock {
    width: 64px;
    height: 65px;
    left: max(16px, calc(50% - 162px));
    top: auto;
    bottom: 79px;
  }
  .hero-plane {
    width: 61px;
    height: 59px;
    right: max(16px, calc(50% - 158px));
    top: auto;
    bottom: 85px;
  }
  .boss-slide {
    grid-template-rows: 272px 158px;
    gap: 12px;
  }
  .boss-art {
    height: 272px;
  }
  .boss-figure {
    width: 250px;
    height: 245px;
    max-width: 76%;
  }
  .boss-figure.has-addon {
    width: 240px;
    padding-right: 43px;
  }
  #boss-addon {
    width: 55px;
    height: 75px;
    right: -10px;
  }
  .boss-quote {
    font-size: 23px;
    right: 0;
    top: 5px;
    max-width: 128px;
  }
  #boss-name {
    font-size: 52px;
  }
  #boss-description {
    font-size: 14px;
    max-width: 290px;
  }
  .boss-controls {
    gap: 5px;
  }
  .boss-playback {
    margin-left: 7px;
  }
  .boss-dot {
    width: 25px;
  }
  .style-copy {
    display: block;
  }
  .style-copy > div > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 15px;
  }
  .skin-wall {
    margin-inline: -20px;
    padding-top: 28px;
  }
  .skin-person {
    width: 146px;
    height: 140px;
    flex-basis: 146px;
  }
  .skin-group {
    padding-block: 3px;
  }
  .wall-playback {
    right: 20px;
    top: -12px;
  }
}
@media (max-width: 360px) {
  .hero-paper {
    width: 53px;
    height: 70px;
    left: 9px;
  }
  .hero-scissors {
    width: 61px;
    height: 80px;
    right: 8px;
  }
  .hero-rock {
    width: 55px;
    height: 54px;
    left: 17px;
  }
  .hero-plane {
    width: 53px;
    height: 52px;
    right: 18px;
  }
  .boss-control {
    width: 40px;
    height: 40px;
  }
  .boss-dot {
    width: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-character,
  .hero-coin,
  .boss-figure,
  .boss-quote,
  #boss-addon,
  .launch-scissors,
  .launch-paper,
  .about-lineup img,
  .wave-note img {
    animation-name: gentle-idle;
    animation-duration: 10s;
  }
  .skin-wall.is-ready .skin-track,
  .skin-wall.is-ready .skin-row-offset .skin-track {
    animation-duration: 90s;
  }
  .skin-person {
    transform: none;
  }
  .tape-link:hover,
  .boss-control:hover,
  .wall-playback:hover {
    transform: none;
  }
}
@keyframes gentle-idle {
  0%,
  100% {
    transform: translateY(0) rotate(var(--angle, 0deg));
  }
  50% {
    transform: translateY(-2px) rotate(var(--angle, 0deg));
  }
}
@media (max-width: 600px) {
  .trailer-heading {
    display: block;
    margin-bottom: 24px;
  }
  .trailer-heading > p {
    margin-top: 20px;
    max-width: none;
  }
}
