:root {
  --paper: #fbf7ef;
  --paper-deep: #f2e8dc;
  --ink: #4d3428;
  --ink-soft: #7e665b;
  --orange: #ff9918;
  --orange-deep: #e97708;
  --coral: #d86382;
  --blue: #6e71dc;
  --teal: #51aabd;
  --green: #78c86e;
  --white: #fffdf8;
  --line: rgba(126, 86, 50, 0.13);
  --display: "STKaiti", "KaiTi", "Kaiti SC", serif;
  --body: "Songti SC", "STSong", "Noto Serif SC", ui-serif, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper);
  background-size: 84px 84px;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px 13px 17px 13px;
  background: var(--orange);
  color: white;
  font: 900 25px/1 Georgia, serif;
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font: 900 14px/1 var(--sans);
  letter-spacing: 0.13em;
}

.brand small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.2em;
}

nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

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

nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.hero {
  min-height: 730px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
  padding: 46px 0 88px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  animation: rise-in 700ms 80ms both cubic-bezier(0.22, 0.8, 0.22, 1);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(55px, 6.1vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.065em;
  font-weight: 900;
}

h1 em {
  position: relative;
  z-index: 0;
  color: var(--orange-deep);
  font-style: normal;
}

h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 7px;
  left: -8px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 188, 70, 0.36);
  transform: rotate(-1deg);
}

.hero-intro {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}

.button {
  min-height: 55px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button span {
  font-size: 20px;
}

.platform-note {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.quick-facts {
  margin: 44px 0 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.quick-facts li {
  min-width: 122px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(77, 52, 40, 0.22);
}

.quick-facts li:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font: 900 29px/1 var(--sans);
}

.quick-facts span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero-visual {
  min-height: 630px;
  position: relative;
  display: grid;
  place-items: center;
  animation: rise-in 760ms 180ms both cubic-bezier(0.22, 0.8, 0.22, 1);
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: #f7d8bd;
  box-shadow: inset 0 0 0 1px rgba(117, 72, 45, 0.09);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 45px;
  bottom: 22px;
  border-radius: 50%;
  background: rgba(69, 43, 29, 0.18);
  filter: blur(18px);
}

.phone {
  position: relative;
  padding: 9px;
  border: 3px solid var(--ink);
  border-radius: 38px;
  background: #28231f;
  box-shadow: 18px 22px 0 rgba(77, 52, 40, 0.16), 0 28px 60px rgba(68, 43, 30, 0.2);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: rgba(36, 30, 27, 0.72);
  transform: translateX(-50%);
}

.phone-hero {
  z-index: 2;
  width: 286px;
  height: 604px;
  transform: rotate(4deg);
}

.rule-sticker {
  position: absolute;
  z-index: 4;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
}

.rule-sticker-left {
  top: 115px;
  left: -35px;
  transform: rotate(-7deg);
}

.rule-sticker-right {
  right: -20px;
  bottom: 122px;
  transform: rotate(6deg);
}

.sticker-grid {
  width: 27px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.sticker-grid i {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--coral);
}

.sticker-grid i:nth-child(2),
.sticker-grid i:nth-child(3) {
  background: var(--blue);
}

.mini-paws {
  color: var(--green);
  font-size: 10px;
  letter-spacing: -0.1em;
}

.floating-pet {
  position: absolute;
  z-index: 5;
  width: 92px;
  height: 92px;
  border: 7px solid white;
  border-radius: 50%;
  background: white;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(72, 44, 27, 0.18));
}

.floating-cat {
  top: 37px;
  right: 18px;
  transform: rotate(7deg);
}

.floating-dog {
  bottom: 28px;
  left: 30px;
  transform: rotate(-9deg);
}

.story-band {
  min-height: 102px;
  padding: 24px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 12px 0 rgba(255, 153, 24, 0.32);
}

.story-band p {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0.05em;
}

.story-band span {
  color: var(--orange);
  font-size: 28px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.rules {
  padding: 150px 0 130px;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 55px;
}

.section-heading h2,
.pets-copy h2,
.closing-copy p {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child,
.pets-copy > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.9;
}

.rule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rule-card {
  min-height: 420px;
  padding: 28px;
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 28px 28px 45px 28px;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.rule-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 11px 15px 0 var(--ink);
}

.rule-card-coral {
  background: #f6c2ce;
}

.rule-card-blue {
  background: #c9ccff;
  transform: translateY(20px);
}

.rule-card-green {
  background: #c7e9bd;
}

.rule-number {
  position: absolute;
  top: 25px;
  right: 25px;
  font: 900 14px/1 var(--sans);
  letter-spacing: 0.08em;
}

.demo-board {
  width: 160px;
  margin: 13px auto 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  transform: rotate(-3deg);
}

.demo-board span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(77, 52, 40, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.demo-board .pet-dot {
  border-color: var(--ink);
  background: var(--orange);
  color: var(--ink);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.7);
}

.demo-color span:nth-child(1),
.demo-color span:nth-child(4),
.demo-color span:nth-child(7) {
  background: rgba(216, 99, 130, 0.68);
}

.demo-lines span:nth-child(2),
.demo-lines span:nth-child(8) {
  background: rgba(81, 170, 189, 0.58);
}

.demo-distance span:not(.pet-dot) {
  background: rgba(120, 200, 110, 0.5);
}

.rule-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.25;
}

.rule-card p {
  margin: 0;
  color: rgba(77, 52, 40, 0.78);
  font-family: var(--body);
  line-height: 1.75;
}

.pets {
  padding: 100px 0 140px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.pet-collage {
  min-height: 480px;
  position: relative;
}

.pet-collage::before {
  content: "";
  position: absolute;
  inset: 40px 35px 25px;
  border-radius: 48% 52% 44% 56%;
  background: #f7d6b9;
  transform: rotate(-5deg);
}

.pet-card {
  width: 280px;
  height: 340px;
  padding: 18px;
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 9px 0 var(--ink);
  overflow: hidden;
}

.pet-card span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.pet-card img {
  width: 100%;
  flex: 1;
  object-fit: contain;
  object-position: center bottom;
}

.pet-card-cat {
  z-index: 2;
  top: 8px;
  left: 18px;
  background: #f0c0d0;
  transform: rotate(-7deg);
}

.pet-card-dog {
  z-index: 3;
  right: 7px;
  bottom: 0;
  background: #bfc5ff;
  transform: rotate(8deg);
}

.paw-stamp {
  width: 104px;
  height: 104px;
  position: absolute;
  z-index: 5;
  right: 25px;
  top: 6px;
  display: grid;
  place-content: center;
  border: 4px double var(--orange-deep);
  border-radius: 50%;
  color: var(--orange-deep);
  background: var(--paper);
  font: 900 28px/0.8 var(--sans);
  text-align: center;
  transform: rotate(10deg);
}

.paw-stamp small {
  font-size: 11px;
  letter-spacing: 0.15em;
}

.pets-copy {
  padding-left: 15px;
}

.pet-tags {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pet-tags span {
  padding: 9px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.screens {
  width: 100%;
  max-width: none;
  padding: 115px max(24px, calc((100vw - 1180px) / 2)) 130px;
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.screens::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 84px 84px;
}

.section-heading-light {
  position: relative;
  z-index: 2;
}

.section-heading-light > p:last-child {
  color: rgba(251, 247, 239, 0.72);
}

.screen-stage {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
}

.phone-start,
.phone-game {
  width: 300px;
  height: 633px;
  border-color: #17110e;
}

.phone-start {
  transform: rotate(-6deg) translateY(25px);
}

.phone-game {
  transform: rotate(5deg) translateY(-30px);
}

.screen-note {
  width: 145px;
  padding: 16px;
  position: absolute;
  z-index: 4;
  border: 1.5px solid var(--paper);
  background: var(--orange);
  color: white;
  font: 800 14px/1.55 var(--sans);
  box-shadow: 6px 6px 0 var(--paper);
}

.screen-note span {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.screen-note-one {
  top: 83px;
  left: 2%;
  transform: rotate(-5deg);
}

.screen-note-two {
  right: 2%;
  bottom: 95px;
  background: var(--blue);
  transform: rotate(6deg);
}

.closing {
  min-height: 650px;
  padding: 105px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.closing-board {
  max-width: 500px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  border: 2px solid var(--ink);
  border-radius: 31px;
  background: white;
  box-shadow: 9px 10px 0 var(--ink);
  transform: rotate(-4deg);
}

.closing-board i {
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--coral);
}

.closing-board i:nth-child(4n + 1),
.closing-board i:nth-child(4n + 2) {
  background: var(--blue);
}

.closing-board i:nth-child(5n) {
  background: var(--teal);
}

.closing-board i:nth-child(7n),
.closing-board i:nth-child(8n) {
  background: var(--green);
}

.closing-board i:nth-child(11n) {
  background: var(--orange);
}

.closing-copy {
  text-align: center;
}

.closing-copy img {
  width: 260px;
  margin: 0 auto -45px;
}

.closing-copy p {
  margin-bottom: 28px;
}

footer {
  min-height: 170px;
  padding: 44px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(77, 52, 40, 0.19);
  background: rgba(255, 253, 248, 0.68);
}

footer strong {
  font-size: 15px;
}

footer p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rule-card-blue.reveal {
  transform: translateY(44px);
}

.rule-card-blue.reveal.is-visible {
  transform: translateY(20px);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 65px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .rule-cards {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .rule-card {
    min-height: 315px;
  }

  .rule-card-blue {
    transform: none;
  }

  .rule-card-blue.reveal,
  .rule-card-blue.reveal.is-visible {
    transform: translateY(0);
  }

  .demo-board {
    width: 130px;
    float: left;
    margin: 5px 28px 18px 0;
  }

  .rule-card h3 {
    padding-top: 55px;
  }

  .pets {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pet-collage {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .pets-copy {
    max-width: 680px;
    padding: 0;
  }

  .screen-note {
    display: none;
  }

  .screen-stage {
    gap: 35px;
  }
}

@media (max-width: 700px) {
  body {
    background-size: 58px 58px;
  }

  .site-header,
  .hero,
  .section {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 72px;
  }

  .header-cta {
    padding: 8px 11px;
    font-size: 11px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
    font-size: 21px;
  }

  .hero {
    min-height: 0;
    padding: 55px 0 75px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 12.5vw, 56px);
    letter-spacing: -0.075em;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .quick-facts {
    gap: 0;
  }

  .quick-facts li {
    min-width: 0;
    flex: 1;
    padding-right: 12px;
    margin-right: 12px;
  }

  .quick-facts strong {
    font-size: 24px;
  }

  .quick-facts span {
    font-size: 9px;
    letter-spacing: 0;
  }

  .hero-visual {
    min-height: 590px;
    margin-top: 20px;
  }

  .hero-visual::before {
    width: 340px;
    height: 340px;
  }

  .phone-hero {
    width: 250px;
    height: 528px;
  }

  .rule-sticker {
    font-size: 11px;
  }

  .rule-sticker-left {
    top: 85px;
    left: -3px;
  }

  .rule-sticker-right {
    right: -3px;
    bottom: 85px;
  }

  .floating-cat {
    top: 0;
    right: 4px;
  }

  .floating-dog {
    bottom: 0;
    left: 7px;
  }

  .floating-pet {
    width: 72px;
    height: 72px;
    border-width: 5px;
  }

  .story-band {
    min-height: 92px;
    gap: 16px;
    text-align: center;
  }

  .story-band p {
    font-size: 13px;
  }

  .rules {
    padding: 110px 0 80px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .pets-copy h2,
  .closing-copy p {
    font-size: clamp(37px, 12vw, 52px);
  }

  .section-heading > p:last-child,
  .pets-copy > p {
    font-size: 15px;
  }

  .rule-card {
    min-height: 400px;
  }

  .demo-board {
    width: 145px;
    float: none;
    margin: 10px auto 28px;
  }

  .rule-card h3 {
    padding: 0;
  }

  .pets {
    padding: 70px 0 100px;
  }

  .pet-collage {
    min-height: 385px;
  }

  .pet-card {
    width: 205px;
    height: 275px;
  }

  .pet-card-cat {
    left: 2px;
  }

  .pet-card-dog {
    right: 2px;
  }

  .paw-stamp {
    width: 80px;
    height: 80px;
    right: 5px;
    font-size: 22px;
  }

  .screens {
    width: 100%;
    padding: 90px 16px 105px;
  }

  .screen-stage {
    min-height: 620px;
    gap: 0;
  }

  .phone-start,
  .phone-game {
    width: 216px;
    height: 456px;
    position: absolute;
  }

  .phone-start {
    left: 3%;
    transform: rotate(-7deg) translateY(45px);
  }

  .phone-game {
    right: 3%;
    transform: rotate(7deg) translateY(-45px);
  }

  .closing {
    min-height: 670px;
    padding: 90px 0;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .closing-copy img {
    width: 210px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .pet-card {
    width: 188px;
  }

  .phone-start,
  .phone-game {
    width: 195px;
    height: 412px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
