body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}

.landing {
  padding: 64px 0;
}

.logo {
  width: 36px;
  height: 36px;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0 0 32px;
}

.desc {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  color: #111;
  margin: 0 auto 32px;
  max-width: 800px;
}

.screen {
  display: block;
  width: 100%;
  box-shadow: 0 5px 30px -10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 0 48px;
}

.btn {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5c9cf51f;
  color: #5c9cf5;
  font-weight: 600;
  border-radius: 8px;
  font-size: 20px;
  padding: 10px 16px;
  transition: 0.2s ease;
}

a.btn:hover {
  background: #5c9cf53f;
}

.btn.secondary {
  background: rgba(0, 0, 0, 0.025);
  color: rgba(0, 0, 0, 0.3);
}
.btn.secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.btn .badge {
  position: absolute;
  top: -11px;
  right: -15px;
  font-size: 9px;
  background: #5c9cf5;
  color: #fff;
  padding: 4px 7px;
  border-radius: 23px;
  line-height: 1;
  text-transform: uppercase;
  border: 3px solid #fff;
}
