@font-face {
  font-family: Nunito;
  src: url('assets/nunito-400.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url('assets/nunito-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url('assets/nunito-900.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
:root {
  color-scheme: light;
  --ink: #15366a;
  --blue: #2473e8;
  --muted: #596e8b;
  --yellow: #ffd43b;
  --page: #f2f7ff;
  --line: #dce7f6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font:
    400 16px/1.65 Nunito,
    system-ui,
    sans-serif;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
.container {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 20;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #e7eef8;
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
}
.header-inner nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}
.nav-how:hover,
.text-link:hover {
  color: var(--blue);
}
.nav-download {
  padding: 11px 20px;
  border: 1px solid #d2e0f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f8fbff;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-download:hover {
  background: #e6f0ff;
  transform: translateY(-2px);
}
.nav-download .icon {
  width: 19px;
}
.hero {
  display: grid;
  overflow: clip;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  align-items: center;
  min-height: 638px;
  gap: 14px;
  padding-block: 42px 35px;
}
.hero-copy {
  min-width: 0;
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  line-height: 1.6;
}
.hero-copy > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff3c4;
  border: 1px solid #f6e39b;
  padding: 6px 13px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 1.3px;
}
.eyebrow-star {
  font-size: 19px;
  line-height: 1;
  color: #a1740a;
}
h1 {
  position: relative;
  display: table;
  font-size: clamp(52px, 5.8vw, 76px);
  line-height: 1.1;
  letter-spacing: -2.8px;
  font-weight: 900;
  margin-top: 25px;
}
h1 > span {
  color: var(--blue);
}
.title-spark {
  position: absolute;
  right: -45px;
  top: 15px;
  width: 41px;
  height: 48px;
  stroke: #e8b813;
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  transform: rotate(8deg);
}
.hero-description {
  max-width: 470px;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 25px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  min-height: 58px;
  padding: 15px 23px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button-yellow {
  background: var(--yellow);
  box-shadow: 0 4px 0 #e7b721;
  color: #16345f;
}
.button-yellow:hover {
  background: #ffdd60;
  transform: translateY(-3px);
  box-shadow: 0 7px 0 #e7b721;
}
.button-yellow:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #e7b721;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.text-link span {
  margin-left: 8px;
  font-size: 21px;
}
.family-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}
.heart-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #e2edfc;
  color: var(--blue);
}
.heart-circle .icon {
  width: 15px;
  height: 15px;
}
.hero-art {
  min-width: 0;
  position: relative;
  height: 540px;
  isolation: isolate;
}
.art-blob {
  position: absolute;
  width: 470px;
  height: 450px;
  max-width: 96%;
  left: 16px;
  top: 54px;
  background: #deebff;
  border-radius: 46% 54% 56% 44% / 51% 40% 60% 49%;
  transform: rotate(-12deg);
  z-index: -2;
}
.orbit {
  position: absolute;
  border: 1.5px dashed #a5c5ef;
  border-radius: 50%;
  z-index: -1;
}
.orbit-one {
  width: 440px;
  height: 380px;
  left: 35px;
  top: 85px;
  transform: rotate(-32deg);
}
.orbit-two {
  width: 332px;
  height: 490px;
  left: 120px;
  top: 20px;
  transform: rotate(37deg);
  opacity: 0.45;
}
.art-spark {
  position: absolute;
  color: #f2bf27;
  line-height: 1;
}
.spark-one {
  top: 64px;
  left: 49px;
  font-size: 58px;
  transform: rotate(10deg);
}
.spark-two {
  right: 2px;
  top: 366px;
  font-size: 38px;
}
.phone {
  position: absolute;
  top: 25px;
  right: 42px;
  width: 251px;
  height: 488px;
  line-height: 1.2;
  border: 7px solid #203b61;
  border-radius: 37px;
  background: #f4f8ff;
  transform: rotate(9deg);
  box-shadow:
    8px 16px 0 #afc6e733,
    12px 23px 35px #17376425;
  overflow: hidden;
}
.phone-camera {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 18px;
  background: #203b61;
  border-radius: 14px;
  z-index: 2;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 9px 18px 4px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.phone-logo {
  margin: 10px auto 5px;
  width: 105px;
  height: auto;
}
.phone-content {
  padding: 7px 12px;
}
.phone-greeting {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.phone-greeting span {
  font-size: 17px;
}
.phone-subtitle {
  font-size: 9px;
  color: var(--muted);
  margin-top: 1px;
}
.wish-card {
  position: relative;
  background: var(--blue);
  border-radius: 17px;
  margin-top: 13px;
  padding: 12px;
  color: white;
  box-shadow: 0 3px 0 #1756b9;
}
.wish-label {
  font-weight: 900;
  font-size: 8px;
  margin-bottom: 8px;
}
.wish-card > strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}
.wish-image {
  position: absolute;
  right: 9px;
  top: 37px;
  object-fit: cover;
  width: 67px;
  height: 61px;
  border: 3px solid white;
  border-radius: 12px;
  transform: rotate(7deg);
}
.wish-balance {
  font-size: 21px;
  font-weight: 900;
  margin-top: 12px;
  line-height: 1.3;
}
.wish-balance span {
  font-size: 9px;
  font-weight: 700;
}
.wish-progress {
  height: 11px;
  border: 2px solid #1756b9;
  background: #e6f1ff;
  border-radius: 10px;
  margin-top: 8px;
}
.wish-progress span {
  display: block;
  background: var(--yellow);
  height: 100%;
  width: 70.4%;
  border-radius: 10px;
}
.wish-caption {
  display: block;
  font-size: 8px;
  font-weight: 700;
  margin-top: 7px;
}
.phone-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 11px 0 7px;
  font-size: 13px;
  font-weight: 900;
}
.phone-section-title > span {
  font-weight: 400;
  font-size: 9px;
  color: var(--muted);
}
.mini-mission {
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid #e1e9f6;
  background: #fff;
  border-radius: 10px;
  padding: 5px 6px;
  margin-top: 5px;
}
.mini-icon {
  font-size: 19px;
  background: #fff1ce;
  border-radius: 7px;
  padding: 2px;
}
.mini-icon.mint {
  background: #e1f2e8;
}
.mini-mission > div {
  flex: 1;
}
.mini-mission b {
  display: block;
  font-size: 9px;
}
.mini-mission div > span {
  display: block;
  font-size: 7px;
  color: var(--muted);
}
.mini-mission > strong {
  font-size: 9px;
  white-space: nowrap;
  color: #9a6f00;
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  background: white;
  border-top: 1px solid #e2eaf6;
  padding: 4px 10px;
  color: var(--blue);
  font-size: 17px;
  text-align: center;
  margin-top: 4px;
  line-height: 1.2;
}
.phone-nav small {
  display: block;
  font-size: 7px;
  padding-top: 2px;
}
.phone-nav-active {
  color: var(--ink);
  background: var(--yellow);
  border-radius: 7px;
  padding: 1px 7px;
}
.phone-home {
  width: 70px;
  height: 3px;
  border-radius: 3px;
  background: #203b61;
  margin: 5px auto;
}
.mascot {
  position: absolute;
  width: 365px;
  max-width: none;
  height: auto;
  left: -56px;
  bottom: 35px;
  z-index: 2;
  filter: drop-shadow(0 12px 8px #17376412);
}
.reward-pill {
  position: absolute;
  z-index: 3;
  bottom: 17px;
  left: 76px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid #e2eafa;
  border-radius: 17px;
  padding: 15px 18px;
  box-shadow: 0 8px 26px #1a48771a;
  transform: rotate(-4deg);
  animation: float 5s ease-in-out infinite;
}
.reward-check {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: #318557;
  background: #e6f6ec;
}
.reward-pill b {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}
.reward-pill div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.reward-value {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-left: 10px;
  font-weight: 900;
  font-size: 22px;
  color: #a67500;
}
.reward-value .icon {
  width: 19px;
  fill: var(--yellow);
  stroke: #e2b422;
}
.hero-art figcaption {
  position: absolute;
  bottom: -15px;
  left: 90px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.3px;
}
.hero-art::after {
  content: '';
  position: absolute;
  left: 32px;
  bottom: 22px;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.45;
}
.how-section {
  padding: 65px 0 70px;
  background: #fff;
  border-block: 1px solid #e6edf8;
}
.section-heading {
  text-align: center;
}
.section-heading .eyebrow {
  color: var(--blue);
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.8px;
  font-weight: 900;
}
.section-heading > p:last-child {
  color: var(--muted);
  margin-top: 13px;
  font-size: 16px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 37px;
}
.step {
  padding: 25px 28px 27px;
  background: #f8faff;
  border: 1px solid #e1eaf7;
  border-radius: 20px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.step-icon {
  width: 49px;
  height: 49px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.step-icon .icon {
  width: 26px;
  height: 26px;
}
.step-icon.blue {
  background: #e3edff;
  color: var(--blue);
}
.step-icon.yellow {
  background: #fff0b6;
  color: #9b7400;
}
.step-icon.pink {
  background: #ffe6df;
  color: #ba6650;
}
.step-number {
  font-size: 27px;
  font-weight: 900;
  color: #b7c8e0;
}
.step h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.4;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-top: 10px;
}
.download-section {
  padding-block: 68px 30px;
}
.download-panel {
  position: relative;
  background: #e5efff;
  border: 1px solid #d3e2f9;
  border-radius: 30px;
  padding: 47px 42px 31px;
  overflow: hidden;
}
.download-spark {
  position: absolute;
  right: 38px;
  top: 29px;
  font-size: 61px;
  color: #edbc27;
  line-height: 1;
  transform: rotate(12deg);
}
.download-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1.12fr;
  gap: 16px;
  margin-top: 30px;
  align-items: start;
}
.store-button {
  width: 100%;
  min-height: 81px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff9;
  border: 1px solid #c5d6ee;
  border-radius: 15px;
  text-align: left;
  color: var(--ink);
}
.store-icon {
  width: 27px;
  height: 32px;
  flex-shrink: 0;
}
.store-icon.apple {
  width: 31px;
  height: 36px;
}
.store-button > span:not(.coming-soon) {
  display: block;
}
.store-button small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.1px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--muted);
}
.store-button strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}
.coming-soon {
  font-size: 10px;
  background: #e4ecf8;
  color: #536b8b;
  padding: 4px 7px;
  border-radius: 7px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: auto;
  align-self: center;
}
.apk-button {
  width: 100%;
  min-height: 77px;
  gap: 13px;
  text-align: left;
  padding: 13px 18px;
}
.apk-button > span {
  flex: 1;
}
.apk-button strong {
  display: block;
  font-size: 19px;
  line-height: 1.4;
}
.apk-button small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.7;
}
.apk-arrow {
  width: 18px;
}
.download-note {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}
.download-note > .icon {
  width: 16px;
  height: 16px;
}
.beta-label {
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 0.8px;
  background: #fff4ca;
  color: #7c6114;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 4px;
}
.install-help {
  max-width: 690px;
  margin: 23px auto 0;
  border-top: 1px solid #ccdcf1;
  font-size: 14px;
}
.install-help summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  padding-top: 18px;
  font-weight: 700;
}
.install-help summary::-webkit-details-marker {
  display: none;
}
.install-help summary > span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.install-help[open] summary > span {
  transform: rotate(45deg);
}
.install-help > div {
  padding: 15px 10px 6px;
  color: #425e83;
  line-height: 1.8;
}
.install-help ol {
  margin: 0;
  padding-left: 21px;
}
.install-help li + li {
  margin-top: 8px;
}
.install-help div > p {
  margin-top: 15px;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px 35px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer > p {
  font-size: 13px;
}
.site-footer .brand {
  margin-left: -4px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-7px) rotate(-3deg);
  }
}
@media (min-width: 1440px) {
  .hero {
    min-height: 665px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 56px);
  }
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    min-height: 590px;
  }
  .hero-art {
    height: 500px;
    transform: scale(0.91);
    transform-origin: center right;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }
  h1 {
    font-size: 61px;
    letter-spacing: -2.5px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding-inline: 18px;
  }
  .text-link {
    font-size: 13px;
  }
  .mascot {
    left: -47px;
    width: 320px;
  }
  .phone {
    right: 38px;
    top: 0;
  }
  .art-blob {
    left: 0;
    top: 30px;
  }
  .orbit-one {
    width: 100%;
    left: 0;
  }
  .orbit-two {
    left: 45px;
  }
  .spark-one {
    left: 9px;
    top: 24px;
  }
  .reward-pill {
    left: 25px;
    bottom: 0;
  }
  .hero-art figcaption {
    bottom: -34px;
    left: 51px;
  }
  .download-panel {
    padding-inline: 25px;
  }
  .download-options {
    gap: 10px;
  }
  .store-button {
    padding-inline: 13px;
    gap: 8px;
  }
  .store-button strong {
    font-size: 18px;
  }
  .coming-soon {
    font-size: 9px;
    padding-inline: 5px;
  }
  .download-spark {
    right: 25px;
    font-size: 40px;
  }
  .step {
    padding: 23px;
  }
  .step h3 {
    font-size: 17px;
  }
}
@media (max-width: 850px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 85px;
  }
  .header-inner .brand img {
    width: 145px;
    height: auto;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 45px;
    gap: 22px;
  }
  .hero-copy {
    text-align: center;
    max-width: 590px;
    margin-inline: auto;
    padding: 0;
  }
  h1 {
    font-size: 70px;
    margin-inline: auto;
  }
  .hero-description {
    margin-inline: auto;
  }
  .hero-actions,
  .family-note {
    justify-content: center;
  }
  .hero-art {
    width: 490px;
    max-width: 100%;
    height: 515px;
    margin: 0 auto 22px;
    transform: none;
  }
  .mascot {
    width: 355px;
    left: -25px;
  }
  .phone {
    right: 26px;
    top: 20px;
  }
  .art-blob {
    left: 20px;
    top: 35px;
  }
  .orbit-one {
    width: 440px;
    max-width: 100%;
    left: 20px;
  }
  .orbit-two {
    left: 80px;
  }
  .reward-pill {
    left: 90px;
    bottom: 6px;
  }
  .hero-art figcaption {
    left: 0;
    right: 0;
    text-align: center;
    bottom: -28px;
  }
  .spark-one {
    left: 42px;
    top: 40px;
  }
  .how-section {
    padding-block: 48px;
  }
  .steps {
    gap: 12px;
  }
  .step {
    padding: 20px 17px;
  }
  .step h3 {
    font-size: 18px;
  }
  .step p {
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .download-options {
    grid-template-columns: 1fr 1fr;
    max-width: 570px;
    margin-inline: auto;
  }
  .apk-option {
    grid-column: 1/-1;
    order: -1;
    margin-bottom: 5px;
  }
  .apk-button {
    max-width: 340px;
    margin-inline: auto;
    display: flex;
  }
  .store-button {
    padding-inline: 16px;
  }
  .store-button strong {
    font-size: 20px;
  }
  .coming-soon {
    font-size: 10px;
  }
  .download-section {
    padding-top: 45px;
  }
  .download-spark {
    top: 18px;
    right: 18px;
    font-size: 26px;
  }
  .site-footer {
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 7px;
  }
  .site-footer > p {
    display: none;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: 77px;
  }
  .header-inner .brand img {
    width: 132px;
  }
  .header-inner nav {
    gap: 0;
  }
  .nav-how {
    display: none;
  }
  .nav-download {
    font-size: 12px;
    padding: 9px 13px;
    gap: 10px;
  }
  .nav-download .icon {
    width: 17px;
  }
  .hero {
    padding-top: 31px;
    gap: 16px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 5px 10px;
  }
  .eyebrow-star {
    font-size: 15px;
  }
  h1 {
    font-size: clamp(44px, 12.1vw, 66px);
    line-height: 1.12;
    letter-spacing: -1.8px;
    margin-top: 22px;
  }
  .title-spark {
    right: -25px;
    top: 9px;
    width: 24px;
    height: 30px;
    stroke-width: 5;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 19px;
    max-width: 380px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 16px;
    margin-top: 22px;
  }
  .hero-actions .button {
    min-height: 55px;
    font-size: 15px;
    padding-inline: 23px;
  }
  .text-link {
    font-size: 13px;
  }
  .family-note {
    font-size: 11px;
    margin-top: 18px;
    gap: 8px;
  }
  .hero-art {
    width: 360px;
    height: 414px;
    margin: 0 auto 18px;
  }
  .phone {
    width: 219px;
    height: 434px;
    transform: rotate(9deg) scale(0.85);
    transform-origin: top right;
    right: 16px;
    top: 20px;
    border-width: 6px;
    border-radius: 30px;
  }
  .phone-logo {
    width: 91px;
    margin-block: 12px 3px;
  }
  .phone-content {
    padding: 5px 10px;
  }
  .phone-greeting {
    font-size: 17px;
  }
  .phone-subtitle {
    font-size: 8px;
  }
  .wish-card {
    padding: 10px;
    margin-top: 10px;
  }
  .wish-card > strong {
    font-size: 14px;
  }
  .wish-image {
    width: 59px;
    height: 52px;
    top: 33px;
    right: 8px;
  }
  .wish-balance {
    font-size: 18px;
    margin-top: 10px;
  }
  .wish-balance span {
    font-size: 8px;
  }
  .wish-caption {
    font-size: 7px;
  }
  .wish-label {
    font-size: 7px;
    margin-bottom: 6px;
  }
  .phone-section-title {
    font-size: 11px;
    margin: 12px 0 6px;
  }
  .mini-mission {
    padding: 5px;
    gap: 4px;
  }
  .mini-mission b {
    font-size: 8px;
  }
  .mini-mission div > span {
    font-size: 6px;
  }
  .mini-mission > strong {
    font-size: 8px;
  }
  .mini-icon {
    font-size: 16px;
  }
  .phone-nav {
    font-size: 14px;
    margin-top: 3px;
  }
  .phone-nav small {
    font-size: 6px;
  }
  .mascot {
    width: 277px;
    left: -31px;
    bottom: 24px;
  }
  .art-blob {
    width: 340px;
    height: 329px;
    top: 52px;
    left: 6px;
  }
  .orbit-one {
    width: 323px;
    height: 281px;
    left: 13px;
    top: 64px;
  }
  .orbit-two {
    width: 249px;
    height: 348px;
    left: 57px;
    top: 26px;
  }
  .spark-one {
    left: 23px;
    top: 39px;
    font-size: 38px;
  }
  .spark-two {
    right: 3px;
    top: 290px;
    font-size: 28px;
  }
  .reward-pill {
    left: 47px;
    bottom: 3px;
    padding: 11px 12px;
    gap: 8px;
    border-radius: 14px;
  }
  .reward-check {
    width: 30px;
    height: 30px;
  }
  .reward-check .icon {
    width: 19px;
  }
  .reward-pill b {
    font-size: 12px;
  }
  .reward-pill div > span {
    font-size: 9px;
  }
  .reward-value {
    font-size: 18px;
    margin-left: 2px;
  }
  .reward-value .icon {
    width: 16px;
  }
  .hero-art figcaption {
    bottom: -26px;
    font-size: 10px;
  }
  .hero-art::after {
    left: 9px;
    bottom: 23px;
    width: 6px;
    height: 6px;
  }
  .how-section {
    padding-block: 39px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    letter-spacing: 1.1px;
  }
  .section-heading h2 {
    font-size: 27px;
    letter-spacing: -0.6px;
    max-width: 340px;
    margin: auto;
  }
  .section-heading > p:last-child {
    font-size: 15px;
    margin-top: 11px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 26px;
  }
  .step {
    padding: 22px 24px;
  }
  .step-top {
    margin-bottom: 12px;
  }
  .step-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .step-icon .icon {
    width: 23px;
    height: 23px;
  }
  .step-number {
    font-size: 24px;
  }
  .step h3 {
    font-size: 19px;
  }
  .step p {
    font-size: 15px;
    margin-top: 6px;
  }
  .download-section {
    padding-block: 31px 22px;
  }
  .download-panel {
    padding: 33px 19px 24px;
    border-radius: 22px;
  }
  .download-panel .section-heading h2 {
    font-size: 28px;
    max-width: 260px;
  }
  .download-panel .section-heading > p:last-child {
    font-size: 14px;
    max-width: 275px;
    margin-inline: auto;
  }
  .download-spark {
    right: 13px;
    top: 19px;
    font-size: 23px;
  }
  .download-options {
    gap: 11px;
    margin-top: 24px;
    grid-template-columns: 1fr;
  }
  .apk-option {
    margin-bottom: 5px;
  }
  .apk-button {
    max-width: none;
    min-height: 76px;
  }
  .store-button {
    min-height: 75px;
    padding: 13px 18px;
  }
  .store-button strong {
    font-size: 20px;
  }
  .store-button small {
    font-size: 9px;
  }
  .store-icon {
    width: 25px;
  }
  .coming-soon {
    font-size: 11px;
    padding: 4px 9px;
  }
  .download-note {
    gap: 7px;
    font-size: 10px;
    margin-top: 20px;
  }
  .beta-label {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
  .install-help {
    font-size: 12px;
    margin-top: 17px;
  }
  .install-help summary {
    gap: 8px;
    padding-top: 15px;
  }
  .install-help div {
    padding-inline: 0;
    font-size: 14px;
  }
  .site-footer {
    flex-direction: column;
    padding-block: 0 25px;
    gap: 7px;
    font-size: 11px;
  }
  .site-footer .brand img {
    width: 121px;
    height: auto;
  }
}
@media (max-width: 360px) {
  .title-spark {
    display: none;
  }
  .container {
    width: calc(100% - 28px);
  }
  .hero-art {
    width: 292px;
    height: 376px;
  }
  .phone {
    right: 3px;
    transform: rotate(9deg) scale(0.77);
  }
  .mascot {
    width: 245px;
    left: -32px;
    bottom: 22px;
  }
  .art-blob {
    width: 285px;
    height: 294px;
    top: 43px;
    left: 0;
  }
  .orbit-one {
    left: 0;
    width: 287px;
    height: 256px;
  }
  .orbit-two {
    left: 35px;
    width: 222px;
    height: 318px;
  }
  .reward-pill {
    left: 18px;
    bottom: 0;
  }
  .spark-one {
    left: 8px;
    top: 30px;
  }
  .spark-two {
    top: 260px;
    right: 0;
  }
  .hero-art figcaption {
    font-size: 9px;
  }
  .download-panel {
    padding-inline: 15px;
  }
  .download-note {
    column-gap: 5px;
  }
  .beta-label {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
