:root {
  --font-xl: 42px;
  --font-lg: 24px;
  --font-md: 20px;
  --font-sm: 18px;
  --font-xs: 16px;
  --font-xxs: 14px;
}
@media (max-width: 1024px) {
  :root {
    --font-xl: 36px;
    --font-lg: 22px;
    --font-md: 18px;
    --font-sm: 16px;
    --font-xs: 15px;
    --font-xxs: 14px;
  }
}
@media (max-width: 600px) {
  :root {
    --font-xl: 28px;
    --font-lg: 20px;
    --font-md: 16px;
    --font-sm: 14px;
    --font-xs: 13px;
    --font-xxs: 12px;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #222;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-size: var(--font-md);
  background-color: #fff;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ4MCIgaGVpZ2h0PSI2NTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik03MzEuMjA3IDY0OS44MDJDOTM1LjQ4NCA2NDIuMTQgMTQ4MCAzMzcuMzI1IDE0ODAgMTgwLjg4OGMwLTE1Ni40MzgtMzA5Ljc0NC0zNi4wNTUtNzIwLTM2LjA1NVMwLTE3NC40ODMgMCAxMzUuMTQ0YzAgMzA5LjYyNyA1MjYuOTMgNTIyLjMyIDczMS4yMDcgNTE0LjY1OHoiIGZpbGw9IiNGNkY4RkEiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
  background-size: cover;
  background-position-x: 20vw;
  background-position-y: -10vh;
  background-repeat: no-repeat;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  body {
    background-position-x: 35vw;
    background-position-y: -18vh;
  }
}
@media (max-width: 600px) {
  body {
    background-position-x: 48vw;
    background-position-y: -28vh;
    background-size: 220%;
  }
}

main {
  flex: 1;
  width: 100%;
}

a {
  color: #0A0D12;
  text-decoration: none;
}
a:hover {
  color: #0A0D12;
}

.button {
  display: inline-flex;
  background: linear-gradient(65deg, #DA552F, #ea8e39);
  font-family: "Heebo", sans-serif;
  color: #fff;
  font-size: var(--font-xxs);
  letter-spacing: 0;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  justify-content: center;
  padding: 16px 32px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(32, 43, 54, 0.12);
  mix-blend-mode: multiply;
  transition: all 0.15s ease;
}
.button:hover {
  color: #fff;
  box-shadow: 0 8px 24px rgba(32, 43, 54, 0.25);
}
.button--link {
  background: rgba(0, 0, 0, 0);
  color: #5A51FE;
  box-shadow: none;
}
.button--link:hover {
  color: #8751FE;
  box-shadow: none;
}

.accent {
  color: #5A51FE;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 36px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

h1,
h2 {
  font-family: "Heebo", sans-serif;
}

.container-desktop {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1024px) {
  .container-desktop {
    padding: 0 36px;
  }
}
@media (max-width: 600px) {
  .container-desktop {
    padding: 0 20px;
  }
}

.tobi-zoom__icon {
  display: none;
}

.app__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 64px;
  align-items: center;
  margin-top: 128px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .app__header {
    grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
    column-gap: 32px;
    margin-top: 96px;
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .app__header {
    grid-template-columns: 1fr;
    row-gap: 24px;
    margin-top: 56px;
    margin-bottom: 32px;
    text-align: center;
  }
}

.app__logo-wrapper {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 1px;
  width: 100%;
  height: auto;
  max-width: 250px;
  max-height: 250px;
}
html[dir=rtl] .app__logo-wrapper {
  justify-self: end;
}
@media (max-width: 1024px) {
  .app__logo-wrapper {
    max-width: 190px;
    max-height: 190px;
  }
}
@media (max-width: 600px) {
  .app__logo-wrapper {
    max-width: 140px;
    max-height: 140px;
    margin: 0 auto;
  }
}

.app__logo {
  border-radius: 22.5%;
  mask-size: cover;
  width: 100%;
  height: auto;
}

.app__infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 600px) {
  .app__infos {
    gap: 12px;
    align-items: center;
  }
}

.app__name {
  font-size: var(--font-xl);
  margin: 0;
}

.app__description {
  font-size: var(--font-lg);
  margin: 0;
}
@media (max-width: 600px) {
  .app__description {
    margin-top: 4px;
  }
}

.app__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.app__buttons--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .app__buttons {
    margin-top: 8px;
  }
}
@media (max-width: 600px) {
  .app__buttons {
    justify-content: center;
    margin-top: 16px;
  }
  .app__buttons--mobile {
    display: flex;
    margin-bottom: 48px;
  }
  .app__buttons--desktop {
    display: none;
  }
}

.app__button-play img {
  width: 176px;
  height: auto;
}
.app__button-ios img {
  width: 180px;
  height: auto;
}
.app__button-web {
  margin-left: 12px;
}
.app__button-web img {
  width: 157px;
  height: auto;
}
@media (max-width: 1024px) {
  .app__button-play img {
    width: 150px;
  }
  .app__button-ios img {
    width: 140px;
  }
  .app__button-web {
    margin-left: 8px;
  }
  .app__button-web img {
    width: 130px;
  }
}
@media (max-width: 600px) {
  .app__button-play img {
    width: 130px;
  }
  .app__button-ios img {
    width: 140px;
  }
  .app__button-web img {
    width: 118px;
  }
}

.app__section-title {
  font-size: var(--font-lg);
}

.app__section {
  margin-bottom: 96px;
}
@media (max-width: 1024px) {
  .app__section {
    margin-bottom: 72px;
  }
}
@media (max-width: 600px) {
  .app__section {
    margin-bottom: 56px;
  }
}

.app__screenshots-wrapper {
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  padding: 8px 0 32px;
}
@media (max-width: 600px) {
  .app__screenshots-wrapper {
    padding: 16px 0 24px;
  }
}

.app__screenshots-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 20px;
  padding: 16px 0 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.app__screenshots-list .lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
}
@media (max-width: 1024px) {
  .app__screenshots-list {
    grid-auto-columns: minmax(200px, 1fr);
    padding-bottom: 28px;
  }
}
@media (max-width: 600px) {
  .app__screenshots-list {
    gap: 20px;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
  }
  .app__screenshots-list::-webkit-scrollbar {
    display: none;
  }
}

.app__screenshot {
  width: 100%;
  height: auto;
  max-height: 497px;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(17, 16, 62, 0.12);
  transition: all 0.3s ease-in-out;
  transform: scale(1);
  cursor: pointer;
}
.app__screenshot:hover {
  box-shadow: 0 24px 48px rgba(17, 16, 62, 0.12);
  transform: scale(1.03);
}
@media (max-width: 1024px) {
  .app__screenshot {
    max-height: 497px;
  }
}
@media (max-width: 600px) {
  .app__screenshot {
    width: auto;
    max-width: 100%;
    max-height: 497px;
    margin: 0 auto;
  }
}

.app__featured-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}
@media (max-width: 1024px) {
  .app__featured-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .app__featured-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.app__featured-image {
  width: 100%;
  margin: 0 auto;
}

.app__fulldescription {
  margin-bottom: 200px;
}
@media (max-width: 1024px) {
  .app__fulldescription {
    margin-bottom: 140px;
  }
}
@media (max-width: 600px) {
  .app__fulldescription {
    margin-bottom: 96px;
  }
}

.footer {
  padding: 20px 0;
  font-size: var(--font-xs) !important;
}
.footer a {
  font-size: var(--font-xs) !important;
}
.footer__container {
  color: #0A0D12;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer__container {
    align-items: center;
  }
}
@media (max-width: 600px) {
  .footer__container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}
.footer__links {
  list-style: none;
  display: flex;
  padding-left: 0;
  margin: 0;
  gap: 32px;
}
@media (max-width: 600px) {
  .footer__links {
    gap: 12px;
    justify-content: center;
  }
}

.page {
  max-width: 960px;
  padding: 0 48px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page {
    padding: 0 36px;
  }
}
@media (max-width: 600px) {
  .page {
    padding: 0 20px;
  }
}
