/* Stage 1: clear beginner workflow */

.tcw-guided-flow{
  display:none !important;
}

.tcw-beginner-flow{
  margin:16px 0 14px;
  padding:16px;
  border:1px solid rgba(114,232,199,.24);
  border-radius:16px;
  background:
    linear-gradient(
      145deg,
      rgba(20,217,255,.09),
      rgba(214,34,255,.055)
    ),
    rgba(10,13,29,.84);
}

.tcw-beginner-flow-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.tcw-beginner-flow-kicker{
  display:block;
  margin-bottom:4px;
  color:#72e8c7;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tcw-beginner-flow h2{
  margin:0;
  color:#fff;
  font-size:19px;
  line-height:1.15;
}

.tcw-beginner-flow p{
  margin:6px 0 0;
  color:#aeb7d3;
  font-size:13px;
  line-height:1.4;
}

.tcw-beginner-flow-status{
  flex:0 0 auto;
  padding:6px 8px;
  border-radius:999px;
  background:#202744;
  color:#9eeeff;
  font-size:10px;
  font-weight:700;
}

.tcw-beginner-flow-steps{
  display:grid;
  gap:9px;
}

.tcw-beginner-step{
  display:grid;
  grid-template-columns:36px 1fr 18px;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:70px !important;
  margin:0 !important;
  padding:10px 12px !important;
  text-align:left;
  border:1px solid rgba(255,255,255,.09);
  border-radius:12px;
  background:#171c33;
  color:#f4f6ff;
  cursor:pointer;
}

.tcw-beginner-step:hover{
  border-color:rgba(20,217,255,.48);
  background:#1c2240;
}

.tcw-beginner-step.is-active{
  border-color:#14d9ff;
  background:
    linear-gradient(
      135deg,
      rgba(20,217,255,.16),
      rgba(214,34,255,.12)
    ),
    #171c33;
  box-shadow:
    0 0 0 2px rgba(20,217,255,.08);
}

.tcw-beginner-step-number{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#293150;
  color:#9eeeff;
  font-size:14px;
  font-weight:700;
}

.tcw-beginner-step.is-active
.tcw-beginner-step-number{
  color:#07101a;
  background:linear-gradient(
    135deg,
    #14d9ff,
    #72e8c7
  );
}

.tcw-beginner-step-copy{
  min-width:0;
}

.tcw-beginner-step-copy strong{
  display:block;
  margin-bottom:4px;
  color:#fff;
  font-size:14px;
  line-height:1.2;
}

.tcw-beginner-step-copy small{
  display:block;
  color:#aeb7d3;
  font-size:11px;
  line-height:1.35;
}

.tcw-beginner-step-arrow{
  color:#8390b5;
  font-size:24px;
  line-height:1;
}

@media (max-width:760px){
  .tcw-beginner-flow{
    margin:8px 0 14px;
    padding:14px;
  }

  .tcw-beginner-flow-heading{
    display:block;
  }

  .tcw-beginner-flow-status{
    display:inline-block;
    margin-top:10px;
  }

  .tcw-beginner-step{
    min-height:76px !important;
  }

  .tcw-beginner-step-copy strong{
    font-size:15px;
  }

  .tcw-beginner-step-copy small{
    font-size:12px;
  }
}

/* Explicit first action */

.tcw-beginner-start{
  margin-bottom:14px;
  padding:14px;
  border:1px solid rgba(20,217,255,.32);
  border-radius:13px;
  background:rgba(20,217,255,.07);
}

.tcw-beginner-start strong{
  display:block;
  margin-bottom:5px;
  color:#fff;
  font-size:16px;
}

.tcw-beginner-start > span{
  display:block;
  margin-bottom:12px;
  color:#b8c1dc;
  font-size:12px;
  line-height:1.45;
}

.tcw-beginner-start button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  min-height:52px !important;
  margin:0 !important;
  padding:0 16px !important;
  border:0;
  border-radius:11px;
  background:linear-gradient(
    135deg,
    #14d9ff,
    #d622ff
  );
  color:#07101a;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.tcw-beginner-start button span{
  font-size:22px;
}

@media (max-width:760px){
  .tcw-beginner-start button{
    min-height:58px !important;
    font-size:16px;
  }
}
