* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #111111;
  font-family: Arial, sans-serif;
}

.shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 560px;
  padding: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #ffffff;
}

.small-card {
  max-width: 420px;
  text-align: center;
}

h1 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.checkout {
  min-height: 480px;
}

.message {
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.home-page {
  background: #ffffff;
  color: #151515;
}

.home-shell {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 72px 24px;
}

.home-hero,
.home-info {
  padding: 56px 0;
  border-bottom: 1px solid #dedede;
}

.home-info {
  border-bottom: 0;
}

.home-kicker {
  margin: 0 0 16px;
  color: #555555;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page h1,
.home-page h2 {
  max-width: 760px;
  margin: 0 0 24px;
  text-align: left;
  letter-spacing: 0;
}

.home-page h1 {
  font-size: 64px;
  line-height: 1;
}

.home-page h2 {
  font-size: 40px;
  line-height: 1.05;
}

.home-page p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #383838;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .home-shell {
    padding: 40px 20px;
  }

  .home-hero,
  .home-info {
    padding: 36px 0;
  }

  .home-page p {
    font-size: 16px;
  }

  .home-page h1 {
    font-size: 40px;
  }

  .home-page h2 {
    font-size: 28px;
  }
}
