.page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topbar {
  z-index: 20;
  backdrop-filter: blur(20px);
  background-color: rgba(242, 242, 246, 0.7);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  min-height: 55px;
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  position: sticky;
  top: 0;
}

.topbar__logo {
  display: inline-flex;
}

.topbar__logo img {
  width: 35px;
  height: 35px;
  border-radius: 10px;
}

.hero {
  width: min(700px, 90vw);
  min-width: 200px;
  min-height: 150px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero img {
  display: block;
  width: 100%;
  border-radius: 17px;
}

.hero__caption {
  width: 100%;
  max-width: 650px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.01em;
}

.content {
  width: min(592px, 90vw);
  padding-left: 0;
}

.panel {
  background: var(--card);
  border-radius: 25px;
  min-height: 0;
  padding: 20px 24px 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notice {
  width: 100%;
  margin-bottom: 20px;
  padding: 16px 18px;
  display: flex;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #f9f9f9;
}

.notice__icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: center / contain no-repeat url("./icons/warning-sign.svg");
}

.section-block {
  width: 100%;
  padding-top: 6px;
  padding-left: 0;
}

.section-block__body {
  padding-right: 0;
  padding-bottom: 8px;
}

.title {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.copy {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.copy--center {
  text-align: center;
  margin: 0 0 5px;
}

.download-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 370px;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 15px;
  width: 100%;
  z-index: 7;
  color: #f5f5f7;
  background-color: #232323;
  height: 45px;
  margin-bottom: 30px;
  font-family: Sf compact display, sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
}

.download-link:hover {
  background: #303030;
}

.download-link__icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  max-width: 30px;
  height: 20px;
  max-height: 30px;
  margin-right: 10px;
  background: center / contain no-repeat url("./icons/download-button.svg");
}

.download-link__icon--shortcut {
  width: 18px;
  height: 18px;
  background-image: url("./icons/shortcut-button.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  max-width: 30px;
  height: 20px;
  max-height: 30px;
  margin-right: 10px;
}

.download-link__text {
  margin: 0;
  line-height: 1;
  font-size: 15px;
}

.done {
  min-height: 200px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.done img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.done__copy {
  margin: 0 0 20px;
  font-family: "Sf pro rounded", sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.socials {
  width: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socials a {
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.socials__ig {
  background-image: url("./icons/instagram-dark.svg");
}

.socials__yt {
  background-image: url("./icons/youtube-dark.svg");
}

@media (max-width: 479px) {
  .topbar {
    margin-bottom: 40px;
  }

  .panel {
    padding: 15px;
  }

  .notice,
  .section-block {
    margin-top: 20px;
  }

  .section-block {
    padding-left: 0;
  }

  .section-block__body {
    padding-right: 0;
    padding-bottom: 10px;
  }

  .copy {
    font-size: 14px;
  }

  .hero__caption {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .download-link {
    min-height: 45px;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .download-link__icon,
  .download-link__icon--shortcut {
    width: 22px;
    height: 22px;
  }

  .download-link__text {
    font-size: 15px;
  }
  .done__copy {
    font-size: 15px;
    max-width: 80%;
  }
}
