.ipad-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: 40px;
  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;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  margin: 0 0 24px;
  color: var(--text);
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  line-height: 49px;
  letter-spacing: -0.04em;
}

.hero__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.hero__card img,
.video {
  display: block;
  width: 100%;
  border-radius: 17px;
  box-shadow: var(--card-shadow);
}

.video {
  position: relative;
  padding-top: 56.17021276595745%;
  overflow: hidden;
  background: #d9d9dd;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}

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

.content {
  width: min(592px, 90vw);
  margin-bottom: 50px;
}

.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");
}

.instruction {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.step__badge {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #67ce67;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
}

.instruction__body {
  padding-bottom: 10px;
}

.title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.copy {
  margin: 0 0 8px;
  color: #333;
  font-size: 15px;
  line-height: 20px;
}

.outline-link {
  z-index: 7;
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 250px;
  min-height: 40px;
  margin: 10px auto 10px;
  padding: 10px 15px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
}

.outline-link:hover {
  color: #fff;
  background-color: #000;
}

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

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

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

.download-link__icon--shortcut {
  background-image: url("./icons/shortcut-button.png");
}

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

.focus-shot {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-radius: 13px;
}

.done {
  min-height: 200px;
  margin-top: 20px;
  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__title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.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: 28px;
  }

  .hero__title {
    font-size: 38px;
    line-height: 0.98;
  }

  .panel {
    padding: 15px;
  }
  .done__copy {
    font-size: 15px;
    max-width: 80%;
  }
}
