* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background: #ffffff;
  color: #111;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px 60px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
}

.subtitle {
  margin-top: 10px;
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
}

/* Video */

.video-wrap {
  margin-bottom: 30px;
}

video {
  width: 100%;
  max-width: 900px;
  border-radius: 14px;
}

/* App Store */

.store {
  display: flex;
  justify-content: center;
  margin: 30px 0 40px;
}

.store img {
  height: 60px;
  transition: transform 0.2s ease;
}

.store img:hover {
  transform: translateY(-2px);
}

/* Screenshots */

.screens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.screens img {
  width: 100%;
  border-radius: 16px;
}

/* Footer */

footer {
  margin-top: 40px;
  font-size: 13px;
  color: #888;
}

/* Mobile */

@media (max-width: 600px) {
  .screens {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 30px;
  }
}

footer a {
  color: #666;
  text-decoration: none;
}

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

.dot {
  margin: 0 6px;
  color: #bbb;
}