:root {
  --ink: #19172b;
  --muted: #696779;
  --paper: #faf9f6;
  --purple: #5740e9;
  --line: #e8e5ee;
  --accent: #6a48ef;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #178b8f;
  outline-offset: 5px;
}
.wrap {
  max-width: 1280px;
  margin: auto;
  padding-inline: 40px;
}
.skip {
  position: absolute;
  top: -70px;
  z-index: 100;
  background: white;
  padding: 15px;
}
.skip:focus {
  top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #faf9f6eb;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e8e5ee80;
}
nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font:
    600 38px Fredoka,
    sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: -2px;
}
.brand img {
  object-fit: contain;
  margin-right: 8px;
}
.brand span {
  color: var(--purple);
}
.navlinks {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.navlinks a {
  text-decoration: none;
}
.navlinks a:hover {
  color: var(--purple);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: var(--purple);
  color: white;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  box-shadow: 0 5px 0 #3924a9;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #3924a9;
}
.button.small {
  padding: 12px 19px;
  font-size: 13px;
  border-radius: 12px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  line-height: 1.8;
  color: var(--purple);
  margin: 0 0 20px;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #169780;
  margin-right: 8px;
  box-shadow: 0 0 0 5px #16978012;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Fredoka, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -1.5px;
}
h1 {
  font-size: clamp(55px, 5.4vw, 78px);
  line-height: 1.05;
  margin-bottom: 24px;
}
h1 em {
  font-style: normal;
  color: var(--purple);
}
h2 {
  font-size: clamp(34px, 3.5vw, 49px);
  line-height: 1.1;
  margin-bottom: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding-block: 65px 85px;
  min-height: 740px;
}
.intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 30px 0 20px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #b5b1c3;
  padding: 8px 0;
}
.quiet {
  font-size: 12px;
  color: var(--muted);
}
.hero-art {
  height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse, #e9e3ff 0, transparent 67%);
}
.orbit {
  position: absolute;
  border: 1px solid #d6ccec;
  border-radius: 50%;
  width: 520px;
  height: 330px;
  transform: rotate(-30deg);
}
.orbit-two {
  transform: rotate(35deg);
  width: 500px;
  height: 360px;
}
.hero-phone {
  width: 247px;
  border: 7px solid #232136;
  border-radius: 38px;
  overflow: hidden;
  transform: rotate(7deg);
  box-shadow: 20px 28px 45px #35294a25;
  background: white;
}
.hero-phone img {
  width: 100%;
  height: auto;
}
.hero-bolo {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 155px;
  filter: drop-shadow(0 16px 12px #35294a25);
}
.hello {
  position: absolute;
  border-radius: 18px;
  background: #fff;
  padding: 14px 25px;
  box-shadow: 0 8px 30px #35294a0a;
  font:
    500 27px Fredoka,
    sans-serif;
}
.hello-one {
  top: 25px;
  left: 18px;
  transform: rotate(-10deg);
  color: #945243;
}
.hello-two {
  right: 0;
  top: 100px;
  transform: rotate(8deg);
  color: #7d5ab5;
}
.hello-three {
  right: 0;
  bottom: 75px;
  transform: rotate(-8deg);
  color: #14887a;
}
.little-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  position: absolute;
  bottom: 0;
  right: 65px;
  transform: rotate(-6deg);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.carousel-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.circle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 19px;
}
.circle:hover {
  background: #eee9ff;
}
.region-tabs {
  display: flex;
  gap: 9px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.region-tabs button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 12px 19px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.region-tabs button[aria-pressed="true"] {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
}
.showcase {
  padding-bottom: 90px;
}
.showcase-panel {
  background: #eee9fa;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 590px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.showcase-copy {
  padding: 62px 20px 50px 45px;
  z-index: 2;
}
.showcase-copy .eyebrow {
  color: var(--accent);
  margin-bottom: 12px;
}
.showcase-copy h3 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 22px;
}
.region-tag {
  font-size: 21px;
  line-height: 1.5;
  max-width: 280px;
}
.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 26px;
}
.availability {
  font-size: 11px;
  line-height: 1.6;
  color: #575166;
  max-width: 280px;
  margin: 20px 0 26px;
}
.shot-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 330px;
}
.shot-tabs button {
  font-size: 11px;
  background: #ffffff80;
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: 9px;
}
.shot-tabs button[aria-pressed="true"] {
  background: white;
  border-color: var(--accent);
  color: var(--accent);
}
.screens {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 12px 35px 0;
  gap: 0;
  min-width: 0;
  overflow: hidden;
}
.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent, black 30%);
}
.phone {
  border: 6px solid #2d2c3c;
  border-radius: 32px;
  background: #fff;
  box-shadow: 10px 25px 35px #25233d30;
  position: relative;
  width: 222px;
  overflow: hidden;
  margin: 0;
  flex-shrink: 0;
}
.phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 650/1400;
  object-fit: cover;
  object-position: top;
}
.side-phone {
  transform: rotate(-8deg) translateX(18px);
  width: 195px;
  opacity: 0.93;
}
.main-phone {
  transform: rotate(5deg);
  z-index: 1;
}
.phone figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffffee;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 8px;
}
.screens.art-only .phone {
  display: none;
}
.screens.art-only .scene {
  opacity: 1;
  mask-image: linear-gradient(90deg, transparent, black 25%);
}
.art-label {
  position: absolute;
  bottom: 25px;
  background: #ffffffdb;
  border-radius: 9px;
  padding: 10px;
  font-size: 12px;
}
.app-section {
  padding-block: 40px 95px;
}
.search {
  min-width: 280px;
}
.search label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.search input {
  border: 1px solid #d9d5e4;
  background: white;
  border-radius: 13px;
  width: 100%;
  padding: 15px 17px;
  font-size: 13px;
  color: var(--ink);
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.app-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 23px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px #3323400b;
}
.card-art {
  height: 185px;
  width: 100%;
  object-fit: cover;
}
.card-content {
  padding: 25px;
}
.card-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
  color: var(--card-color);
}
.card-content h3 {
  font-size: 29px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.card-content p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  min-height: 42px;
  margin-bottom: 14px;
}
.card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--card-color);
}
.store-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  margin-top: 17px;
}
.store-links a {
  font-weight: 600;
}
.card-status {
  font-size: 10px;
  margin-top: 17px;
  color: var(--muted);
  line-height: 1.6;
}
.matched {
  color: var(--card-color);
  font-weight: 600;
}
.no-results {
  padding: 30px;
  background: white;
  border-radius: 15px;
  line-height: 1.7;
}
.how {
  padding: 75px 0 85px;
  background: #eeebf7;
  border-block: 1px solid #e5dff0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 55px;
}
.step-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--purple);
}
.steps h3 {
  font-size: 30px;
  margin: 17px 0 15px;
  letter-spacing: -0.5px;
}
.steps p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0;
}
.closing {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block: 70px;
}
.closing > img {
  width: 110px;
  height: 145px;
  object-fit: contain;
}
.closing > div {
  flex: 1;
}
.closing .eyebrow {
  margin-bottom: 10px;
}
.closing h2 {
  font-size: 38px;
}
.closing p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin: 15px 0 0;
}
footer {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-block: 30px;
  font-size: 11px;
  color: var(--muted);
}
footer .brand {
  font-size: 28px;
  color: var(--ink);
}
footer p {
  flex: 1;
  margin: 0;
}
footer a {
  text-decoration: none;
}
[hidden] {
  display: none !important;
}
@media (min-width: 900px) {
  .hero-art {
    animation: arrive 0.8s ease-out both;
  }
  .hero-copy {
    animation: arrive 0.7s ease-out both;
  }
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1000px) {
  .wrap {
    padding-inline: 26px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-art {
    height: 500px;
  }
  .hero-phone {
    width: 215px;
  }
  .orbit {
    width: 390px;
  }
  .orbit-two {
    width: 390px;
  }
  .hello {
    font-size: 22px;
    padding: 12px 18px;
  }
  .hello-two {
    right: -5px;
  }
  .hero-bolo {
    width: 125px;
  }
  .little-note {
    right: 20px;
  }
  .showcase-copy {
    padding: 45px 20px 35px 30px;
  }
  .showcase-copy h3 {
    font-size: 43px;
  }
  .phone {
    width: 190px;
  }
  .side-phone {
    width: 157px;
  }
  .showcase-panel {
    min-height: 550px;
  }
  .card-content {
    padding: 21px;
  }
  .card-content h3 {
    font-size: 26px;
  }
  .closing {
    gap: 22px;
  }
  .closing h2 {
    font-size: 32px;
  }
}
@media (max-width: 720px) {
  .wrap {
    padding-inline: 22px;
  }
  nav {
    height: 76px;
  }
  .brand {
    font-size: 32px;
  }
  .brand img {
    width: 34px;
    height: 43px;
  }
  .navlinks {
    display: none;
  }
  .button.small {
    padding: 11px 14px;
    font-size: 11px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 38px;
    padding-bottom: 42px;
    gap: 8px;
    overflow: hidden;
    min-height: 0;
  }
  .hero-copy {
    text-align: center;
    width: 100%;
  }
  h1 {
    font-size: 54px;
    line-height: 1.03;
    letter-spacing: -1.5px;
  }
  h1 br:nth-child(2) {
    display: none;
  }
  h1 em {
    display: block;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .intro {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-actions {
    justify-content: center;
    gap: 25px;
    margin-top: 23px;
  }
  .button {
    padding: 16px 20px;
    font-size: 13px;
  }
  .quiet {
    font-size: 10px;
  }
  .hero-art {
    height: 420px;
    width: 100%;
    max-width: 420px;
    margin-top: 20px;
  }
  .hero-phone {
    width: 185px;
    border-width: 5px;
    border-radius: 27px;
  }
  .hero-bolo {
    width: 105px;
    left: 6px;
    bottom: 12px;
  }
  .hello-one {
    top: 20px;
    left: 5px;
  }
  .hello-two {
    top: 65px;
    right: 0;
  }
  .hello-three {
    right: 0;
    bottom: 55px;
  }
  .hello {
    font-size: 19px;
    padding: 12px 17px;
  }
  .orbit {
    width: 340px;
    height: 270px;
  }
  .orbit-two {
    width: 340px;
    height: 290px;
  }
  .little-note {
    font-size: 10px;
    right: 12px;
    bottom: 4px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 15px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  .carousel-controls {
    gap: 5px;
    align-self: flex-end;
  }
  .circle {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .showcase .section-heading {
    flex-wrap: wrap;
  }
  .showcase .section-heading > div:first-child {
    max-width: 270px;
  }
  .region-tabs {
    gap: 7px;
  }
  .region-tabs button {
    padding: 10px 12px;
    font-size: 10px;
    flex: 1 0 28%;
    white-space: nowrap;
  }
  .showcase-panel {
    grid-template-columns: 1fr;
    border-radius: 23px;
  }
  .showcase-copy {
    padding: 30px 26px 12px;
  }
  .showcase-copy h3 {
    font-size: 37px;
    margin-bottom: 13px;
  }
  .region-tag {
    font-size: 17px;
    margin-bottom: 12px;
    max-width: none;
  }
  .muted {
    font-size: 12px;
    margin-bottom: 18px;
    max-width: none;
  }
  .availability {
    font-size: 10px;
    margin: 16px 0;
  }
  .shot-tabs {
    max-width: none;
  }
  .screens {
    height: 410px;
    padding: 30px 5px 20px;
  }
  .phone {
    width: 168px;
    border-width: 5px;
    border-radius: 25px;
  }
  .side-phone {
    width: 145px;
  }
  .screens.art-only {
    height: 280px;
  }
  .scene {
    mask-image: linear-gradient(180deg, transparent, black 30%);
  }
  .screens.art-only .scene {
    mask-image: linear-gradient(180deg, transparent, black 20%);
  }
  .showcase {
    padding-bottom: 35px;
  }
  .app-section {
    padding-block: 35px 50px;
  }
  .app-section .section-heading {
    display: block;
  }
  .search {
    min-width: 0;
    margin-top: 25px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-art {
    height: 190px;
  }
  .card-content {
    padding: 24px;
  }
  .card-content h3 {
    font-size: 30px;
  }
  .card-content p {
    min-height: 0;
  }
  .card-status,
  .store-links {
    font-size: 11px;
  }
  .how {
    padding-block: 48px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }
  .steps article + article {
    border-top: 1px solid #dcd5e9;
    padding-top: 27px;
  }
  .steps h3 {
    margin-block: 12px;
    font-size: 27px;
  }
  .closing {
    flex-wrap: wrap;
    gap: 18px;
    padding-block: 42px;
  }
  .closing > img {
    width: 80px;
    height: 110px;
  }
  .closing > div {
    min-width: 190px;
  }
  .closing h2 {
    font-size: 28px;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .closing p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.6;
  }
  .closing > .button {
    width: 100%;
  }
  footer {
    flex-wrap: wrap;
    gap: 15px;
    padding-block: 25px;
  }
  footer p {
    flex-basis: 70%;
    font-size: 10px;
    line-height: 1.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Animated regional cards, with every language visible at a glance. */
.app-card { display: flex; flex-direction: column; }
.card-media { position: relative; flex: none; overflow: hidden; background: #eee8dd; }
.card-media .card-art { display: block; }
.card-content { display: flex; flex-direction: column; flex: 1; }
.language-badges { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 7px; list-style: none; padding: 0; margin: 3px 0 26px; }
.language-badge { padding: 6px 10px; border: 1px solid color-mix(in srgb, var(--card-color) 18%, white); border-radius: 999px; background: color-mix(in srgb, var(--card-color) 6%, white); color: #393448; font-size: 12px; line-height: 1.3; font-weight: 600; }
.language-badge.is-match { background: var(--card-color); color: white; border-color: var(--card-color); }
.card-link { margin-top: auto; }
.tile-playback { position: absolute; right: 12px; bottom: 12px; min-width: 38px; min-height: 38px; display: grid; place-items: center; border: 1px solid #ffffff70; border-radius: 50%; background: #201c32b8; color: white; cursor: pointer; backdrop-filter: blur(8px); }
.tile-playback:hover { background: #201c32; }
.tile-playback:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.scroll-reveal { opacity: 0; translate: 0 28px; transition: opacity 650ms ease var(--reveal-delay, 0ms), translate 750ms cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms); }
.scroll-reveal[data-reveal="left"] { translate: -32px 0; }
.scroll-reveal.is-revealed { opacity: 1; translate: 0 0; }
@media (max-width: 600px) { .language-badge { font-size: 12px; padding: 6px 9px; } }
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal, .scroll-reveal[data-reveal="left"] { opacity: 1; translate: none; transition: none; }
}
