@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("assets/fonts/libre-caslon-condensed-regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("assets/fonts/libre-caslon-condensed-bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --paper: #ffffff;
  --paper-bright: #ffffff;
  --page-pink: #fff0f6;
  --ink: #101311;
  --ink-soft: #535b56;
  --line: rgb(16 19 17 / 0.12);
  --pink: #fa5fa8;
  --yellow: #ffe26a;
  --blue: #cadcff;
  --blue-deep: #0d2940;
  --peach: #ffd6bd;
  --green: #dfeecf;
  --radius-xl: clamp(1.75rem, 4vw, 3.25rem);
  --shell: min(calc(100% - 3rem), 76rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #ffffff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, var(--page-pink) 0, #ffffff 34rem),
    #ffffff;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 500;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

.award-bar {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  color: #20170d;
  background: var(--yellow);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
}

.award-bar p {
  margin: 0;
}

.award-bar > span {
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  width: 100%;
  min-height: 5rem;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 0.75rem max(1.5rem, calc((100vw - 82rem) / 2));
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    width 360ms var(--ease-out),
    top 360ms var(--ease-out),
    min-height 360ms var(--ease-out),
    padding 360ms var(--ease-out),
    border-color 220ms ease,
    border-radius 360ms var(--ease-out),
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.site-header.is-scrolled {
  top: 0.75rem;
  width: min(calc(100% - 2rem), 46rem);
  min-height: 4rem;
  grid-template-columns: minmax(7rem, 1fr) auto minmax(7rem, 1fr);
  margin-inline: auto;
  padding: 0 1rem;
  border-color: transparent;
  border-radius: 2.5rem;
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05), 0 8px 20px -14px rgb(0 0 0 / 0.22);
}

.site-header.is-scrolled .brand span {
  width: 0;
  overflow: hidden;
  opacity: 0;
}

.site-header.is-scrolled .brand {
  gap: 0;
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-self: start;
  gap: 0.55rem;
  text-decoration: none;
}

.brand img {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 30%;
  object-fit: contain;
}

.brand span {
  font-family: "Libre Caslon Condensed", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
  transition: width 280ms var(--ease-out), opacity 180ms ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.desktop-nav a,
.header-download,
.menu-toggle {
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--ink-soft);
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.6rem;
}

.header-download {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.7rem 1rem 0.72rem 1.15rem;
  border-radius: 999px;
  color: var(--paper-bright);
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 180ms ease, transform 240ms var(--ease-out), background-color 160ms ease, visibility 0s 180ms;
}

.site-header.show-download .header-download {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.header-download:hover {
  background: #273029;
}

.header-download i,
.mobile-menu__download i {
  font-style: normal;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  padding: clamp(3rem, 5vw, 4.5rem) 0 0;
  background: transparent;
}

.hero-copy,
.section-heading {
  width: var(--shell);
  margin-inline: auto;
  text-align: center;
}

.hero-copy {
  max-width: 72rem;
}

.eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-copy h3,
.belief h2,
.final-cta h2 {
  margin: 0;
  font-family: "Libre Caslon Condensed", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  white-space: pre-line;
}

.hero h1 {
  margin-top: 1.1rem;
  font-size: clamp(4.25rem, 8.5vw, 7.4rem);
  line-height: 0.86;
}

.hero-lede {
  max-width: 45rem;
  margin: 2rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  text-wrap: balance;
}

.app-store-button {
  display: inline-flex;
  min-width: 15rem;
  min-height: 4.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.72rem 1.6rem;
  border-radius: 999px;
  color: var(--paper-bright);
  background: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: transform 220ms var(--ease-out), background-color 160ms ease;
}

.app-store-button:hover {
  background: #29312b;
  transform: translateY(-2px);
}

.apple-mark {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.app-store-button > span:last-child {
  display: grid;
}

.app-store-button small {
  font-size: 0.69rem;
  line-height: 1.1;
}

.app-store-button strong {
  font-size: 1.48rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 2rem), 86rem);
  height: clamp(42rem, 66vw, 55rem);
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #d7bd96;
}

.hero-stage__scene {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: #15222b;
}

.hero-stage__scene-image,
.hero-stage__wash,
.hero-stage__grain {
  position: absolute;
  inset: 0;
}

.hero-stage__scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.1s ease;
  will-change: opacity;
}

.hero-stage__scene-image.is-active {
  opacity: 1;
}

.hero-stage[data-scene="rain"] .hero-stage__scene-image,
.hero-stage[data-scene="room"] .hero-stage__scene-image {
  object-position: center 48%;
}

.hero-stage[data-scene="road"] .hero-stage__scene-image {
  object-position: center 54%;
}

.hero-stage[data-scene="palms"] .hero-stage__scene-image {
  object-position: center 62%;
}

.hero-stage[data-scene="joshua"] .hero-stage__scene-image {
  object-position: 38% 56%;
}

.hero-stage__wash {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 26%, rgb(5 14 20 / 0.12) 50%, rgb(5 14 20 / 0.42) 100%),
    linear-gradient(180deg, rgb(5 12 17 / 0.2), transparent 35%, rgb(5 12 17 / 0.48));
}

.hero-stage__grain {
  z-index: 3;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-stage::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 62% 44%, rgb(255 245 219 / 0.24), transparent 35%);
  content: "";
  pointer-events: none;
}

.device {
  position: absolute;
  z-index: 5;
  width: clamp(19rem, 31vw, 25rem);
  aspect-ratio: 865 / 1772;
  filter: drop-shadow(0 2rem 4rem rgb(4 10 13 / 0.4));
}

.device--hero {
  top: 7%;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
}

.stage-album-stream {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: visible;
  contain: layout style;
  pointer-events: none;
}

.stage-album-stream--front {
  z-index: 8;
}

.stage-album-generation {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 850ms var(--ease-out);
}

.stage-album-generation.is-active {
  opacity: 1;
}

.stage-album-generation.is-retiring {
  opacity: 0;
}

.stage-album-particle {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--cover-size, 5rem);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 0.3);
  border-radius: clamp(0.35rem, 0.8vw, 0.65rem);
  object-fit: cover;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 0.38);
  opacity: 0;
  offset-anchor: 50% 50%;
  offset-distance: 0%;
  offset-rotate: 0deg;
  transform: scale(0.04);
  backface-visibility: hidden;
  will-change: offset-distance, transform, opacity;
}

.device__hardware {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0 7.5%, transparent 7.5% 96.5%, #000 96.5%),
    linear-gradient(to right, #000 0 4.25%, transparent 4.25% 95.75%, #000 95.75%);
  mask-image:
    linear-gradient(to bottom, #000 0 7.5%, transparent 7.5% 96.5%, #000 96.5%),
    linear-gradient(to right, #000 0 4.25%, transparent 4.25% 95.75%, #000 95.75%);
}

.moment-card,
.playlist-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgb(255 255 255 / 0.36);
  color: var(--paper-bright);
  background: rgb(8 20 28 / 0.82);
  box-shadow: 0 1.5rem 4rem rgb(4 10 13 / 0.32);
  backdrop-filter: blur(18px) saturate(1.15);
}

.moment-card--source {
  top: 20%;
  left: clamp(1.5rem, 5vw, 5.5rem);
  width: clamp(14rem, 22vw, 20rem);
  padding: 0.65rem;
  border-radius: 1.4rem;
  transform: rotate(-4deg);
}

.moment-card > p,
.playlist-card > p {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.moment-card > p {
  padding: 0.4rem 0.45rem 0.75rem;
}

.moment-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.95rem;
  object-fit: cover;
}

.moment-card__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.75rem 0.35rem 0.2rem;
}

.moment-card__signals span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: rgb(246 245 238 / 0.76);
  background: rgb(255 255 255 / 0.1);
  font-size: 0.57rem;
}

.playlist-card {
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: 14%;
  width: clamp(15rem, 24vw, 22rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 1.75rem;
  transform: rotate(3deg);
}

.playlist-card__covers {
  display: flex;
  align-items: flex-end;
  margin: 1.2rem 0 1.1rem;
}

.playlist-card__covers img {
  width: 38%;
  aspect-ratio: 1;
  border-radius: 0.45rem;
  box-shadow: 0 0.75rem 1.5rem rgb(0 0 0 / 0.26);
}

.playlist-card__covers img + img {
  margin-left: -7%;
}

.playlist-card__covers img:nth-child(2) {
  width: 44%;
  transform: translateY(-0.4rem);
}

.playlist-card strong,
.playlist-card > span {
  display: block;
}

.playlist-card strong {
  font-family: "Libre Caslon Condensed", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.playlist-card > span {
  margin-top: 0.35rem;
  color: rgb(246 245 238 / 0.62);
  font-size: 0.67rem;
}

.trust-row {
  display: grid;
  width: var(--shell);
  grid-template-columns: auto auto minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(6rem, 10vw, 10rem);
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-row > div > span {
  font-size: 1.4rem;
}

.trust-row p,
.trust-row small,
.trust-row strong {
  display: block;
  margin: 0;
}

.trust-row small {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.trust-row strong {
  margin-top: 0.1rem;
  font-size: 0.82rem;
}

.trust-row__note {
  max-width: 30rem;
  justify-self: end;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.journey {
  padding: clamp(6rem, 8vw, 8rem) 0;
  border-radius: 0;
  background: #ffffff;
}

.section-heading {
  max-width: 72rem;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(3.4rem, 7.4vw, 6.5rem);
  line-height: 0.94;
}

.section-heading > p:last-child {
  max-width: 43rem;
  margin: 1.1rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.journey-map {
  position: relative;
  width: min(calc(100% - 2rem), 86rem);
  min-height: 44rem;
  margin: clamp(3.5rem, 6vw, 5rem) auto 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-xl);
  background: #15201b;
}

.journey-map::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(5 11 9 / 0.18), rgb(5 11 9 / 0.72)),
    linear-gradient(90deg, rgb(5 11 9 / 0.58), transparent 58%);
  content: "";
}

.journey-map__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.journey-map__steps {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: clamp(1rem, 2.5vw, 2.5rem);
}

.journey-step {
  display: grid;
  grid-template-columns: 2.5rem minmax(7rem, 0.45fr) minmax(14rem, 0.9fr) minmax(16rem, 1fr);
  min-width: 0;
  align-items: center;
  scroll-margin-top: 7rem;
  gap: clamp(0.8rem, 1.6vw, 1.8rem);
  padding: clamp(1.25rem, 2vw, 2rem) 0;
  border-top: 1px solid rgb(251 250 247 / 0.34);
  color: var(--paper-bright);
}

.journey-step:last-child {
  border-bottom: 1px solid rgb(251 250 247 / 0.34);
}

.journey-step__number {
  margin: 0;
  color: rgb(251 250 247 / 0.56);
  font-size: 0.64rem;
  font-weight: 800;
}

.journey-step__label {
  margin: 0;
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journey-step h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  line-height: 1;
}

.journey-step > p:not(.journey-step__number, .journey-step__label) {
  margin: 0;
  color: rgb(251 250 247 / 0.7);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  line-height: 1.55;
}

.journey-step__result {
  display: none;
  min-height: 3.2rem;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  color: var(--ink);
  background: rgb(251 250 247 / 0.94);
  font-size: 0.74rem;
}

.journey-step__result span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--pink);
}

.journey-signals {
  display: none;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.journey-signals span {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgb(251 250 247 / 0.94);
  font-size: 0.65rem;
  font-weight: 700;
}

.journey-covers {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  margin-top: auto;
}

.journey-covers img {
  width: 112%;
  aspect-ratio: 1;
  border-radius: 0.45rem;
  box-shadow: 0 0.8rem 1.6rem rgb(0 0 0 / 0.28);
  object-fit: cover;
  transform: rotate(-3deg);
}

.journey-covers img:nth-child(even) {
  transform: translateY(0.55rem) rotate(3deg);
}

.moments {
  padding: clamp(7rem, 12vw, 12rem) 0;
  color: var(--paper-bright);
  background: #0f1512;
}

.section-heading--light .eyebrow,
.section-heading--light > p:last-child {
  color: rgb(251 250 247 / 0.6);
}

.moment-grid {
  display: grid;
  width: min(calc(100% - 2rem), 86rem);
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 16rem;
  gap: 1rem;
  margin: clamp(4rem, 7vw, 6rem) auto 0;
}

.moment {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: #26312c;
}

.moment--wide {
  grid-column: span 8;
}

.moment--tall {
  grid-row: span 3;
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.moment:hover img {
  transform: scale(1.025);
}

.moment::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgb(4 8 6 / 0.75));
  content: "";
}

.moment figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
}

.moment strong,
.moment span {
  display: block;
}

.moment strong {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  letter-spacing: -0.045em;
}

.moment span {
  margin-top: 0.25rem;
  color: rgb(251 250 247 / 0.64);
  font-size: 0.75rem;
}

.belief {
  display: grid;
  width: min(calc(100% - 2rem), 86rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding: clamp(7rem, 12vw, 12rem) 0;
  margin: 0 auto;
}

.belief h2 {
  margin-top: 1rem;
  font-size: clamp(3rem, 5.7vw, 5.6rem);
  line-height: 0.95;
}

.belief-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.belief-copy > a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.belief-copy > a i {
  font-style: normal;
  transition: transform 180ms var(--ease-out);
}

.belief-copy > a:hover i {
  transform: translate(0.16rem, -0.16rem);
}

.belief-team {
  position: relative;
  min-height: 38rem;
}

.belief-team > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center 68%;
}

.belief-team__card {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  color: var(--paper-bright);
  background: transparent;
  text-shadow: 0 1px 1rem rgb(0 0 0 / 0.72);
}

.belief-team__card > span {
  font-size: 2rem;
}

.belief-team__card p,
.belief-team__card small,
.belief-team__card strong {
  display: block;
  margin: 0;
}

.belief-team__card small {
  color: rgb(251 250 247 / 0.6);
  font-size: 0.68rem;
}

.belief-team__card strong {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  line-height: 1.3;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 56rem;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper-bright);
  text-align: center;
}

.final-cta::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(rgb(7 12 10 / 0.48), rgb(7 12 10 / 0.76));
  content: "";
}

.final-cta__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__copy {
  width: min(calc(100% - 3rem), 65rem);
  padding: 7rem 0;
}

.final-cta__copy > img {
  width: clamp(4.5rem, 7vw, 6.5rem);
  border-radius: 22%;
}

.final-cta .eyebrow {
  margin-top: 2rem;
  color: rgb(251 250 247 / 0.65);
}

.final-cta h2 {
  margin-top: 1.2rem;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.final-cta__copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 1.6rem auto 0;
  color: rgb(251 250 247 / 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.app-store-button--dark {
  color: var(--ink);
  background: var(--paper-bright);
}

.app-store-button--dark:hover {
  background: #ebe8e1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(24rem, 0.8fr);
  gap: clamp(4rem, 10vw, 10rem);
  padding: clamp(5rem, 8vw, 8rem) max(1.5rem, calc((100vw - 76rem) / 2)) max(2rem, env(safe-area-inset-bottom));
  color: rgb(251 250 247 / 0.68);
  background: var(--ink);
}

.brand--footer {
  color: var(--paper-bright);
}

.site-footer__intro > p {
  max-width: 24rem;
  margin: 1.25rem 0 0;
  font-size: 1rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  gap: 3rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.35rem;
}

.site-footer nav h2 {
  margin: 0 0 0.75rem;
  color: var(--paper-bright);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.79rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer nav a:hover {
  color: var(--paper-bright);
}

.site-footer__bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(251 250 247 / 0.14);
  font-size: 0.72rem;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-language {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-language > span {
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.language-picker {
  position: relative;
}

.language-picker__trigger {
  display: inline-flex;
  min-width: 7.6rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem 0.72rem 1rem;
  border: 1px solid rgb(251 250 247 / 0.2);
  border-radius: 999px;
  color: rgb(251 250 247 / 0.82);
  background: var(--ink);
  font: inherit;
  cursor: pointer;
}

.language-picker__trigger i {
  width: 0.48rem;
  height: 0.48rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 180ms var(--ease-out);
}

.language-picker__trigger[aria-expanded="true"] i {
  transform: translateY(0.12rem) rotate(225deg);
}

.language-picker__menu {
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: calc(100% + 0.55rem);
  display: grid;
  width: 10rem;
  padding: 0.35rem;
  border: 1px solid rgb(251 250 247 / 0.16);
  border-radius: 1rem;
  background: #171d1a;
  box-shadow: 0 1.2rem 3rem rgb(0 0 0 / 0.34);
}

.language-picker__menu[hidden] {
  display: none;
}

.language-picker__menu button {
  min-height: 2.65rem;
  padding: 0.65rem 0.8rem;
  border: 0;
  border-radius: 0.72rem;
  color: rgb(251 250 247 / 0.72);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-picker__menu button:hover,
.language-picker__menu button[aria-selected="true"] {
  color: var(--ink);
  background: var(--paper-bright);
}

.language-picker__menu button:focus-visible {
  outline: 1px solid rgb(251 250 247 / 0.72);
  outline-offset: -3px;
  box-shadow: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.35rem, 0);
  transition:
    opacity 620ms ease,
    transform 760ms var(--ease-out);
  will-change: opacity, transform;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js [data-reveal] > [data-reveal-part] {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity 560ms ease,
    transform 700ms var(--ease-out);
  transition-delay: calc(var(--reveal-index, 0) * 85ms + 80ms);
  will-change: opacity, transform;
}

.js [data-reveal].is-visible > [data-reveal-part] {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js .journey-map[data-reveal] .journey-step {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition:
    opacity 580ms ease,
    transform 720ms var(--ease-out);
  transition-delay: calc(var(--reveal-index, 0) * 100ms + 120ms);
}

.js .journey-map[data-reveal].is-visible .journey-step {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px #a9165d;
}

html[lang^="zh"] .hero h1,
html[lang^="zh"] .section-heading h2,
html[lang^="zh"] .feature-copy h3,
html[lang^="zh"] .belief h2,
html[lang^="zh"] .final-cta h2 {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

html[lang="zh-Hant"] .hero h1,
html[lang="zh-Hant"] .section-heading h2,
html[lang="zh-Hant"] .feature-copy h3,
html[lang="zh-Hant"] .belief h2,
html[lang="zh-Hant"] .final-cta h2 {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

html[lang^="zh"] .hero-lede,
html[lang^="zh"] .section-heading > p:last-child,
html[lang^="zh"] .feature-copy > p:last-child,
html[lang^="zh"] .belief-copy > p:not(.eyebrow) {
  line-height: 1.8;
}

@media (max-width: 980px) {
  :root {
    --shell: min(calc(100% - 2.5rem), 50rem);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 1.25rem;
  }

  .site-header.is-scrolled {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    min-width: 5.25rem;
    min-height: 2.8rem;
    align-items: center;
    justify-content: flex-start;
    padding: 0.7rem 2rem 0.72rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--paper-bright);
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    position: absolute;
    right: 0.8rem;
    width: 0.82rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 220ms var(--ease-out);
  }

  .menu-toggle i {
    top: calc(50% - 0.16rem);
  }

  .menu-toggle i::after {
    top: 0.34rem;
    right: 0;
  }

  .site-header.menu-open .menu-toggle i {
    top: 50%;
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle i::after {
    top: 0;
    transform: rotate(-90deg);
  }

  .site-header.menu-open {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .mobile-menu {
    position: fixed;
    z-index: 20;
    top: calc(2.4rem + 5rem);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    padding: clamp(2rem, 8vw, 4rem) 1.25rem max(2rem, env(safe-area-inset-bottom));
    background: var(--paper-bright);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 320ms var(--ease-out), visibility 0s 320ms;
  }

  .site-header.is-scrolled .mobile-menu {
    top: 5.5rem;
  }

  .site-header.menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .mobile-menu__links {
    display: grid;
  }

  .mobile-menu__links a {
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(2.5rem, 9vw, 4rem);
    font-weight: 720;
    letter-spacing: -0.055em;
    text-decoration: none;
  }

  .mobile-menu__links a::after {
    color: var(--pink);
    content: "↗";
    font-size: 1rem;
  }

  .mobile-menu__download {
    display: flex;
    min-height: 3.6rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    color: var(--paper-bright);
    background: var(--ink);
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-menu__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 1.5rem;
  }

  .mobile-menu__legal a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--ink-soft);
    font-size: 0.76rem;
    text-decoration: none;
  }

  .hero-stage {
    height: 49rem;
  }

  .moment-card--source {
    top: 11%;
    left: 1.5rem;
  }

  .playlist-card {
    right: 1.5rem;
    bottom: 10%;
  }

  .trust-row {
    grid-template-columns: repeat(2, auto);
  }

  .trust-row__note {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .journey-map {
    min-height: auto;
  }

  .journey-map__steps {
    position: relative;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .journey-step {
    min-height: 12rem;
    transform: none !important;
  }

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

  .belief-copy {
    max-width: 48rem;
  }

  .belief-team {
    min-height: 40rem;
  }
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4.5rem 1rem max(2rem, env(safe-area-inset-bottom));
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 2rem);
    --radius-xl: 1.75rem;
  }

  .award-bar {
    font-size: 0.63rem;
  }

  .site-header {
    min-height: 4.5rem;
    padding: 0.55rem 0.75rem;
  }

  .site-header.is-scrolled {
    top: 0.65rem;
    width: calc(100% - 1rem);
    min-height: 4.25rem;
    padding-inline: 0.65rem;
  }

  .brand img {
    width: 1.55rem;
    height: 1.55rem;
  }

  .brand span {
    font-size: 1.65rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-download {
    min-height: 2.75rem;
    padding: 0.65rem 0.8rem;
  }

  .header-download i {
    display: none;
  }

  .menu-toggle {
    min-width: 4.75rem;
    min-height: 2.75rem;
    padding-left: 0.8rem;
  }

  .mobile-menu {
    top: calc(2.4rem + 4.5rem);
    padding-inline: 1rem;
  }

  .site-header.is-scrolled .mobile-menu {
    top: 4.9rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    margin-top: 0.9rem;
    font-size: clamp(3.5rem, 16vw, 5.1rem);
    line-height: 0.92;
  }

  html[lang^="zh"] .hero h1 {
    font-size: clamp(3rem, 13.8vw, 4.2rem);
    letter-spacing: -0.06em;
    line-height: 1.02;
  }

  .hero-lede {
    margin-top: 1.5rem;
    font-size: 1rem;
  }

  .app-store-button {
    min-width: min(100%, 18rem);
  }

  .hero-stage {
    width: calc(100% - 1rem);
    height: 49rem;
    margin-top: 3.5rem;
  }

  .hero-stage__scene {
    background-position: 60% 50%;
  }

  .device--hero {
    top: 8%;
    width: min(75vw, 20.5rem);
  }

  .moment-card--source {
    top: auto;
    bottom: 3.5rem;
    left: -3.4rem;
    width: 13rem;
    transform: rotate(-5deg);
  }

  .playlist-card {
    right: -3.5rem;
    bottom: 5.5rem;
    width: 13.5rem;
    transform: rotate(4deg);
  }

  .playlist-card > p,
  .playlist-card > span {
    display: none;
  }

  .playlist-card strong {
    font-size: 1.25rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 3rem 6rem;
  }

  .trust-row__note {
    grid-column: 1;
    margin-top: 0.5rem;
  }

  .journey {
    padding-block: 6rem;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 13.5vw, 4.6rem);
    line-height: 0.96;
  }

  .journey-map {
    width: calc(100% - 1rem);
    margin-top: 3rem;
    border-radius: 1.75rem;
  }

  .journey-map__steps {
    gap: 0;
    padding: 1.25rem;
  }

  .journey-step {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.75rem 0.25rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .journey-step__label {
    margin-top: 0.8rem;
  }

  .journey-step h3 {
    margin-top: 0.55rem;
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
  }

  .journey-step > p:not(.journey-step__number, .journey-step__label) {
    margin-top: 0.65rem;
    font-size: 0.92rem;
  }

  .moment-grid {
    width: calc(100% - 1rem);
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .moment,
  .moment--wide,
  .moment--tall {
    min-height: 29rem;
    grid-column: 1;
    grid-row: auto;
    border-radius: 1.5rem;
  }

  .moment--wide {
    min-height: 22rem;
  }

  .belief {
    gap: 3rem;
    padding-block: 6rem;
  }

  .belief h2 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .belief-team {
    min-height: 35rem;
  }

  .belief-team__card {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .final-cta {
    min-height: 48rem;
  }

  .final-cta h2 {
    font-size: clamp(3.6rem, 15vw, 5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4.5rem 1rem max(2rem, env(safe-area-inset-bottom));
  }

  .site-footer__links {
    gap: 2rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .header-download {
    max-width: 6.7rem;
  }

  .header-download span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .moment-card--source {
    left: -4.5rem;
  }

  .playlist-card {
    right: -4.6rem;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js [data-reveal] > [data-reveal-part],
  .js .journey-map[data-reveal] .journey-step {
    opacity: 1;
    transform: none;
  }
}
