@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap");
:root {
  --ink: #543521;
  --yellow: #ffe36a;
  --cream: #fff9e9;
  --orange: #f47b3b;
  --blue: #b8dce9;
  --page: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #9a401a;
  outline-offset: 6px;
}
header {
  height: 104px;
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 10;
}
header nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 800;
}
.brand {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}
.brand span {
  display: block;
  font:
    600 10px "Outfit",
    sans-serif;
  letter-spacing: 5px;
  margin: 9px 0 0 5px;
}
.motion-control {
  border: 1px solid #54352140;
  border-radius: 30px;
  background: transparent;
  padding: 10px 14px;
  font-size: 12px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 10px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
  background: white;
  padding: 16px;
}
.hero {
  min-height: 800px;
  height: 100svh;
  max-height: 1100px;
  background: var(--yellow);
  position: relative;
  padding: 154px 8vw 110px;
  overflow: hidden;
}
.hero-label {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 48%;
}
.eyebrow {
  font:
    600 12px "Outfit",
    sans-serif;
  letter-spacing: 3px;
  margin: 0 0 22px;
}
h1 {
  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.4;
  margin: 0;
}
h1 span {
  color: #be501f;
}
.intro {
  font-size: 15px;
  line-height: 2.1;
  margin: 27px 0;
}
.pill {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 19px 27px;
  font-size: 14px;
  font-weight: 800;
  border: 0;
  transition: transform 0.2s;
}
.pill:hover {
  transform: translateY(-4px);
}
.dark {
  background: var(--ink);
  color: var(--cream);
}
.hero-cat {
  position: absolute;
  right: 3%;
  top: 20%;
  width: 53%;
  height: 65%;
  background: none;
  border: 0;
  transform: rotate(-5deg);
  transition: transform 0.5s;
}
.hero-cat:hover {
  transform: rotate(1deg) translateY(-10px);
}
.hero-cat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 30px 15px #a86b2520);
}
.speech {
  position: absolute;
  top: 7%;
  right: 10%;
  background: var(--cream);
  padding: 16px 24px;
  border-radius: 50%;
  transform: rotate(10deg);
  font-weight: 800;
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 5%;
  right: 5%;
  border-top: 1px solid #54352135;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font:
    500 11px "Outfit",
    sans-serif;
  letter-spacing: 1.5px;
}
.section {
  padding: 130px 8vw;
}
.about {
  text-align: center;
  max-width: 1100px;
  margin: auto;
}
.about h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.6;
  font-weight: 900;
  margin: 20px 0 40px;
}
.about p:not(.eyebrow) {
  font-size: 16px;
  line-height: 2.3;
}
.statement {
  font-weight: 800;
  margin-top: 35px;
}
.motion-off *,
.motion-off *:before,
.motion-off *:after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
@media (max-width: 700px) {
  header {
    height: 82px;
    padding: 0 6vw;
  }
  header nav {
    gap: 16px;
    font-size: 12px;
  }
  header nav a:first-child {
    display: none;
  }
  .brand {
    font-size: 26px;
  }
  .motion-control {
    font-size: 11px;
    padding: 8px;
  }
  .hero {
    height: auto;
    min-height: 950px;
    padding: 115px 7vw 80px;
  }
  .hero-label {
    font-size: 11px;
    margin-bottom: 30px;
  }
  .hero-copy {
    width: 100%;
  }
  h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .intro {
    font-size: 14px;
  }
  .hero-cat {
    width: 80%;
    height: 350px;
    top: auto;
    bottom: 75px;
    right: 0;
  }
  .speech {
    top: 0;
    right: 6%;
    font-size: 14px;
  }
  .hero-bottom {
    font-size: 10px;
    gap: 20px;
  }
  .hero-bottom span:last-child {
    display: none;
  }
  .section {
    padding: 85px 7vw;
  }
  .about p:not(.eyebrow) {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.hero-cat img {
  image-rendering: auto;
}
.hero-cat {
  top: 17%;
  right: -3%;
  width: 60%;
  height: 76%;
}
.hero-copy {
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero-cat .speech {
  right: 18%;
  top: 10%;
}
.hero:after {
  content: "POMURI";
  font:
    800 clamp(100px, 20vw, 340px) "Outfit",
    sans-serif;
  position: absolute;
  bottom: 30px;
  left: 1vw;
  letter-spacing: -12px;
  color: #fff6bb65;
  pointer-events: none;
  z-index: 0;
}
.hero-copy,
.hero-cat,
.hero-bottom {
  z-index: 1;
}
.hero-cat {
  animation: breathe 5s ease-in-out infinite;
}
.hero-label {
  position: relative;
  z-index: 2;
}
.about {
  position: relative;
}
.about:before {
  content: "01";
  font: 600 14px "Outfit";
  position: absolute;
  left: 5%;
  top: 140px;
  border: 1px solid #54352160;
  border-radius: 100%;
  padding: 15px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin: 0 auto 50px;
  max-width: 1280px;
}
.section-heading h2,
.life h2,
.overflow-copy h2,
.goodnight h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -1.5px;
  margin: 0;
}
.section-heading p:not(.eyebrow) {
  font-size: 15px;
  line-height: 2;
}
.house-section {
  background: #f7d878;
  padding: 100px 5vw 45px;
  overflow: hidden;
}
.house-stage {
  max-width: 1350px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 70px #86502120;
}
.house-image {
  width: 100%;
  height: auto;
  display: block;
}
.hide-cat {
  position: absolute;
  padding: 0;
  border: 0;
  background: none;
  width: 9%;
  min-width: 44px;
  transition: transform 0.3s;
  aspect-ratio: 1.25;
}
.hide-cat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 1px #4b351655);
}
.hide-cat:hover,
.hide-cat.hinted {
  transform: translateY(-10px) scale(1.2);
}
.hide-cat.hinted {
  filter: drop-shadow(0 0 7px #fff);
  animation: peek 1s ease-in-out infinite;
}
.hide-cat.found {
  opacity: 0.5;
  pointer-events: none;
}
.hide-cat.found:after {
  content: "✓";
  background: var(--ink);
  color: white;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  font: 700 14px "Outfit";
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.spot-1 {
  left: 16%;
  top: 77%;
}
.spot-2 {
  left: 43%;
  top: 69%;
}
.spot-3 {
  left: 73%;
  top: 49%;
}
.spot-4 {
  left: 77%;
  top: 74%;
}
.spot-5 {
  left: 39%;
  top: 16%;
}
.find-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--cream);
  border-radius: 30px;
  padding: 13px 20px;
  font: 600 20px "Outfit";
  box-shadow: 0 5px 20px #75431e20;
}
.find-counter > span:last-child {
  font: 700 12px "M PLUS Rounded 1c";
  margin-left: 14px;
}
.house-result {
  max-width: 1280px;
  margin: 25px auto 0;
  display: flex;
  gap: 25px;
  align-items: center;
  min-height: 50px;
}
.house-result p {
  flex: 1;
  font-size: 15px;
}
.text-button {
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
  font-size: 13px;
  display: inline-block;
}
.find-label {
  font-weight: 800;
}
.family {
  background: #fff9e9;
}
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: auto;
}
.story-cards article {
  border-radius: 16px;
  padding: 34px 28px 0;
  overflow: hidden;
  position: relative;
  background: #f7e3b7;
}
.story-cards article:nth-child(2) {
  background: #dceaf0;
}
.story-cards article:nth-child(3) {
  background: #f5d5bb;
}
.story-number {
  font: 600 11px "Outfit";
  letter-spacing: 2px;
}
.story-cards h3 {
  font-size: 26px;
  line-height: 1.55;
  margin: 26px 0 20px;
}
.story-cards p {
  font-size: 14px;
  line-height: 2;
}
.story-cards img {
  width: 95%;
  height: auto;
  margin: 0 auto -8px;
  display: block;
}
.life {
  background: #d4e8ee;
}
.life-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  margin-top: 50px;
}
.life-feature {
  background: var(--cream);
  border-radius: 22px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.status,
.tag {
  font-size: 11px;
  border: 1px solid #54352155;
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}
.life-feature h3 {
  font-size: 32px;
  margin: 24px 0 16px;
}
.life-feature p,
.life-list p {
  font-size: 14px;
  line-height: 2;
}
.life-feature img {
  width: 65%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.coming {
  font: 600 11px "Outfit";
  letter-spacing: 2px;
}
.life-list article {
  display: flex;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #54352130;
  align-items: flex-start;
}
.life-list article > span:first-child {
  font: 500 12px "Outfit";
  padding-top: 8px;
}
.life-list article > div {
  flex: 1;
}
.life-list h3 {
  font-size: 22px;
  margin: 0;
}
.life-list p {
  margin-bottom: 0;
}
.overflow-section {
  height: 200vh;
  background: var(--yellow);
  position: relative;
}
.overflow-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.overflow-copy {
  text-align: center;
  position: absolute;
  inset: 12% 0 auto;
  z-index: 2;
  pointer-events: none;
}
.overflow-copy button {
  pointer-events: auto;
}
.overflow-copy p {
  font-size: 15px;
  line-height: 2;
}
.overflow-count {
  font: 500 11px "Outfit" !important;
  letter-spacing: 2px;
}
.overflow-count span {
  font-size: 20px;
}
.overflow-sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.goodnight {
  text-align: center;
  background: var(--cream);
}
.goodnight img {
  width: 280px;
  height: auto;
  margin-bottom: 25px;
}
.goodnight h2 {
  font-size: 36px;
  margin: 22px 0 30px;
}
footer {
  padding: 35px 5vw;
  display: flex;
  gap: 30px;
  align-items: center;
  border-top: 1px solid #54352130;
}
footer p {
  font-size: 12px;
  flex: 1;
}
footer > span {
  font: 400 11px "Outfit";
}
@keyframes breathe {
  50% {
    transform: rotate(-2deg) translateY(-12px);
  }
}
@keyframes peek {
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 900px) {
  .life-grid {
    gap: 30px;
  }
  .story-cards {
    gap: 12px;
  }
  .story-cards article {
    padding: 24px 18px 0;
  }
  .story-cards h3 {
    font-size: 23px;
  }
}
@media (max-width: 700px) {
  .hero-cat {
    height: 375px;
    width: 100%;
    right: -10%;
    top: auto;
    bottom: 65px;
  }
  .hero:after {
    font-size: 27vw;
    bottom: 70px;
    letter-spacing: -5px;
  }
  .hero-cat .speech {
    right: 15%;
    top: 6%;
  }
  .hero-label {
    font-size: 11px;
  }
  .about:before {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p,
  .section-heading > div + div {
    margin-top: 25px;
  }
  .house-section {
    padding: 65px 5vw 30px;
  }
  .house-stage {
    border-radius: 12px;
    margin: 0 -3vw;
  }
  .house-result {
    gap: 15px;
    flex-wrap: wrap;
  }
  .house-result p {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  .find-counter {
    right: 8px;
    bottom: 8px;
    padding: 8px 11px;
    font-size: 16px;
  }
  .find-counter > span:last-child {
    font-size: 10px;
    margin-left: 5px;
  }
  .hide-cat {
    width: 12%;
  }
  .story-cards {
    grid-template-columns: 1fr;
  }
  .story-cards article {
    padding: 28px;
    min-height: 300px;
  }
  .story-cards h3,
  .story-cards p {
    position: relative;
    z-index: 1;
    max-width: 66%;
  }
  .story-cards img {
    position: absolute;
    right: -24px;
    bottom: -5px;
    width: 52%;
    opacity: 0.95;
  }
  .story-cards h3 {
    font-size: 26px;
  }
  .story-cards p {
    font-size: 13px;
  }
  .life-grid {
    grid-template-columns: 1fr;
  }
  .life-feature {
    padding: 28px;
  }
  .life-feature img {
    width: 60%;
    max-width: 240px;
  }
  .life-list h3 {
    font-size: 20px;
  }
  .life-list article {
    gap: 12px;
  }
  .life-list .tag {
    padding: 4px 7px;
    font-size: 10px;
  }
  .overflow-copy {
    top: 14%;
    padding: 0 5vw;
  }
  .overflow-copy h2 {
    font-size: 30px;
  }
  .goodnight h2 {
    font-size: 28px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer p {
    font-size: 11px;
  }
  footer > span {
    flex-basis: 100%;
    text-align: right;
  }
}

[hidden] {
  display: none !important;
}
html:has(body.motion-off) {
  scroll-behavior: auto;
}

@media (max-width: 700px) {
  .hero-cat .speech {
    font-size: 12px;
    padding: 10px 12px;
    right: 12%;
    top: 4%;
  }
}

/* The iPhone game now has its own home within Pomuri. */
.nekozume-title { display:flex; align-items:center; gap:20px; margin:30px 0 20px; }
.nekozume-title img { width:76px; height:76px; margin:0; border-radius:20px; }
.nekozume-title .eyebrow { margin:0 0 5px; font-size:10px; }
.nekozume-title h3 { margin:0; }
.nekozume-feature .pill { margin-top:20px; }
.nekozume-feature .nekozume-note { font-size:12px; margin-top:25px; color:#715d4c; }

/* A dedicated, above-the-fold-neighbour feature for the first Pomuri game. */
.neko-home{background:#ffe36a;display:grid;grid-template-columns:1fr 1.2fr;position:relative;margin:42px 4vw 0;border-radius:35px;padding:60px 4vw 75px;overflow:hidden;gap:20px;scroll-margin-top:25px}.neko-home-copy{position:relative;z-index:1}.neko-home h2{font-size:clamp(42px,5vw,68px);line-height:1.3;letter-spacing:-.06em;margin:0 0 22px}.neko-home-title{display:flex;gap:12px;align-items:center;margin-bottom:18px}.neko-home-title img{width:48px;height:48px;border-radius:13px}.neko-home-title h3{font-size:24px;margin:0}.neko-home-title>span{font-size:9px;border:1px solid #54352150;border-radius:20px;padding:5px 9px}.neko-home-copy>p:not(.eyebrow){font-size:13px;line-height:2}.neko-home .pill{margin-top:12px}.neko-home-art{display:flex;align-items:center;position:relative;transition:transform .3s}.neko-home-art:hover{transform:rotate(2deg)}.neko-home-art>img{width:125%;max-width:none;margin-left:-12%;mix-blend-mode:multiply}.neko-home-art>span{position:absolute;top:0;left:25%;font-size:18px;transform:rotate(-8deg);font-weight:800;border-bottom:2px dashed #54352150;padding-bottom:10px}.neko-home-bottom{position:absolute;bottom:25px;left:4vw;right:4vw;display:flex;justify-content:space-between;font-size:10px;border-top:1px solid #54352130;padding-top:17px}.nekozume-feature .nekozume-life-art{width:100%;max-width:none;margin:0 0 25px;border-radius:18px}.nekozume-feature{overflow:hidden}
@media(max-width:700px){.neko-home{grid-template-columns:1fr;margin:20px 4vw 0;padding:32px 24px 68px;border-radius:25px;gap:14px}.neko-home h2{font-size:46px}.neko-home-title h3{font-size:23px}.neko-home-copy>p:not(.eyebrow){font-size:11px}.neko-home-art{aspect-ratio:1.6}.neko-home-art>span{font-size:13px;left:5%}.neko-home-bottom{font-size:8px;gap:10px;left:24px;right:24px}.neko-home .eyebrow{font-size:9px}.nekozume-feature .nekozume-life-art{width:100%;max-width:none}}
.neko-home-art>img{mix-blend-mode:normal;mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent),linear-gradient(to bottom,transparent,#000 8%,#000 92%,transparent);mask-composite:intersect}
.neko-home-art>img,.nekozume-feature .nekozume-life-art{height:auto}
.neko-home>*{min-width:0}.neko-home-art{width:100%}.neko-home-art>img{flex-shrink:0}
@media(max-width:700px){.neko-home-art{aspect-ratio:auto;padding:18px 0}.neko-home-art>img{width:116%;margin-left:-8%}}

/* Keep the progress badge clear of the laundry-room cat on narrow screens. */
@media(max-width:600px){.house-stage{overflow:visible;margin-bottom:60px}.house-image{border-radius:inherit}.find-counter{top:calc(100% + 12px);left:50%;right:auto;bottom:auto;transform:translateX(-50%);width:max-content;max-width:100%}}

/* Voice-led picture-book short */
.film-section{display:grid;grid-template-columns:1fr minmax(260px,370px);gap:clamp(32px,7vw,110px);align-items:center;max-width:1200px;margin:30px auto 90px;padding:65px 50px;background:#f7edcf;border-radius:60px;scroll-margin-top:24px}
.film-copy h2{font-size:clamp(34px,4vw,58px);line-height:1.5;margin:18px 0 26px}.film-copy>p:not(.eyebrow){font-size:18px;line-height:2.1}.film-note{display:inline-block;margin:15px 0;padding:10px 18px;border-radius:24px;background:#ffe36a;font-size:14px;font-weight:700}.film-player{margin:0;transform:rotate(2deg)}.film-player video{display:block;width:100%;height:auto;aspect-ratio:9/16;background:#fff6e4;border-radius:24px;box-shadow:0 16px 32px #54352120}.film-player figcaption{text-align:center;margin-top:16px;font-size:14px}.film-story{max-width:460px;margin-top:20px}.film-story summary{cursor:pointer;font-size:15px;text-decoration:underline;text-underline-offset:5px}.film-story p{font-size:16px;line-height:2}.film-player video:focus-visible{outline:3px solid #9a401a;outline-offset:6px}
@media(max-width:700px){.film-section{grid-template-columns:1fr;margin:20px 16px 60px;padding:34px 24px;border-radius:34px;gap:26px}.film-copy h2{font-size:36px}.film-player{width:min(100%,330px);justify-self:center;transform:none}.film-copy>p:not(.eyebrow){font-size:16px}}
