@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-900-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alegreya-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alegreya-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/alegreya-latin-900-normal.woff2") format("woff2");
}
html,
body {
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "Alegreya Sans", sans-serif;
  color: #000;
}

.page-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  opacity: 0.5;
  color: #000;
  text-decoration: none;
  padding: 16px;
}
.page-header:hover {
  transition: opacity 0.2s ease;
  opacity: 1;
}

.page-header-back {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.page-header-logotype {
  height: 20px;
  margin-right: 16px;
  position: relative;
  top: -2px;
}

.page-header-title {
  font-family: "Alegreya Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 20px;
  position: relative;
  top: 1px;
}

@keyframes loading-circle-dash {
  0% {
    stroke-dasharray: 0, 0, 3.490658504px, 1000;
    animation-timing-function: cubic-bezier(0.5, 0, 0, 1);
  }
  50% {
    stroke-dasharray: 0, 0, 94.2477796077px, 1000;
    animation-timing-function: cubic-bezier(0.5, 0, 0, 1);
  }
  100% {
    stroke-dasharray: 0, 90.7571211037px, 3.490658504px, 1000;
  }
}
@keyframes loading-circle-appear {
  from {
    stroke-width: 0;
  }
  to {
    stroke-width: 4px;
  }
}
.loading-spinner {
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  animation: loading-spinner-rotate-48px 5s linear 2s infinite;
  animation-fill-mode: backwards;
}
.loading-spinner circle {
  fill: none;
  stroke: #000;
  stroke-width: 4px;
  stroke-dasharray: 3.490658504px, 1000;
  transform-origin: 50% 50%;
  animation: loading-circle-dash 1.5s linear 2s infinite, loading-circle-rotate 1.5s linear 2s infinite, loading-circle-appear 3s ease 2s;
  animation-fill-mode: backwards;
}
@keyframes loading-circle-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(100deg);
  }
}
@keyframes loading-spinner-rotate-48px {
  from {
    transform: translate(-50%, -50%) scale(1) rotate(-90deg);
  }
  to {
    transform: translate(-50%, -50%) scale(1) rotate(270deg);
  }
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
}
@media only screen and (max-width: 647px) {
  body {
    align-items: stretch;
  }
}

.container {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  margin: 64px;
  width: 520px;
  height: 520px;
  position: relative;
}
@media only screen and (max-width: 647px) {
  .container {
    flex: 1 0 auto;
    margin: 0;
    align-items: center;
    width: auto;
    height: auto;
  }
}

.logo {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.logotype {
  width: 228px;
  height: 72px;
}
@media only screen and (max-width: 647px) {
  .logotype {
    width: 152px;
    height: 48px;
  }
}

.logotype-live-wallpaper {
  opacity: 0.3;
  width: 228px;
  height: 12px;
  margin-top: 8px;
}
@media only screen and (max-width: 647px) {
  .logotype-live-wallpaper {
    width: 152px;
    height: 8px;
    margin-top: 4px;
  }
}

.tagline {
  margin-top: 32px;
  width: 260px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 647px) {
  .tagline {
    width: 240px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-top: 24px;
  }
}

.playlink {
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  width: max-content;
  min-width: 180px;
  min-height: 66px;
  padding: 16px 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
  background-color: #000;
  color: #fff;
  text-decoration: none;
  user-select: none;
  z-index: 100;
  transition: box-shadow 0.15s ease;
  outline: 0;
  margin-top: 32px;
}
@media only screen and (max-width: 647px) {
  .playlink {
    margin-top: 24px;
  }
}
.playlink:hover, .playlink:focus {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.playlink:active {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.playlink-icon {
  flex: 0 0 auto;
}

.playlink-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.playlink-cta {
  font-size: 10px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.playlink-store {
  font-size: 19px;
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.nav {
  margin-top: 48px;
}
@media only screen and (max-width: 647px) {
  .nav {
    align-self: stretch;
    margin: 24px;
  }
}

.nav-section .section-title {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.nav-section a {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  padding-right: 20px;
  position: relative;
  background-image: url(../images/nav-item.svg);
  background-size: 16px 24px;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
.nav-section a.is-external {
  background-image: url(../images/nav-external.svg);
}
.nav-section a:not(:last-of-type) {
  margin-right: 16px;
}
.nav-section + .nav-section {
  margin-top: 32px;
}

@media only screen and (max-width: 647px) {
  .device-frame-container {
    position: relative;
    margin-top: 32px;
    height: 232px;
    align-self: stretch;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
    background-color: #f5f5f5;
    overflow: hidden;
  }
}

.device-frame {
  user-select: none;
  position: absolute;
  left: 288px;
  top: 5px;
  width: 374px;
  height: 510px;
  background-image: url("../images/fakeui/device-tilted-fallback.jpg");
  background-size: cover;
}
.device-frame.frameonly {
  background-image: url("../images/fakeui/device-tilted.png");
}
@media only screen and (max-width: 647px) {
  .device-frame {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 0;
    width: 470px;
    height: 846px;
    background-image: url("../images/fakeui/device-flat-fallback.jpg");
    background-size: cover;
    transform-origin: 0% 100%;
    transform: scale(0.6) translate(-50%, 0);
    transition: transform 1s;
  }
  .device-frame.frameonly {
    background-image: url("../images/fakeui/device-flat.png");
  }
  .device-frame[data-scene=artdetail] {
    transform: scale(0.3) translate(-50%, 20px);
    transition: transform 4s ease 0.8s;
  }
}

.device-screen {
  display: none;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  position: absolute;
  left: 12px;
  top: 63px;
  width: 360px;
  height: 640px;
  transform-origin: 0% 0%;
  transform: translateY(140px) perspective(2800px) rotateY(-37deg) translateY(-140px) scale(0.57);
}
@media only screen and (max-width: 647px) {
  .device-screen {
    left: 53px;
    top: 95px;
    transform: translateZ(0);
  }
}

.device-screen .is-fullscreen {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  height: 640px;
}

.scene-artdetail > * {
  cursor: pointer;
}

.device-scene > * {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0s ease 0.5s;
}

.device-scene.is-active > * {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}

.layer-wall,
.layer-wall-blurred {
  background-size: cover;
  background-position: 50% 50%;
}

.layer-wall-blurred {
  filter: blur(10px);
  opacity: 0.6 !important;
  transition: none;
}

.device-scene.is-active .layer-wall {
  transition: opacity 2s ease 0.5s !important;
}

.layer-sysui {
  background-image: url("../images/fakeui/systemui.png");
  z-index: 1;
  pointer-events: none;
}

.layer-home {
  background-image: url("../images/fakeui/home.png");
}

.layer-boboro-icon {
  background-image: url("../images/fakeui/boboro-icon.png");
  position: absolute;
  left: 318px;
  top: 562px;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1000;
  animation: boboro-icon-pulsate 0.7s ease 0s infinite alternate;
}
.layer-boboro-icon::before, .layer-boboro-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 50%;
  transform: scale(0.92);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.layer-boboro-icon::before {
  animation: boboro-icon-white-pulsate 0.7s ease 0s infinite alternate;
}

.mousedown .layer-boboro-icon::after {
  opacity: 0.5;
}

@keyframes boboro-icon-pulsate {
  from {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@keyframes boboro-icon-white-pulsate {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.4;
  }
}
.layer-artdetail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 321px;
  padding: 40px 20px 60px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0s ease 0.2s, visibility 0s ease 0.2s;
}

.device-scene.is-active .layer-artdetail {
  transform: none;
  transition: opacity 0.2s ease 0.75s, transform 0.2s ease 0.75s;
}

.artdetail-overflow {
  position: absolute;
  right: 24px;
  bottom: 65px;
  width: 7px;
  height: 23px;
  background-image: url("../images/fakeui/overflow.png");
}

.artdetail-title,
.artdetail-byline {
  font-family: "Alegreya", serif;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  margin-right: 24px;
}

.artdetail-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
}

.artdetail-byline {
  font-size: 24px;
  margin-top: 4px;
  line-height: 26px;
}

.layer-artdetail-topscrim {
  position: absolute;
  left: 0;
  top: 0;
  width: 361px;
  height: 100px;
  background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.3));
}

.device-scene.is-active .layer-artdetail-topscrim {
  transition: opacity 0.5s ease 0.75s;
}

.openindicatorwave {
  position: absolute;
  left: 318px;
  top: 562px;
  width: 144px;
  height: 144px;
  animation: open-indicator-wave1-pulsate 2s;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: backwards;
  opacity: 0.8;
}

@keyframes open-indicator-wave1-pulsate {
  from {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0);
    stroke-width: 15px;
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    stroke-width: 0;
  }
}
.layer-openindicator-wave2 {
  animation-name: open-indicator-wave2-pulsate;
  animation-delay: 0.4s;
}

@keyframes open-indicator-wave2-pulsate {
  from {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0);
    stroke-width: 5px;
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    stroke-width: 0;
  }
}
.landing-footer {
  flex-shrink: 0;
  align-self: stretch;
  margin-top: auto;
  box-sizing: border-box;
  padding: 16px 24px 24px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: rgba(0, 0, 0, 0.38);
}
@media only screen and (max-width: 647px) {
  .landing-footer {
    margin-top: 0;
  }
}
.landing-footer a {
  color: inherit;
  text-decoration: none;
}
.landing-footer a:hover, .landing-footer a:focus {
  text-decoration: underline;
}

/*# sourceMappingURL=landing.css.map */
