:root {
  --bg: #f9f9f9;
  --text: #000;
  --muted: rgba(60, 60, 67, 0.6);
  --line: rgba(60, 60, 67, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(1280px, 100%);
  min-height: 969px;
  margin: 0 auto;
  padding: 90px 56px 32px;
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
}

.logo-icon {
  width: 100px;
  height: 100px;
  border-radius: 26px;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
}

.hero h1 {
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 590;
  letter-spacing: -0.43px;
}

.subtitle {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.29;
  font-weight: 510;
  letter-spacing: -0.43px;
}

.description {
  width: min(372px, 92vw);
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.43px;
}

.gallery {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 200px);
  justify-content: center;
  gap: 25px;
}

.shot {
  text-align: center;
}

.shot h2 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.69;
  font-weight: 510;
}

.shot img {
  display: block;
  width: 200px;
  height: 434px;
  object-fit: cover;
  border-radius: 24px;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
}

.app-store-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.app-store-wrap img {
  width: 120px;
  height: 40px;
}

.footer {
  margin-top: auto;
  border-top: 0.5px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer nav {
  display: flex;
  gap: 16px;
}

.footer a,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.15px;
  text-decoration: none;
}

.home-link {
  display: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) and (min-width: 481px) {
  .page {
    min-height: 100dvh;
    padding: 60px 24px 24px;
  }

  .gallery {
    margin-top: 40px;
    grid-template-columns: 200px;
    gap: 40px;
  }

  .shot img {
    margin: 0 auto;
  }

  .footer {
    margin-top: 64px;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page {
    width: 100%;
    max-width: 402px;
    min-height: 2179px;
    padding: 140px 0 20px;
  }

  .hero {
    width: 338px;
    margin: 0 auto;
  }

  .subtitle {
    width: 323px;
    margin-left: auto;
    margin-right: auto;
  }

  .description {
    width: 338px;
  }

  .app-store-wrap {
    margin-top: 72px;
  }

  .gallery {
    margin-top: 40px;
    grid-template-columns: 200px;
    gap: 56px;
  }

  .shot h2 {
    margin-bottom: 10px;
  }

  .shot img {
    width: 200px;
    height: 434px;
    margin: 0 auto;
  }

  .footer {
    margin-top: 158px;
    padding-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer nav {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .home-link {
    display: inline;
  }

  .footer p {
    text-align: center;
  }
}
