body {
  background: #fffaf5;
}

.newcomer-page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fff9f2;
}

.starter-hero {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 30px 24px 22px;
  background: #fff9f2;
}

.starter-hero__content {
  position: relative;
  z-index: 1;
  max-width: 220px;
}

.starter-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #ff7a1a;
  background: #fff0df;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.starter-hero h1 {
  margin: 18px 0 0;
  color: #161616;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.22;
}

.starter-hero h1 span,
.starter-task strong {
  color: #ff6a18;
}

.starter-hero p {
  margin: 14px 0 0;
  color: #342d28;
  font-size: 13px;
  line-height: 1.7;
}

.starter-hero__art {
  position: absolute;
  top: 7px;
  right: 0;
  width: 184px;
  height: 220px;
  object-fit: cover;
}

.starter-tasks {
  margin: 12px 16px 36px;
  padding: 18px 14px 20px;
  background: #fff;
}

.starter-tasks h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #1f1f1f;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
}

.starter-tasks__check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: var(--button-gradient);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.starter-tasks__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.starter-task {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 74px;
}

.starter-task:not(:last-child)::after {
  position: absolute;
  top: 39px;
  bottom: -13px;
  left: 18px;
  border-left: 1px dashed #d8d8d8;
  content: "";
}

.starter-task__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #ff721b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.starter-task__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  overflow: hidden;
  padding: 14px 16px;
  border-radius: 15px;
  background: #fff8ef;
}

.starter-task__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.starter-task__icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-right: 12px;
  object-fit: contain;
}

.starter-task p {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  color: #26211e;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.starter-task strong {
  font-weight: 700;
}

@media (min-width: 640px) {
  .starter-hero,
  .starter-tasks {
    width: min(calc(100% - 64px), 768px);
    margin: 0 auto;
  }

  .starter-hero {
    min-height: 292px;
    padding: 44px 40px 32px;
  }

  .starter-hero__content {
    max-width: 330px;
  }

  .starter-hero h1 {
    font-size: 38px;
  }

  .starter-hero p {
    font-size: 16px;
  }

  .starter-hero__art {
    top: 14px;
    width: 244px;
    height: 292px;
  }

  .starter-tasks {
    margin: 20px auto 48px;
    padding: 24px 22px 26px;
  }

  .starter-tasks h2 {
    font-size: 22px;
  }

  .starter-tasks__list {
    gap: 16px;
    margin-top: 22px;
  }

  .starter-task {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    min-height: 94px;
  }

  .starter-task:not(:last-child)::after {
    top: 47px;
    bottom: -17px;
    left: 21px;
  }

  .starter-task__number {
    width: 42px;
    height: 42px;
  }

  .starter-task__card {
    min-height: 94px;
    padding: 18px 20px;
  }

  .starter-task__icon {
    width: 28px;
    height: 28px;
    margin-right: 14px;
  }

  .starter-task p {
    font-size: 16px;
  }
}
