HC Marketing & Communications
Welcome

New starter onboarding portal

Everything you need to feel confident in week one. Explore the policies, meet the team, and track your onboarding progress from start to finish.

0% complete 7 steps remaining

Your onboarding journey

Start here

What success looks like

By the end of week one, you’ll have access to your tools, understand our standards, and have clear goals for your first 30 days.

  • Complete all compliance + security modules.
  • Meet your manager and success partner.
  • Finish your product walkthrough.
  • Set your first performance targets.

Key policies

Data protection

We handle sensitive customer data daily. Always follow the approved storage, sharing, and device protocols.

Customer conduct

Every interaction must be respectful, transparent, and in line with brand standards.

Performance standards

We track quality, conversion, and compliance. Targets are set with your lead during week one.

Our values

Precision

We operate with clarity and discipline to deliver consistent outcomes.

Ownership

We take responsibility for results and build trust through action.

Momentum

We move fast, learn quickly, and support each other to win.

Meet your core team

Talent lead

Onboarding, role success, and training support.

Field manager

Territory coverage, coaching, and daily performance.

Operations

Tools, compliance, and process support.

Partner success

Client communication, reporting, and escalation.

Frequently asked

Your week-one schedule is shared via email and stored in the onboarding workspace.
Your manager is listed in your welcome email and will meet you on day one.
You will receive credentials for CRM, email, and training platforms after device setup.
const steps = Array.from(document.querySelectorAll('[data-step]')); const progressFill = document.getElementById('progressFill'); const progressLabel = document.getElementById('progressLabel'); const remainingLabel = document.getElementById('remainingLabel'); const storageKey = 'hc-onboarding-steps'; function loadProgress() { const saved = JSON.parse(localStorage.getItem(storageKey) || '[]'); steps.forEach((checkbox, index) => { checkbox.checked = saved.includes(index); }); updateProgress(); } function updateProgress() { const completed = steps.filter(step => step.checked).length; const percentage = Math.round((completed / steps.length) * 100); progressFill.style.width = `${percentage}%`; progressLabel.textContent = `${percentage}% complete`; remainingLabel.textContent = `${steps.length - completed} steps remaining`; const saved = steps.reduce((acc, checkbox, index) => { if (checkbox.checked) acc.push(index); return acc; }, []); localStorage.setItem(storageKey, JSON.stringify(saved)); } steps.forEach(step => step.addEventListener('change', updateProgress)); loadProgress(); document.querySelectorAll('.accordion-button').forEach(button => { button.addEventListener('click', () => { const panel = button.nextElementSibling; const open = panel.style.display === 'block'; document.querySelectorAll('.accordion-panel').forEach(p => (p.style.display = 'none')); panel.style.display = open ? 'none' : 'block'; }); });