:root {
  --page-bg: #f5f5f5;
  --text-color: #060607;
  --muted-color: #4b5563;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-color);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.welcome-page {
  min-height: 100vh;
  padding: 70px 24px;
}

.hero {
  max-width: 1150px;
  margin: 0 auto 50px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero p {
  width: min(690px, 100%);
  margin: 0 auto;
  color: var(--muted-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.37;
  letter-spacing: 0;
}

.setup-step {
  width: min(910px, 100%);
  margin: 0 auto;
}

.setup-step:last-child {
  margin-bottom: 0;
}

.setup-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.step-text {
  width: min(910px, 100%);
  margin: 50px auto;
  color: var(--text-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.37;
  text-align: center;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .welcome-page {
    padding: 47px 15px;
  }

  .hero {
    margin-bottom: 34px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 34px;
  }

  .hero p,
  .step-text {
    font-size: 20px;
  }

  .setup-step {
    margin-bottom: 34px;
  }

  .step-text {
    margin: 30px auto;
  }
}
