/* Hero layout: the system previews always occupy a distinct visual lane */
.identity img {
  filter: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(290px, 420px);
  align-items: end;
  justify-content: space-between;
  column-gap: clamp(30px, 5vw, 90px);
  min-height: 720px;
  overflow: clip;
}

.hero-copy {
  min-width: 0;
  max-width: min(100%, 720px);
}

.hero h1 {
  font-size: clamp(3.1rem, 5.8vw, 5.75rem);
}

.hero-subtitle {
  width: min(100%, 62ch);
  max-width: 100%;
  margin: 30px 0 0;
  overflow-wrap: anywhere;
}

.hero-subtitle-secondary {
  margin-top: 18px;
}

.hero-copy > .button {
  display: flex;
  width: fit-content;
  margin-top: 32px;
}

.hero-artifacts {
  position: relative;
  inset: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: end;
  gap: 20px;
  pointer-events: none;
}

.artifact {
  position: relative;
  inset: auto;
}

.artifact-finance {
  align-self: end;
  width: 260px;
  transform: rotate(3deg);
}

.artifact-life {
  align-self: start;
  width: 300px;
  transform: rotate(-3deg);
}

.artifact-booth {
  align-self: end;
  width: 205px;
  transform: rotate(4deg);
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    row-gap: 52px;
    padding-bottom: clamp(72px, 8vw, 120px);
  }

  .hero-copy {
    max-width: min(100%, 760px);
  }

  .hero-artifacts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 14px;
    width: min(100%, 760px);
  }

  .artifact-finance,
  .artifact-life,
  .artifact-booth {
    width: auto;
    min-width: 0;
    align-self: stretch;
    transform: none;
  }
}

@media (max-width: 700px) {
  .hero {
    row-gap: 36px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.25rem);
  }

  .hero-artifacts {
    grid-template-columns: 1fr;
  }

  .artifact-finance,
  .artifact-life,
  .artifact-booth {
    min-height: auto;
  }
}

/* Real Scheduler product evidence */
.project-topline {
  justify-content: flex-end;
}

.story strong {
  color: #fff;
  font-weight: 650;
}

.life-mockup--photo {
  overflow: hidden;
  padding: 0;
  background: #060a0a;
}

.life-training-progress {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 252px;
  object-fit: cover;
  object-position: center top;
}

.life-scorecard {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 29%;
  max-width: 142px;
  min-width: 94px;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.scheduler-mockup--photo {
  overflow: hidden;
  padding: 0;
  background: #050505;
}

.scheduler-week {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 252px;
  object-fit: cover;
  object-position: center top;
}

.scheduler-targets {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 28%;
  max-width: 142px;
  min-width: 94px;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

@media (max-width: 700px) {
  .life-training-progress {
    min-height: 220px;
  }

  .life-scorecard {
    right: 10px;
    bottom: 10px;
    width: 31%;
  }

  .scheduler-week {
    min-height: 220px;
  }

  .scheduler-targets {
    right: 10px;
    bottom: 10px;
    width: 31%;
  }
}
