:root {
  --ink: #090921;
  --ink-2: #121036;
  --paper: #f8f7f3;
  --white: #fff;
  --muted: #6f7182;
  --pink: #ff3977;
  --magenta: #d62df2;
  --cyan: #20d5ee;
  --blue: #138cf5;
  --mint: #16e5c0;
  --yellow: #ffd637;
  --orange: #ff8b3d;
  --violet: #7668ff;
  --line: rgba(12, 12, 35, .12);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 28px;
  --shadow: 0 30px 80px rgba(11, 9, 44, .18);
  --ease: cubic-bezier(.2, .72, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
}

main h1,
main h2,
main h3,
.screen-card > strong,
.collection__label strong {
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

main p,
.site-footer p {
  line-break: strict;
  text-wrap: pretty;
  word-break: normal;
}

body.is-opening {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

em {
  color: inherit;
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
}

.section--dark {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(107, 69, 255, .28), transparent 34%),
    radial-gradient(circle at 90% 70%, rgba(13, 209, 232, .16), transparent 34%),
    var(--ink);
}

.section--warm {
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 205, 64, .28), transparent 30%),
    linear-gradient(145deg, #fff9e8, #fff3f7);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: #000;
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 12px 18px;
  color: #fff;
  background: #111;
  border-radius: 12px;
  text-align: center;
}

/* Opening */

.opening {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(74, 37, 255, .9) 0, rgba(12, 8, 66, .96) 40%, #050514 78%),
    #050514;
  transition: opacity .55s var(--ease), visibility .55s;
}

.opening::before,
.opening::after {
  position: absolute;
  width: 160vmax;
  height: 160vmax;
  content: "";
  background: repeating-conic-gradient(from 0deg, transparent 0deg 9deg, rgba(55, 224, 255, .08) 9deg 11deg);
  animation: opening-spin 12s linear infinite;
}

.opening::after {
  width: 80vmax;
  height: 80vmax;
  background: repeating-conic-gradient(from 5deg, transparent 0deg 16deg, rgba(255, 53, 129, .11) 16deg 20deg);
  animation-direction: reverse;
  animation-duration: 9s;
}

.opening.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.opening__logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.opening__logo img {
  border-radius: 29%;
  box-shadow: 0 0 70px rgba(34, 216, 255, .48);
  animation: opening-icon 1.55s var(--ease) both;
}

.opening__count {
  position: absolute;
  display: grid;
  place-items: center;
  margin: 0;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 1000;
  line-height: 1;
}

.opening__count span {
  position: absolute;
  opacity: 0;
  text-shadow: 0 0 30px rgba(255, 255, 255, .7);
  animation: opening-count .35s var(--ease) both;
}

.opening__count span:nth-child(2) { animation-delay: .36s; }
.opening__count span:nth-child(3) { animation-delay: .72s; }

.opening__tap {
  position: absolute;
  top: calc(100% + 34px);
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 1000;
  font-style: italic;
  letter-spacing: -.08em;
  opacity: 0;
  transform: scale(.2) rotate(-10deg);
  text-shadow: 7px 8px 0 var(--pink);
  animation: opening-tap .48s 1.08s var(--ease) forwards;
}

.opening__skip {
  position: absolute;
  z-index: 4;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  padding: 10px 17px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  cursor: pointer;
}

.opening__burst {
  position: absolute;
  z-index: 1;
  width: min(75vw, 620px);
  aspect-ratio: 1;
  border: 2px solid rgba(39, 222, 255, .35);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(29, 211, 255, .07),
    0 0 0 90px rgba(255, 55, 143, .05),
    0 0 100px rgba(86, 47, 255, .8);
  animation: opening-burst 1.6s var(--ease) both;
}

.opening__burst .puchi {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  opacity: 0;
  animation: opening-puchi .68s var(--burst-delay) var(--ease) forwards;
}

@keyframes opening-spin { to { transform: rotate(1turn); } }
@keyframes opening-icon {
  0%, 74% { opacity: 0; transform: scale(.28) rotate(-20deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes opening-count {
  0% { opacity: 0; transform: scale(1.8); }
  25%, 70% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.45); }
}
@keyframes opening-tap {
  60% { opacity: 1; transform: scale(1.2) rotate(-5deg); }
  100% { opacity: 1; transform: scale(1) rotate(-5deg); }
}
@keyframes opening-burst {
  0%, 62% { opacity: 0; transform: scale(.1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes opening-puchi {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--burst-angle)) translateX(0) scale(.2);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--burst-angle)) translateX(var(--burst-distance)) rotate(var(--burst-counter-angle)) scale(1);
  }
}

/* Header */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 12px 0;
  color: #fff;
  transition: background .3s, box-shadow .3s, padding .3s;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(7, 7, 28, .84);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.header__inner {
  display: flex;
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  border-radius: 28%;
  box-shadow: 0 7px 24px rgba(31, 201, 255, .22);
}

.global-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(15px, 2vw, 28px);
  font-size: .78rem;
  font-weight: 800;
}

.global-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, .78);
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: #fff;
}

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

.nav-toggle {
  display: none;
}

/* Store buttons */

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .18);
  transition: transform .25s var(--ease), box-shadow .25s;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
}

.store-button__badge {
  display: block;
  width: auto;
  height: 48px;
  max-width: 100%;
}

.store-button--header {
  border-radius: 10px;
}

.store-button--large {
  border-radius: 16px;
}

.store-button--large .store-button__badge {
  height: 72px;
}

.center-cta {
  display: flex;
  margin-top: 66px;
  justify-content: center;
}

.mobile-download {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 920px;
  display: grid;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(4, 7, 30, .95), rgba(17, 7, 59, .86)),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .38;
  background-image:
    linear-gradient(rgba(68, 186, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 186, 255, .09) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero::after {
  position: absolute;
  right: -20%;
  bottom: -54%;
  width: 125%;
  aspect-ratio: 1.8;
  content: "";
  border: 1px solid rgba(31, 205, 255, .25);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(31, 205, 255, .03),
    0 0 0 170px rgba(127, 63, 255, .025);
  transform: rotate(-10deg);
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  padding-top: 140px;
  padding-bottom: 95px;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.hero__copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .2em;
  line-height: 1.3;
}

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

.eyebrow--dark {
  color: #5d50ee;
}

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

.hero__icon {
  flex: 0 0 auto;
  border-radius: 28%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .25),
    0 22px 60px rgba(36, 170, 255, .3);
  transform: rotate(-4deg);
}

.hero__mini {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 6.5rem);
  font-weight: 1000;
  line-height: .93;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.hero__break {
  display: none;
}

.hero__lead {
  max-width: 680px;
  margin: 34px 0 25px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 700;
  line-height: 1.9;
  text-wrap: pretty;
}

.hero__chips {
  display: flex;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__chips span {
  padding: 7px 13px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
}

.hero__note {
  margin: 11px 0 0 12px;
  color: rgba(255, 255, 255, .48);
  font-size: .72rem;
}

.hero__visual {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 8px;
  line-height: 0;
  background: #05050a;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 38px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, .35),
    inset 0 0 0 2px rgba(255, 255, 255, .07);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 31px;
}

.phone__speaker {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 29%;
  height: 22px;
  background: #000;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone--hero {
  width: min(100%, 390px);
  transform: rotate(3deg);
  animation: phone-float 6s ease-in-out infinite;
}

.hero__sticker {
  position: absolute;
  z-index: 4;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  text-align: center;
  transform: rotate(-12deg);
}

.hero__sticker strong {
  font-size: 1.7rem;
  font-weight: 1000;
  line-height: 1;
}

.hero__sticker span {
  font-size: .7rem;
  font-weight: 900;
}

.hero__sticker--tap {
  top: 14%;
  right: -1%;
}

.hero__sticker--free {
  bottom: 15%;
  left: -3%;
  color: #fff;
  background: var(--pink);
  transform: rotate(10deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero__glow--one {
  top: 20%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: rgba(34, 205, 255, .22);
}

.hero__glow--two {
  bottom: -16%;
  left: -10%;
  width: 470px;
  height: 470px;
  background: rgba(235, 42, 187, .18);
}

.scroll-cue {
  position: absolute;
  z-index: 10;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .52);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .18em;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-cue i {
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--cyan);
  animation: scroll-line 2s infinite;
}

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

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* Puchi characters */

.puchi-field {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.puchi-field .puchi {
  position: absolute;
  opacity: .78;
  animation: field-float var(--float-duration, 9s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, .23));
}

.puchi {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  aspect-ratio: 1;
  user-select: none;
  -webkit-user-drag: none;
}

.puchi--large {
  width: 150px;
  height: 150px;
}

.puchi--xl {
  width: clamp(150px, 19vw, 230px);
  height: clamp(150px, 19vw, 230px);
  filter: drop-shadow(0 24px 38px rgba(35, 180, 255, .32));
}

@keyframes field-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--float-rotation, 0deg)); }
  45% { transform: translate3d(var(--float-x, 18px), var(--float-y, -30px), 0) rotate(calc(var(--float-rotation, 0deg) + 8deg)); }
  75% { transform: translate3d(calc(var(--float-x, 18px) * -.45), calc(var(--float-y, -30px) * .2), 0) rotate(calc(var(--float-rotation, 0deg) - 6deg)); }
}

/* Headings */

.section-heading {
  max-width: 100%;
}

.section-heading--center {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  font-weight: 1000;
  line-height: 1.16;
  letter-spacing: -.065em;
  line-break: strict;
  text-wrap: balance;
  word-break: normal;
}

.heading-no-break {
  display: inline-block;
  white-space: nowrap;
}

.section-heading h2 em {
  position: relative;
  color: var(--pink);
}

.section--dark .section-heading h2 em,
.collection .section-heading h2 em {
  color: var(--yellow);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-break: strict;
  text-wrap: pretty;
}

.section--dark .section-heading > p:last-child,
.collection .section-heading > p:last-child {
  color: rgba(255, 255, 255, .62);
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

/* Tap demo */

.tap-demo {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 85%, rgba(255, 80, 150, .11), transparent 30%),
    var(--paper);
}

.tap-demo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(44px, 6vw, 80px);
}

.tap-demo .section-heading {
  max-width: 560px;
}

.tap-demo .section-heading h2 {
  font-size: clamp(2.6rem, 3.2vw, 3rem);
}

.collection .section-heading h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.5rem);
}

.faq .section-heading h2 {
  font-size: clamp(2.5rem, 3vw, 3rem);
}

.tap-score {
  display: flex;
  width: fit-content;
  margin-top: 34px;
  align-items: baseline;
  gap: 11px;
  padding: 13px 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 15px 40px rgba(12, 12, 35, .08);
}

.tap-score span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
}

.tap-score strong {
  min-width: 1.5ch;
  color: var(--pink);
  font-size: 2.4rem;
  font-weight: 1000;
  line-height: 1;
  text-align: center;
}

.demo-stage {
  position: relative;
  height: clamp(410px, 52vw, 580px);
  overflow: hidden;
  background: linear-gradient(#51c9f2, #369fe4 68%, #2779bf);
  border: 9px solid #fff;
  border-radius: 42px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.demo-stage::before,
.demo-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
}

.demo-stage::before {
  top: 10%;
  right: 9%;
  width: 130px;
  height: 130px;
  background: rgba(255, 241, 164, .38);
  box-shadow: 0 0 50px rgba(255, 248, 190, .28);
}

.demo-stage::after {
  right: -8%;
  bottom: -28%;
  left: -8%;
  height: 58%;
  background: #1378b8;
  border-radius: 50% 50% 0 0;
}

.demo-stage__sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .3;
  background: repeating-linear-gradient(to bottom, transparent 0 75px, rgba(255, 255, 255, .17) 76px 78px);
}

.demo-stage__mountains {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: 3%;
  left: -5%;
  height: 45%;
  background: rgba(18, 129, 183, .66);
  clip-path: polygon(0 100%, 0 70%, 14% 38%, 28% 70%, 52% 15%, 73% 68%, 88% 34%, 100% 66%, 100% 100%);
}

.demo-puchi {
  position: absolute;
  z-index: 4;
  top: 45%;
  left: 48%;
  width: 88px;
  height: 88px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
  transition: top .55s var(--ease), left .55s var(--ease), transform .12s;
}

.demo-puchi .puchi {
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 12px 16px rgba(6, 40, 84, .3));
}

.demo-puchi:hover {
  transform: scale(1.08);
}

.demo-puchi.is-popping {
  animation: demo-pop .42s var(--ease);
}

.demo-stage__hint {
  position: absolute;
  z-index: 2;
  bottom: 19px;
  left: 50%;
  margin: 0;
  padding: 8px 16px;
  color: #fff;
  background: rgba(4, 24, 64, .35);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  transform: translateX(-50%);
  backdrop-filter: blur(7px);
}

.pop-burst {
  position: absolute;
  z-index: 8;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pop-burst .55s var(--ease) forwards;
}

.pop-burst::before,
.pop-burst::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 3px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--pink) 0 10px, transparent 10px 20px);
  transform: translate(-50%, -50%);
}

.pop-burst::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes demo-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.35) rotate(8deg); }
  70% { transform: scale(.1) rotate(-18deg); }
  100% { transform: scale(1); }
}

@keyframes pop-burst {
  to { width: 130px; height: 130px; opacity: 0; transform: translate(-50%, -50%) rotate(35deg); }
}

/* Features */

.features::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(49, 223, 255, .55), transparent);
}

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

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-8px);
}

.feature-card::before {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 270px;
  height: 270px;
  content: "";
  background: var(--card-color);
  border-radius: 50%;
  filter: blur(100px);
  opacity: .24;
}

.feature-card--pink { --card-color: #ff3a82; }
.feature-card--cyan { --card-color: #1fd8ee; }
.feature-card--violet { --card-color: #836fff; }

.feature-card__number {
  color: rgba(255, 255, 255, .35);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.feature-card__puchi {
  width: 112px;
  height: 112px;
  margin: 38px 0 31px;
  transform: rotate(-5deg);
  transition: transform .35s var(--ease);
}

.feature-card:hover .feature-card__puchi {
  transform: rotate(5deg) scale(1.08);
}

.feature-card h3 {
  margin: 0 0 13px;
  font-size: 1.45rem;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .89rem;
}

.fact-strip {
  display: grid;
  margin-top: 65px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.fact-strip div {
  display: grid;
  text-align: center;
}

.fact-strip strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 1000;
  line-height: 1;
}

.fact-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.fact-strip i {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .12);
}

/* Modes */

.modes {
  background:
    linear-gradient(rgba(15, 12, 40, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 12, 40, .035) 1px, transparent 1px),
    #f7f6f1;
  background-size: 70px 70px;
}

.mode-list {
  display: grid;
  margin-top: 64px;
  gap: 16px;
}

.mode-card {
  display: grid;
  min-height: 180px;
  padding: 30px 36px;
  align-items: center;
  grid-template-columns: 60px 120px 1fr;
  gap: 24px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(10, 9, 36, .1);
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(15, 13, 55, .06);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.mode-card:hover {
  box-shadow: 0 25px 60px rgba(15, 13, 55, .11);
  transform: translateX(8px);
}

.mode-card__index {
  color: #a6a5af;
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.mode-card__icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--pink), var(--orange));
  border-radius: 30px;
  box-shadow: 0 16px 36px rgba(255, 54, 122, .24);
  font-size: 3rem;
  font-weight: 1000;
}

.mode-card:nth-child(2) .mode-card__icon {
  background: linear-gradient(145deg, var(--magenta), var(--pink));
}

.mode-card:nth-child(3) .mode-card__icon {
  background: linear-gradient(145deg, var(--violet), var(--blue));
}

.mode-card__icon--stage {
  display: grid;
  padding: 26px;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.mode-card__icon--stage span {
  background: #fff;
  border-radius: 5px;
}

.mode-card__icon--timer {
  border-radius: 50%;
}

.mode-card__icon--timer span {
  font-size: 1.8rem;
}

.mode-card__en {
  margin: 0 0 3px;
  color: #8e8b9d;
  font-size: .62rem;
  font-weight: 1000;
  letter-spacing: .16em;
}

.mode-card h3 {
  margin: 0 0 7px;
  font-size: 1.45rem;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.mode-card div:last-child > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

/* Collection */

.collection {
  padding-top: 120px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at center, rgba(45, 26, 116, .9), transparent 42%),
    radial-gradient(circle at 4% 50%, rgba(255, 45, 133, .17), transparent 26%),
    radial-gradient(circle at 94% 30%, rgba(28, 216, 240, .15), transparent 29%),
    #08071e;
}

.collection__aurora {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 1100px;
  height: 700px;
  background: conic-gradient(from 190deg, transparent, rgba(12, 235, 223, .11), rgba(255, 42, 153, .11), transparent 70%);
  filter: blur(70px);
  transform: translateX(-50%) rotate(-15deg);
}

.collection__content {
  position: relative;
  z-index: 3;
}

.puchi-marquee {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.puchi-marquee--top {
  margin-bottom: 95px;
  transform: rotate(-2deg) scale(1.03);
}

.puchi-marquee--bottom {
  margin-top: 100px;
  transform: rotate(2deg) scale(1.03);
}

.puchi-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: marquee-forward 32s linear infinite;
}

.puchi-marquee__group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.puchi-marquee__track[data-marquee="reverse"] {
  animation-name: marquee-reverse;
}

.puchi-marquee .puchi {
  width: 82px;
  height: 82px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .25));
}

@keyframes marquee-forward { to { transform: translateX(-50%); } }
@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.collection__showcase {
  position: relative;
  width: min(650px, 100%);
  min-height: 530px;
  display: grid;
  margin: 60px auto 0;
  place-items: center;
}

.collection__halo {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(74, 223, 255, .28);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(107, 69, 255, .08),
    0 0 100px rgba(35, 180, 255, .24),
    inset 0 0 80px rgba(42, 223, 255, .12);
  animation: halo-pulse 5s ease-in-out infinite;
}

.collection__label {
  position: absolute;
  bottom: 8px;
  display: grid;
  padding: 15px 30px;
  background: rgba(5, 5, 22, .68);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(14px);
}

.collection__label span {
  color: var(--cyan);
  font-size: .61rem;
  font-weight: 1000;
  letter-spacing: .14em;
}

.collection__label strong {
  font-size: 1.75rem;
  font-weight: 1000;
}

.collection__label p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
}

.collection__orbit {
  position: absolute;
  width: 85px;
  height: 85px;
  animation: orbit-float 4s ease-in-out infinite;
}

.collection__orbit--one { top: 4%; left: 8%; }
.collection__orbit--two { top: 8%; right: 5%; animation-delay: -.8s; }
.collection__orbit--three { bottom: 17%; left: 0; animation-delay: -1.5s; }
.collection__orbit--four { right: -2%; bottom: 19%; animation-delay: -2.2s; }

.collection__points {
  display: grid;
  margin-top: 65px;
  padding: 28px 35px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 23px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 22px;
}

.collection__points div {
  display: grid;
  text-align: center;
}

.collection__points span {
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
}

.collection__points strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 1000;
}

.collection__points .collection__arrow {
  color: var(--yellow);
  font-size: 1.5rem;
}

@keyframes halo-pulse {
  0%, 100% { transform: scale(.96); opacity: .72; }
  50% { transform: scale(1.04); opacity: 1; }
}

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

/* Screens */

.screens {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(35, 219, 239, .12), transparent 25%),
    #f8f7f3;
}

.screen-gallery {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.screen-card {
  position: relative;
  min-width: 0;
  padding: 27px 18px 23px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 18px 52px rgba(9, 8, 36, .09);
  cursor: zoom-in;
  transition: transform .35s var(--ease), box-shadow .35s;
}

.screen-card:hover {
  box-shadow: 0 30px 70px rgba(9, 8, 36, .16);
  transform: translateY(-10px);
}

.screen-card::before {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 230px;
  height: 230px;
  content: "";
  background: var(--screen-color);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .28;
}

.screen-card--home { --screen-color: #ff3977; }
.screen-card--play { --screen-color: #20d5ee; }
.screen-card--book { --screen-color: #7668ff; }
.screen-card--gacha { --screen-color: #ff9b31; }

.screen-card__tag {
  display: block;
  margin-bottom: 18px;
  color: #9492a1;
  font-size: .62rem;
  font-weight: 1000;
  letter-spacing: .16em;
  text-align: left;
}

.screen-card .phone {
  width: 88%;
  margin-inline: auto;
  padding: 5px;
  border-radius: 27px;
  box-shadow: 0 24px 46px rgba(8, 6, 38, .2);
}

.screen-card .phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 23px;
}

.screen-card .phone__speaker {
  top: 10px;
  height: 14px;
}

.screen-card > strong {
  display: block;
  margin-top: 20px;
  font-size: .88rem;
  font-weight: 1000;
}

/* Everyone */

.everyone__grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.everyone__visual {
  min-height: 500px;
  display: grid;
  place-items: center;
}

.everyone__circle {
  position: relative;
  width: min(78vw, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(255, 99, 111, .15);
  border-radius: 50%;
  box-shadow:
    0 30px 80px rgba(255, 109, 65, .14),
    inset 0 0 0 30px rgba(255, 255, 255, .32);
}

.everyone__float {
  position: absolute;
  width: 78px;
  height: 78px;
  animation: orbit-float 4s ease-in-out infinite;
}

.everyone__float--one { top: -2%; left: 20%; }
.everyone__float--two { right: -4%; bottom: 23%; animation-delay: -1.1s; }
.everyone__float--three { bottom: 0; left: 12%; animation-delay: -2s; }

.check-list {
  display: grid;
  margin: 35px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .94rem;
}

.check-list span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--pink), var(--orange));
  border-radius: 50%;
  font-size: .75rem;
}

/* FAQ */

.faq {
  background: #fff;
}

.faq__grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(40px, 8vw, 100px);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  padding: 26px 6px;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  margin-left: auto;
  content: "+";
  color: var(--pink);
  font-size: 1.8rem;
  font-weight: 500;
  transition: transform .25s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary span,
.faq details > div > span {
  color: var(--pink);
  font-size: 1.15rem;
  font-weight: 1000;
}

.faq details > div {
  display: flex;
  padding: 0 6px 26px;
  gap: 17px;
  color: var(--muted);
}

.faq details > div > span {
  color: var(--cyan);
}

.faq details p {
  margin: 0;
  font-size: .92rem;
}

/* Final CTA / footer */

.final-cta {
  position: relative;
  min-height: 680px;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 48%, rgba(89, 49, 255, .92), transparent 38%),
    linear-gradient(145deg, #080820, #11093e);
}

.final-cta__inner {
  position: relative;
  z-index: 5;
  display: grid;
  padding: 95px 0;
  place-items: center;
  text-align: center;
}

.final-cta__inner > img {
  margin-bottom: 26px;
  border-radius: 28%;
  box-shadow: 0 0 70px rgba(38, 208, 255, .38);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3rem, 4.2vw, 3.9rem);
  font-weight: 1000;
  line-height: 1.12;
  letter-spacing: -.07em;
  line-break: strict;
  text-wrap: balance;
}

@media (min-width: 1101px) {
  .tap-demo .section-heading h2,
  .features .section-heading h2,
  .modes .section-heading h2,
  .collection .section-heading h2,
  .screens .section-heading h2,
  .faq .section-heading h2,
  .final-cta h2 {
    max-width: none;
    text-wrap: nowrap;
    white-space: nowrap;
  }
}

.final-cta h2 em {
  color: var(--yellow);
}

.final-cta__inner > p {
  margin: 22px 0 31px;
  color: rgba(255, 255, 255, .66);
}

.final-cta__burst {
  position: absolute;
  width: 1200px;
  height: 1200px;
  background: repeating-conic-gradient(from 5deg, transparent 0 11deg, rgba(44, 218, 255, .06) 11deg 13deg);
  animation: opening-spin 32s linear infinite;
}

.puchi-field--footer {
  z-index: 2;
}

.site-footer {
  padding: 75px 0 25px;
  color: rgba(255, 255, 255, .68);
  background: #050510;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
}

.brand--footer {
  color: #fff;
  font-size: 1.15rem;
}

.footer__grid > div:first-child > p {
  margin: 18px 0 0;
  font-size: .8rem;
}

.footer__grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: .74rem;
  font-weight: 1000;
  letter-spacing: .08em;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__grid a:not(.brand) {
  font-size: .76rem;
  transition: color .2s;
}

.footer__grid a:hover,
.footer__grid a:focus-visible {
  color: var(--cyan);
}

.footer__bottom {
  display: flex;
  margin-top: 55px;
  padding-top: 21px;
  justify-content: space-between;
  color: rgba(255, 255, 255, .37);
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .68rem;
}

.footer__bottom p {
  margin: 0;
}

/* Lightbox */

.lightbox {
  width: min(92vw, 520px);
  max-height: 92dvh;
  padding: 18px;
  color: #fff;
  background: rgba(8, 7, 28, .94);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  box-shadow: 0 35px 120px rgba(0, 0, 0, .55);
  backdrop-filter: blur(20px);
}

.lightbox::backdrop {
  background: rgba(4, 3, 18, .78);
  backdrop-filter: blur(7px);
}

.lightbox .phone {
  width: fit-content;
  max-width: min(100%, 390px);
  max-height: calc(92dvh - 90px);
  margin-inline: auto;
}

.lightbox .phone img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(92dvh - 120px);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
  text-align: center;
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Focus */

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

/* Responsive */

@media (max-width: 1100px) {
  .store-button--header {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  }

  .feature-card {
    padding: 27px;
  }

  .screen-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .screen-card .phone {
    width: min(76%, 340px);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    padding-block: 8px;
    background: rgba(7, 7, 28, .8);
    backdrop-filter: blur(14px);
  }

  .header__inner {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: .9rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    margin-left: auto;
    padding: 11px;
    place-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    top: calc(100% + 5px);
    right: 12px;
    left: 12px;
    display: grid;
    padding: 13px;
    gap: 0;
    background: rgba(10, 9, 38, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .34);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
  }

  .global-nav.is-open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .global-nav a {
    padding: 11px 12px;
  }

  .global-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding-top: 118px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    display: grid;
    justify-items: center;
  }

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

  .hero__icon {
    width: 90px;
    height: 90px;
  }

  .hero__mini {
    font-size: .8rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 13vw, 5rem);
  }

  .hero__break {
    display: initial;
  }

  .hero__lead {
    margin-top: 25px;
  }

  .hero__chips {
    justify-content: center;
  }

  .hero__visual {
    min-height: 630px;
  }

  .phone--hero {
    width: min(78vw, 350px);
  }

  .hero__sticker--tap {
    right: 3%;
  }

  .hero__sticker--free {
    left: 3%;
  }

  .scroll-cue {
    display: none;
  }

  .tap-demo__grid,
  .everyone__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .tap-demo__grid {
    gap: 55px;
  }

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

  .feature-card {
    min-height: 380px;
  }

  .feature-card__puchi {
    margin-block: 28px 24px;
  }

  .fact-strip {
    grid-template-columns: 1fr 1fr;
    gap: 26px 0;
  }

  .fact-strip i {
    display: none;
  }

  .mode-card {
    grid-template-columns: 42px 95px 1fr;
    padding-inline: 24px;
  }

  .mode-card__icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }

  .collection__points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .collection__points .collection__arrow {
    transform: rotate(90deg);
  }

  .collection__showcase {
    min-height: 480px;
  }

  .everyone__visual {
    min-height: 430px;
  }

  .faq__grid {
    gap: 45px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .opening__logo img {
    width: 105px;
    height: 105px;
  }

  .hero__grid {
    padding-top: 105px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.4rem);
  }

  .hero__lead {
    font-size: .96rem;
  }

  .store-button--large {
    width: auto;
  }

  .store-button--large .store-button__badge {
    height: 67px;
  }

  .hero__visual {
    min-height: 570px;
  }

  .hero__sticker {
    width: 90px;
    height: 90px;
  }

  .hero__sticker strong {
    font-size: 1.35rem;
  }

  .demo-stage {
    height: 430px;
    border-width: 6px;
    border-radius: 30px;
  }

  .fact-strip {
    padding-inline: 14px;
  }

  .mode-card {
    min-height: 0;
    padding: 24px 20px;
    grid-template-columns: 72px 1fr;
    gap: 17px;
  }

  .mode-card__index {
    display: none;
  }

  .mode-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 2.2rem;
  }

  .mode-card__icon--stage {
    padding: 18px;
  }

  .mode-card h3 {
    font-size: 1.2rem;
  }

  .mode-card div:last-child > p:last-child {
    font-size: .82rem;
  }

  .puchi-marquee--top {
    margin-bottom: 65px;
  }

  .puchi-marquee .puchi {
    width: 64px;
    height: 64px;
  }

  .puchi-marquee__track {
    gap: 17px;
  }

  .collection__showcase {
    min-height: 430px;
  }

  .collection__halo {
    width: 300px;
    height: 300px;
  }

  .collection__orbit {
    width: 66px;
    height: 66px;
  }

  .collection__orbit--one { left: 0; }
  .collection__orbit--two { right: 0; }

  .screen-gallery {
    grid-template-columns: 1fr;
  }

  .screen-card .phone {
    width: min(78%, 320px);
  }

  .everyone__visual {
    min-height: 350px;
  }

  .everyone__circle {
    width: min(82vw, 330px);
  }

  .puchi--large {
    width: 120px;
    height: 120px;
  }

  .everyone__float {
    width: 65px;
    height: 65px;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-cta__inner > img {
    width: 100px;
    height: 100px;
  }

  .final-cta h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-download {
    position: fixed;
    z-index: 1500;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 34, .94);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 17px;
    box-shadow: 0 16px 45px rgba(38, 16, 92, .36);
  }

  .mobile-download img {
    display: block;
    width: auto;
    height: 46px;
  }

  .lightbox {
    padding: 10px;
    border-radius: 20px;
  }
}

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

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

  .opening {
    display: none;
  }

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