/* Home Page (front page, slug hr-software) — only what the shared components lack. Every rule is scoped under a home-* class. */

/* ---------- Hero: title and intro beside the video ---------- */
.home-hero { padding: 180px 0 120px; }
.home-hero .home-hero__inner { display: grid; grid-template-columns: 1fr 1.12fr; gap: 64px; align-items: center; }
.home-hero .home-hero__title { font-size: clamp(34px, 4.3vw, 66px); max-width: 13ch; text-wrap: balance; }
.home-hero .home-hero__title .home-hero__max { font-style: normal; padding-right: 0; }
.home-hero .home-hero__lead { max-width: 600px; margin-top: 28px; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.65; }
.home-hero .home-hero__media { position: relative; }
.home-hero .home-hero__media::before {
  content: ""; position: absolute; inset: -12% -8%; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(242, 109, 60, .22), transparent 75%);
}
.home-hero .home-hero__media .video { box-shadow: 0 40px 100px rgba(0, 0, 0, .6); }
@media (max-width: 1100px) { .home-hero .home-hero__inner { gap: 44px; } }
@media (max-width: 960px) {
  .home-hero { padding: 150px 0 90px; }
  .home-hero .home-hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .home-hero .home-hero__title { max-width: 16ch; }
}
@media (max-width: 640px) {
  .home-hero { padding: 128px 0 64px; }
  .home-hero .home-hero__lead { margin-top: 22px; }
  .home-hero .home-hero__inner { gap: 36px; }
}

/* ---------- Outputs: heading over three list cards ---------- */
.home-outputs .section__head { max-width: 980px; margin-bottom: 48px; }
.home-outputs .section__head .h-3 { text-wrap: balance; line-height: 1.08; }
.home-outputs .home-outputs__tiles { max-width: 1180px; margin: 0 auto; }
.home-outputs .tile { padding: 34px 34px; border-top: 3px solid var(--orange); box-shadow: 0 18px 44px rgba(0, 0, 0, .06); }
.home-outputs .tile .feature-list { gap: 16px; }
.home-outputs .tile .feature-list li { font-size: 16.5px; font-weight: 500; color: #1d1d1d; }
/* Narrower screens: the three cards stack, each list in two short columns so no item wraps. */
@media (max-width: 1100px) {
  .home-outputs .home-outputs__tiles { grid-template-columns: 1fr; max-width: 760px; gap: 16px; }
  .home-outputs .tile { padding: 28px 32px; }
  .home-outputs .tile .feature-list { grid-template-columns: repeat(2, 1fr); column-gap: 28px; gap: 14px 28px; }
}
@media (max-width: 960px) { .home-outputs .section__head { margin-bottom: 36px; } }
@media (max-width: 640px) {
  .home-outputs .tile { padding: 24px 24px; }
  .home-outputs .tile .feature-list { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Steps: number and icon, calm even screenshots ---------- */
.home-steps .walkthrough { gap: 110px; }
.home-steps .walk-step { grid-template-columns: 1fr 1.2fr; gap: 80px; }
/* Mirrored rows keep the screenshot in the wider column. */
.home-steps .walk-step:nth-child(even) { grid-template-columns: 1.2fr 1fr; }
.home-steps .home-step__head { display: flex; align-items: center; gap: 18px; }
.home-steps .home-step__icon {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(242, 109, 60, .45); background: rgba(242, 109, 60, .08); color: var(--orange);
}
.home-steps .walk-step__title { margin-top: 18px; }
.home-steps .walk-step .feature-list { margin-top: 26px; }
.home-steps .walk-step .feature-list li { font-size: 17px; color: rgba(255, 255, 255, .86); }
.home-steps .walk-step .btn-row { margin-top: 34px; }
.home-steps .walk-step .figure { display: flex; justify-content: center; }
.home-steps .walk-step .figure img { width: auto; max-width: 100%; max-height: 420px; }
@media (max-width: 960px) {
  .home-steps .walkthrough { gap: 72px; }
  .home-steps .walk-step, .home-steps .walk-step:nth-child(even) { grid-template-columns: 1fr; gap: 30px; }
  .home-steps .walk-step .figure img { max-height: 380px; }
}
@media (max-width: 640px) {
  .home-steps .walkthrough { gap: 60px; }
  .home-steps .home-step__icon { width: 42px; height: 42px; }
  .home-steps .home-step__icon svg { width: 20px; height: 20px; }
  .home-steps .walk-step .feature-list li { font-size: 16px; }
  .home-steps .walk-step .figure img { max-height: none; }
}

/* ---------- BizGPT included: linked heading over the dashboard screenshot ---------- */
.home-included .section__head { max-width: 1040px; margin-bottom: 44px; }
.home-included .home-included__title { line-height: 1.08; text-wrap: balance; }
.home-included .home-included__title a { color: inherit; transition: color .3s var(--ease); }
.home-included .home-included__title a:hover, .home-included .home-included__title a:focus-visible { color: var(--orange); }
.home-included .home-included__arrow { display: inline-flex; vertical-align: middle; margin-left: .3em; color: var(--orange); transform: translateY(-.06em); }
.home-included .home-included__arrow svg { width: .7em; height: .7em; }
.home-included .home-included__shot { max-width: 1240px; margin: 0 auto; }
@media (min-width: 360px) { .home-included .home-included__brand { white-space: nowrap; } }
@media (max-width: 640px) { .home-included .section__head { margin-bottom: 30px; } }

/* ---------- Free trial: copy and animation in one closing panel ---------- */
.home-trial .home-trial__panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center;
  padding: 72px 76px; border: 1px solid var(--line); border-radius: 18px;
  background: radial-gradient(ellipse at 85% 50%, rgba(242, 109, 60, .2), transparent 60%), #0a0a0a;
}
.home-trial .home-trial__title { line-height: 1.08; max-width: 18ch; }
.home-trial .home-trial__title .accent { color: var(--orange); font-style: italic; padding-right: .06em; white-space: nowrap; }
.home-trial .home-trial__text { margin-top: 24px; max-width: 560px; font-size: 18px; }
.home-trial .home-trial__text strong { color: var(--white); }
.home-trial .home-trial__ticks { margin-top: 30px; max-width: 560px; padding-top: 26px; border-top: 1px solid var(--line); grid-template-columns: repeat(2, max-content); column-gap: 40px; }
.home-trial .home-trial__ticks li { font-size: 16px; color: rgba(255, 255, 255, .86); }
.home-trial .home-trial__media .lottie { max-width: 340px; }
/* No animation (the Lottie file failed to load): one centred column. */
.home-trial .home-trial__panel--no-media { grid-template-columns: 1fr; max-width: 980px; margin: 0 auto; text-align: center; background: radial-gradient(ellipse at 50% 115%, rgba(242, 109, 60, .22), transparent 62%), #0a0a0a; }
.home-trial .home-trial__panel--no-media .home-trial__media { display: none; }
.home-trial .home-trial__panel--no-media .home-trial__title { margin-left: auto; margin-right: auto; }
.home-trial .home-trial__panel--no-media .home-trial__text { margin-left: auto; margin-right: auto; }
.home-trial .home-trial__panel--no-media .home-trial__ticks { margin-left: auto; margin-right: auto; justify-content: center; }
.home-trial .home-trial__panel--no-media .home-trial__ticks li { text-align: left; }
@media (max-width: 1100px) { .home-trial .home-trial__panel { padding: 60px 52px; gap: 40px; } }
@media (max-width: 960px) {
  .home-trial .home-trial__panel { grid-template-columns: 1fr; gap: 20px; padding: 52px 44px; }
  .home-trial .home-trial__media .lottie { max-width: 220px; }
}
@media (max-width: 640px) {
  .home-trial .home-trial__panel { padding: 38px 22px 26px; border-radius: 14px; gap: 8px; }
  .home-trial .home-trial__media .lottie { max-width: 150px; }
  .home-trial .home-trial__text { font-size: 17px; }
  .home-trial .home-trial__ticks { grid-template-columns: 1fr; }
  .home-trial .home-trial__panel--no-media { padding-bottom: 38px; }
  .home-trial .home-trial__panel--no-media .home-trial__ticks { grid-template-columns: max-content; }
}
