@charset "utf-8";

.ui_input{
  position: relative;
  font-size: 1.6rem;
  max-width: 100%;
}
.ui_input input[type="text"],
.ui_input input[type="date"]{
  border-radius: 1em;
  box-shadow: 0 0 1em rgba(0,0,0,.1);
  padding: .75em 1.5em;
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  background-color: #fff;
  text-align: left;
  min-height: 3.25em;
}
.ui_input input[type="date"]::-webkit-date-and-time-value{
  text-align: left;
}
.ui_input.headicon input{
  padding-left: 5em;
  background-image: url("../img/icon_calendar.svg");
	background-repeat: no-repeat;
	background-position: left 1em center;
	background-size: 1.5em auto;
}
.ui_input.headicon::before{
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  background-color: var(--c_border_gray);
  position: absolute;
  z-index: 2;
  left: 3.5em;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 520px){

}

/*--------------------------------------------------------------------*/

section.hero{
  
}
section.hero .inner{
  padding: clamp(4em, 7em, 15vh) 3vw;
  box-sizing: border-box;
  text-align: center;
}
section.hero .container{
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  grid-template-areas: 
    'heading input'
    'description input'
    'link input';
}
section.hero .heading{
  grid-area: heading;
  font-size: 3.4rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1em;
}
section.hero .heading .big{
  font-size: 6.4rem;
}
section.hero .link{
  grid-area: link;
  padding: 2em 0;
  gap: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.hero .link .button.demo a .label{
  padding-left: 1em;
  background-image: url("../img/icon_code.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto;
}
section.hero .link .button.purchase .help{
  font-size: clamp(1.1rem, 85%, 1.6rem);
}
section.hero .link .button.purchase a{
  width: 20em;
  border-radius: 1em;
  padding: .75em 1em;
  box-sizing: border-box;
}
section.hero .input{
  grid-area: input;
  margin: 2em 0 0 4em;
  max-width: 100%;
  position: relative;
}
section.hero .input::after{
  content: "";
  display: block;
  width: 6em;
  height: 4em;
  background-image: url("../img/text_hero_demo.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(80%, 0%);
  pointer-events: none;
}
section.hero .description{
  grid-area: description;
  width: 26em;
  margin: 0 auto;
}
section.hero .description ._marker{
  background: linear-gradient(transparent 50%, rgb(247 245 165 / 80%) 50%);
  background-repeat: no-repeat;
  background-size: 0% 0.3em;
  background-position: 0 100%;
  transition:background-size 2s;
}
section.hero .description ._marker._draw{
  background-size: 100% 100%;
}
@media screen and (max-width: 520px){
  section.hero{
    padding: 2em 4vw;
  }
  section.hero .inner{
    align-items: flex-start;
    height: auto;
    padding: 0;
  }
  section.hero .container{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: 
      'heading'
      'description'
      'input'
      'link';
  }
  section.hero .heading{
    margin-bottom: .5em;
  }
  section.hero .heading .pre{
    font-size: 5.5vw;
  }
  section.hero .heading .big{
    font-size: 9vw;
  }
  section.hero .input{
    margin: 0 auto;
  }
  section.hero .input::after{
    display: none;
  }
  section.hero .description{
    width: auto;
    padding: 0 1em;
    margin-bottom: 2em;
  }
  section.hero .link{
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  section.hero .link a{
    width: 12em;
  }
  .fs_18{
    font-size: clamp(1.3rem, 4.2vw, 1.7rem);
  }
  .fs_20{
    font-size: clamp(1.4rem, 4.6vw, 1.9rem);
  }
}

/*--------------------------------------------------------------------*/


.button.purchase a{
  position: relative;
}
.button.purchase a .offer{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 60%);
  color: #fff;
  background-color: brown;
  font-size: 1.2rem;
  padding: 0 .5em;
  border-radius: 3px;
}

/*--------------------------------------------------------------------*/


[data-rp-static-container]{
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
[data-rp-static-container] .__reelpicker{
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  margin-top: 1em;
  transform: translate(0%, 0) !important;
}

/*--------------------------------------------------------------------*/

section.hero .banner{
  position: fixed;
  z-index: 50;
  right: 1em;
  bottom: 1em;
  color: var(--c_white);
  background: var(--c_darkblue);
  padding: 1em .5em;
  border-radius: .5em;
}
section.hero .banner .box{
  width: auto;
  height: auto;
  transition: max-width .2s ease-out, max-height .2s ease-out;
}
section.hero .banner .box .text{
  text-align: center;
  margin-bottom: .5em;
  white-space: nowrap;
  font-size: 1.6rem;
}
section.hero .banner .box .text .url{
  font-size: 1.1rem;
}
section.hero .banner .box .qr{
  
}
section.hero .banner .minimize{
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background-color: #000;
  transform: translate(50%, -50%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.hero .banner .minimize::before{
  width: 40%;
  height: 3px;
  background-color: #fff;
}
section.hero .banner.minimized{
  
  padding: .5em;
}
section.hero .banner.minimized::after{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-image: url("../img/icon_qr.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: .8em auto;
}
section.hero .banner.minimized .box{
  opacity: 0;
  pointer-events: none;
  max-width: 1.3em;
  max-height: 1.3em;
  transition: max-width .3s, max-height .3s;
}
@media screen and (max-width: 520px){
  section.hero .banner{
    display: none;
  }
}

/*--------------------------------------------------------------------*/

section.hero .news a{
  color: cornflowerblue;
  text-decoration: underline;
}

/*--------------------------------------------------------------------*/

section.feature{
  background-color: var(--c_darkblue);
  color: #fff;
  background-image: url("../img/bg_coverage.png");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
  margin-bottom: 6em;
}
section.feature .container{
  padding: 3em 0;
}
section.feature .container .heading{
  margin-right: 3em;
}
section.feature .container .heading .main{
  font-size: 3.2rem;
}
section.feature .container .heading .sub{
  
}
@media screen and (max-width: 520px){
  section.feature{
    
  }
  section.feature .container{
    flex-direction: column;
  }
  section.feature .container .heading{
    margin-right: 0;
    margin-bottom: 2em;
  }
  section.feature .container .heading .main{
    font-size: 7vw;
  }
  section.feature .container .bodying{
    font-size: 3.8vw;
  }
}

/*--------------------------------------------------------------------*/

section.feature .container .bodying{
  max-width: 18em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.feature .container .bodying .upper{
  gap: .75em;
  width: 100%;
  box-sizing: border-box;
}
section.feature .container .bodying .upper .os{
  padding: 2.5em .5em 1em .5em;
  flex: 1;
  background-image: url("../img/icon_apple.svg");
	background-repeat: no-repeat;
	background-position: center top .5em;
	background-size: 2.5em auto;
}
section.feature .container .bodying .lower{
  display: inline-block;
  margin: 0 auto;
}
section.feature .container .bodying .lower .browser{
  display: inline-block;
  padding: 0 .75em 0 1.5em;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 5em;
  background-image: url("../img/icon_check.svg");
	background-repeat: no-repeat;
	background-position: left .5em center;
	background-size: .69em auto;
  color: var(--c_darkblue);
  margin-right: .25em;
  margin-bottom: .5em;
}
section.feature .container .bodying .lower .comp{
  margin-left: 1em;
}
@media screen and (max-width: 520px){
  section.feature .container .bodying .lower .browser{
    margin-right: .25em;
    margin-bottom: .75em;
  }
}

/*--------------------------------------------------------------------*/

section.feature .container .bodying .upper .os.apple{
  background-image: url("../img/icon_apple.svg");
}
section.feature .container .bodying .upper .os.ios{
  background-image: url("../img/icon_apple.svg");
}
section.feature .container .bodying .upper .os.android{
  background-image: url("../img/icon_android.svg");
}
section.feature .container .bodying .upper .os.win{
  background-image: url("../img/icon_win.svg");
}

/*--------------------------------------------------------------------*/

section.demo{
  padding-bottom: 8em;
}
section.demo .bodying .container .item{
  width: 33.333%;
  padding: 2em;
  box-sizing: border-box;
}
section.demo .bodying .container .item .ui_input{
  margin-bottom: 1em;
}
section.demo .bodying .container .item input{
  width: 100%;
  box-sizing: border-box;
}
section.demo .bodying .container .title{
  margin-bottom: .5em;
  font-style: italic;
}
section.demo .bodying .container .description .note{
  font-size: 85%;
  margin-top: .5em;
}
section.demo .bodying .container .ff_zh{
  font-family: Inter, "Noto Sans SC", "Noto Sans TC", sans-serif;
}
@media screen and (max-width: 520px){
  section.demo{
    padding-bottom: 4em;
  }
  section.demo .bodying{
    padding: 0 8vw;
  }
  section.demo .bodying .container{
    flex-direction: column;
  }
  section.demo .bodying .container .item{
    width: auto;
    padding: 0;
    margin-bottom: 3em;
  }
  section.demo .bodying .container .item .ui_input{
    margin-bottom: .5em;
  }
  section.demo .bodying .container .title{
    margin-bottom: 0;
    font-style: italic;
  }
}

/*--------------------------------------------------------------------*/

section.quickstart{
  padding-bottom: 8em;
}
section.quickstart .container{
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
section.quickstart .container.open{
  max-height: none;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .3s ease-out;
}
section.quickstart .step{
  margin-bottom: 1em;
}
section.quickstart .step .code{
  position: relative;
}
section.quickstart .step .code .hint{
  position: absolute;
  right: .75em;
  bottom: .5em;
  z-index: 2;
  color: rgba(150,150,150,1.00);
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
}
section.quickstart .step .code pre,
section.quickstart .step .code code{
  font-family: inherit;
  font-size: 105%;
}
@media screen and (max-width: 520px){
  section.quickstart{
    padding: 0 6vw;
    padding-bottom: 4em;
  }
  section.quickstart .step .title{
    line-height: 1.5;
  }
  section.quickstart .step .code{
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  }
  section.quickstart .step .code .hint{
    display: none;
  }
  section.quickstart .container.open{
    
  }
}

/*--------------------------------------------------------------------*/

section.quickstart .switch{
  margin-top: 2em;
}
section.quickstart .switch button{
  position: relative;
  font-family: inherit;
  font-weight: 400;
}
section.quickstart .switch button.current{
  color: var(--c_primary);
}
section.quickstart .switch button + button{
  margin-left: 1em;
  padding-left: 1em;
}
section.quickstart .switch button + button::before{
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 520px){
  section.quickstart .switch{
    text-align: center;
  }
}

/*--------------------------------------------------------------------*/

section.configuration{
 padding-bottom: 8em; 
}
section.configuration .description{
  max-width: 30em;
  margin: 0 auto;
  margin-bottom: 3em;
}
section.configuration .table table{
  width: 100%;
  border: 1px solid var(--c_border_gray);
  font-size: 1.8rem;
  line-height: 1.25;
}
section.configuration .table table th,
section.configuration .table table td{
  border: 1px solid var(--c_border_gray);
  text-align: left;
  vertical-align: top;
}
section.configuration .table table th{
  background-color: var(--c_lightgray);
  padding: .5em 1em;
}
section.configuration .table table td{
  padding: 1em;
}
section.configuration .table table td:first-of-type{
  white-space: nowrap;
  width: 40%;
}
section.configuration .table table td:last-of-type{
  width: 40%;
  font-weight: 300;
  font-size: 90%;
}
section.configuration .table table td button{
  color: rgba(0,141,243,1.00);
  margin-top: .5em;
}
section.configuration .table table td button + .detail{
  max-height: 0px;
  overflow: hidden;
  transition: max-height .3s ease-out;
}
section.configuration .table table td button + .detail.open{
  max-height: 100em;
}
@media screen and (max-width: 520px){
  section.configuration{
    padding: 0 6vw;
    padding-bottom: 4em; 
  }
  section.configuration .table{
    overflow: auto;
  }
  section.configuration .table table{
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  }
  section.configuration .table table td:first-of-type{
    width: auto;
    min-width: 12em;
  }
  section.configuration .table table td:last-of-type{
    width: auto;
    min-width: 22em;
    font-size: 100%;
  }
}

/*--------------------------------------------------------------------*/

section.configuration .detail{
  margin-top: 1em;
}
section.configuration .detail .grid{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1em;
  margin-top: 1em;
}
section.configuration .detail .grid .format{
}

/*--------------------------------------------------------------------*/

section.design{
  margin-bottom: 4em;
}
section.design .description{
  max-width: 34em;
  margin: 0 auto;
}
section.design .box{
  margin-top: 3em;
}
section.design .download{
  margin-right: 2em;
}
section.design .download .button{
  margin-bottom: 1em;
}
section.design .download .button a{
  width: 20em;
  color: var(--c_white);
  background-color: var(--c_primary);
  text-align: center;
}
section.design .download .button a .icon{
  display: inline-block;
  padding: .25em .25em .25em 2em;
  background-image: url("../img/icon_xd.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 1.75em auto;
}
section.design .download .message{
  width: 20em;
  margin: 0 auto;
  text-align: center;
}
section.design .download .note{
  width: 20em;
  max-width: 100%;
  margin: 2em auto 2em auto;
  text-align: center;
  opacity: .6;
}
@media screen and (max-width: 520px){
  section.design{
    margin-bottom: 4em;
    padding: 0 6vw;
  }
  section.design .description{
    width: auto;
    margin: 0 auto;
  }
  section.design .box{
    margin-top: 2em;
    flex-direction: column;
    align-items: center;
  }
  section.design .download{
    margin-right: 0;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.design .download .button{
    margin-bottom: 1em;
    font-size: clamp(1.2rem, 3.8vw, 2rem);
  }
  section.design .download .button a{
    width: 20em;
    color: var(--c_white);
    background-color: var(--c_primary);
    text-align: center;
  }
  section.design .download .message{
    max-width: 20em;
    font-size: 90%;
  }
}

/*--------------------------------------------------------------------*/

section.design .download .button._xd a{
  background-color: #AE50AE;
}
section.design .download .button._figma a{
  background-color: #3B3B3B;
}
section.design .download .button._xd a .icon{
  background-image: url("../img/icon_xd.svg");
}
section.design .download .button._figma a .icon{
  background-image: url("../img/icon_figma.svg");
}

/*--------------------------------------------------------------------*/

section.pricing{
 padding-bottom: 8em; 
}
section.pricing .panel{
  display: inline-flex;
  padding: 2em 3em 2em 4em;
  border-radius: 1em;
  /*box-shadow: 0 0 2em rgba(0,0,0,.05);*/
}
section.pricing .panel .info{
  margin-right: 8em;
}
section.pricing .panel .action .button{
  margin: .5em 0;
}
section.pricing .panel .action .button a{
  min-width: 13em;
  box-sizing: border-box;
}
section.pricing .panel .action .comp{
  opacity: 0.6;
}
@media screen and (max-width: 520px){
  section.pricing{
    padding: 0 6vw;
    padding-bottom: 4em;
  }
  section.pricing .panel{
    flex-direction: column;
    padding: 0;
  }
  section.pricing .panel .description{
    line-height: 1.25;
    margin-bottom: 1em;
  }
  section.pricing .panel .info{
    margin-right: 0;
    margin: 0 auto 3em auto;
    border: 1px solid var(--c_border_gray);
    padding: 2em 2em 1em 2em;
    border-radius: 1em;
  }
}

