@font-face {
  font-family: "Baloo 2";
  src: url("assets/fonts/Baloo2-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Baloo 2";
  src: url("assets/fonts/Baloo2-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --cream: #fff8e8;
  --cream-deep: #f4e7c7;
  --ink: #321d14;
  --green: #173d2b;
  --green-soft: #2b6345;
  --leaf: #71a83c;
  --honey: #f5ae1d;
  --gold: #ffd24c;
  --white: #fffdf7;
  --line: rgba(50, 29, 20, 0.14);
  --shadow: 0 22px 60px rgba(53, 35, 10, 0.18);
  --page: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body.menu-open,
body:has(.lightbox[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 800;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 99px;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 82px;
  padding: 7px max(24px, calc((100% - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  padding-top: 6px;
  padding-bottom: 6px;
  color: var(--ink);
  background: rgba(255, 248, 232, 0.92);
  box-shadow: 0 7px 35px rgba(53, 35, 10, 0.09);
  backdrop-filter: blur(16px);
}

.studio-mark {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 0;
  text-decoration: none;
}

.studio-mark__logo {
  width: 180px;
  height: auto;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(58, 63, 56, 0.12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 45, 32, 0.12);
  transition: width 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .studio-mark__logo {
  width: 164px;
  box-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):not(.language-link) {
  position: relative;
}

.site-nav a:not(.nav-cta):not(.language-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 18px 8px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid rgba(88, 49, 0, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 0 #b96e06;
}

.language-link {
  min-width: 40px;
  min-height: 34px;
  padding: 6px 10px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease;
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--green);
  background: var(--cream);
}

.site-header.is-scrolled .language-link:hover,
.site-header.is-scrolled .language-link:focus-visible {
  color: var(--cream);
  background: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
}

.menu-button span:not(.sr-only) {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  display: block;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(13, 42, 28, 0.86) 0%, rgba(17, 54, 35, 0.62) 48%, rgba(17, 54, 35, 0.14) 82%), url("assets/images/hero-garden.webp");
  background-position: center 58%;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% -18% -8%;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(18, 57, 37, 0.48));
}

.hero__wash {
  position: absolute;
  z-index: -1;
  top: 14%;
  left: 6%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 194, 36, 0.13);
  filter: blur(60px);
}

.hero__content {
  width: var(--page);
  padding: 96px 0 76px;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow--green {
  color: var(--green-soft);
}

.eyebrow--honey {
  color: var(--gold);
}

.hero__logo {
  width: min(660px, 62vw);
  margin: -25px 0 -38px -26px;
  filter: drop-shadow(0 18px 18px rgba(43, 19, 1, 0.24));
}

.hero__tagline {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(16, 38, 27, 0.35);
}

.hero__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}

.store-badges {
  width: min(470px, 100%);
  display: flex;
  gap: 12px;
}

.store-badge {
  min-height: 66px;
  padding: 10px 16px;
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  background: rgba(255, 248, 232, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 7px 0 rgba(11, 36, 25, 0.52), 0 16px 34px rgba(9, 29, 20, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

a.store-badge:hover,
a.store-badge:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 rgba(11, 36, 25, 0.52), 0 20px 38px rgba(9, 29, 20, 0.3);
}

.store-badge__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-badge__icon--play {
  padding: 3px;
  fill: var(--gold);
  stroke: var(--green);
  stroke-width: 1.6;
}

.store-badge span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.store-badge small {
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-badge strong {
  margin-top: 3px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.22rem;
  line-height: 1;
  white-space: nowrap;
}

.hero__secondary-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.platform-pill {
  padding: 7px 13px 6px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(10, 35, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 28px 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--gold {
  color: var(--ink);
  background: linear-gradient(#ffdc62, #f8ad18);
  border-color: rgba(116, 60, 2, 0.45);
  box-shadow: 0 6px 0 #a96209, 0 15px 35px rgba(53, 30, 3, 0.23);
}

.button--gold:hover,
.button--gold:focus-visible {
  box-shadow: 0 9px 0 #a96209, 0 20px 35px rgba(53, 30, 3, 0.23);
}

.button--dark {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 6px 0 #0b2419;
}

.text-link {
  font-weight: 800;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link--dark {
  color: var(--green);
}

.text-link--dark:hover span {
  transform: translate(3px, -3px);
}

.hero__bee {
  position: absolute;
  z-index: -1;
  right: max(-60px, calc((100vw - 1380px) / 2));
  bottom: -40px;
  width: min(46vw, 690px);
  filter: drop-shadow(0 28px 28px rgba(30, 39, 10, 0.27));
  animation: float 4.5s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span:last-child {
  font-size: 1.35rem;
  animation: bob 1.6s ease-in-out infinite;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 170px) 0;
}

.section-heading {
  max-width: 830px;
}

.section-heading > p:last-child {
  max-width: 720px;
  color: #6b594d;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.feature-row {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px 32px 70px 32px;
  background: rgba(255, 253, 247, 0.63);
}

.feature:nth-child(2) {
  border-radius: 32px 70px 32px 32px;
  transform: translateY(28px);
}

.feature__number {
  width: 54px;
  aspect-ratio: 1;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--gold);
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
  font-size: 0.8rem;
  font-weight: 800;
}

.feature p {
  margin-bottom: 0;
  color: #6b594d;
}

.section--green {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  color: var(--white);
  background: var(--green);
}

.section--green::before,
.section--green::after {
  content: "";
  position: absolute;
  opacity: 0.08;
  background-image: url("assets/images/favicon.png");
  background-size: 92px;
}

.section--green::before {
  top: 0;
  right: 0;
  width: 36%;
  height: 46%;
}

.section--green::after {
  bottom: 0;
  left: 0;
  width: 24%;
  height: 35%;
}

.gameplay__copy {
  position: relative;
  z-index: 1;
}

.steps {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 21px 0 21px 56px;
  color: rgba(255, 255, 255, 0.73);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  counter-increment: steps;
}

.steps li::before {
  content: "0" counter(steps);
  position: absolute;
  top: 23px;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps span {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.gameplay__visual {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(395px, 70vw);
  padding: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 38px;
  background: #27170f;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.phone img {
  width: 100%;
  border-radius: 29px;
}

.phone--main {
  transform: rotate(3deg);
}

.gameplay__collector {
  position: absolute;
  right: -12%;
  bottom: 0;
  width: 44%;
  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.26));
}

.gallery {
  padding-bottom: clamp(120px, 14vw, 190px);
}

.gallery__heading {
  margin-bottom: 70px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.gallery__heading h2 {
  margin-bottom: 0;
}

.gallery__heading > p {
  max-width: 240px;
  color: #7a6558;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.shot {
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(64, 39, 16, 0.13);
  cursor: zoom-in;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.shot:hover,
.shot:focus-visible {
  z-index: 2;
  transform: translateY(-9px) rotate(-1deg);
  box-shadow: 0 28px 55px rgba(64, 39, 16, 0.2);
}

.shot img {
  width: 100%;
  aspect-ratio: 390 / 689;
  object-fit: cover;
}

.shot span {
  padding: 16px 19px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.shot b {
  color: var(--green-soft);
  font-size: 0.75rem;
}

.shot--raised {
  transform: translateY(-28px);
}

.shot--raised:hover,
.shot--raised:focus-visible {
  transform: translateY(-37px) rotate(1deg);
}

.wishlist {
  position: relative;
  min-height: 690px;
  padding: 90px max(24px, calc((100% - 760px) / 2));
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 0, #ffe578 0, transparent 45%), linear-gradient(135deg, #ffc735, #efa013);
}

.wishlist::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("assets/images/favicon.png");
  background-size: 96px;
}

.wishlist__content {
  position: relative;
  z-index: 2;
}

.wishlist h2 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.wishlist__content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 auto 28px;
  font-size: 1.2rem;
}

.wishlist .store-badges--centered {
  margin: 0 auto 18px;
  justify-content: center;
}

.wishlist .store-badge {
  color: var(--cream);
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 7px 0 #0b2419, 0 15px 30px rgba(93, 50, 2, 0.2);
}

.wishlist .store-badge__icon {
  stroke: var(--gold);
}

.wishlist .store-badge__icon--play {
  fill: var(--gold);
}

.wishlist .platform-note {
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 800;
}

.wishlist .platform-note span {
  margin-right: 5px;
  font-weight: 600;
}

.wishlist__bee {
  position: absolute;
  z-index: 1;
  bottom: -17%;
  width: min(36vw, 460px);
  filter: drop-shadow(0 20px 16px rgba(93, 50, 2, 0.2));
}

.wishlist__bee--guard {
  left: -1.5%;
  transform: rotate(8deg);
}

.wishlist__bee--nurse {
  right: -1.5%;
  transform: rotate(-8deg);
}

.studio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}

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

.studio__art::before {
  content: "";
  position: absolute;
  inset: 8% 0 0;
  background: #dfeec2;
  border-radius: 48% 52% 50% 50% / 58% 42% 58% 42%;
}

.studio__art img {
  position: absolute;
  z-index: 1;
  width: 68%;
  filter: drop-shadow(0 16px 13px rgba(38, 52, 17, 0.18));
}

.studio__art img:first-child {
  right: -1%;
  bottom: 9%;
}

.studio__art img:last-child {
  bottom: 0;
  left: -6%;
}

.studio__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 32px;
  color: #6b594d;
  font-size: 1.18rem;
}

.site-footer {
  padding: 34px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.7);
  background: #102d20;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.studio-mark--footer {
  color: var(--white);
}

.studio-mark--footer .studio-mark__logo {
  width: 170px;
  box-shadow: none;
}

.lightbox {
  width: min(540px, calc(100% - 28px));
  max-height: calc(100svh - 36px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(7, 23, 16, 0.88);
  backdrop-filter: blur(9px);
}

.lightbox img {
  max-height: calc(100svh - 36px);
  margin: auto;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(16, 45, 32, 0.75);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 32px, 680px);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    padding: 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    color: var(--ink);
    background: rgba(255, 248, 232, 0.98);
    border-radius: 26px;
    box-shadow: var(--shadow);
    transform: translateY(-15px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    padding: 10px;
    text-align: center;
  }

  .site-nav .language-link {
    width: 58px;
    min-height: 38px;
    margin: 2px auto 0;
  }

  .hero {
    min-height: 700px;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(14, 45, 29, 0.55) 0%, rgba(14, 45, 29, 0.3) 45%, rgba(14, 45, 29, 0.82) 100%), url("assets/images/hero-garden.webp");
    background-position: center;
  }

  .hero__content {
    align-self: end;
    padding-bottom: 100px;
  }

  .hero__logo {
    width: min(620px, 100%);
    margin: -24px auto -16px;
  }

  .hero__actions {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .hero__secondary-actions {
    justify-content: center;
  }

  .hero__bee {
    top: 6%;
    right: -9%;
    bottom: auto;
    width: min(42vw, 310px);
    opacity: 0.96;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(2) {
    min-height: 0;
    transform: none;
  }

  .section--green,
  .studio {
    grid-template-columns: 1fr;
  }

  .section--green {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .gameplay__visual {
    min-height: 690px;
  }

  .gallery-grid {
    padding: 30px 4px 22px;
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(245px, 66vw));
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .shot,
  .shot--raised {
    transform: none;
    scroll-snap-align: center;
  }

  .wishlist__bee {
    width: 270px;
    opacity: 0.44;
  }

  .wishlist__bee--guard {
    left: -56px;
  }

  .wishlist__bee--nurse {
    right: -56px;
  }

  .studio__art {
    min-height: min(76vw, 520px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .studio-mark {
    max-width: 148px;
  }

  .studio-mark__logo,
  .site-header.is-scrolled .studio-mark__logo {
    width: 148px;
  }

  .hero {
    min-height: 790px;
  }

  .hero__content {
    padding-bottom: 90px;
  }

  .hero__bee {
    top: 8%;
    right: 3%;
    width: 60vw;
  }

  .hero__tagline br {
    display: none;
  }

  .hero__tagline {
    font-size: 1.35rem;
    line-height: 1.22;
  }

  .hero__actions {
    gap: 14px;
  }

  .store-badges {
    gap: 9px;
  }

  .store-badge {
    min-width: 0;
    min-height: 62px;
    padding: 9px 11px;
    gap: 8px;
    border-radius: 15px;
  }

  .store-badge__icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .store-badge small {
    font-size: 0.57rem;
  }

  .store-badge strong {
    font-size: 1rem;
  }

  .hero__secondary-actions {
    gap: 14px;
  }

  .platform-pill {
    font-size: 0.72rem;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .feature-row {
    margin-top: 50px;
  }

  .gameplay__visual {
    min-height: 590px;
  }

  .phone {
    width: min(330px, 84vw);
  }

  .gameplay__collector {
    right: -8%;
    width: 48%;
  }

  .gallery__heading {
    margin-bottom: 20px;
    display: block;
  }

  .wishlist {
    min-height: 730px;
  }
}

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

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

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