:root {
  --purple: #893ef8;
  --ink: #1f212e;
  --muted: #6b6b73;
  --muted-2: #8a8a93;
  --border: rgba(0, 0, 0, 0.1);
  --toggle: #f4f4f4;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  min-width: 320px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background-color: transparent;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background-color: #fff;
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  width: 100%;
  max-width: 800px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo__mark {
  width: 36.9387px;
  height: 32px;
}

.logo__word {
  width: 58.2957px;
  height: 14.2268px;
  margin-top: 2px;
}

.toggle {
  display: flex;
  background: var(--toggle);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2px;
}

.toggle__btn {
  width: 119px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  opacity: 0.4;
}

.toggle__btn.is-active {
  height: 41px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600;
  opacity: 1;
  box-shadow: inset 3px 4px 8px rgba(0, 0, 0, 0.08);
}

.wrap {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 24px;
}

.display {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
}

.lead {
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 174px;
  height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 32px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.05);
}

.hero {
  position: relative;
  overflow: visible;
  min-height: 953px;
  background-color: #fff;
  padding-top: 100px;
}

.hero__glow {
  position: absolute;
  width: 595px;
  height: 595px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 595px;
  opacity: 0.5;
  background: #8b3ef8;
  filter: blur(377px);
  pointer-events: none;
  z-index: 0;
}


.gradient-text {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .wrap {
  padding: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 407px 1fr;
  align-items: start;
  min-height: 933px;
  padding: 90px 0 0;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 407px;
  max-width: 100%;
}

.hero__text .display {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #000;
}

.hero__copy .lead {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.hero__media {
  margin-top: 86px;
  justify-self: end;
}

.hero__media img {
  width: 615px;
  max-width: none;
  height: auto;
}

.hero--biz .hero__inner {
  grid-template-columns: 1fr 415px;
  min-height: 703px;
}

.hero--biz .hero__media img {
  width: 307px;
  margin: 0 auto;
}

.suggestions {
  padding-top: 48px;
  text-align: center;
  overflow: hidden;
}

.suggestions__copy {
  max-width: 536px;
  margin: 0 auto 80px;
}

.suggestions__copy .display {
  letter-spacing: -0.04em;
}

.suggestions__copy .lead {
  margin-top: 16px;
  color: #000;
}

.suggestions__media {
  display: block;
  width: min(100%, 1440px);
  height: auto;
  margin: 0 auto;
}

.block {
  padding-top: 48px;
  text-align: center;
}

.block__copy {
  max-width: 536px;
  margin: 0 auto 40px;
}

.block__copy .lead {
  margin-top: 16px;
}

.block__media {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
}

.block--wide {
  overflow: hidden;
}

.block--phone {
  overflow: visible;
  padding-bottom: 80px;
}

.block__stage {
  position: relative;
  width: min(420px, calc(100% - 48px));
  margin: 8px auto 0;
}

.block__phone {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px;
  border-radius: 48px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 0 40px 8px rgba(255, 255, 255, 0.95),
    0 18px 50px rgba(255, 255, 255, 0.9),
    0 22px 48px rgba(15, 15, 20, 0.08);
}

.block__shadow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 2;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  min-width: 1440px;
  height: 500px;
}

.block__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 522 / 1080;
  object-fit: cover;
  border-radius: 38px;
  background: #f4f4f6;
}

.analytics {
  padding: 80px 0;
}

.analytics__inner {
  display: grid;
  grid-template-columns: 404px 1fr;
  gap: 64px;
  align-items: center;
}

.analytics__copy .lead {
  margin-top: 32px;
}

.analytics__media img {
  width: 516px;
  max-width: 100%;
  margin-left: auto;
}

.download {
  padding: 80px 0;
}

.download__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  align-items: center;
}

.download__left {
  max-width: 335px;
  justify-self: end;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  padding: 25.21px;
  gap: 22.97px;
  box-sizing: border-box;
  border-radius: 36.75px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  box-shadow: 0 0 48px 0 rgba(0, 0, 0, 0.08);
  object-fit: contain;
  margin-bottom: 32px;
}

.download__left .lead {
  margin-top: 16px;
}

.stores {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.stores img {
  height: 53px;
  width: auto;
}

.download__rule {
  width: 1px;
  height: 365px;
  background: var(--border);
}

.download__qr {
  max-width: 295px;
}

.download__qr img {
  width: 295px;
}

.download__qr p {
  margin-top: 32px;
  font-size: 14px;
  line-height: 19px;
  color: var(--muted);
}

.contact {
  padding: 80px 24px 96px;
  text-align: center;
}

.contact__copy {
  max-width: 534px;
  margin: 0 auto 48px;
}

.contact__copy .lead {
  margin-top: 24px;
}

.contact-form {
  width: min(100%, 376px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px 16px 10px;
  background: #F2F2F2;
}

.field label {
  display: block;
  font-size: 12px;
  color: var(--muted-2);
}

.field input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 16px;
  line-height: 28px;
  background: transparent;
}

.field input::placeholder {
  color: #b5b5bb;
}

.contact-form .btn {
  width: 100%;
  height: 48px;
}

.form-note {
  min-height: 20px;
  font-size: 13px;
  color: #22c55e;
}

.site-footer {
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: 100%;
  max-width: 800px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 16px;
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links .sep {
  width: 1px;
  height: 16px;
  background: #d0d0d4;
}

@media (max-width: 900px) {
  .header-inner {
    max-width: none;
    padding: 0 16px;
  }

  .display {
    font-size: 32px;
    line-height: 39px;
  }

  .hero {
    min-height: 800px;
  }

  .hero__inner,
  .hero--biz .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 50px 0 48px;
  }

  .hero__copy {
    width: 100%;
    order: 2;
  }

  .hero__text .display {
    font-size: 32px;
    line-height: 39px;
  }

  .hero__media {
    order: 1;
    margin-top: 0;
    justify-self: center;
  }

  .hero__media img,
  .hero--biz .hero__media img {
    width: min(100%, 301px);
    max-width: 100%;
    margin: 0 auto 24px;
  }

  .analytics__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .analytics__media {
    order: -1;
  }

  .analytics__media img {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .suggestions__copy {
    max-width: 372px;
    margin-bottom: 48px;
  }

  .suggestions__copy .display {
    font-size: 48px;
    line-height: 58px;
  }

  .download__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .download__left {
    justify-self: start;
  }

  .download__rule,
  .download__qr {
    display: none;
  }

  .footer-inner {
    max-width: none;
    padding: 0 16px;
    gap: 8px;
  }
}
.suggestions__media__mobile {
  display: none;
}
.block__media__mobile {
  display: none;
}
.analytics__media__mobile {
  display: none;
}

.block__media__mobile {
  display: none;
}

.footer-links a {
  color: #4D4D4D;
}

.footer-links p {
  color: #4D4D4D;
}

.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

@media (max-width: 480px) {
  .toggle__btn {
    width: 110px;
    font-size: 13px;
  }
  .hero__media {
    margin-left: auto;
    width: 100%;
  }

  main {
    overflow: hidden;
  }

  .hero {
    padding: 80px 24px 0;
  }

  .suggestions__media {
    display: none;
  }

  .suggestions__media__mobile {
    display: block;
  }

  .block__media {
    display: none;
  }

  .block__media__mobile {
    display: block;
  }

  .block__stage {
    width: min(360px, calc(100% - 32px));
    overflow: hidden;
  }

  .block__phone {
    padding: 8px;
    border-radius: 40px;
  }

  /* .block__shadow {
    width: 260%;
    bottom: -24px;
  } */

  .block__video {
    border-radius: 32px;
  }

  .analytics__media img {
    display: none;
  }

  .analytics__media__mobile {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  .analytics__inner {
    padding: 0 !important;
  }

  .analytics__copy {
    padding: 0 24px !important;
  }

  .block__media img {
    display: none;
  }

  .block__media__mobile {
    display: block;
  }

  .footer-links a {
    font-size: 8px;
  }

  .footer-links p {
    font-size: 10px;
  }

  .hero {
    padding-top: 120px;
  }

  .suggestions {
    margin-top: 48px;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal--left {
  transform: translate3d(-48px, 0, 0);
}

.reveal--right {
  transform: translate3d(48px, 0, 0);
}

.reveal--scale {
  transform: translate3d(0, 28px, 0) scale(0.96);
}

.reveal--copy {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.js .display:not(.is-split),
.js .lead:not(.is-split),
.js .split-text:not(.is-split) {
  opacity: 0;
}

.word {
  display: inline-block;
  vertical-align: bottom;
}

.word--mask {
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.word__inner {
  display: inline-block;
  transform: translate3d(0, 118%, 0);
  opacity: 0;
  filter: blur(8px);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.55s ease,
    filter 0.7s ease;
  transition-delay: calc(var(--i) * 72ms);
}

.lead .word__inner,
.split-text .word__inner {
  transform: translate3d(0, 16px, 0);
  filter: blur(5px);
  transition-delay: calc(var(--i) * 24ms + 160ms);
}

.reveal-text.is-visible .word__inner {
  transform: none;
  opacity: 1;
  filter: blur(0);
}

.gradient-text .word__inner {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.js .reveal-btn {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.42s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.42s;
}

.js .reveal-btn.is-visible {
  opacity: 1;
  transform: none;
}

.contact-form .field,
.contact-form .btn {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.contact-form.is-visible .field,
.contact-form.is-visible .btn {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form.is-visible .field:nth-child(1) {
  transition-delay: 0.08s;
}

.contact-form.is-visible .field:nth-child(2) {
  transition-delay: 0.18s;
}

.contact-form.is-visible .btn {
  transition-delay: 0.3s;
}

.site-header .logo,
.site-header .toggle {
  animation: header-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header .toggle {
  animation-delay: 0.12s;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .reveal--left,
  .reveal--right {
    transform: translate3d(0, 32px, 0);
  }

  .word__inner {
    transition-delay: calc(var(--i) * 48ms);
  }

  .lead .word__inner,
  .split-text .word__inner {
    transition-delay: calc(var(--i) * 16ms + 80ms);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale,
  .reveal--copy,
  .word__inner,
  .reveal-btn,
  .contact-form .field,
  .contact-form .btn,
  .site-header .logo,
  .site-header .toggle {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }

  .js .display:not(.is-split),
  .js .lead:not(.is-split),
  .js .split-text:not(.is-split),
  .js .reveal-btn {
    opacity: 1;
  }
}

